<!--
function Fensterhoehe () {
if (window.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;
  Hoehe = Fensterhoehe();
}

function neuAufbau () {
  if (Hoehe != Fensterhoehe())
    location.href = location.href;
}
  
function anpassen() {
  document.getElementById('iframe').style.height = Fensterhoehe () -321+ 'px';
}
-->
