function Fensterhoehe () {
 var Breite,Hoehe;

Breite = screen.width;
Hoehe  = screen.height;
var elementhoehe= 459;



 var hoehe;
 var Rand;
 if (window.innerHeight) {
	hoehe=window.innerHeight;
  } else if (document.body  && document.documentElement.clientHeight) {
     hoehe=document.documentElement.clientHeight
  } else {
    hoehe=0;
  }
  Rand=(hoehe-elementhoehe)/2;
  return Rand;
}

function Fensterweite () {
	 var Breite,Hoehe;
	 var fensterbreite, Randbreite;
	Breite = screen.width;
	Hoehe  = screen.height;
	 var elementbreite= 960;
	if (window.innerWidth) {
		fensterbreite=window.innerWidth;
	  } else if (document.body  && document.body.clientWidth) {
		fensterbreite=document.body.clientWidth;
	  } else {
		fensterbreite= 0;
	  }
	  Randbreite=(fensterbreite-elementbreite)/2;
	  return Randbreite;
}

function neuAufbau () {
  if (Rand != Fensterhoehe())
    location.href = location.href;
}

/* Überwachung von Netscape initialisieren */
if (!window.Weite && window.innerWidth) {
  window.onresize = neuAufbau;
  Rand = Fensterhoehe();
  var Randbreite=Fensterweite();
  if(Rand<0)
  Rand=0;
  if(Randbreite<0)
  Randbreite=0;
	}
