var YearSpan=function() {
YearSpan.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
YearSpan.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return YearSpan._staticInstance.get_path();},
GetYears:function(succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetYears',false,{},succeededCallback,failedCallback,userContext); }}
YearSpan.registerClass('YearSpan',Sys.Net.WebServiceProxy);
YearSpan._staticInstance = new YearSpan();
YearSpan.set_path = function(value) { YearSpan._staticInstance.set_path(value); }
YearSpan.get_path = function() { return YearSpan._staticInstance.get_path(); }
YearSpan.set_timeout = function(value) { YearSpan._staticInstance.set_timeout(value); }
YearSpan.get_timeout = function() { return YearSpan._staticInstance.get_timeout(); }
YearSpan.set_defaultUserContext = function(value) { YearSpan._staticInstance.set_defaultUserContext(value); }
YearSpan.get_defaultUserContext = function() { return YearSpan._staticInstance.get_defaultUserContext(); }
YearSpan.set_defaultSucceededCallback = function(value) { YearSpan._staticInstance.set_defaultSucceededCallback(value); }
YearSpan.get_defaultSucceededCallback = function() { return YearSpan._staticInstance.get_defaultSucceededCallback(); }
YearSpan.set_defaultFailedCallback = function(value) { YearSpan._staticInstance.set_defaultFailedCallback(value); }
YearSpan.get_defaultFailedCallback = function() { return YearSpan._staticInstance.get_defaultFailedCallback(); }
YearSpan.set_path("/webservices/YearSpan.asmx");
YearSpan.GetYears= function(onSuccess,onFailed,userContext) {YearSpan._staticInstance.GetYears(onSuccess,onFailed,userContext); }
