lColObj = document.getElementById('leftColumnIn');
rColObj = document.getElementById('centralColumn');

lHeight = lColObj.clientHeight;
rHeight = rColObj.clientHeight;

if(lHeight>=rHeight){
 rColObj.style.height = lHeight + "px";
}
else {
 lColObj.style.height = rHeight + "px";
}