function resizeCell() {
	var winH=450, menuCellHeight=450, headHeight=114, footHeight=20, targetCellHeight=0;
	if (window.innerHeight) {winH=window.innerHeight;}
	else if (document.documentElement.clientHeight) {winH=document.documentElement.clientHeight;}
	else if (document.body.clientHeight) {winH=document.body.clientHeight;}
	menuCellHeight = document.getElementById("menuCell").clientHeight;
	targetCellHeight=winH-headHeight-footHeight;
	if (targetCellHeight > 100) {menuCellHeight=targetCellHeight;}
	document.getElementById("menuCell").style.height=menuCellHeight+"px";
}

function periodicallyResize() {
	resizeCell();
	setInterval('resizeCell()', 1000)
}