<!--
function ImageWindow(Imgsrc , ImgName, xSize, ySize) {  //popUp Image V2.1
   if (ImgName == '' ) ImgName = Imgsrc;                //wenn kein Name angegeben- verwende Dateinamen
   var popup = window.open(Imgsrc,"Bild",'width='+xSize+',height='+ySize+',resizable=yes');
   popup.resizeTo(xSize+12,ySize+31);
   popup.document.write('<html><head><title>');
   popup.document.write(ImgName);
   popup.document.write('</title></head>');
   popup.document.write('<BODY leftmargin="0" topmargin="0" bgcolor="#FFFFFF">');
   popup.document.write('<img src=" '+Imgsrc+'">');
   popup.document.write('</body></html>');
   popup.focus();
   if( navigator.appName.substring(0,8) == "Netscape"){   //sonst sieht man in NS garnix!
      popup.location = Imgsrc;
      popup.resizeTo(xSize+15,ySize+15);
   }
}
-->