jQuery(document).ready(function()
{
    jQuery('#dialogBox').dialog({
        autoOpen: false,
        open: function(event, ui)
        {
            jQuery('#fullScreen').css('display', 'block');
        },
        
        close: function(event, ui)
        {
            jQuery('#fullScreen').css('display', 'none');
        }


    });
});
