// script om hoogte vh actieve venster op te halen

N=window.navigator.appName.substring(0,8);
function hoogte()
{
if (document.body.clientHeight) {
    h=document.body.clientHeight;
    } else {
    if (window.innerHeight) {
        h=window.innerHeight;
       } else {
       h=500;
       }
    }
return h
}

// if(N=="Microsof"){h=document.body.clientHeight;}
// if(N=="Netscape"){h=window.innerHeight;}

