SIM0200.js
2.27 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
//文字コードはEUCで保存すること
jQuery.noConflict();
jQuery(function($) {
//ツールチップ
$(".SimCommentBack").tipsy({
gravity: 'w',
fade: true
});
});
var LinkComments = new Array();
var Lflag = 1;
var scrX = 800;
var scrY = 600;
var ret = "";
function Get_BName(){
if (navigator.appName == "Microsoft Internet Explorer"){
return "POST";
}else if (navigator.appName == "Netscape"){
return "GET";
}else{
return "GET";
}
}
function Mover(n){
var lay;
ret = Get_BName();
lay = document.getElementById("Com"+n);
if(ret=="POST"){
lay.style.visibility = "visible";
}
if(ret=="GET"){
lay.style.visibility = "visible";
}
}
function Mout(n){
var lay;
ret = Get_BName();
lay = document.getElementById("Com"+n);
if(ret=="POST"){
lay.style.visibility = "hidden";
}
if(ret=="GET"){
lay.style.visibility = "hidden";
}
}
function chg_lst(flg){
document.frm.target="_self";
document.frm.action = "SIM0200.php?chgmode="+flg;
document.frm.method="POST";
document.frm.submit();
}
function lnk_input(bSeq,dSeq,cSeq){
document.frm.btn_sim.value = "資金繰表へ";
document.frm.btn_lst.value = " 戻る ";
document.frm.target="_self";
document.frm.action="SIM0210.php?chgmode=f&bSeq="+bSeq+"&dSeq="+dSeq+"&cSeq="+cSeq;
document.frm.method="POST";
document.frm.submit();
}
function lnk_uriage(mode, bdata,uriageMode){
document.frm.elements['cboMode'].value = mode;
document.frm.elements['cboBunrui'].value = bdata;
document.frm.elements['uriageMode'].value = uriageMode;
document.frm.target="_self";
document.frm.action="RCV1000.php";
document.frm.method="POST";
document.frm.submit();
}
function lnk_kariire(kmode, st, ed){
document.frm.elements['kmode'].value = kmode;
document.frm.elements['hensai_sd'].value = st;
document.frm.elements['hensai_ed'].value = ed;
document.frm.target="_self";
document.frm.action="BRR0500.php";
document.frm.method="POST";
document.frm.submit();
}
function lnk_Table(){
document.frm.target = "_self";
document.frm.action = "SIM0500.php";
document.frm.method="POST";
document.frm.submit();
}
function Move_Date(yval, mval){
document.frm.SIM_cboYaer.value = yval;
document.frm.SIM_cboMon.value = mval;
document.frm.target = "_self";
document.frm.action = "SIM0200.php";
document.frm.method="POST";
document.frm.submit();
}