function FensterOeffnen(Bild,Breit,Hoch,Text){
	var Bild = Bild;
	var Breit = Breit;
	var Hoch = Hoch + 55;
	var Links = screen.width/2-Breit/2;
	var Oben = screen.height/2-Hoch/2;
	var Text = Text;
	FotoUrl = "http://f01179.futris01.de/php/bigview.php?picture=" + Bild + "&text=" + Text;
	FotoFenster = window.open(FotoUrl, "Foto", "width=" + Breit + ",height=" + Hoch + ", location=no, scrollbars=no, toolbar=no, menubar=no, resizable=no, status=no, sreenX="+ Links +", screenY="+ Oben +", left="+ Links +",top="+ Oben);
	FotoFenster.focus();
}

