function check_comment(TheForm,opt,antidobae) {
	if(!opt) {
		if(TheForm.passwd.value == "") {
			alert("ºñ¹Ð¹øÈ£¸¦ ÀÔ·ÂÇÏ¼¼¿ä.\n\nºñ¹Ð¹øÈ£¸¦ ÀÔ·ÂÇÏ¼¼¿ä ¼öÁ¤/»èÁ¦¸¦ ÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù.");
			TheForm.passwd.focus();
			return false;
		}
	}
	if(opt == 2) {
		if(TheForm.name.value == "") {
			alert("ÀÌ¸§À» ÀÔ·ÂÇÏ¼¼¿ä.");
			TheForm.name.focus();
			return false;
		}
	}
	if(antidobae) {
		var antidobae_key = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
		if(TheForm.antidobae.value == "") {
			alert("µµ¹è¹æÁö ¹®ÀÚ¿­À» ÀÔ·ÂÇÏ¼¼¿ä.");
			TheForm.antidobae.focus();
			return false;
		}
		var antidobae_string = TheForm.antidobae.value;
		if(antidobae_string.length != _antidobae_index.length) {
			alert("Àß¸øµÈ µµ¹è¹æÁö ¹®ÀÚ¿­ÀÔ´Ï´Ù. Á¤È®ÇÏ°Ô ÀÔ·ÂÇÏ¼¼¿ä.");
			TheForm.antidobae.focus();
			return false;
		}
		for(i=0; i<antidobae.length; i++) {
			if(antidobae_string.charAt(i) != antidobae_key.charAt((_antidobae_index.charCodeAt(i)-35))) {
				alert("Àß¸øµÈ µµ¹è¹æÁö ¹®ÀÚ¿­ÀÔ´Ï´Ù. Á¤È®ÇÏ°Ô ÀÔ·ÂÇÏ¼¼¿ä.");
				TheForm.antidobae.focus();
				return false;
			}
		}
	}
	if(TheForm.content.value == "") {
		alert("³»¿ëÀ» ÀÔ·ÂÇÏ¼¼¿ä.");
		Theform.content.focus();
		return false;
	}
	return true;
}

function check_html(obj) {
	var	c_h;
	if(!obj.checked) {
		obj.value=1;
	} else {
		c_h = confirm("ÀÚµ¿ ÁÙ¹Ù²ÞÀ» ÇÏ½Ã°Ú½À´Ï±î?\n\nÀÚµ¿ ÁÙ¹Ù²ÞÀº ³»¿ëÁß ÁÙ¹Ù²ï °÷À» <br>Å×±×·Î ÀÚµ¿ º¯È¯ÇÏ´Â ±â´ÉÀÔ´Ï´Ù.");
		if(c_h) {
			obj.value=1;
		} else {
			obj.value=2;
		}
	}
}

