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

function Load1(){
	if (DoubleSubmit()) {
		document.location = "FLO001.php";
	}
}

function Load2(){
	if (DoubleSubmit()) {
		document.location = "FLO002.php";
	}
}

function Load3(){
	if (DoubleSubmit()) {
		document.location = "FLO003.php";
	}
}

function set_syori(intNo,intsts){
	if (DoubleSubmit()) {
		document.e_gru.intsts.value=intsts;
		document.e_gru.intindex.value=intNo;
		document.e_gru.intsyorists.value=3;
		document.e_gru.action = "FLO005.php";
		document.e_gru.method="POST";
		document.e_gru.submit();
	}
}

function DownFile(strPass,strName){
	document.e_gru.strFilePass.value=strPass;
	document.e_gru.strFileName.value=strName;
	document.e_gru.action="download.php";
	document.e_gru.method="GET";
	document.e_gru.submit();
}

-->
</SCRIPT>