function popimg(image, w, h)
{
  h = window.open('','','width='+w+',height='+h);
  h.document.write('<html><head><title>MEXEM</title></head>');
  h.document.write('<body style="margin:0px">');
  h.document.write('<img src="'+image+'" style="border:0px;cursor:pointer" onclick="window.close()">');
  h.document.write('</body></html>');
  h.document.close();
}

