window.onfocus = findWindowDim;
window.onload = findWindowDim;
window.onresize = findWindowDim;
function findWindowDim(){
var ContentHeight = document.getElementById('Content').offsetHeight;
var MenuHeight = document.getElementById('TopMenu').offsetHeight;
var objCredits = document.getElementById('Credits')
var objFooter = document.getElementById('Footer')
if (document.body.clientHeight > 480){
function hideError() {
return true;
}
window.onerror = hideError;
}
if (window.setCursor && (window.innerHeight > 480)){
function hideError() {
return true;
}
window.onerror = hideError;
}
{
footerTop = MenuHeight + ContentHeight + 40;
footerTopPx = footerTop+"px"
objFooter.style.top = footerTopPx;
}
creditsTop = footerTop - 50
creditsTopPx = creditsTop+"px"
objCredits.style.top = creditsTopPx;
}