function popup(src)
{
  var default_left=window.screen.width / 2 - 10;
  var default_top=window.screen.height / 2 - 10;
  var window_params = 'width=20,height=20,scrollbars=no,resizable=no,help=no,status=yes,left=' + default_left + ',top=' + default_top;
  var myWin = open("", "", window_params);
  var HTMLtext = "<html><body style='margin:0; padding:0;' onload='wResize();'>";
  HTMLtext += "<script>function wResize() { var oImg=document.images[0]; var width=(oImg.width + 6); var height=(oImg.height + 54); var left = Math.round(window.screen.width / 2 - width / 2); var top = Math.round(window.screen.height / 2 - height / 2); window.moveTo(left, top); window.resizeTo(width, height); }</script>";
  HTMLtext += "<img id='img' src=" + src + " onclick='window.close();'>";
  HTMLtext += "</body></html>";
  myWin.document.write(HTMLtext);
  myWin.document.close();
}

