//*************** ÇÑ¸¶µð ³²±â±â Ã¼Å©ÇÔ¼ö
function delprc(idx){
var F
F = document.delmodFrm
window.open('/news/service/article/delCheck.asp?pindex='+F.pindex.value+'&index='+idx,'','width=250,height=150');
}

function modifyprc(idx){
var F
F = document.delmodFrm
window.open('/news/service/article/modify_Check.asp?pindex='+F.pindex.value+'&index='+idx,'','width=638,height=130');
}

function ReOp(flag, idx, pidx){
	var F
	F = document.delmodFrm
	if(idx == '<%=Session("idx")%>'){
		alert("ÀÌ¹Ì ÇÏ³ªÀÇ ÀÇ°ß¿¡ µ¿ÀÇ ÇÏ¼Ì½À´Ï´Ù.");
		document.location.reload();
	}
	if(flag == 1 && idx != '<%=Session("idx")%>'){
		//alert("ÃßÃµµÇ¾ú½À´Ï´Ù.");
		document.location.replace('/news/service/article/RecOpp.asp?idx='+idx+'&pidx='+pidx+'&flag='+flag);
	}
	if(flag == 0 && idx != '<%=Session("idx")%>'){
		//alert("¹Ý´ëÀÇ°ß¿¡ µ¿ÀÇÇÏ¼Ì½À´Ï´Ù.");
		document.location.replace('/news/service/article/RecOpp.asp?idx='+idx+'&pidx='+pidx+'&flag='+flag);
	}
}

function imoticon(istr){
	if(document.all["imoticon_han"].style.display=="")
    document.all["imoticon_han"].style.display="none";
  else
  {        
    document.all["imoticon_han"].style.display="";
	document.all["imoticon_han"].style.left = event.clientX + 10 + document.body.scrollLeft;
	document.all["imoticon_han"].style.top = event.clientY - 10 + document.body.scrollTop;
  }
}

function set_imoticon(idx){
  if(document.all["imoticon_han"].style.display=="")
  { 
    document.all["imoticon_han"].style.display="none";
  }
  else
  {        
    document.all["imoticon_han"].style.display="";
    document.all["imoticon_han"].style.left= event.clientX + 10 + document.body.scrollLeft;
    document.all["imoticon_han"].style.top= event.clientY - 10 + document.body.scrollTop;        
  }
  
	document.nCmtFrm.imoti.value =  idx;
}
//************* ÇÑ¸¶µð ³²±â±â Ã¼Å©ÇÔ¼ö ³¡ *********************

//************* ÃßÃµ¼ø/¹Ý´ë¼øÀ¸·Î º¸±â Àû¿ë *******************
function orderView(flag){
	var url
	url = window.document.orderV.P_Index.value
	window.document.location.replace('/news/service/article/refer.asp?P_Index='+url+'&flag='+flag)
}
//************* ÃßÃµ¼ø/¹Ý´ë¼øÀ¸·Î º¸±â Àû¿ë ³¡ *******************

/*
 * ÀÔ·ÂÆû ¹ÙÀÌÆ® °è»ê
 *
 */
function calcByte(tg){
	curText = new String(tg.value);
	strLen = curText.length;
	byteIs = 0;

	for(i = 0 ; i < strLen ; i++){
		thisChar = curText.charAt(i);
		escChar = escape(thisChar);

		//-- ¢¥ : 2byte ÀÓ¿¡µµ ºê¶ó¿ìÁ®¿¡¼­ 1byte·Î °è»ê
		if (thisChar == "¢¥"){
			byteIs++;
		}
		if (escChar.length > 4) {
			byteIs += 2;  //-- Æ¯¼ö¹®ÀÚ ÇÑ±ÛÀÎ °æ¿ì.
		}else if(thisChar != '\r') {  //-- °³ÇàÀ» Á¦¿ÜÇÑ ÀÌ¿ÜÀÇ °æ¿ì
			byteIs += 1;
		}
		if(byteIs > 1000){ //-- ÀÔ·ÂÇÑ°è
			alert("[¾È³»] ÃÖ´ë ÇÑ±Û 500ÀÚ ¿µ¹® 1000ÀÚ ±îÁö¸¸ ¾µ ¼ö ÀÖ½À´Ï´Ù.");
			thisText = curText.substring(0, i);
			tg.value = thisText;
			byteIs = lastByte;
			break;
		}
		lastByte = byteIs;
	}
	document.all.byte.innerHTML = "(" + byteIs + "/1000)";
}








