function OpenNewWindow(Picture,Breit,Hoch)
{
	NewWindow=window.open("","Picture","height="+Hoch+",width="+Breit+",scrollbars=no,resizable=no,top=1,left=1");
	NewWindow.document.write ("<html><head><title>Graafen.de</title>");
	NewWindow.document.write ("<link href='../css/window.css' rel='stylesheet' type='text/css'>");
	NewWindow.document.write ("<link href='../../css/window.css' rel='stylesheet' type='text/css'>");
	NewWindow.document.write ("</head>");
  NewWindow.document.write ("<body onload='focus()'>");
	//NewWindow.document.write ("<body bgcolor='#cccccc'>");
	NewWindow.document.write ("<img src=");
	NewWindow.document.write (Picture);
	NewWindow.document.write (">");
	NewWindow.document.write ("</body></html>");
	NewWindow.document.close();
	NewWindow.focus();
}

