var ShowSponsors=function() {
ShowSponsors.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
ShowSponsors.prototype={
GetSponsors:function(succeededCallback, failedCallback, userContext) {
return this._invoke(ShowSponsors.get_path(), 'GetSponsors',false,{},succeededCallback,failedCallback,userContext); },
GetForecast:function(pZip,succeededCallback, failedCallback, userContext) {
return this._invoke(ShowSponsors.get_path(), 'GetForecast',false,{pZip:pZip},succeededCallback,failedCallback,userContext); }}
ShowSponsors.registerClass('ShowSponsors',Sys.Net.WebServiceProxy);
ShowSponsors._staticInstance = new ShowSponsors();
ShowSponsors.set_path = function(value) { ShowSponsors._staticInstance._path = value; }
ShowSponsors.get_path = function() { return ShowSponsors._staticInstance._path; }
ShowSponsors.set_timeout = function(value) { ShowSponsors._staticInstance._timeout = value; }
ShowSponsors.get_timeout = function() { return ShowSponsors._staticInstance._timeout; }
ShowSponsors.set_defaultUserContext = function(value) { ShowSponsors._staticInstance._userContext = value; }
ShowSponsors.get_defaultUserContext = function() { return ShowSponsors._staticInstance._userContext; }
ShowSponsors.set_defaultSucceededCallback = function(value) { ShowSponsors._staticInstance._succeeded = value; }
ShowSponsors.get_defaultSucceededCallback = function() { return ShowSponsors._staticInstance._succeeded; }
ShowSponsors.set_defaultFailedCallback = function(value) { ShowSponsors._staticInstance._failed = value; }
ShowSponsors.get_defaultFailedCallback = function() { return ShowSponsors._staticInstance._failed; }
ShowSponsors.set_path("/vcclub/ShowSponsors.asmx");
ShowSponsors.GetSponsors= function(onSuccess,onFailed,userContext) {ShowSponsors._staticInstance.GetSponsors(onSuccess,onFailed,userContext); }
ShowSponsors.GetForecast= function(pZip,onSuccess,onFailed,userContext) {ShowSponsors._staticInstance.GetForecast(pZip,onSuccess,onFailed,userContext); }
