
function showImage(img_name) {

  myWin= open("","","width=380,height=380,status=no,toolbar=no,menubar=no,scrollbars=no,resizable=no");

  myWin.document.write("<html><head><title>Image view");
  myWin.document.write("</title></head><body><center>");
  myWin.document.write('<a href="#" onClick="window.close();" title="Click to close"><img src="'+img_name+'" style="border-color: #5EA7DF"></a>');

  myWin.document.write("</center></body></html>");

  myWin.document.close();

}
