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