Oli: Fensterbeite von Index

Beitrag lesen

Kann man das so machen? Wenn ja wo liegt der Fehler?:

<!--

function Fensterweite()
   {
    if (parent.frame["index.html"].innerWidth) return window.innerWidth;
    else if (document.body && document.body.offsetWidth) return document.body.offsetWidth;
    else return 0;
   }

function Fensterhoehe()
   {
    if (parent.frame["index.html"].innerHeight) return window.innerHeight;
    else if (document.body && document.body.offsetHeight) return document.body.offsetHeight;
    else return 0;
   }

/*Überwachung von Netscape initialisieren*/
   if(!window.alteWeite && window.innerWidth)
     {
      window.onresize = neuAufbau;
       Weite = Fensterweite();
      Hoehe = Fensterhoehe();
     }

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

//-->

Danke Euch
Gruss Oli