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("<html><head>");
		document.write("<title>Gro&szlig;ansicht, einen Moment bitte!</title>");
		document.write("</head>");
		document.write("<body bgcolor='#ffe685' leftmargin=\"20\" marginheight=\"20\" marginwidth=\"20\" topmargin=\"20\">");
		document.write("<img border=\"0\" onclick=\"window.close();\" src=\""+ GrafikURL +"\" title=\"Zum Schlie&szlig;en auf das Foto klicken\">");
		document.write("</body></html>");
	}

	return;
}