function openImage(title, img, w, h) {
  msg=open("","ImageWindow","toolbar=no,directories=no,menubar=no,width="+w+",height="+h);
  htmlText = "<HTML><HEAD><TITLE>"+title+"</TITLE></HEAD><BODY style='margin-top: 0;margin-bottom: 0; margin-left: 0; margin-right: 0;'>"+
             "<IMG SRC='"+img+"'></BODY></HTML>";
  msg.document.write(htmlText);
}

