function show_img(img, src)
{
  var width=310;
  var height=310;
  var new_left = Math.round(window.screen.width / 2 - width / 2);
  var new_top = Math.round(window.screen.height / 2 - height / 2);
  var window_params = 'width=' + width + ',height=' + height + ',scrollbars=no,resizable=no,help=no,status=no,left=' + new_left + ',top=' + new_top;
  var OpenWindow=window.open("", img.alt, window_params);
  OpenWindow.document.write("<html><head><title>" + img.alt + "</title></head>")
  OpenWindow.document.write("<body style='background: #E0E9F5;' align='center' valign='middle'>")
  OpenWindow.document.write("<img alt='" + img.alt + "' src='" + src + "' onClick='self.close()' style='border:solid 2px #10498E;' width='300' height='300'>")
  OpenWindow.document.write("</body></html>")
}
