    // <![CDATA[
    window.onload = resizeimg;
    function resizeimg()
    {
       if (document.getElementsByTagName)
       {
          for (i=0; i<document.getElementsByTagName('img').length; i++)
          {
             im = document.getElementsByTagName('img')[i];
             if (im.width > 490)
             {
                im.style.width = '475px';
                eval("pop" + String(i) + " = new Function(\"pop = window.open('" + im.src + " ','fullscale','width=760,height=560,scrollbars=1,resizable=1'); pop.focus();\")");
                eval("im.onclick = pop" + String(i) + ";");
                if (document.all) im.style.cursor = 'hand';
                if (!document.all) im.style.cursor = 'pointer';
                if (!document.all) im.style.border = '1px solid';
                im.title = 'Click para ver la imagen original ';
                im.style.padding = "4px";                    im.style.marginBottom = "3px";
                im.style.border = "1px dashed #f0e099";
             }
          }
       }
    }
    // ]]>
