function reply(str,id) { document.freply.content.focus(); document.freply.content.value = str; document.freply.replyid.value = id; return; } function retweet(str) { document.freply.content.focus(); document.freply.content.value = str; return; } function fsearch_submit(f) { if (f.stx.value.length < 2) { alert("검색어는 두글자 이상 입력하십시오."); f.stx.select(); f.stx.focus(); return false; } var cnt = 0; for (var i=0; i 1) { alert("빠른 검색을 위하여 검색어에 공백은 한개만 입력할 수 있습니다."); f.stx.select(); f.stx.focus(); return false; } for (var i=0; i= 33 && ch <= 47) || (ch >= 58 && ch <= 64) || (ch >= 91 && ch <= 96) || (ch >= 123 && ch <= 126) ) { alert("특수문자를 사용할 수 없습니다."); f.stx.select(); f.stx.focus(); return false; } } location.href='/search/'+f.stx.value; return false; } function fhsearch_submit(f) { if (f.stx.value.length < 2) { alert("검색어는 두글자 이상 입력하십시오."); f.stx.select(); f.stx.focus(); return false; } var cnt = 0; for (var i=0; i 1) { alert("빠른 검색을 위하여 검색어에 공백은 한개만 입력할 수 있습니다."); f.stx.select(); f.stx.focus(); return false; } for (var i=0; i= 33 && ch <= 47) || (ch >= 58 && ch <= 64) || (ch >= 91 && ch <= 96) || (ch >= 123 && ch <= 126) ) { alert("특수문자를 사용할 수 없습니다."); f.stx.select(); f.stx.focus(); return false; } } location.href='/hsearch/'+f.stx.value; return false; } function login_page(page) { location.href=page; }