В скрипке easy_resizer.html изголялся над всеми там имеющими цифрами - не помогло..ЛОГО тоже уменьшается..А оно у нас 910 на 200 должно быть и заменяет все шапку.
Может есть выход?
Вот содержимое easy_resizer.html
Код: Выделить всё
<script>
onload_functions.push('resizeimg();');
function resizeimg()
{
if (document.getElementsByTagName)
{
for (i=0; i<document.getElementsByTagName('img').length; i++)
{
im = document.getElementsByTagName('img')[i];
if (im.width > 600)
{
im.style.width = '600px';
eval("pop" + String(i) + " = new Function(\"pop = window.open('" + im.src + "','phpbbegypt ','fullscale','width=400,height=400,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 = 'Click Here To See Image Full Size ';
}
}
}
}
</script>

