window.onload = fixHeight
window.onresize= fixHeight;
function fixHeight()
{
	var HeaderHeight = 90
	var FooterHeight = 35
	
	var table = document.getElementById("tblcontent")
	table.style.height = document.body.clientHeight - (HeaderHeight + FooterHeight)
}


