	<!-- * START SEARCH MODULE * -->
	function findSearch(f)
	{
	   var i = Number(f.site.options[f.site.selectedIndex].value);
	   var url;

	   if (f.keyword.value == '')
	   {

	   		if ( i == 1) {
	   			document.location = "http://find.hani.co.kr/";
	   		} else {
	   			document.location = "http://search.hani.co.kr/";
	   		}
	   		return false;
				
	   }
	  
	   if (i == 1) {	// ÅëÇÕ°Ë»ö
	      url = "http://find.hani.co.kr/search.html?mode=total&keyword=" + smash(f.keyword.value); 
	      document.searchForm.action=url;
	   }
	   else {		// ±â»ç°Ë»ö
	       url = "http://search.hani.co.kr/cgi-bin/hanisearch?mode=1&keyword=" + f.keyword.value;
	       document.searchForm.action=url;

	       //Àå¾Ö°øÁö ÆË¾÷¾Ë¸²
	       //url = "http://www.hani.co.kr/notice_2.html";
	       //window.open(url,"","width=520, height=340, scrollbars=no");
	       //return false;
           }
	}

function smash (str) {
        newstr=str.replace(/=/gi, "%3D");
        newstr=newstr.replace(/\&/gi, "%26");
        newstr=newstr.replace(/\?/gi, "%3F");
        return newstr;
}	



