﻿var defaultManager=Class.create();defaultManager.prototype={searchProvinceElement:null,searchCategoryElement:null,initialize:function(A,B){try{this.searchProvinceElement=$(A);this.searchCategoryElement=$(B);Event.observe("searchButton","click",this.find.bind(this))}catch(C){processError(C,"errorContainer")}},find:function(){var A=this.searchCategoryElement.options[this.searchCategoryElement.selectedIndex].value;if(this.searchProvinceElement.value!=""){A+="&searchProvince="+this.searchProvinceElement.value}if(trim($F("searchText"))!=""){A+="&searchText="+$F("searchText")}if(trim(A).length>0){A="?"+A.substring(1,A.length)}return gotoHere("browse.aspx"+A)},openRssPopup:function(A){var B=window.open(A,"RssPopup","height=660,width=670,scrollbars=yes");if(window.focus){B.focus()}return false}};