<!-- Begin to hide script contents from old browsers.

// Set the onload and onresize handlers
window.onload = HandleSize;
window.onresize = HandleSize;

function HandleSize()
{
    var mainDiv = document.getElementById("mainDiv");
    var mainTable = document.getElementById("mainTable");
    var copyDiv = document.getElementById("copyrightDiv");
	var height = (document.documentElement)? document.documentElement.clientHeight : document.body.clientHeight;
    var tableHeight = mainTable.scrollHeight;
    
    if (mainDiv && height > tableHeight)
    {
		mainDiv.style.height = height + "px";
		if (copyDiv) copyDiv.style.top = (height - tableHeight) + "px";
    }
    else
    {
		mainDiv.style.height = tableHeight + "px";
		if (copyDiv) copyDiv.style.top = "0px";
    }
}

// End the hiding here. -->