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="#3A3C69" 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" face="Trebuchet MS, Arial, Helvetica, sans-serif"><font size="6">'+Text1+'</font><br><font size="3">'+Text2+'</font></font></div></pre>');
        newWindow.document.write('</body></html>');
        newWindow.document.close();
        newWindow.focus();
		}

