function calcContentHeight() {
    var contentHeight = $('displayArea').getHeight();
    var menuHeight = $('sidepanel').getHeight();
    		  
    if(contentHeight < menuHeight) {
        return menuHeight;
    } else {
        return contentHeight;
    }
    return false;
}
