	<!-- * START SEARCH MODULE * -->
	function findSearch()
	{
	   var url;
	   if(this.document.searchForm.site[0].checked == true) {
//	      url = "http://find.hani.co.kr/SRT/tsearch.php?flag_andor=1&nation=1&mode=total&keyword=" + document.searchForm.keyword.value; 
	      url = "http://find.hani.co.kr/search.html?mode=total&keyword=" + smash(document.searchForm.keyword.value); 
	      document.searchForm.action=url;
	   }  
	   else { 
	       url = "http://search.hani.co.kr/cgi-bin/hanisearch?mode=1&keyword=" + document.searchForm.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;
}	
