	function OpenNewWindow(cPicture,nWidth,nHeight)
	{
	NewWindow=window.open("","NewOne","HEIGHT="+nHeight+",WIDTH="+nWidth+",scrollbars=no,resizable=no");
	NewWindow.document.write ("<html><head><title>");
	NewWindow.document.write ("</title><link rel='stylesheet' type='text/css' href='styles.css'></head>");
	NewWindow.document.write ("<body bgcolor='#FFFFFF' leftmargin='0' topmargin='0' rightmargin='0' bottommargin='0' marginwidth='0' marginheight='0'");	
	NewWindow.document.write ("<table width='100%' border='0' cellspacing='0' cellpadding='0' align='center'><tr><td valign='top'>");
	NewWindow.document.write ("<img src=");
	NewWindow.document.write (cPicture);
	NewWindow.document.write ("><br><img src='images/cleardot.gif' width='1' height='10' border='0'><br></td></tr><tr><td align='center' class='norm1'>");
	NewWindow.document.write ("<br><img src='images/cleardot.gif' width='1' height='10' border='0'><br>");
	NewWindow.document.write ("</td></tr><tr><td align='center' class='klein'><a href=# onClick='window.close()'><font color='#EBD7D9'>Fenster schliessen</a>");
	NewWindow.document.write ("</td></tr></table>");
	NewWindow.document.write ("</body></html>");
	NewWindow.document.close();
	return false;
	}
	
	
	




