<!--
function bodyHeight() {

if (navigator.appName=='Netscape')
{
document.getElementById('maintable').style.height = window.innerHeight + 'px';
}
else if (navigator.appName=='Microsoft Internet Explorer')
{
document.getElementById('maintable').style.height = document.body.clientHeight + 'px';
}
else
{
document.getElementById('maintable').style.height = window.innerHeight + 'px';
}
}

window.onload = function() { bodyHeight(); }

//-->
