//Author: Huming Tang
var staticHeight = document.getElementById("CONTENT").clientHeight;
var padd = 0;
	//alert(staticHeight);
try {
	var h = parseInt(staticHeight) + padd;
	//document.getElementById("LEFT_SECTION").style.height = h + "px";	
	document.getElementById("CENTER_SECTION").style.height = h + "px";	
}
catch(e)
{
	//DO NOTHING
}

try {
	var h = parseInt(staticHeight) + padd;
	//document.getElementById("LEFT_SECTION").style.height = h + "px";	
	//document.getElementById("RIGHT_SECTION").style.height = h + "px";	
}
catch(e)
{
	//if this doesn't work, it means there is no right section - make the center section wider
	//document.getElementById("CONTENT").style.width = 910 + "px";	

}

	






