﻿$(document).ready(function() {
    //GetRemainingWindowHeight()
    $(window).resize(function() {
        //GetRemainingWindowHeight();
    });
});

function GetRemainingWindowHeight() {
    var windowRemainingHeight = ($(window).height());
    SetHeaderAndFooterHeight(windowRemainingHeight);
}

function SetHeaderAndFooterHeight(height) {
}



