
function Adt_ResizeHeight()
{
	if (document.getElementById("bottom") == null) 
		return;
	
	xHeight = document.getElementById("content").scrollHeight - 95;
	document.getElementById("SideNavBody").style.height = xHeight +"px";
		
	//		xWidth = document.getElementById("MainTable").scrollWidth + document.getElementById("SideNav").scrollWidth - 208;
	//		if (document.getElementById("navTop").scrollWidth < xWidth) 
	//		{
	//			document.getElementById("navTop").style.width = xWidth + "px";
	//			document.getElementById("bottom").style.width = xWidth + "px";
	//		};

	xWidth = document.getElementById("MainTable").scrollWidth;

	if (document.getElementById("navTop").scrollWidth < xWidth) 
	{
		document.getElementById("navTop").style.width = xWidth + "px";
		document.getElementById("bottom").style.width = xWidth + "px";
	};
	
	xmargin = Math.floor((document.body.clientWidth - xWidth)/2);
	if (xmargin < 0)
		document.getElementById("bodyAll").style.marginLeft = "0px";
		
	if (xmargin > 0)
		document.getElementById("bodyAll").style.marginLeft = xmargin + "px";
				
}


