/**
 * @author LEC
 */
function fixLayout(){
	//window.alert("function accessed");

	try{
		var overallHeight = document.getElementById("contentAndRightCell").offsetHeight;
		var contentContainer = document.getElementById("rightCol");
		var innerTableHeight = document.getElementById("interiorBody").offsetHeight;
		var diffHeight = innerTableHeight - contentContainer.offsetHeight;
		//window.alert("overall: " + overallHeight + " column: " + contentHeight );
		if(innerTableHeight < overallHeight){
			contentContainer.style.height = (overallHeight - diffHeight) + "px";	
		}
	}catch(err){
		// do nothing
		//window.alert("error detected: " + err);
	}finally{
		//window.alert("no error detected, but code failed");
	}
}

