// used to help with IE < 9 -> Javascript-Preview mit hoem inhalt ohne sprung zu element.

function body_big(){
	if(document.body.height != null){
		document.body.height = '8000px';
	}
	if (document.body.style.height != null) {
		document.body.style.height = '8000px';
	}
}

