function winOpen(Name,Breite,Hoehe,AltText,xVersatz,yVersatz,Text1,Text2)
		{
        newWindow = window.open("","newWin","width="+Breite+",height="+Hoehe+",left="+xVersatz+",top="+yVersatz);
        newWindow.document.open();
        newWindow.document.write('<html><title>'+AltText+'</title><body bgcolor="#ffffff" leftmargin="0" topmargin="15" marginheight="0" marginwidth="0" onBlur="self.close()">');
        newWindow.document.write('<a href="javascript:winclose()"><div align="center"><img src='+Name+' border="0"></div></a><pre><div align="center"><font color="#FFFFFF"><b><font face="Arial, Helvetica, sans-serif">'+Text1+'</b><br>'+Text2+'</font></pre></font></div></pre>');
        newWindow.document.write('</body></html>');
        newWindow.document.close();
        newWindow.focus();
		}
