function submitEventPoint(f) {
	if (f.event_code.value.trim() == "") {
		alert("ÀÌº¥Æ® ÄÚµå°¡ ÇÊ¿äÇÕ´Ï´Ù.");
		return false;
	}
}
function submitEventComment(f) {
	if (f.event_code.value.trim() == "") {
		alert("ÀÌº¥Æ® ÄÚµå°¡ ÇÊ¿äÇÕ´Ï´Ù.");
		return false;
	} else if (f.comment_memo.value.trim() == "") {
		alert("´ñ±ÛÀ» ÀÔ·ÂÇÏ¿©¾ß ÇÕ´Ï´Ù.");
		elFocus(f.comment_memo);
		return false;
	}
}

function removeEventComment(el, comment_idx) {
	if (!window.confirm("»èÁ¦ÇÏ½Ã°Ú½À´Ï±î?")) return;
	var f = getParentForm(el);
	f.comment_idx.value = comment_idx;
	f.exec_mode.value = "comment_remove";
	f.submit();
}