function Search_fn(frm) { //frm : ´ë»ó Æû , keyword¿Í key °¡ Æ÷ÇԵǾîÀÖ´Ù. var F = frm; var arr_sraech_eng = new Array(9); arr_sraech_eng[0] = 'http://search.ilikeclick.com/ilikeclick/?ec=20088444&MD=B&TT=%BC%D5%BD%AC%BF%EE+%B0%CB%BB%F6+-+%C0%CC%C1%F6%BC%AD%C4%A1&HK=&AT=Y&PL=10&TP=1&BT=1&query='; arr_sraech_eng[1] ='http://kr.search.yahoo.com/search?jy=all&p='; arr_sraech_eng[2] ='http://search.naver.com/search.naver?where=nexearch&query='; arr_sraech_eng[3] ='http://search.empas.com/search/all.html?z=A&q='; arr_sraech_eng[4] ='http://search.daum.net/cgi-bin/nsp/search.cgi?u=host&doc=host&fmt=c&w=tot&q='; arr_sraech_eng[5] ='http://www.google.co.kr/search?hl=ko&ie=euc-kr&oe=euc-kr&lr=lang_ko&q='; arr_sraech_eng[6] ='http://search.nate.com/search/srch_allindex.asp?searchfield=total&query='; arr_sraech_eng[7] ='http://search.chol.com/search.cgi?q='; arr_sraech_eng[8] ='http://search.daum.net/cgi-bin/nsp/search.cgi?u=host&doc=host&fmt=c&w=tot&q='; if(F.keyword.value == ''){ alert('°Ë»ö¾î¸¦ÀÔ·ÂÇØÁÖ¼¼¿ä'); F.keyword.focus(); return false; }else{ var openURL = arr_sraech_eng[F.key.value]; if(!openURL){openURL=arr_sraech_eng[0];} window.open(openURL+F.keyword.value,'_blank','location=yes, width=800,height=600,scrollbars=yes,resizable=yes,toolbar=yes,menubar=yes'); return false; } }