$(function() {

    var showDialog = function(url, title) {
        query = $.parseQuery(url.split('?')[1]);
        {
            //use iframe
            $.urlParser.path = '/Content/js/closedialog.htm';
            closeurl = $.urlParser.assemble();
            window.CurrentModalDialog = $('<div style="height: ' + query.height + 'px; width:' + query.width + 'px"><iframe frameborder="0" border="0"  style="height: ' + query.height + 'px; width:' + query.width + 'px; border:0px;" src="' + url + '&iframe=true&returnUrl=' + closeurl + '"></iframe></div>')
                         .dialog({ autoOpen: false, title: title, modal: true, height: 'auto', width: query.width })
                         .dialog('open');

        }

    }

    $.getJSON("http://home.healthyschools.gov.uk/Messages/UnreadCount?onlyNotifications=true&callback=?", {},
    function(e) {
        var notificationCount = parseInt(e);
        if (notificationCount > 0) {
            showDialog("http://home.healthyschools.gov.uk/Messages/Notifications?width=700&height=500&FlashAuth = " + FlashAuth, "Website Notifications");
        }
    });
    
});