
window.onresize = function() { ContentResize(); };
var _isHelpVisible = false;

function FixContentWidth(isHelpVisible)
{
    _isHelpVisible = isHelpVisible;
    ContentResize();
}

function ContentResize()
{
    if (document.getElementById("content_panel") && document.all  && _isHelpVisible)
    {
        if (_isHelpVisible)
        {
            document.getElementById("content_panel").style.width = (document.body.offsetWidth - CalculatePadding()) + "px";
        }
        else
        {
            document.getElementById("content_panel").style.width = "auto";
        }
    }
}

function CalculatePadding()
{
    if (document.getElementById("student_selection"))
    {
        return 580;
    }
    else
    {
        return 380;
    }
}