
function Fensterhoehe () {
  if (window.innerHeight) {
		return window.innerHeight;
  } else if (document.body && document.body.offsetHeight) {
		return document.body.offsetHeight;
  } else {
		return 0;
  }
}



function neuAufbau () {

	var MyHeight = Fensterhoehe();

	if(MyHeight > 760){	
		var TargetHeight = 350 + (MyHeight/23);
		document.getElementById('centerSwf').style.top= + TargetHeight + "px";
	}else{
		document.getElementById('centerSwf').style.top="350px";
	}

}

/* Überwachung von Netscape initialisieren */
if (!window.Hoehe && window.innerHeight) {
	window.onresize = neuAufbau;
	//Hoehe = Fensterhoehe();
}
