function ImagePopUp($PicName,PicW,PicH) 
   {
      var bild = new Image;
      bild.src = $PicName;
      PicW = window.open("about:blank", "Bildfenster", "resizable=no, locationbar=no, width=" + PicW + ", height=" + PicH);
      PicW.document.writeln("<html>");
      PicW.document.writeln("<head>");
      PicW.document.writeln("<title>Internationales Haus Sonnenberg</title>");
      PicW.document.writeln("</head>");
      PicW.document.writeln("<body>");
      PicW.document.writeln("<div style='position:absolute; top:0px; left:0px'>");
      PicW.document.writeln("<img src='" + $PicName +"'>");
      PicW.document.writeln("</div>");
      PicW.document.writeln("</body>");
      PicW.document.writeln("</html>");
      PicW.focus();
   }


