function threeColumn() {
	var elm = document.getElementById('main');
	elm.style.height = 'auto';
	var x = elm.offsetHeight;
	elm.style.height = x + "px";
	}
window.onload = threeColumn;