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