
function fixH(one,two) {
if (document.getElementById(one)) {
var lh=document.getElementById(one).offsetHeight-65;
var rh=document.getElementById(two).offsetHeight-65;
var nh = Math.max(lh, rh);
document.getElementById(one).style.height=nh+"px";
document.getElementById(two).style.height=nh+"px";
}
}

//


window.onload=function(){
fixH('sectiune_articol','continut_dreapta');
}