﻿// JScript File

    function setdivsize() {
        if (document.body.offsetHeight) {
            if (navigator.appVersion.indexOf("MSIE 7") < 0) {
                var hulp = document.getElementById("content");  
                var height = document.body.offsetHeight-170;
                var width = document.body.offsetWidth-230;
                if (hulp != null) {
                    hulp.style.height= height + "px";
                    hulp.style.width = width + "px";
                }                    
            }
        }           
    }
    
    window.onresize=setdivsize;
    window.attachEvent("onload", setdivsize);