
<!--

function ResizeBody()
{
    var body = document.getElementById("Body");
    var footer = document.getElementById("Footer");

    var height = GetHeight() - footer.offsetHeight;

    if (height > body.offsetHeight)
    {
        body.style.height = height + "px";
    }
}

function GetHeight()
{
    if (window.innerHeight > 0)
    {
        return window.innerHeight;
    }
    else
    {
        return document.documentElement.clientHeight;
    }
}

window.onload = function()
{
   ResizeBody();
};

window.onresize = function()
{
    ResizeBody();
};

-->

