function fixH()
{
if (!(document.getElementById('col1_content')) )
{return false;}
else
{var lh=document.getElementById('col3_content').offsetHeight;
var rh=document.getElementById('col1_content').offsetHeight;
document.getElementById('col3_content').style.height=(lh>rh)? lh+"px" : rh+"px";
document.getElementById('col1_content').style.height=(rh>lh)? rh+"px" : lh+"px";
}
}
window.onload=function(){fixH()}