function OpenNewWindow(cPicture,nWidth,nHeight)
	{
	NewWindow=window.open("","NeuEins","HEIGHT="+nHeight+",WIDTH="+nWidth+",scrollbars=no,resizable=no,top=10,left=10");
	NewWindow.document.write ("<Head><TITLE>stefan-hartelt.de &middot Cover</TITLE><meta http-equiv='imagetoolbar' content='false'></head>")	
	NewWindow.document.write ("<BODY oncontextmenu='return false' ondragstart='return false' onselectstart='return false' style='text-decoration:none; cursor: default; font-family:Tahoma, Arial' leftmargin='0' topmargin='0'>")
	NewWindow.document.write ("<a href='javascript:top.window.close()'><IMG border='0' SRC=");
	NewWindow.document.write (cPicture);
	NewWindow.document.write ("></a>");
	NewWindow.document.write ("</BODY>");
	
	return false;
	}
