function doResize () {
	offset = 141;
	// calculation of offset
	tblContent.style.height = document.body.offsetHeight - offset;
}

function doInitialize() {
	window.onresize = doResize; 
	doResize ();
}
