FLO002.inc
1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<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.upfile.value)==false) {
// document.e_gru.upfile.focus();
// return false;
// }
// if (script_chk("送信ファイル",document.e_gru.upfile.value)==false) {
// document.e_gru.upfile.focus();
// return false;
// }
if (hissu_chk("理由",document.e_gru.purpose.value)==false) {
document.e_gru.purpose.focus();
return false;
}
if (script_chk("理由",document.e_gru.purpose.value)==false) {
document.e_gru.purpose.focus();
return false;
}
if (DoubleSubmit()) {
document.e_gru.intsyorists.value=2;
strArr=document.e_gru.upfile.value.split("\\");
strFName=strArr[strArr.length-1].toUpperCase();
document.e_gru.file_name.value=strFName;
document.e_gru.action = "FLO005.php";
document.e_gru.method="POST";
document.e_gru.submit();
return false;
}
}
function Load1(){
document.location = "FLO001.php";
}
function Load2(){
document.location = "FLO002.php";
}
function Load3(){
document.location = "FLO003.php";
}
-->
</SCRIPT>