function Fensterweite() {
  if (window.innerWidth) return window.innerWidth;
  else return 0;
}

function Fensterhoehe() {
  if (window.innerHeight) return window.innerHeight;
  else return 0;
}


function neuAufbau() {
  if (Weite != Fensterweite() || Hoehe != Fensterhoehe())
  window.history.go(0);
}

if (!window.Weite && window.innerWidth) {
  window.onresize = neuAufbau;
  Weite = Fensterweite();
  Hoehe = Fensterhoehe();
}
