/* Copyright Calcu-Tech 2005 */ function setUp() {//v1.0 // Resize the Browser to Maximum Sizes. moveTo(-5, -5); resizeTo(window.screen.availWidth + 8, window.screen.availHeight + 8); //Finding Inner Window Dimensions. if (document.body.clientWidth) { screenHeight = document.body.clientHeight screenWidth = document.body.clientWidth;} if (window.innerWidth) { screenHeight = window.innerHeight; screenWidth = window.innerWidth;} MainCell.style.height = screenHeight - 170; }