	var pop = null;

	function GrafikAnzeigen(GrafikURL, Breite, Hoehe, Ueberschrift)
		{
		Fensteroptionen="toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0";
	
		popdown();
		pop = Grafikfenster=window.open("", "", Fensteroptionen + ',width=' + Breite + ',height=' + Hoehe);
		Grafikfenster.focus();
		Grafikfenster.document.open();
		with(Grafikfenster)
			{
			document.write("<html><head>");
			document.write("<title>" + Ueberschrift + "</title>");
			document.write("</head>");
			document.write("<body leftmargin=\"0\" marginheight=\"0\" marginwidth=\"0\" topmargin=\"0\">");
			document.write("<img border=\"0\" src=\""+ GrafikURL +"\" >");
			document.write("</body></html>");
			}
		return (pop) ? false : true;
		}

	function popdown() {
	  	if (pop && !pop.closed) pop.close();
		}
	
	window.onunload = popdown;
	window.onfocus = popdown;
