﻿function setBodyHeightToContentHeight() {
    try {
        //document.getElementById("contentBox").style.height = "auto !important;";
        //alert(document.getElementById('contentBox').offsetHeight);

        var wh = getWindowHeight() - 327; //155;
        var ch = document.getElementById('contentBox').offsetHeight;

        window.status = "wh=" + wh + " ch=" + ch;
        
        
        document.getElementById("contentBox").style.height = Math.max(wh, ch) + "px"
        //document.getElementById("contentBox").style.height =  getWindowHeight() - 155 + "px";
    }
    catch (x) {
    }
}

function getWindowHeight() { if (window.self && self.innerHeight) { return self.innerHeight; } if (document.documentElement && document.documentElement.clientHeight) { return document.documentElement.clientHeight; } return 0; }


function closeWindow() {

    window.open('', '_parent', '');
    window.close();
}
