//Set the dynamic width of the main content column
function SetWidth() {
    TotalWidth = document.documentElement.clientWidth - 448;
    TotalWidth += "px";
    document.getElementById("Content").style.width = TotalWidth;
}

//Let level out the content and release date columns
function SetHeight() {
    SetWidth(); //Set the width of the main content column on first load

    //Get the widths of the columns
    ContentHeight = document.getElementById("Content").offsetHeight;
    RightColumnHeight = document.getElementById("RightColumn").offsetHeight;

    //Adjust for spacing and boarders
    ContentHeight -= "7";
    RightColumnHeight -= "7";

    //Set new heights
    if (ContentHeight > RightColumnHeight) {
        ContentHeight += "px";
        document.getElementById("RightColumn").style.height = ContentHeight;
    } else {
        RightColumnHeight += "px";
        document.getElementById("Content").style.height = RightColumnHeight;
    }
}

//Show the Menu
function show(menu) {
    document.getElementById(menu).className = "Visible";
}
//Hide the Menu
function hide(menu) {
    document.getElementById(menu).className = "Hidden";
}