//Javascript Document
//Makes sidebar and main the same height
// minus 20 pixels for top and bottom padding.
window.onload = divHeight;
function divHeight(){
       newHeight = document.getElementById('leftMPanel').offsetHeight;
       document.getElementById('rightMPanel').style.height = (newHeight-20)+"px";
}

