
function showImage(img_name) {

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

  myWin.document.write("<html><head><title>Image view");
  myWin.document.write("</title></head><body bgcolor=#990000 ><center>");
  myWin.document.write('<img src="'+img_name+'" border=2 style="border-color: #ff9900">');

  myWin.document.write("<br><form style='margin-top: 5px;'><input type='submit' value='Close' onClick='javascript:window.close()'></form>");

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

  myWin.document.close();

}
