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