
var fensterHoehe;
var hoehe;
var textlaenge;
if (self.innerHeight){ // all except Explorer    
    fensterHoehe = self.innerHeight;
}
else if (document.documentElement && document.documentElement.clientHeight){    // Explorer 6 Strict Mode
    fensterHoehe = document.documentElement.clientHeight;
}
else if (document.body){ // other Explorers    
    fensterHoehe = document.body.clientHeight;
}

hoehe=fensterHoehe-216;  //Kopf+Fuß der Seite = 214px



