function getColumnHeight(){
	var columnHeight, column;
	columnHeight = document.getElementById('mainContent').offsetHeight;
	column = document.getElementById('column');
	column.style.height = columnHeight + 150 + "px";
}
window.onload=function(){ 
     if(document.getElementsByTagName){ 
		  getColumnHeight();
     } 
}


