function GetWorldCustCount() {  
  $.ajax(
  {
  type: "POST", 
  url: g_WebPath + "/TooltipData.asmx/GetWorldCustomerCount", 
  contentType: "application/json; charset=utf-8",
  dataType: "json",
  success: function(result) {
        $("#WorldCount").html(result.d + " districts across the world use Skyward.");
     },
  error: function(r, status) {
       if (status === "error") {
          var errorMessage = $.parseJSON(r.responseText); 
          alert(errorMessage.Message);
       }
     } 
  });
}

