"); } /********************************************************************************************************** ±Û¾²±â */ //µ¥ÀÌÅ͵î·Ïüũ function WriteCheck() { var f = document.WriteForm; if (f.isRoot.value == "0" && f.mbid.value == "" && f.BB_NAME.value == "") { alert('\nÀ̸§À» ÀÔ·ÂÇØ ÁÖ¼¼¿ä. \n'); f.BB_NAME.focus(); return false; } if (f.BB_EMAIL.value) { if ( f.BB_EMAIL.value.length <= 6 || f.BB_EMAIL.value.indexOf ('@', 0) == -1 || f.BB_EMAIL.value.indexOf ('.', 0) == -1) { alert('À̸ÞÀÏÁÖ¼Ò°¡ ¿Ã¹Ù¸£Áö ¾Ê½À´Ï´Ù. \n'); f.BB_EMAIL.value = ""; f.BB_EMAIL.focus(); return false; } } if (f.BB_SUBJECT.value == "") { alert('\nÁ¦¸ñÀ» ÀÔ·ÂÇØ ÁÖ¼¼¿ä. \n'); f.BB_SUBJECT.focus(); return false; } if (f.is_category.value) { if (!f.BB_CATEGORY.value) { alert('\n' + f.BB_CATEGORY.options[0].text + 'À»(¸¦) ¼±ÅÃÇØ ÁÖ¼¼¿ä. \n'); f.BB_CATEGORY.focus(); //ÀϹݼ¿·ºÆ®»ç¿ë½Ã return false; } } if(getEditCheck(f)) return false; //¿¡µðÅͺ»¹®Ã¼Å© if (CheckWords(f.BB_SUBJECT.value) != '' || CheckWords(f.BB_CONTENT.value) != '') { alert('\n°ü¸®ÀÚ¿¡ ÀÇÇØ Á¦ÇÑµÈ ´Ü¾î°¡ »ç¿ëµÇ¾ú½À´Ï´Ù. \n'); return false; } if (f.BB_SECRET.checked == true) { if (f.BB_PASS.value == "") { alert('\nºñ°ø°³±Û·Î µî·ÏÇÒ °æ¿ì¿¡´Â ¹Ýµå½Ã ºñ¹Ð¹øÈ£¸¦ ÀÔ·ÂÇØ ÁÖ¼Å¾ß ÇÕ´Ï´Ù. \n'); f.BB_PASS.focus(); return false; } } var uptmp = 0; if (f.useup.value != '0') { f.BB_FILE.value = getUploadFiles(); //¾÷·Îµåüũ uptmp = 1; } if (f.uselk.value != '0') { f.BB_LINK.value = getLinkFiles(); //¸µÅ©Ã¼Å© uptmp = 1; } if (uptmp == 0) { alert('À̹ÌÁöÆÄÀÏÀÌ Ã·ºÎµÇÁö ¾Ê¾Ò½À´Ï´Ù. '); return false; } f.Nparam.value = NparamSetting(); } //¿É¼ÇÃâ·Âüũ function OptionCheck() { var home = document.getElementById('Option_Url'); var prev = document.getElementById('Option_Preview'); var img = document.getElementById('Option_Img'); var f = document.WriteForm; if(!f.mbid.value) { if (home.style.display == 'none') { home.style.display = 'block'; } else { home.style.display = 'none'; } } if (prev.style.display == 'none') { prev.style.display = 'block'; } else { prev.style.display = 'none'; } if (img.src.indexOf('dot_option.gif') != -1) { img.src = img.src.replace('dot_option.gif','dot_option1.gif'); } else { img.src = img.src.replace('dot_option1.gif','dot_option.gif'); } } //À̵¿°æ·Îüũ function NparamSetting() { var pam = getThisUrl(); pam += '&query=' + getUriString('query'); pam += '&write_type=' + getUriString('write_type'); pam += '&uid=' + getUriString('uid'); pam += '&p=' + getUriString('p'); return pam; } /********************************************************************************************************** ¸ÖƼüũ */ var Multi_Check_Uid = ''; function Multi_Check(obj,e,skindir,isRoot,isAdmin) { var ml = document.getElementById('MultiCheckLayer'); var tg = ''; var x = (e.pageX) ? e.pageX : document.body.scrollLeft+event.clientX; var y = (e.pageY) ? e.pageY : document.body.scrollTop+event.clientY; x += 10; y -= 20; if (obj.checked == true) Multi_Check_Uid += obj.value + ';'; else Multi_Check_Uid = Multi_Check_Uid.replace(obj.value + ';' , ''); if (Multi_Check_Uid) { var multiarr = Multi_Check_Uid.split(';'); tg += "
"; tg += "
"; tg += "
"; tg += "
"; tg += "
"; tg += "
"; tg += "
"; tg += "
"; if(isRoot != 0 || isAdmin != 0) { tg += "
"; if (isRoot != 0) { tg += "
"; tg += "
"; } } if(isRoot == 0 && isAdmin == 0) { tg += "
(¼±ÅÃµÈ ÀÚ·á : "+(multiarr.length-1)+")
"; } tg += "
"; tg += "
"; ml.innerHTML = tg; } else { ml.innerHTML = ''; } } function Multi_Check_Que(n) { var i; var l = document.getElementsByName('At[]'); switch (n) { case 1 : Multi_Check_Uid = ''; for ( i = 0; i < l.length; i++) { l[i].checked = true; Multi_Check_Uid += l[i].value + ';'; } break; case 2 : Multi_Check_Uid = ''; for ( i = 0; i < l.length; i++) { l[i].checked = false; Multi_Check_Uid = Multi_Check_Uid.replace(l[i].value + ';' , ''); } break; case 3 : Multi_Check_Uid = ''; for ( i = 0; i < l.length; i++) { if(l[i].checked == true) { l[i].checked = false; Multi_Check_Uid = Multi_Check_Uid.replace(l[i].value + ';' , ''); } else { l[i].checked = true; Multi_Check_Uid += l[i].value + ';'; } } break; case 4 : if (!Multi_Check_Uid) return false; location.href = getThisUrl() + '&query=multi&p=' + getUriString('p') + '&MultiUid=' + Multi_Check_Uid; break; case 5 : if (!Multi_Check_Uid) return false; if (!confirm('»èÁ¦µÈ µ¥ÀÌÅÍ´Â º¹±¸°¡ ºÒ°¡´ÉÇÕ´Ï´Ù. \n\nÁ¤¸»·Î »èÁ¦ÇϽðڽÀ´Ï±î?')) return false; location.href = getThisUrl() + '&action=multi_delete&p=' + getUriString('p') + '&MultiUid=' + Multi_Check_Uid; break; case 6 : if (!Multi_Check_Uid) return false; window.open('./bbs/lib/module/mvcopy/mvcopy.php?table='+getUriString('table')+'&type=move&MultiUid='+Multi_Check_Uid,'mvcopywin','left=0,top=0,width=300,height=450'); break; case 7 : if (!Multi_Check_Uid) return false; window.open('./bbs/lib/module/mvcopy/mvcopy.php?table='+getUriString('table')+'&type=copy&MultiUid='+Multi_Check_Uid,'mvcopywin','left=0,top=0,width=300,height=450'); break; } } /********************************************************************************************************** ÄÚ¸àÆ® */ //ÄÚ¸àÆ®µî·Ï üũ function CommentCheck(f) { if (f.write_perm.value == '0') { alert('Á˼ÛÇÕ´Ï´Ù. ÀÇ°ßµî·Ï ±ÇÇÑÀÌ ¾ø½À´Ï´Ù. '); f.RP_CONTENT.disabled = true; f.RP_CONTENT.style.background = '#EFEFEF'; return false; } if (f.RP_CONTENT.value == "") { alert('ÀÇ°ßÀÌ ÀԷµÇÁö ¾Ê¾Ò½À´Ï´Ù. '); f.RP_CONTENT.focus(); return false; } if (CheckWords(f.RP_CONTENT.value) != '') { alert('\n°ü¸®ÀÚ¿¡ ÀÇÇØ Á¦ÇÑµÈ ´Ü¾î°¡ »ç¿ëµÇ¾ú½À´Ï´Ù. \n'); return false; } if (!f.RP_NAME.value || f.RP_NAME.value == 'À̸§' ) { alert('À̸§ÀÌ ÀԷµÇÁö ¾Ê¾Ò½À´Ï´Ù. '); f.RP_NAME.focus(); return false; } if (!f.isPass.value) { if (!f.RP_PASS.value || f.RP_PASS.value == 'ºñ¹Ð¹øÈ£') { if (!confirm('\nºñ¹Ð¹øÈ£¸¦ ÀÔ·ÂÇÏÁö ¾ÊÀ¸½Ã¸é »èÁ¦°¡ ºÒ°¡´ÉÇÕ´Ï´Ù. \n\nºñ¹Ð¹øÈ£ ÀԷ¾øÀÌ µî·ÏÇϽðڽÀ´Ï±î?\n')) { f.RP_PASS.focus(); return false; } } } if (!confirm('\nÀÔ·ÂÇϽŠÄÚ¸àÆ®¸¦ µî·ÏÇϽðڽÀ´Ï±î? \n')) { return false; } if (f.useup.value != '0') { f.RP_FILE.value = getUploadFiles(); } if (f.uselink.value != '0') { f.RP_LINK.value = getLinkFiles(); } f.Nparam.value = getThisUrl() + '&query=view&uid=' + getUriString('uid') + '&p=' + getUriString('p'); } //ÄÚ¸àÆ®Á¡¼ö¼±Åà Ãâ·Â function getCommentVote(use) { if (use) { var tag = ""; tag += "
"; tag += "
Æò°¡Á¡¼ö :
"; tag += "
¡Ú¡Ú¡Ú¡Ú¡Ú
"; tag += "
¡Ú¡Ú¡Ú¡Ú¡Ù
"; tag += "
¡Ú¡Ú¡Ú¡Ú
"; tag += "
¡Ú¡Ú¡Ú¡Ù
"; tag += "
¡Ú¡Ú¡Ú
"; tag += "
¡Ú¡Ú¡Ù
"; tag += "
¡Ú¡Ú
"; tag += "
¡Ú¡Ù
"; tag += "
¡Ú
"; tag += "
¡Ù
"; tag += "
"; document.write(tag); if(navigator.userAgent.indexOf('Opera') == -1 && navigator.userAgent.indexOf('Netscape') == -1) { getSelectToLayer(document.getElementById('RP_VOTE'),100,''); } } } //ÄÚ¸àÆ®ºñÀúºí function getCommentVisible(obj) { var l = document.getElementById('Comment_Layer'); if(obj.src.indexOf('_show.gif') != -1) { obj.src = obj.src.replace('_show.gif', '_hide.gif'); l.style.display = 'block'; } else { obj.src = obj.src.replace('_hide.gif', '_show.gif'); l.style.display = 'none'; } } //ÄÚ¸àÆ®µî·Ï±ÇÇÑ Ã¼Å©-ºñ±ÇÇÑ-> display : none function CommentWritePermCheck() { var f = document.CommentForm; var l = document.getElementById('CommentTable'); if (f.write_perm.value == '0') { l.style.display = 'none'; } else{ l.style.display = 'block'; } } //ÄÚ¸àÆ® À¥¿¡µðÅ͸µÅ©Ãâ·Âüũ function getCommentEditLink(op,skinimg) { if (op) { document.write("
"); document.write("
"); document.write("
[¿¡µðÅÍ]
"); } } /********************************************************************************************************** ÷ºÎ,¸µÅ© ÆÄÀÏ */ //ÆÄÀÏ÷ºÎüũ function getUpfileNumIcon(enable , files , num , down , table, uid, skin , link , where , cols) { if (num > 0) { var string = ""; string += "
"; string += "
÷ºÎÀ̹ÌÁö
" + num + "
°³
"; string += "
(Á¶È¸
"+commaSplit(down)+"
°Ç)
"; string += "
"; document.write(string); } } //ÆÄÀÏ·¹À̾î show function showLayerUpfile(enable , files , table , uid , where , cols , num , link , skin , down , e) { if (!enable) { alert('Á˼ÛÇÕ´Ï´Ù. ´Ù¿î·Îµå ±ÇÇÑÀÌ ¾ø½À´Ï´Ù. '); return false; } var x = (e.pageX) ? e.pageX : document.body.scrollLeft+event.clientX; var y = (e.pageY) ? e.pageY : document.body.scrollTop+event.clientY; var to = ""; var tl = document.getElementById('tmp_Upfile_Show_Layer'); var ly = LayerUpfile(enable , files + link , table, uid , where , cols , 'return'); var wt = parseInt(num/cols) > 0 ? cols * 220 : (num%cols) * 220; wt = num == 1 ? 270 : wt; tl.style.position = 'absolute'; tl.style.left = x; tl.style.top = y; to += "
"; to += "
"; to += "
"; to += "
"; to += "
÷ºÎÆÄÀÏ
" + num + "
°³
"; to += "
(´Ù¿î·Îµå
"+commaSplit(down)+"
°Ç)
"; to += "
´Ý±â
"; to += "
"; to += "
"; to += "
" + ly + "
"; to += "
"; tl.innerHTML = to; document.getElementById('upFile_Tmp_Layer').style.background = '#F5F3F5'; document.getElementById('upFile_Tmp_Layer').style.width = '100%'; } //ÆÄÀÏ·¹À̾î Á¦°Å function hideLayerUpfile() { document.getElementById('tmp_Upfile_Show_Layer').innerHTML = ""; }
Home
>
ÇöÀå°¶·¯¸®
ÀÚ·á¼ö
15
°³,
1
ÆäÀÌÁöÁß
1
ÆäÀÌÁö
Á¤·Ä
±¤Áø°æÂû¼ û»ç ½ÅÃà°ø»ç ñé ..
ÀÇ·á¹ýÀÎ ¼º¿õÀÇ·áÀç´Ü ¾ØµðƼ..
¹Ý´Þ¼¶ ÇÁ·ÎÁ§Æ® ½Ã°ø Çù¾à¼ ..
±¹¹Î°Ç°º¸Çè°ø´Ü ¾È»êÁö»ç »ç..
¼±¸ª¿ª DŸ¿ö ½ÅÃà°ø»ç
°æÀο©ÀÚ´ëÇб³ 20Áֳ⠱â³ä°ü..
º¸·É ÁߺΠ¹ßÀü»ç¿Á ½ÅÃà°ø»ç
¼¼Ò¹® ´ëÇѺôµù ½ÅÃà°ø»ç Áß ..
¼¼Á¾´ëÇб³ Çлýȸ°ü ½ÅÃà°ø»ç
¿À»ê ¼¼±³ CLŸ¿ö ½ÅÃà°ø»ç
±¤±³ ½Ç¸®ÄÜ ÆÄÅ© ½ÅÃà°ø»ç
ÆDZ³ ¾ÆÀÌÆ÷Ÿ ½ÅÃà°ø»ç
¿ï»ê12-4°í¼ÓöµµÁö¹Ýº¸°°ø»ç
½Å¼ö 2Â÷ Àç°ÇÃà ¾ÆÆÄÆ® °ø»ç
´ëÀü ¼±È °¨¸® ±³È¸
Àüü¿¡¼
Á¦¸ñ
º»¹®
ÀÛ¼ºÀÚ
¾ÆÀ̵ð
ºñ¹Ð¹øÈ£¸¦ ÀÔ·ÂÇØ ÁÖ¼¼¿ä.