function galerie(Name,Breite,Höhe,AltText,xVersatz,yVersatz) {
        newWindow = window.open("","newWindow","width=900,height=680,left="+xVersatz+",top="+yVersatz);
        newWindow.document.open();
        newWindow.document.write('<html><title>'+AltText+'</title><body bgcolor="#F2F2F2" leftmargin="0" topmargin="0" marginheight="0" onBlur="self.close()">');
        newWindow.document.write('<table align="center" height="100%" border="0" cellspacing="0" cellpadding="0"><tr height="%"><td width="50%"><img src="../sys/_.gif" width="50" height="25" border="0"></td>');
        newWindow.document.write('<td>&nbsp;</td><td width="50%"><img src="../sys/_.gif" width="50" height="25" border="0"></td></tr><tr><td>&nbsp;</td>');
        newWindow.document.write('<td><img src="'+Name+'.jpg" width="'+Breite+'" height="'+Höhe+'" name="bild" border="0"></a></td>');
        newWindow.document.write('</tr><tr height="%"><td width="50%"><img src="../sys/_.gif" width="50" height="25" border="0"></td><td>&nbsp;</td>');
        newWindow.document.write('<td width="50%"><img src="../sys/_.gif" width="50" height="25" border="0"></td></tr></table></body></html>');
        newWindow.document.close();
        newWindow.focus();
}
