i=0;
imgw=0;
function imgwin(img,w,h) { 
      if(i>0 && win1.closed==false){
        win1.close();
      }
      imgw++;
      win1=window.open("","imgw","width="+w+",height="+h+",resizable=yes");
      i++;
      with(win1.document){
      writeln("<html><head><title>Degital World</title>");
      writeln("<meta http-equiv=\"content-type\" content=\"text/html; charset=shift_jis\">");
      writeln("</head>");
      writeln("<body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 bgcolor=\"white\" oncontextmenu=\"return false\">");
      writeln("<div align=\"center\">");
      writeln("<a href='#' onClick='window.close()'><img src='"+img+"' border=0></a>");
      writeln("</div>");
      writeln("</body></html>");
      }
}

