Hi, External link open new windows dont work, i put the new code in prosilve and dont work :S
Thanks
Moderator: Moderators

//Redimensionar imagenes
window.onload = resizeimg;
function resizeimg()
{
var y = document.getElementsByTagName('img');
if (y)
{
for (i=0; i<y.length; i++)
{
im = y[i];
if (im.getAttribute('alt') != 'Imagen')
{
continue;
}
if (im.width > 550)
{
im.style.width = '550px';
eval("pop" + String(i) + " = new Function(\"pop = window.open('" + im.src + " ','fullscale','width=640,height=480,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';
im.title = 'Pulsa la imagen para verlo a tamaño completo';
}
}
}
}

Users browsing this forum: No registered users and 56 guests