function ImageWindow(Imgsrc, ImgName, xSize, ySize) {
   if (ImgName == '' ) ImgName = Imgsrc;
xxSize = xSize +20;
yySize = ySize +20;
   var popup = window.open(Imgsrc,"Bild",'width='+xxSize+',height='+yySize+',resizable=yes,left=0,top=2');
//   popup.resizeTo(xSize+20,ySize+30);

   popup.document.write('<html><head><title>');
   popup.document.write('Jürgens Fotozoom - ' +ImgName +', Bildgröße: ' +xSize +' * ' +ySize +' Pixel');
   popup.document.write('</title></head>');
   popup.document.write('<BODY background="hintergrund.jpg" leftmargin="10" topmargin="10">');
   popup.document.write('<img src=" '+Imgsrc+' " alt="" border="">');
   popup.document.write('</body></html>');
   popup.focus();

}
