if(!this.ie6 && window.innerWidth && window.innerHeight && window.screen && window.screen.width && window.screen.height) {
winWidth = parseInt(window.innerWidth);
winHeight = parseInt(window.innerHeight);
maxWidth = parseInt(window.screen.width);
maxHeight = parseInt(window.screen.height);
}
if(this.ie) {
if(document.documentElement.clientWidth && document.documentElement.clientHeight && document.body && document.body.offsetWidth && document.body.offsetWidth) {
winWidth = parseInt(document.documentElement.clientWidth);
winHeight = parseInt(document.documentElement.clientHeight);
maxWidth = parseInt(document.body.offsetWidth);
maxHeight = parseInt(document.body.offsetHeight);
}
}
получаете полный размер документа (с учетом скроллинга)