function openSearchWindow()
{
   w = window.open('about:blank', 'SearchWindow', 'width=600, height=400, scrollbars=yes, resizable=yes, status=yes');
   w.focus();
}

function openScientistsWindow()
{
   w = window.open('about:blank', 'ScientistsWindow', 'width=755, height=600, scrollbars=yes, resizable=yes, toolbar=yes, location=yes, directories=yes, status=yes, menubar=yes');
   w.focus();
}


		function GrafikAnzeigen(GrafikURL)

		{

			bildle=new Image();
			bildle.src=GrafikURL;
			hoehe=bildle.height;
			breite=bildle.width;

		    Fensteroptionen = "toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1";

		    Grafikfenster = window.open("", "", Fensteroptionen + ',width=' + breite + ',height=' + hoehe);
		    Grafikfenster.focus();
		    Grafikfenster.document.open();


		with(Grafikfenster)
		    {
		        document.write("<html><head>");
		        document.write("<title>ICDP Diagram</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 Foto klicken\">");
		        document.write("</body></html>");
		    }

		    return;

		}
