﻿// JScript File

function AdjustCols()
{
    var htblMaster = window.document.getElementById('tblMaster').offsetHeight;
    var himgHeader = window.document.getElementById('ctl00_imgHeader').offsetHeight;
    var htopMenu = window.document.getElementById('topMenu').offsetHeight;
    var hcentercol = window.document.getElementById('centercol').offsetHeight;
    var hfooterMenu = window.document.getElementById('FooterMenu').offsetHeight;
    var hConst = 10;
    var hsum = himgHeader+htopMenu+hcentercol+hfooterMenu+hConst;

    //alert(window.document.form1.offsetHeight);
    //alert(htblMaster);
    //alert(hsum);
    
    if (htblMaster > hsum)
    {
        window.document.getElementById('centercol').style.height = hcentercol + htblMaster - hsum;
        window.document.getElementById('rightcol').style.height = hcentercol + htblMaster - hsum;
    }
    if (window.document.getElementById('tblShowProduct') != null)
    {
        window.document.getElementById('tblShowProduct').style.height = hcentercol - 50;
    }
}

