$(window).resize(function() { resetTable(); });
$(document).ready(function() { resetTable(); });

function resetTable() {
    try {
        var myElement = document.getElementById('bodyTable');
        myElement.style.height = "";
        var availheight = $(window).height() - $('#headerTable').height() - $('#footerTable').height();

        if (availheight > $('#bodyTable').height()) {
            myElement.style.height = availheight;
        }
        if (availheight < 400) {
            myElement.style.height = 400;
        }
    }
    catch (err)
    { }
}
function calcPopup(url) {

    window.open(url, 'calc', 'width=620,height=600,toolbar=0,location=0,status=0,menubar=0,resizable=0,scrollbars=1');

}

