﻿function FensterOeffnen(image) {
    var popup = window.open("", "", "width=650,height=300,top=200,left=200,status=no,toolbar=no,menubar=no,resizable=no,location=no,noresize");
    popup.document.open();
    popup.document.write("<html><body leftmargin='0' marginheight='0' marginwidth='0' topmargin='0'>");
    popup.document.write("<img onLoad='document.title=\"JPEG-Grafik, 650x300 Pixel\"' id='img' SRC='" + image + "' border=0></body></html>");
   // popup.document.write("<title>" +  +  "</title>");
   //popup.top.document.title = image.filesize;
   // popup.document.title = this.document.width;
    popup.document.close();
   return;
  }




/* 
function FensterOeffnen(mypage, myname, w, h) {
winprops = 'height=300,width=650,top=200,left=200,scrollbars=no,menubar=no,toolbar=no,resizable=no,location=no,noresize'


win = window.open(mypage, myname, winprops)
//self.focus()
//self.moveTo(winl,wint)

if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }

}
*/
