
declarePackage("ccs.modlets");ccs.modlets.GoogleSiteSearch=function(){var self;function constructorFn(){self=this;}
constructorFn.prototype.init=function(){}
constructorFn.prototype.doSearchKey=function(evt){var e=evt||event;if(e.keyCode==13){ccs.modlets.gss.doSearch();}}
constructorFn.prototype.doSearch=function(){var theForm=document.forms['search'];if(theForm){if(theForm.search_keyword&&theForm.search_keyword.value.trim()==''){alert('Please enter search keyword(s)');return false;}
theForm.submit();}}
return new constructorFn();}
ccs.modlets.gss=new ccs.modlets.GoogleSiteSearch();