if(typeof MTB == "undefined") MTB={};
if(typeof MTB.UI == "undefined") MTB.UI={};

MTB.UI.DatePicker_class = new Class({
AjaxUrl : '/ajaxpro/MTB.UI.DatePicker,App_Code.evpjr-zq.ashx',
GetDays : function(intMonth, intYear, onsuccess, context, onfailure)
{
    return new AjaxPro.Request(this.AjaxUrl,
    {
        async: (typeof onsuccess == "function"),
        headers: {"X-AjaxPro-Method":"GetDays"},        
        onSuccess: function(response) { AjaxPro.processResponse(response, onsuccess, context, onfailure); }
    }).send({"intMonth":intMonth, "intYear":intYear});
}
});MTB.UI.DatePicker = new MTB.UI.DatePicker_class();


