var Personalization =
{
    _serviceUrl : '',

    get_serviceUrl : function()
    {
        return Personalization._serviceUrl;
    },

    set_serviceUrl : function(value)
    {
        if (Personalization._serviceUrl !== value)
        {
            Personalization._serviceUrl = value;
        }
    },

    hideDashboardMainSection : function(containerId)
    {
        $get(containerId).style.display = 'none';
        Sys.Net.WebServiceProxy.invoke(Personalization._serviceUrl, 'HideMainSection', true, null, null, null, null);
    },

    hideFaqSection : function(containerId)
    {
        $get(containerId).style.display = 'none';
        Sys.Net.WebServiceProxy.invoke(Personalization._serviceUrl, 'HideFaq', true, null, null, null, null);
    },

    hideDashboardItem : function(containerId, key)
    {
        $get(containerId).style.display = 'none';
        Sys.Net.WebServiceProxy.invoke(Personalization._serviceUrl, 'HideDashboardItem', true, {'key': key}, null, null, null);
    }
}

if (typeof(Sys) != 'undefined')
{
    Sys.Application.notifyScriptLoaded();
}
if(typeof(Sys)!=='undefined')Sys.Application.notifyScriptLoaded();