function $(obj)
{
	return document.getElementById(obj);
}
function bodyLoad()
{
	var height_ContentDiv=$("contentDiv").offsetHeight;
	if(height_ContentDiv>1000)
	{
	    $("leftDiv").style.height=height_ContentDiv+365+"px";
	    $("rightDiv").style.height=height_ContentDiv+365+"px";
	}
	else
	{
	    $("leftDiv").style.height="800px";
	    $("rightDiv").style.height="800px";
	}
}
