var breite;
var hoehe;
function Analyse()
{
if (navigator.appName=="Netscape")
  {
   breite = innerWidth;
   hoehe = innerHeight;
  }
   else
  {
   breite = document.body.offsetWidth;
   hoehe = document.body.offsetHeight;
  }  
  cont_hoehe = hoehe - 250;
  document.getElementById("content").style.height = cont_hoehe + "px";
 // alert('hoehe: ' + cont_hoehe);
}
