var Hoehe, ZHoehe;

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 (Hoehe != Fensterhoehe())
    window.history.go(0);
}

function ermittleZHoehe() {
	ZHoehe = (Hoehe-430)/2;
}

function schreibeTR() {
document.write("<tr height=" + ZHoehe + ">");
}

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

ermittleZHoehe();
