/* Grafiken Anzeigen - RAL7013 */

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>Doppeladler.com</title>");
		document.write("</head>");
		document.write("<body bgcolor=\"#000000\" leftmargin=\"0\" marginheight=\"0\" marginwidth=\"0\" topmargin=\"0\">");
		document.write("<div id=\"picture\" style=\"position:absolute; width:100%; height:100%; z-index:1; left: 0; top: 0; background-image: url("+ GrafikURL +"); layer-background-image: url("+ GrafikURL +"); border: 1px none #000000\">");
		document.write("<img border=\"0\" onclick=\"window.close();\" src=\"../../graphic/img640x480.gif\" width=\"100%\" height=\"100%\" title=\"Zum Schließen auf das Foto klicken\">");
		document.write("</div>");
		document.write("</body></html>");
	}
}
