<!--
function check_bbs() {


//名前
   if (document.Form_bbs.name.value == "") {
      alert("\n名前を入力してください。\n");
      document.Form_bbs.name.style.backgroundColor='#f5f5f5';
      document.Form_bbs.name.focus()
      return false;
   } else {
   	  document.Form_bbs.name.style.backgroundColor='#f5f5f5';
   }


//コメント
   if (document.Form_bbs.message.value == "") {
      alert("\n本文を入力してください。\n");
      document.Form_bbs.message.style.backgroundColor='#f5f5f5';
      document.Form_bbs.message.focus()
      return false;
   } else {
   	  document.Form_bbs.message.style.backgroundColor='#f5f5f5';
   }












//-------------------------------------------------------------------------------------------------------
//送信確認
	if(window.confirm('・ 当掲示板に不適切と判断した場合は\nお断りなく削除させて頂く場合がございます。\n\n\n\n掲示板に投稿してもよろしいですか？')){
		return true;
	} else {
		window.alert('投稿をキャンセルしました。');
		return false;
	} 

}
//-->