   function newWindow(mypage, myname, w, h, scroll) {   var winl = 20;//(screen.width - w) / 2;   var wint = (screen.height - h) / 2;   winprops =   'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable,menubar'   win = window.open(mypage, myname, winprops)   if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }   }            function picture(picgoal,picname) {    PicWin=window.open("",picname,'status=0,scrollbars=0,resizable=0,width=600,height=400,screenX=50,screenY=50,top=50,left=50');    PicWin.document.open();    PicWin.document.writeln('<html>');    PicWin.document.writeln('<head>');    PicWin.document.writeln('<title>Picture in a window</title>');    PicWin.document.writeln('</head>');    //PicWin.document.writeln('<body bgcolor="'ffffff'">');    PicWin.document.writeln('<img src="'+picgoal+'">');    PicWin.document.writeln('</body>');    PicWin.document.writeln('</html>');    PicWin.document.close();    if (parseInt(navigator.appVersion) >= 4) { PicWin.window.focus();}  }