var table='qna'; function cmtCheck(id,idx){ var frm = document.cmt_frm; var cmtstr =document.getElementById('cmt_content'+id).value var noUsingStr = new Array('http','co.kr','com','net','°¡ÀÔ'); if(!GetCookie('mid')){ alert('·Î±×ÀÎ ÈÄ ÀÌ¿ëÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù. '); return false; } if(cmtstr .length < 3){ alert('±Û ³»¿ëÀÌ ³Ê¹« À۰ųª ³»¿ëÀÌ ÀԷµÇÁö ¾Ê¾Ò½À´Ï´Ù. '); document.getElementById('cmt_content'+id).focus(); return false; } if(confirm('ÀÛ¼ºÇÑ ³»¿ëÀ» µî·ÏÇϽðڽÀ´Ï±î? ')){ cmtSend(id,idx); }else return false; } //ÄÚ¸àÆ® ¾²±â function cmtSend(id,idx){ var frm = document.cmt_frm; var contents =document.getElementById('cmt_content'+id).value; sendRequest(cmtSendReturn,'&act=ok&table='+table+'&pidx='+idx+'&contents='+contents+'&id='+id,'POST','/main/doc/comment/cmtWrite.php',true,true); } function cmtSendReturn(oj){ var res = decodeURIComponent(oj.responseText); var split_res = res.split('||'); var fid=split_res[0]; var old_content = document.getElementById('input_cmt'+fid).innerHTML; document.getElementById('input_cmt'+fid).innerHTML = old_content+split_res[1]; document.getElementById('cmt_content'+fid).value=''; } function cmtDeleteReturn(oj){ var res = decodeURIComponent(oj.responseText); if(res=='_ok'){ window.location.reload(); }else{ alert('»èÁ¦±ÇÇÑÀÌ ¾ø½À´Ï´Ù. '); } } function articleRecommand(n,id,cnt){ if(GetCookie('mid')){ sendRequest(returnArticleRecommand,'&act=ok&buserid='+id+'&pid='+bbsnum+'&table='+table+'&idx='+n+'&cnt='+cnt,'POST','/main/module/recommand.php',true,true); }else{ alert('·Î±×ÀÎ ÈÄ ÀÌ¿ëÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù. ');return; } } function returnArticleRecommand(oj){ var res = decodeURIComponent(oj.responseText); //alert(res); var split_res = res.split('||'); var fid=split_res[0]; if(split_res[1]=='ok'){ alert('ÃßõµÇ¾ú½À´Ï´Ù. '); var reccount = document.getElementById('recCount'+fid).value; var curCnt = parseInt(reccount); document.getElementById('bbsRecCount'+fid).innerText = number_format(curCnt+1); }else if(split_res[1]=='double'){ alert('ȸ¿ø´Ô²²¼­´Â ÀÌ¹Ì ÃßõÇϼ̽À´Ï´Ù. '); return; }else if(split_res[1]=='myans'){ alert('ÀÚ½ÅÀÇ ´äº¯¿¡´Â ÃßõÀ» ÇÒ¼ö ¾ø½À´Ï´Ù. '); return; } } function cmtDelete(n){ if(confirm('ÄÚ¸àÆ®¸¦ »èÁ¦ÇϽðڽÀ´Ï±î? ')){ sendRequest(cmtDeleteReturn,'&act=ok&table='+table+'&idx='+n,'POST','/main/doc/comment/cmtDelete.php',true,true); } } function delArticle(n,p,qstr){ if(confirm('»èÁ¦ÇϽðڽÀ´Ï±î?')){ location.href= 'qna.php?table='+table+'&doc=delete&idx='+n+'&vi=&p='+p+qstr; }else{ return false; } }