MIL030.inc
2.35 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
<SCRIPT LANGUAGE="JAVASCRIPT">
<!--
function Page(start_from){
url = "MIL030.php?start_from="+start_from;
location.href = url;
// document.e_gru.action = "MIL030.php";
// document.e_gru.method="POST";
// document.e_gru.submit();
}
function Top(){
location.href = 'MIL030.php';
}
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 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 = "MIL032.php";
document.e_gru.method="POST";
document.e_gru.submit();
}
}
function Delete_AllMail(){
if (confirm("全送信メールを削除します。よろしいですか?\r\n(一度削除してしまうと元に戻すことはできませんのでご注意ください。)") == true) {
document.e_gru.action = "MIL035.php";
document.e_gru.method="POST";
document.e_gru.submit();
}
}
function Sort_Data(sort_item, sort_pattern){
document.e_gru.sort_item.value = sort_item;
document.e_gru.sort_pattern.value = sort_pattern;
document.e_gru.action = "MIL030.php";
document.e_gru.method="POST";
document.e_gru.submit();
}
-->
</SCRIPT>