function OpenNewWindow(Picture,Breit,Hoch,Titel)
		{
		xsize = Breit+35;// Zusatz für Rand rechts und links
		ysize = Hoch+120; //Zusatz für Rand oben und unten - damit Button angezeit werden kann 
		    
		ScreenWidth = screen.width;
		ScreenHeight = screen.height;
		
		xpos = (ScreenWidth/2)-(xsize/2);
		ypos = (ScreenHeight/2)-(ysize/2);
			
			NewWindow=window.open(Titel,"Picture","height="+ysize+",width="+xsize+",scrollbars=no,resizable=no,top="+ypos+",left="+xpos+"");
			NewWindow.document.write ("<html><head><title>");
			NewWindow.document.write ("ON'S Industry Germany");
			NewWindow.document.write ("</title><meta http-equiv='imagetoolbar' content='no'><script language='JavaScript' type='text/javascript'>var message='';function clickIE() {if (document.all) {(message);return false;}}function clickNS(e) {if (document.layers||(document.getElementById&&!document.all)) {if (e.which==2||e.which==3) {(message);return false;}}}if (document.layers) {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}</script></head>");
		  NewWindow.document.write ("<body background='_images/popupbg.jpg' onload='focus()'>");
			NewWindow.document.write ("<table align='center'><tr>");
			NewWindow.document.write ("<td align='center' valign='top'>");
			NewWindow.document.write ("<table border='1' bgcolor='#000000' cellpadding='0' cellspacing='1'><tr><td align='center'>");
			NewWindow.document.write ("<img src=");
			NewWindow.document.write (Picture);
			NewWindow.document.write (">");
			NewWindow.document.write ("</tr></table>");
			NewWindow.document.write ("</td></tr><tr>");
			NewWindow.document.write ("<td align='center' valign='bottom' style='border: 1px dotted #333333; background-color: #ffffff; padding: 5px;'>");
			NewWindow.document.write ("<center><a href='javascript:window.close();' style='color: #333333; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; text-decoration: none;'>close this window</a><img src='_images/btn_close.gif' width='13' height='16'>");
			NewWindow.document.write ("</td></tr></table>");
			NewWindow.document.write ("</body></html>");
			NewWindow.document.close();
		  NewWindow.resizeTo(xsize,ysize); 
		}
		
function MM_openBrWindowCenter(theURL,winName,features)
{
       OpenWin = window.open(theURL,winName,features);
        OpenWin.opener = self;
        OpenWin.focus();
}