﻿function getNotificationCount()
{          
    $.ajax({  
        type: "POST",  
        url: "Service/KhoroWebService.asmx/GetNotificationCount", 
        success: function(msg) {
            var result = $(msg).find('string').text();            
            if(result == "0"){            
                $("#showNotifications").html(''); 
            }
            else
            {
                if(result == "1")
                {
                    $("#showNotifications").html('Notification('+result+')'); 
                }
                else
                {
                    $("#showNotifications").html('Notifications('+result+')'); 
                }
            }
        }
    });
}