var PrideAngelWebService=function() {
PrideAngelWebService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
PrideAngelWebService.prototype={
TrackVisitorComplete:function(succeededCallback, failedCallback, userContext) {
return this._invoke(PrideAngelWebService.get_path(), 'TrackVisitorComplete',false,{},succeededCallback,failedCallback,userContext); },
GetCounties:function(CountryID,succeededCallback, failedCallback, userContext) {
return this._invoke(PrideAngelWebService.get_path(), 'GetCounties',false,{CountryID:CountryID},succeededCallback,failedCallback,userContext); },
SetCounty:function(CountyID,succeededCallback, failedCallback, userContext) {
return this._invoke(PrideAngelWebService.get_path(), 'SetCounty',false,{CountyID:CountyID},succeededCallback,failedCallback,userContext); }}
PrideAngelWebService.registerClass('PrideAngelWebService',Sys.Net.WebServiceProxy);
PrideAngelWebService._staticInstance = new PrideAngelWebService();
PrideAngelWebService.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; PrideAngelWebService._staticInstance._path = value; }
PrideAngelWebService.get_path = function() { return PrideAngelWebService._staticInstance._path; }
PrideAngelWebService.set_timeout = function(value) { var e = Function._validateParams(arguments, [{name: 'timeout', type: Number}]); if (e) throw e; if (value < 0) { throw Error.argumentOutOfRange('value', value, Sys.Res.invalidTimeout); }
PrideAngelWebService._staticInstance._timeout = value; }
PrideAngelWebService.get_timeout = function() { 
return PrideAngelWebService._staticInstance._timeout; }
PrideAngelWebService.set_defaultUserContext = function(value) { 
PrideAngelWebService._staticInstance._userContext = value; }
PrideAngelWebService.get_defaultUserContext = function() { 
return PrideAngelWebService._staticInstance._userContext; }
PrideAngelWebService.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; PrideAngelWebService._staticInstance._succeeded = value; }
PrideAngelWebService.get_defaultSucceededCallback = function() { 
return PrideAngelWebService._staticInstance._succeeded; }
PrideAngelWebService.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; PrideAngelWebService._staticInstance._failed = value; }
PrideAngelWebService.get_defaultFailedCallback = function() { 
return PrideAngelWebService._staticInstance._failed; }
PrideAngelWebService.set_path("/PrideAngelWebService.asmx");
PrideAngelWebService.TrackVisitorComplete= function(onSuccess,onFailed,userContext) {PrideAngelWebService._staticInstance.TrackVisitorComplete(onSuccess,onFailed,userContext); }
PrideAngelWebService.GetCounties= function(CountryID,onSuccess,onFailed,userContext) {PrideAngelWebService._staticInstance.GetCounties(CountryID,onSuccess,onFailed,userContext); }
PrideAngelWebService.SetCounty= function(CountyID,onSuccess,onFailed,userContext) {PrideAngelWebService._staticInstance.SetCounty(CountyID,onSuccess,onFailed,userContext); }
