//Skrypt nie dla Internet Explorera 6 - dopasowywanie wysokości strony do okna przeglądarki

function Wysokna(){
if (typeof document.body.style.maxWidth != "undefined") {

if( typeof( window.innerHeight ) == 'number' ) {
//Nie-IE
wys=innerHeight;
}else{
//IE7
wys=document.documentElement.clientHeight
}
document.images.imgwys.style.height=wys-370+"px";
setTimeout("Wysokna()",1000);
}
}

window.document.onload=setTimeout("Wysokna()",1000);

