window.onload = function allocateSidebarHeight() {
var contentDom = document.getElementById("contentcolumn");
var sidebarDom = document.getElementById("leftcolumn");
if((contentDom.offsetHeight) > sidebarDom.offsetHeight) {
sidebarDom.style.height = (contentDom.offsetHeight -2)+"px"; }
else {contentDom.style.height = (sidebarDom.offsetHeight -2)+"px"; }
}