<script type="text/javascript">
//<![CDATA[
    $(document).ready(function()
    {
        initTblGrid();

        setInterval(function() { document.location.reload(); }, 60 * 1000);
    });

    $(window).resize(function()
    {
        initTblGrid();
    });

    function initTblGrid()
    {
        $("div.divGridWrap").each(function(i)
        {
            if ($(this).attr("scrollHeight") >= $(this).attr("offsetHeight"))
            {
                $(this).find("#tblGrid").eq(0).width(function() { return $(this).parent().width() - 17; });
            }
            else
            {
                $(this).find("#tblGrid").eq(0).width(function() { return $(this).parent().width(); });
            }
        });    
    }
//]]>
</script>