function Fensterweite()
{
 if (window.innerWidth) return window.innerWidth;
 else if (document.body && document.body.offsetWidth) return document.body.offsetWidth;
 else return 0;
}

function Fensterhoehe()
{
 if (window.innerHeight) return window.innerHeight;
 else if (document.body && document.body.offsetHeight) return document.body.offsetHeight;
 else return 0;
}


function neuAufbau()
{
 if (Weite != Fensterweite() || Hoehe != Fensterhoehe())
 window.history.go(0);
}

  /*Überwachung von Netscape initialisieren*/
 if(!window.Weite && window.innerWidth)
  {
   window.onresize = neuAufbau;
   Weite = Fensterweite();
   Hoehe = Fensterhoehe();
   h = (Hoehe-293)/2
   h_fa = (Hoehe-520)/2
   h2 = (Hoehe-550)/2
   w2 = (Weite-750)/2
   w3 = Weite;
   //if (parent.zero.document.myform) {
   //	parent.zero.document.myform.hoehe.value = h
   //} 
  }
