");
}
/********************************************************************************************************** ±Û¾²±â */
//µ¥ÀÌÅ͵î·Ïüũ
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.BB_PREVIEW.value == "" || f.BB_PREVIEW.value == "http://")
{
alert('\nSITE URLÀ» ÀÔ·ÂÇØ ÁÖ¼¼¿ä. \n');
f.BB_PREVIEW.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 (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, uid, p)
{
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.RP_NAME.value == "db" || f.RP_NAME.value == "°ü¸®ÀÚ"|| f.RP_NAME.value == "¿î¿µÀÚ"|| f.RP_NAME.value == "dblog"|| f.RP_NAME.value == "dbcut"|| f.RP_NAME.value == "root")
{
alert('\n»ç¿ëÇÒ ¼ö ¾ø´Â À̸§ÀÔ´Ï´Ù. \n');
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');
f.Nparam.value = getThisUrl() + '&query=view&uid=' +uid + '&p=' + p;
}
//ÄÚ¸àÆ®Á¡¼ö¼±Åà Ãâ·Â
function getCommentVote(use)
{
if (use)
{
var 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 = "";
}
//ºñ°ø°³Ã¼Å©¹Ú½º
function getSecretCheckMovieReview(use , que)
{
if(use == 'checked')
{
document.write("
SECRETE");
}
else {
document.write("
");
}
}
//´äº¯¸ÞÀϹ߼Ûüũ¹Ú½º
function getRemailCheckMovieReview(use,email,type)
{
if (use && email && type == 'reply')
{
document.write("
");
document.write("
EMAIL SEND");
}
}
//ºñ¹Ð¹øÈ£ ÀÔ·ÂÆû(±Û¾²±â)
function getPasswdInputMovieReview(wType,secret,pass,name)
{
var passinput = "";
if (wType)
{
if (wType == 'reply')
{
//´äº¯
if (secret == 'checked')
{
passinput = "
";
}
else {
passinput = "
";
}
}
else {
//¼öÁ¤
passinput = "
";
}
}
else {
//ÀϹݱÛ
passinput = "
";
}
document.write(passinput);
}
function imageView(src) {
window.open(src,'imagewin','left=0,top=0,width=100,height=100,resizable=yes');
}
//À̸§, ÀÔ·ÂÆû(ÄÚ¸àÆ®)
function getNameInputCmtMovieReviewName(mbid,isroot,skin)
{
var f = document.CommentForm;
var wperm = f.write_perm.value;
var yNull = "
";
var nNull = "
";
if (mbid != '' || isroot != '0')
{
if (wperm != '0')
{
document.write(nNull);
}
else {
document.write(yNull);
}
}
else {
if (wperm != '0')
{
document.write("

");
document.write("
");
}
else {
document.write(yNull);
}
}
}
//À̸§, ÀÔ·ÂÆû(ÄÚ¸àÆ®)
function getNameInputCmtMovieReviewPass(mbid,isroot,skin)
{
var f = document.CommentForm;
var wperm = f.write_perm.value;
var yNull = "
";
var nNull = "
";
if (mbid != '' || isroot != '0')
{
if (wperm != '0')
{
document.write(nNull);
}
else {
document.write(yNull);
}
}
else {
if (wperm != '0')
{
document.write("

");
document.write("
");
}
else {
document.write(yNull);
}
}
}
//ÄÚ¸àÆ®»èÁ¦ ±ÇÇÑ
function getCommentDeletePermMovieReview(isRoot,isAdmin,v_LogId,skin,uid,rp_id,ruid)
{
var pass = (isRoot != '0' || isAdmin != '0' || (v_LogId != '' && v_LogId == rp_id)) ? 1 : 0;
document.write("

");
}
//Æò°¡Çϱâ
function putRating(table,uid,rate)
{
if (v_LogId == '' && isRoot == 0 && isAdmin == 0) {
alert('·Î±×ÀÎ ÇÏ¼Å¾ß Æò°¡ÇÒ ¼ö ÀÖ½À´Ï´Ù. ');
return false;
}
if(!confirm('Á¤¸»·Î ' + rate + 'Á¡ Æò°¡ÇϰڽÀ´Ï±î? '))
{
return false;
}
frames.ratingframe.location.href = './bbs/skin/responsive_cat/lib/rate.php?table=' + table + '&uid=' + uid + '&rate=' + rate;
}
|
¼ºñ½º No.270 2021 À̸Ó¡ AI+X Åé 100 |
|
|
|
|
|
|
|
|
ȨÆäÀÌÁö |
 |
|
|
|
|
|
*Å«À̹ÌÁö¸¦ º¸½Ã·Á¸é ·Î±×ÀÎÇϼ¼¿ä. |
|
|
|
|
|
* ½ºÅ©¸°¼¦À» Ŭ¸¯Çϸé ÇØ´ç »çÀÌÆ®·Î À̵¿ÇÕ´Ï´Ù. |
|
 |
|
 |
|
|
|
ÃÑ 0 ºÐÀÇ È¸¿ø´Ô(µé)²²¼ Æò°¡¿¡ Âü¿©Çϼ̽À´Ï´Ù. °øÁ¤ÇÑ Æò°¡¸¦ ºÎʵ右´Ï´Ù. |
|
»ç¿ëÀÚ ÀǰßÀÔ´Ï´Ù.
|
|