//-- dynamic scrollfield --
var korr=45;
var feldtop=225;
function resizeit() {

//--netscape patch weil wrapper-hoehe nicht automatisch--
if (navigator.userAgent.indexOf("Netscape") > -1) {
y = window.innerHeight-korr;
if (y<1) {y=1;}
document.getElementById("wrapper").style.height = y+"px";
}

if (document.body.offsetHeight && document.all){
y = document.body.offsetHeight-feldtop-korr;
if (y<1) {y=1;}
document.all.inhalt.style.height = y;
}
else if (window.innerHeight && document.getElementById) {
y = window.innerHeight-feldtop-korr;
if (y<1) {y=1;}
document.getElementById("inhalt").style.height = y+"px";
}

}