<!--

function GrafikAnzeigen(GrafikURL, Breite, Hoehe)
{
	Fensteroptionen="left=30,top=100,toolbar=0,scrollbars=1,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>Bild zum Percussion Ensemble Kaiserstuhl</title>");
		document.write("</head>");
		document.write("<body leftmargin=\"0\" marginheight=\"0\" marginwidth=\"0\" topmargin=\"0\">");
		document.write("<p align=\"center\"><img border=\"0\" onclick=\"window.close();\" src=\""+ GrafikURL +"\" title=\"Zum Schlie&szlig;en auf das Bild klicken\"></p>");
		document.write("<p style=\"font-family:arial; font-size:12px;\">&nbsp; <a href=\"javascript:window.close()\;\">dieses Fenster schlie&szlig;en</a></p>");
		document.write("</body></html>");
		document.close();
	}
}

//-->
