	function windowHeight() {
		if (window.innerHeight) // all except Explorer
			return window.innerHeight;

		if (document.documentElement && document.documentElement.clientHeight)
			// Explorer 6 Strict
			return document.documentElement.clientHeight;

		if (document.body) // all other Explorers
			return document.body.clientHeight;

		return 0;
	}
  	function arrange() {
  		document.getElementById("daten").style.height=windowHeight()-250;
  		x=parseInt(document.getElementById("daten").style.height)-parseInt(document.getElementById("daten").offsetHeight);
  		document.getElementById("daten").style.height=parseInt(document.getElementById("daten").style.height)+x
  	}

