
   function changesize() {
    if (navigator.appName == 'Microsoft Internet Explorer') {
	 hoehe = document.body.offsetHeight;
	} else {
     hoehe = window.innerHeight;
	}
	if (hoehe - 80 > 517) {
     document.getElementById('Anzeige').style.height = hoehe - 80;
	}
   }
