// JavaScript Document
window.onload=resize;
window.onresize=resize;
window.onrefresh=resize;

function resize(){
	var availHeight;
	if (self.innerWidth) availHeight = self.innerHeight; // all except Explorer
	else if (document.documentElement && document.documentElement.clientHeight) availHeight = (document.documentElement.clientHeight); // Explorer 6 Strict Mode
 	else if (document.body)  availHeight = document.body.clientHeight; // other Explorers
	//document.getElementById("tbl").style.height=parseInt(availHeight - 20)+"px";
	//document.getElementById("content").style.height=parseInt(availHeight-300)+"px";
	document.getElementById("div_content").style.height=parseInt(availHeight - 305)+"px";
	//document.getElementById("gastenboek").style.height=parseInt(availHeight - 180)+"px";
	//alert(availHeight);
	//alert(document.getElementById("content").style.height);
}


