function resizebars(){
content = document.getElementById("MainContentWrapper").offsetHeight;
bar1 = document.getElementById("LeftBarWrapper").style;
bar2 = document.getElementById("RightBarWrapper").style;
master = document.getElementById("MasterWrapper").style;
background = document.getElementById("BackgroundOffset").style;

background.height = (content + 325) + "px";
master.height = (content + 100) + "px";
bar2.height = (content - 2) + "px";
bar1.height = (content - 2) + "px";
}
