// JavaScript Document

// 初期設定
function $(e) { return document.getElementById(e); }

function Comment_Check() {
	if($('message').value){
		CF_Comment = 1;
	} else {
		CF_Comment = 0;
	}
}
function send_Check() {
	if ( CF_Comment==0 ){
		alert('メッセージ内容が未入力です。');
		return false;
	}
	//$('C_button').form.submit();
}
  
// 全て読み込んだ後の処理
window.onload = function () {
    $('message').onblur = Comment_Check;
    $('C_button').onclick = send_Check;
	Comment_Check();
};

