 function bildanz(GrafikURL, Breite, Hoehe)
 {
	Fensteroptionen="toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0";

	Grafikfenster=window.open("", "", Fensteroptionen + ',width=' + Breite + ',height=' + Hoehe);
	Grafikfenster.focus();
	Grafikfenster.document.open();
	with(Grafikfenster)
	{
                document.write("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">");
                document.write("<html lang=\"de\"><head>");
                document.write("<title>Mannheimer Wingolf</title>");
		document.write("</head>");
		document.write("<body style=\"margin:0px;padding:0px;\">");
		document.write("<img border=\"0\" onclick=\"window.close();\" src=\""+ GrafikURL +"\" title=\"Zum Schlie&szlig;en auf das Bild klicken\">");
		document.write("</body></html>");
	}
 }
