function Zoom (imagen){
    var imgTemp = new Image();
    var tmp = new Date();
    var suffix = tmp.getTime();

    imgTemp.src = imagen + '?' + suffix;
    imgTemp.onload = function() {

      hh = imgTemp.width;
      vv = imgTemp.height;

	  html = "<html><head><title>Imagen</title></head><body><img src='" + imagen + "' /><script type="text/javascript">var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));</script><script type="text/javascript">try {var pageTracker = _gat._getTracker("UA-1746615-18");pageTracker._trackPageview();} catch(err) {}</script></body></html>";
      hor=screen.width; ver=screen.height; h=(hor-(eval(hh)+16))/2; v=((ver-(eval(vv)+16))/2)-40;

      valores="toolbar=no,location=no,menubar=no,directories=no,status=no,width="+(eval(hh)+16)+",height="+(eval(vv)+16)+",left="+h+",top="+v;
      ventana=window.open("","ventana",valores);
      ventana.document.writeln(html);
    }
}