function OpenImg(img,wid,hei){
var wid;
  pic = new Image();
  pic.src = img;
  var WO;
  WO=window.open(pic.src,'','resizable=yes,width=' + (wid+15) + ',height=' + (hei+60));
  WO.document.write("<body bgcolor='#ffffff' text='#003300' leftmargin='0' topmargin='10' marginwidth='0' marginheight='10'>");
  WO.document.write("<div align='center'>");
  WO.document.write("<img src='");
  WO.document.write(pic.src);
  WO.document.write("'border=0>");
  WO.document.write("<form><input type='button' value='Close' onClick='window.close()'></form>");
  WO.document.write("</div></body></html>");
  WO.document.close();
  }
function MM_callJS(jsStr) { //v2.0
  return eval(jsStr)
}
