var AtlasService=function() {
AtlasService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
AtlasService.prototype={
GetCatStats:function(strPubID,succeededCallback, failedCallback, userContext) {
return this._invoke(AtlasService.get_path(), 'GetCatStats',false,{strPubID:strPubID},succeededCallback,failedCallback,userContext); }}
AtlasService.registerClass('AtlasService',Sys.Net.WebServiceProxy);
AtlasService._staticInstance = new AtlasService();
AtlasService.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; AtlasService._staticInstance._path = value; }
AtlasService.get_path = function() { return AtlasService._staticInstance._path; }
AtlasService.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); }
AtlasService._staticInstance._timeout = value; }
AtlasService.get_timeout = function() { 
return AtlasService._staticInstance._timeout; }
AtlasService.set_defaultUserContext = function(value) { 
AtlasService._staticInstance._userContext = value; }
AtlasService.get_defaultUserContext = function() { 
return AtlasService._staticInstance._userContext; }
AtlasService.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; AtlasService._staticInstance._succeeded = value; }
AtlasService.get_defaultSucceededCallback = function() { 
return AtlasService._staticInstance._succeeded; }
AtlasService.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; AtlasService._staticInstance._failed = value; }
AtlasService.get_defaultFailedCallback = function() { 
return AtlasService._staticInstance._failed; }
AtlasService.set_path("/AtlasService.asmx");
AtlasService.GetCatStats= function(strPubID,onSuccess,onFailed,userContext) {AtlasService._staticInstance.GetCatStats(strPubID,onSuccess,onFailed,userContext); }
