// fixH by BonRouge ( http://bonrouge.com/ 2006 )
// Keeps defined divs (lines 32-) same height

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

// Define divs to be processed

window.onload=function(){
fixH('right','content');
}