// Fix Footer
fixFooter = function() {
	if (document.getElementById) {
		var leftCol = document.getElementById("LeftColumn");
		var content = document.getElementById("Content");

		var height_leftCol = parseInt(leftCol.offsetHeight) - 83;
		var height_content = parseInt(content.offsetHeight);
		
		if (height_leftCol > height_content) 
			content.style.height = height_leftCol + "px";
	}
}

window.onload = fixFooter;