function setContentHeight()
{
	if (document.getElementById)
	{
		var windowHeight = getWindowHeight();
		
		if (windowHeight>0)
		{	
			var contentHeight = parseFloat(windowHeight-140);

			document.getElementById("content").style.height = contentHeight + "px";
			document.getElementById("content").style.overflow = "auto";
		}
	}
}
