
function showImage(img_name,w,h) {

  myWin= open("","","width="+w+",height="+h+",status=no,toolbar=no,menubar=no,scrollbars=no,resizable=no");
  myWin.document.write("<html><head><title>Image view</title></head><body marginheight=0 marginwidth=0 leftmargin=0 topmargin=0>");
  myWin.document.write('<a href="javascript:window.close()"><img src="'+img_name+'" border=0 alt="click to close"></a>');
  myWin.document.write("</body></html>");
  myWin.document.close();
}
