function check_hoehe_geht_nicht() {
   hoehetimer=setTimeout("check_hoehe()",500);
	if(document.documentElement.clientWidth < 980){
	   document.body.style.overflow='auto';
	}
	else {
   	if(document.documentElement.clientHeight < 580){
   	   document.body.style.overflow='auto';
	   }
	   else {
   	   document.body.style.overflow='hidden';
	   }
	}
}

function check_hoehe() {
   hoehetimer=setTimeout("check_hoehe()",500);
   if(window.innerWidth) {
	   if(window.innerWidth < 980){
	      document.body.style.overflow='auto';
	   }
	   else {
   	   if(window.innerHeight < 600){
   	      document.body.style.overflow='auto';
	      }
	      else {
   	      document.body.style.overflow='hidden';
	      }
	   }
   }
   //ok, das war für den Firefox, jetzt kommt der IE
   else {
		if(document.documentElement.clientWidth < 980){
	   	document.body.style.overflow='auto';
		}
		else {
   		if(document.documentElement.clientHeight < 600){
   	   	document.body.style.overflow='auto';
	   	}
	   	else {
   	   	document.body.style.overflow='hidden';
	   	}
		}
   }
}


