WebControls_EventCalendar_class = function() {};
Object.extend(WebControls_EventCalendar_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	NextMonth: function() {
		return this.invoke("NextMonth", {}, this.NextMonth.getArguments().slice(0));
	},
	PrevMonth: function() {
		return this.invoke("PrevMonth", {}, this.PrevMonth.getArguments().slice(0));
	},
	NextYear: function() {
		return this.invoke("NextYear", {}, this.NextYear.getArguments().slice(0));
	},
	PrevYear: function() {
		return this.invoke("PrevYear", {}, this.PrevYear.getArguments().slice(0));
	},
	url: '/ajaxpro/WebControls_EventCalendar,WEB.ashx'
}));
WebControls_EventCalendar = new WebControls_EventCalendar_class();

