window.onload = function() {
				if (window.innerHeight) {
					document.getElementById("indhold").style.height = (window.innerHeight-242) +"px";
					document.getElementById("indhold").style.minHeight = (window.innerHeight-242) +"px";

				} else if (document.documentElement.clientHeight) {
					document.getElementById("indhold").style.height = (document.documentElement.clientHeight-333) +"px";
					document.getElementById("indhold").style.minHeight = (document.documentElement.clientHeight-333) +"px";
				} else {
					document.getElementById("indhold").style.height = (document.body.clientHeight-242) +"px";
					document.getElementById("indhold").style.minHeight = (document.body.clientHeight-242) +"px";
				}
			}

window.onresize = function() {
				if (window.innerHeight) {
					document.getElementById("indhold").style.height = (window.innerHeight-242) +"px";
					document.getElementById("indhold").style.minHeight = (window.innerHeight-242) +"px";

				} else if (document.documentElement.clientHeight) {
					document.getElementById("indhold").style.height = (document.documentElement.clientHeight-242) +"px";
					document.getElementById("indhold").style.minHeight = (document.documentElement.clientHeight-242) +"px";
				} else {
					document.getElementById("indhold").style.height = (document.body.clientHeight-242) +"px";
					document.getElementById("indhold").style.minHeight = (document.body.clientHeight-242) +"px";
				}
			}
			