// ÄÚ¸àÆ® ÀÔ·ÂÇÏ±â
function chk_insert(it){

	theForm = eval("document.form");

	if (!check_data_length(theForm.member_id,"ID¸¦",1)) return;
	if (!check_data_length(theForm.member_pw,"ÆÐ½º¿öµå¸¦",1)) return;
	if (!check_data_length(theForm.comment,"ÄÚ¸àÆ®¸¦",2)) return;
	
	theForm.action = it+"1_proc.php";
	theForm.submit();
}

// ÄÚ¸àÆ® ÀüÃ¼ ¸®½ºÆ® º¸±â
function list(it){
	
	theForm = eval("document.form");
		
	theForm.showAll.value = "Y";
		
	theForm.action = it+"1_sub.php";
	theForm.submit();
}

// ÃßÃµ
function recommend(it,idx,comment_idx,recommend,cat){
	
	if(it == "digitalExpress"){

		theCat = eval("document.form.cat");
	
		document.location.href = "recommend.php?code="+it+"&idx="+idx+"&comment_idx="+comment_idx+"&recommend="+recommend+"&cat="+cat;
	
	}else{
	
		document.location.href = "recommend.php?code="+it+"&idx="+idx+"&comment_idx="+comment_idx+"&recommend="+recommend+"&cat="+cat;;
			
	}
}

// ÅõÇ¥
function chk_vote(it){
	
	theForm = eval("document.form");

	chk_flag = "N";

	for(i=0; i<5; i++){
		
		if(theForm.vote[i].checked == true){
			
			chk_flag = "Y";

		}
	}

	if(chk_flag == "N"){ 
		alert("¿µÈ­¸¦ º°ÀÇ °³¼ö·Î Æò°¡ÇØÁÖ¼¼¿ä."); 
		return;
	}

	theForm.action = "vote.php?code="+it;
	theForm.submit();
}

// ÄÚ¸àÆ® »èÁ¦½Ã
function view_text(idx){

	theForm = eval("document.form");
	theComment = eval("document.form.comment_"+idx);
	theForm.comment.value = theComment.value;
	theForm.delete_idx.value = idx;

}

// ÄÚ¸àÆ® »èÁ¦ÇÒ ¾ÆÀÌµð ÆÐ½º¿öµå È®ÀÎ
function chk_delete(it){
	
	theForm = eval("document.form");
	
	if (theForm.delete_idx.value == ""){ alert("»èÁ¦ÇÒ ÄÚ¸àÆ®¸¦ ¼±ÅÃÇÏ¼¼¿ä."); return; }
	if (!check_data_length(theForm.member_id,"ID¸¦",1)) return;
	if (!check_data_length(theForm.member_pw,"ÆÐ½º¿öµå¸¦",1)) return;
	
	theForm.action = "comment_proc.php?it="+it;
	theForm.submit();
}




// ÄÚ¸àÆ® ¼öÁ¤½Ã
function view_texts(idx){

	theForm = eval("document.form");
	theComment = eval("document.form.comment_"+idx);
	theForm.comment.value = theComment.value;
	theForm.delete_idx.value = idx;

}


// ÄÚ¸àÆ® ¾÷µ¥ÇÒ ¾ÆÀÌµð ÆÐ½º¿öµå È®ÀÎ
function chk_update(it){
	
	theForm = eval("document.form");
	
	if (theForm.delete_idx.value == ""){ alert("¼öÁ¤ÇÒ ÄÚ¸àÆ®¸¦ ¼±ÅÃÇÏ¼¼¿ä."); return; }
	if (!check_data_length(theForm.member_id,"ID¸¦",1)) return;
	if (!check_data_length(theForm.member_pw,"ÆÐ½º¿öµå¸¦",1)) return;
	
	theForm.action = "comment_proc1.php?it="+it;
	theForm.submit();
}
// ÇÃ·¡½¬ ¿ÀÇÂÃ¢
function MM_openBrWindow(theURL,winName,features) { //v2.0  
  window.open(theURL,winName,features);
}