function mail_Send() {
	with(document.sendMailPL) {
		if(com.value.length == 0) {
			alert("È¸»ç¸íÀ» ÀÔ·ÂÇØ ÁÖ¼¼¿ä!");
			com.focus();
			return;
		}
		else if(name01.value.length == 0) {
			alert("¼º¸í¸íÀ» ÀÔ·ÂÇØ ÁÖ¼¼¿ä!");
			name01.focus();
			return;
		}
		else if(call01.value.length == 0) {
			alert("¿¬¶ôÃ³¸¦ ÀÔ·ÂÇØ ÁÖ¼¼¿ä!");
			call01.focus();
			return;
		}
		else if(mail.value.length == 0) {
			alert("ÀÌ¸ÞÀÏÁÖ¼Ò¸¦ ÀÔ·ÂÇØ ÁÖ¼¼¿ä!");
			mail.focus();
			return;
		}
		else if(contents.value.length == 0) {
			alert("³»¿ëÀ» ÀÔ·ÂÇØ ÁÖ¼¼¿ä!");
			contents.focus();
			return;
		}
		else {
			action="/Act/sendmail_act.php";
			submit();
		}
	}
}