function fotoseite_oeffnen(dateiname, breite, hoehe)
	{
	if(breite==null) breite=900;
	if(hoehe==null) hoehe=780;
	var fenster = window.open(dateiname, "Fotogalerie", "scrollbars=yes,menubar=no,toolbar=no,status=no,location=no,resizable=yes", false);
	fenster.resizeTo(breite, hoehe);
	fenster.moveTo((screen.width/2)-400, (screen.height/2)-300);
	fenster.focus();
	fenster.document.close();
	}



