<!--
          netscape = (document.layers) ? 1:0;
          goodIE = (document.all) ? 1:0;
          if (netscape) {
                var OffsetWidth=0
                var OffsetHeight=0
          }
          else if (goodIE) {
                var OffsetWidth=-10
                var OffsetHeight=-15
          }

          var maxWidth = 950;
          var maxHeight = 650;

          function zoom(title, url, w, h, alttext, alternate) {
                var winWidth=w;
                var winHeight=h;
                var resizable=false;

                // correct window size
                if (w>maxWidth) { winWidth=maxWidth; resizable=true; }
                if (h>maxHeight) { winHeight=maxHeight; resizable=true; }

                // If alternate is not set, we set the title as an alternativ
            if (!alternate) alternate=title;

            var win=open("#", "zoom", "dependant=yes,height="+winHeight+",width="+winWidth+",resizable="+((resizable)?"yes":"no",title=alternate));
                var doc=win.document;
                doc.open();
                doc.write('<head bgcolor=#000000><title>'+title+'</title></head>');
                //-- hier aufpassen, der Robot erhennt nicht, daß das ein Java - Script ist
                doc.write('<body marginheight=0 marginwidth=0>');
                //-- falls der Robot in der letzten Zeile Änderungen macht, Änderung löschen
                doc.write('<div style="position:relative; top:'+OffsetHeight+'px; left:'+OffsetWidth+'px;">');
                doc.write('<a href="javascript:close()"><img src='+url+' border=0 alt='+alttext+'></a>');
                doc.write('</div>');
                doc.write('</body>');
                doc.close();
          }
//-->