window.onload = function () {
    var center = document.getElementById('center');
    var RightHeight = parseInt(document.getElementById('right').offsetHeight);
    if (RightHeight>parseInt(center.offsetHeight)) center.style.height = RightHeight + 'px';
}


