function heightFix() {
	var elm = document.getElementById('content');
	elm.style.height = 'auto';
	var x = elm.offsetHeight;
	/**
	* 01/17/07 
	* this was the original setting before IE7
	* //elm.style.height = (x - 80) + "px";
	*/
	elm.style.height = (x + 60) + "px";
}
