﻿//use jquery to set height to 100%, requires no hacks

$(function() {
    $('#container').height("100%").css("background-color", "#2F373A").hide().animate(
{
    opacity: 'toggle'
}, 500,
function() {
    $(this).height("100%");
}
    );
    // Allows the div.blockMsg style in CSS to
    //  override BlockUI's defaults.
    //$.blockUI.defaults.css = {};

    // Add the BlockUI call as an onclick handler
    //  of the Save button.
    //$addHandler($get('Save'), 'click', function() {
    //    $('#EntryForm').block({ message: null });
    //});

    // Get a reference to the PageRequestManager.
    //var prm = Sys.WebForms.PageRequestManager.getInstance();

    // Unblock the form when a partial postback ends.
    //prm.add_endRequest(function() {
    //    $('#EntryForm').unblock();
    //});
});