function grafikanzeigen(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>Vergrößertes Bild</title>");
				document.write("</head>");
				document.write("<body leftmargin=\"0\" marginheight=\"0\" marginwidth=\"0\" topmargin=\"0\">");
				document.write("<img border=\"0\" onclick=\"window.close();\" src=\""+ grafikurl +"\" title=\"Zum Schließen auf das Bild klicken\" style=\"cursor:hand;\">");
				document.write("</body></html>");
			}
	}


function WindowOpen(URL, Breite, Hoehe)
{
    var Optionen = "toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1";
    OffenesFenster = window.open(URL, '123', Optionen + ',width=' + Breite + ',height=' + Hoehe);
}
 
function close_window()
{
    window.close();
}
