
EventsForm=function(){var self;var theForm;function constructorFn(){self=this;self.init();}
constructorFn.prototype.init=function(){window.date_sel_Date=new DateSelect('date_sel_',self);theForm=document.forms['formEventsSearch'];theForm.bsearch.onclick=function(){self.submitForm();}}
constructorFn.prototype.submitForm=function(){theForm.submit();}
constructorFn.prototype.getCategoryName=function(){return document.forms['formEventsSearch']['cat'].value;}
return new constructorFn();}
registerOnLoad(function(){window.eventsForm=new EventsForm();});