// Öffnet ein Fenster für die Panoramaansichten in fixer Größe
function sf_PanoFenster(Datei) 
{
//	alert("es geht");
	URL="Panoramen/"+Datei+".php";
	breite = 600;
	hoehe = 590;
	x = screen.width-breite;
	y = screen.height-hoehe;
	param = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,"
	param += "screenX="+x;
	param += ",ScreenY="+y;
	param += ",width="+breite;
	param += ",height="+hoehe;
	var fenster=window.open(URL,'Galerie',param);
	fenster.focus();
	if(navigator.appName.substring(0,8)=="Netscape" )
	{
	fenster.location=URL;
	} 
}

// Öffnet ein Fenster für die Panoramaansichten in fixer Größe
function sf_FotoFenster(Datei) 
{
	//alert("es geht");
	URL="Fotos/"+Datei+".php";
	breite = 520;
	hoehe = 680;
	x = screen.width-breite;
	y = screen.height-hoehe;
	param = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,"
	param += "screenX="+x;
	param += ",ScreenY="+y;
	param += ",width="+breite;
	param += ",height="+hoehe;
	var fenster=window.open(URL,'Fotos',param);
	fenster.focus();
	if(navigator.appName.substring(0,8)=="Netscape" )
	{
	fenster.location=URL;
	} 
}

