function vorschau(FensterTitel,Titel,Datei,Breite,Hoehe)
	{
		var Bild = null;
		var Hoehe2 = 50;
		var Breite2 = 20;
		Hoehe2 = Hoehe2 + parseInt(Hoehe);
		Breite2 = Breite2 + parseInt(Breite);

		Bild = window.open("",FensterTitel,"dependent=yes, width=" + Breite2 + ",height=" + Hoehe2 + ",menubar=0,toolbar=0,status=0,location=0,resizable=0" );  
        Bild.document.open();
		/* Bild.document.write('<html><head><title>'+Titel+'</title></head><body bgcolor="#003300" marginwidth="0" marginheight="0" topmargin="0" leftmargin="0"><CENTER><p><img src="'+Datei+'"><p><a href="javascript:window.close()">Fenster schließen </a></p></BODY></html>');*/
		Bild.document.write('<html><head><title>'+Titel+'</title></head><body bgcolor="#003300" marginwidth="0" marginheight="0" topmargin="0" leftmargin="0"><DIV ALIGN="Center"><CENTER><img src="'+Datei+'"><p><a href="javascript:window.close()">Fenster schließen </a></p></CENTER></DIV></BODY></html>');
		Bild.document.focus(); 
		Bild.document.close();
	}
