    function ShowLyrics(name)			//Songs
    {
	var filepath = "./" + name + ".html"
	var newwindow =	window.open(filepath,"_new","toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=550,height=666");
	newwindow.focus();
    }
	
	function ShowPortrait(name)			//Die Band
    {
        var filepath = name + "/index.html"
        var newwindow =        window.open(filepath,"_new","toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=1000,height=666");
        newwindow.focus();
    }
	function ShowBandmateOver(name){	//Die Band -> Bandmates
		document.getElementById("mate").innerHTML=name;
		document.getElementById("mate").style.color="#FFCC99";
	}
	function ShowBandmateOut(){
		document.getElementById("mate").innerHTML="W&auml;hle Bandmate aus";
		document.getElementById("mate").style.color="white";
	}
	
	function ShowEnlargedImage(id)	//Media - Fotos
    {
	var filepath = "ring.php?i=" + id;
	var newwindow =	window.open(filepath,"_new","toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=600,height=590");
	newwindow.focus();
    }
	
    function ShowEnlargedPlakat()			//Gigs
    {
	var filepath = "plakat.jpg"
	var newwindow =	window.open(filepath,"_new","toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=500,height=666");
	newwindow.focus();
    }
	function ShowEnlargedCover(name)		//Songs -> Mehr Infos
	{
	var filepath = name
	var newwindow = window.open(filepath,"_new","toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=565,height=540");
	newwindow.focus();
	}
