Type.registerNamespace('WebRoot.AJAX');
WebRoot.AJAX.OtherMethods=function() {
WebRoot.AJAX.OtherMethods.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
WebRoot.AJAX.OtherMethods.prototype={
Ping:function(succeededCallback, failedCallback, userContext) {
return this._invoke(WebRoot.AJAX.OtherMethods.get_path(), 'Ping',false,{},succeededCallback,failedCallback,userContext); },
UpdateEventListControlInfo:function(formKey,sControlID,iBlogCategoryGroupID,iFutureMonths,iMaxRecords,succeededCallback, failedCallback, userContext) {
return this._invoke(WebRoot.AJAX.OtherMethods.get_path(), 'UpdateEventListControlInfo',false,{formKey:formKey,sControlID:sControlID,iBlogCategoryGroupID:iBlogCategoryGroupID,iFutureMonths:iFutureMonths,iMaxRecords:iMaxRecords},succeededCallback,failedCallback,userContext); }}
WebRoot.AJAX.OtherMethods.registerClass('WebRoot.AJAX.OtherMethods',Sys.Net.WebServiceProxy);
WebRoot.AJAX.OtherMethods._staticInstance = new WebRoot.AJAX.OtherMethods();
WebRoot.AJAX.OtherMethods.set_path = function(value) { WebRoot.AJAX.OtherMethods._staticInstance._path = value; }
WebRoot.AJAX.OtherMethods.get_path = function() { return WebRoot.AJAX.OtherMethods._staticInstance._path; }
WebRoot.AJAX.OtherMethods.set_timeout = function(value) { WebRoot.AJAX.OtherMethods._staticInstance._timeout = value; }
WebRoot.AJAX.OtherMethods.get_timeout = function() { return WebRoot.AJAX.OtherMethods._staticInstance._timeout; }
WebRoot.AJAX.OtherMethods.set_defaultUserContext = function(value) { WebRoot.AJAX.OtherMethods._staticInstance._userContext = value; }
WebRoot.AJAX.OtherMethods.get_defaultUserContext = function() { return WebRoot.AJAX.OtherMethods._staticInstance._userContext; }
WebRoot.AJAX.OtherMethods.set_defaultSucceededCallback = function(value) { WebRoot.AJAX.OtherMethods._staticInstance._succeeded = value; }
WebRoot.AJAX.OtherMethods.get_defaultSucceededCallback = function() { return WebRoot.AJAX.OtherMethods._staticInstance._succeeded; }
WebRoot.AJAX.OtherMethods.set_defaultFailedCallback = function(value) { WebRoot.AJAX.OtherMethods._staticInstance._failed = value; }
WebRoot.AJAX.OtherMethods.get_defaultFailedCallback = function() { return WebRoot.AJAX.OtherMethods._staticInstance._failed; }
WebRoot.AJAX.OtherMethods.set_path("/AJAX/OtherMethods.asmx");
WebRoot.AJAX.OtherMethods.Ping= function(onSuccess,onFailed,userContext) {WebRoot.AJAX.OtherMethods._staticInstance.Ping(onSuccess,onFailed,userContext); }
WebRoot.AJAX.OtherMethods.UpdateEventListControlInfo= function(formKey,sControlID,iBlogCategoryGroupID,iFutureMonths,iMaxRecords,onSuccess,onFailed,userContext) {WebRoot.AJAX.OtherMethods._staticInstance.UpdateEventListControlInfo(formKey,sControlID,iBlogCategoryGroupID,iFutureMonths,iMaxRecords,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
Type.registerNamespace('Backend');
if (typeof(Backend.BackendResponse) === 'undefined') {
Backend.BackendResponse=gtc("Backend.BackendResponse");
Backend.BackendResponse.registerClass('Backend.BackendResponse');
}

