页面长度获取有关问题

页面长度获取问题
window.document.body.scrollHeight                   HTML的body 长度
document.getElementById("topDIV").offsetHeight      DIV长度
document.getElementById("middleDIV").style.top      DIV的TOP位置
document.getElementById("middleDIV").style.height   DIV的高度
window.screen.availWidth,                           当前屏幕的宽带
window.screen.availHeight                           当前屏幕的高带

屏幕可用工作区高度: window.screen.availHeight
屏幕可用工作区宽度: window.screen.availWidth