﻿$(document).ready(function(){

    resize();
    
    window.onresize = function() {
        resize();
    }

});

function resize() {

    var width = $(window).width();
    var height = $(window).height();

    $("#content_table").css('height', (height - 230) + 'px');

}
