CON011_1.inc 1.98 KB
<SCRIPT LANGUAGE="JAVASCRIPT">
<!--
var SFlg = false;              //サブミットフラグを定義
function DoubleSubmit(){      //ダブルサブミットチェック関数
   if (SFlg){                    //ダブルサブミットの場合
    alert("応答中です");         //メッセージを出力
    return false;
   }
   SFlg = true;                  //サブミットフラグを設定
   return true;                  //戻り値を設定
}


function chk(){
	if (hissu_chk("年",document.e_gru.holiday_year.value)==false) {
		document.e_gru.holiday_year.focus();
		return false;
	}
	if (hissu_chk("月",document.e_gru.holiday_month.value)==false) {
		document.e_gru.holiday_year.focus();
		return false;
	}
	if (hissu_chk("日",document.e_gru.holiday_day.value)==false) {
		document.e_gru.holiday_year.focus();
		return false;
	}
	if (suchi_chk("年",document.e_gru.holiday_year.value)==false) {
		document.e_gru.holiday_year.focus();
		return false;
	}
	if (date_chk(document.e_gru.holiday_year.value,document.e_gru.holiday_month.value,document.e_gru.holiday_day.value)==false) {
		document.e_gru.holiday_year.focus();
		return false;
	}
	if (date_chk(document.e_gru.holiday_year.value,document.e_gru.holiday_month.value,document.e_gru.holiday_day.value)==false) {
		document.e_gru.holiday_year.focus();
		return false;
	}
	if (hissu_chk("祝祭日名",document.e_gru.holiday_name.value)==false) {
		document.e_gru.holiday_name.focus();
		return false;
	}
	if (zen_chk("祝祭日名",document.e_gru.holiday_name.value)==false) {
		document.e_gru.holiday_name.focus();
		return false;
	}
	if (DoubleSubmit()) {
		document.e_gru.action = "CON011_1_1.php";
		document.e_gru.method="POST"
		document.e_gru.submit();
	}
}
function dell_chk(){
	if (confirm("祝祭日を削除します\nよろしいですか?")){
		if (DoubleSubmit()) {
			document.e_gru.action = "CON011_2.php";
			document.e_gru.method="POST"
			document.e_gru.submit();
		}
	}
}
function back(){
	if (DoubleSubmit()) {
		document.e_gru.action = "CON011.php";
		document.e_gru.method="POST"
		document.e_gru.submit();
	}
}
-->
</SCRIPT>