if (document.all) {

docHeight = (document.all) ? document.body.clientHeight:window.innerHeight;
document.getElementById("body").style.height = (docHeight - 112)+"px";
document.write('<style type="text/css" media="screen">body {overflow: hidden}\n#body {overflow: hidden; padding-bottom: 0em}\n#content {height: 100%; overflow: hidden}\n#content .padding {height: 100%; overflow: auto}\n#footer {clear: none}</style>');
window.onresize = function () {
docHeight = (document.all) ? document.body.clientHeight:window.innerHeight;
document.getElementById("body").style.height = (docHeight - 112)+"px";
}

}