MIL020.inc
3.03 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<SCRIPT LANGUAGE="JAVASCRIPT">
<!--
//--------------------------
// 受信メール一覧
//--------------------------
//*** 次のページ遷移 ***
/* 20131002 未使用
function Top(){
location.href = "MIL020.php";
}
*/
//*** 次のページ遷移 ***
function Page(start_from,Sort_Mode,Sort_Ptn){
url = "MIL020.php?start_from="+start_from;
url = url + "&Sort_Mode="+Sort_Mode;
url = url + "&Sort_Ptn="+Sort_Ptn;
location.href = url;
// document.e_gru.action = "MIL020.php";
// document.e_gru.method="POST";
// document.e_gru.submit();
}
function address_get(dataNM,dataAdd){
document.e_gru.strName.value=dataNM;
document.e_gru.strAddress.value=dataAdd;
document.e_gru.intGmSts.value=1;
document.e_gru.action = "MIL041.php";
document.e_gru.method="POST";
document.e_gru.submit();
}
function Data_get(mode){
document.e_gru.intReturn.value=mode;
document.e_gru.action = "MIL010.php";
document.e_gru.method="POST";
document.e_gru.submit();
}
function Mail_Delete(){
if (confirm("メールを削除します。よろしいですか?") == true) {
document.e_gru.action = "MIL026.php";
document.e_gru.method="POST";
document.e_gru.submit();
}
}
function All_chk(){
//削除チェックボックス一括チェック処理
var intFlg = 0; //一括チェックFLG
if (document.e_gru.del_seq.length){
//未チェックがあるか
for(i = 0 ; i <= document.e_gru.del_seq.length-1; i++ ){
if (document.e_gru.del_seq[i].checked==false){
intFlg=1;
}
}
if (intFlg==1){
//未チェックがある場合
for(i = 0 ; i <= document.e_gru.del_seq.length-1; i++ ){
document.e_gru.del_seq[i].checked=true;
}
}else{
//未チェックがない場合
for(i = 0 ; i <= document.e_gru.del_seq.length-1; i++ ){
document.e_gru.del_seq[i].checked=false;
}
}
}else{
//チェックボックス1個の場合
if (document.e_gru.del_seq.checked==false){
document.e_gru.del_seq.checked=true;
}else{
document.e_gru.del_seq.checked=false;
}
}
}
function Delete_Mail(){
if (confirm("選択したメールを削除します。よろしいですか?") == true) {
if (document.e_gru.del_seq.length){
for(i = 0 ; i <= document.e_gru.del_seq.length-1; i++ ){
if (document.e_gru.del_seq[i].checked==true){
document.e_gru.strChkDat.value=document.e_gru.strChkDat.value+document.e_gru.del_seq[i].value+"#";
}
}
}else{
if (document.e_gru.del_seq.checked==true){
document.e_gru.strChkDat.value=document.e_gru.del_seq.value+"#";
}
}
document.e_gru.action = "MIL023.php";
document.e_gru.method="POST";
document.e_gru.submit();
}
}
function Delete_AllMail(){
if (confirm("全受信メールを削除します。よろしいですか?\r\n(一度削除してしまうと元に戻すことはできませんのでご注意ください。)") == true) {
document.e_gru.action = "MIL025.php";
document.e_gru.method="POST";
document.e_gru.submit();
}
}
function Sort_Data(Sort_Mode,Sort_Ptn){
document.e_gru.Sort_Ptn.value = Sort_Ptn;
document.e_gru.Sort_Mode.value = Sort_Mode;
document.e_gru.action = "MIL020.php";
document.e_gru.method="POST";
document.e_gru.submit();
}
-->
</SCRIPT>