function FensterBreite()
{
 if (self.innerWidth) return self.innerWidth;
 else if (document.body && document.body.clientWidth) return document.body.clientWidth;
 else return 0;
}

function Fensterhoehe()
{
 if (self.innerHeight) return self.innerHeight;
 else if (document.body && document.body.clientHeight) return document.body.clientHeight;
 else return 0;
}


function neuAufbau()
{
 if (Breite != FensterBreite() || Hoehe != Fensterhoehe())
 self.history.go(0);
}

/*Überwachung von Netscape initialisieren*/
if(!self.Breite && self.innerWidth)
  {
   self.onresize = neuAufbau;
   Breite = FensterBreite();
   Hoehe = Fensterhoehe();
  }

