<!--//
  function newImg(which){
   var theImg = new Image();
       theImg.src = which;
   var imgw = theImg.width;
   var imgh = theImg.height;

    if(imgw<100){imgw = 100};
    if(imgh<100){imgh = 100};

     var ImgWin = window.open('','imgwin',config='height='+imgh+',width='+imgw+',top=200,left=20')
       with(ImgWin.document){
        writeln('<html><head><title>Gfx Sally Image</title></head>');
        writeln('<body onload="self.focus()" onblur="self.close()">');
        writeln('<div style="position:absolute;top:0;left:0">');
        writeln('<img src='+which+'></div>');
        writeln('</body></html>');
        close();
       }
  }
 //-->