TOP001.inc
22.9 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
<script type="text/javascript" src="xmlhttp.js"></script>
<SCRIPT LANGUAGE="JAVASCRIPT">
function res_overlap_chk(sy,sm,sd,ey,em,ed,sh,si,eh,ei,rsv,type,wday,eday,seq){
var ret = true;
//alert("res_overlap_chk");
prm2 = "?st_year=" + sy;
prm2 += "&st_mon=" + sm;
prm2 += "&st_day=" + sd;
prm2 += "&ed_year=" + ey;
prm2 += "&ed_mon=" + em;
prm2 += "&ed_day=" + ed;
prm2 += "&st_hour=" + sh;
prm2 += "&st_minute=" + si;
prm2 += "&ed_hour=" + eh;
prm2 += "&ed_minute=" + ei;
prm2 += "&rsv_no=" + rsv;
prm2 += "&type=" + type;
prm2 += "&wday=" + wday;
prm2 += "&eday=" + eday;
prm2 += "&seq=" + seq;
loadHTMLFile222("RESCHK.php" + prm2);
function loadHTMLFile222(fName){
httpObj222 = createXMLHttpRequest(displayData222);
if (httpObj222)
{
httpObj222.open(Get_BName(),fName,false);
httpObj222.send(null);
}
}
function displayData222()
{
if ((httpObj222.readyState == 4) && (httpObj222.status == 200)){
var str = httpObj222.responseText;
//alert(str);
if(str.match(/ERR_OVERLAP/i) != null){
//return confirm("予約の重複があります\n\n"+"このまま登録しますか?");
ret = confirm("予約の重複があります\n\n"+"このまま登録しますか?");
}
}
}
//alert(ret);
return ret;
}
function chk(syain_cd,intseq,flg){
var stradd;
var st_date;
var ed_date;
var chk_date;
var chk_yobi;
var intMax;
var iii;
if ((document.e_gru.scdl_type[1].checked==true) && (document.e_gru.scdl_yobi.value==99)){
alert("曜日を選択してください");
document.e_gru.scdl_yobi.focus();
return false;
}
if ((document.e_gru.scdl_type[2].checked==true) && (document.e_gru.scdl_day.value==99)){
alert("日付を選択してください");
document.e_gru.scdl_day.focus();
return false;
}
if (date_chk(document.e_gru.st_year.value,document.e_gru.st_mon.value,document.e_gru.st_day.value)==false) {
document.e_gru.st_year.focus();
return false;
}
if (date_chk(document.e_gru.ed_year.value,document.e_gru.ed_mon.value,document.e_gru.ed_day.value)==false) {
document.e_gru.ed_year.focus();
return false;
}
st_date=document.e_gru.st_year.value+document.e_gru.st_mon.value+document.e_gru.st_day.value;
ed_date=document.e_gru.ed_year.value+document.e_gru.ed_mon.value+document.e_gru.ed_day.value;
if (st_date >ed_date){
alert("日付を正しく選択してください");
document.e_gru.st_year.focus();
return false;
}
if (document.e_gru.scdl_type[1].checked==true){
ed_date=new Date(document.e_gru.ed_year.value ,
document.e_gru.ed_mon.value - 1 ,
document.e_gru.ed_day.value );
chk_date=new Date(document.e_gru.st_year.value ,
document.e_gru.st_mon.value - 1 ,
document.e_gru.st_day.value);
intMax=(ed_date.getTime()-chk_date.getTime())/(24*60*60*1000)+1;
intset=0;
for (i=0; i<intMax; i++){
chk_date=new Date(document.e_gru.st_year.value ,
document.e_gru.st_mon.value - 1 ,
eval(document.e_gru.st_day.value)+i);
chk_yobi=chk_date.getDay();
if (chk_yobi == document.e_gru.scdl_yobi.value){
intset=1;
break;
}
}
if (intset!=1){
alert("期間を正しく選択してください");
document.e_gru.st_year.focus();
return false;
}
}
if (document.e_gru.scdl_type[2].checked==true){
ed_date=new Date(document.e_gru.ed_year.value ,
document.e_gru.ed_mon.value - 1 ,
document.e_gru.ed_day.value );
chk_date=new Date(document.e_gru.st_year.value ,
document.e_gru.st_mon.value - 1 ,
document.e_gru.st_day.value);
intMax=(ed_date.getTime()-chk_date.getTime())/(24*60*60*1000)+1;
intset=0;
for (i=0; i<intMax; i++){
chk_date=new Date(document.e_gru.st_year.value ,
document.e_gru.st_mon.value - 1 ,
eval(document.e_gru.st_day.value)+i);
chk_yobi=chk_date.getDate();
if (chk_yobi == document.e_gru.scdl_day.value){
intset=1;
break;
}
}
if (intset!=1){
alert("期間を正しく選択してください");
document.e_gru.st_year.focus();
return false;
}
}
if (document.e_gru.scdl_type[3].checked==true){
ed_date=new Date(document.e_gru.ed_year.value ,
document.e_gru.ed_mon.value - 1 ,
document.e_gru.ed_day.value );
chk_date=new Date(document.e_gru.st_year.value ,
document.e_gru.st_mon.value - 1 ,
document.e_gru.st_day.value);
document.e_gru.intDateCnt.value=(ed_date.getTime()-chk_date.getTime())/(24*60*60*1000)+1;
}
if ((document.e_gru.st_hour.value=="") && (document.e_gru.st_minute.value!="")) {
alert("時間を正しく選択してください");
document.e_gru.st_hour.focus();
return false;
}
if ((document.e_gru.ed_hour.value=="") && (document.e_gru.ed_minute.value!="")) {
alert("時間を正しく選択してください");
document.e_gru.ed_hour.focus();
return false;
}
if ((document.e_gru.st_hour.value=="") && (document.e_gru.ed_hour.value!="")){
alert("時間を正しく選択してください");
document.e_gru.st_hour.focus();
return false;
}
if ((document.e_gru.st_hour.value!="") && (document.e_gru.ed_hour.value!="")){
if(document.e_gru.st_hour.value+document.e_gru.st_minute.value > document.e_gru.ed_hour.value+document.e_gru.ed_minute.value){
alert("時間を正しく選択してください");
document.e_gru.st_hour.focus();
return false;
}
}
if (document.e_gru.plan_kbn.value==3){
if (hissu_chk("予定種別",document.e_gru.plan_komoku.value)==false) {
document.e_gru.plan_komoku.focus();
return false;
}
if (script_chk("予定種別",document.e_gru.plan_komoku.value)==false) {
document.e_gru.plan_komoku.focus();
return false;
}
document.e_gru.plan_komoku.value = document.e_gru.plan_komoku.value+" ";
}
if (hissu_chk("予定",document.e_gru.schedule.value)==false) {
document.e_gru.schedule.focus();
return false;
}
if (script_chk("予定",document.e_gru.schedule.value)==false) {
document.e_gru.schedule.focus();
return false;
}
document.e_gru.schedule.value = document.e_gru.schedule.value+" ";
if(document.e_gru.flg_share[1].checked==true){
stradd="/"
for (i=0; i<document.e_gru.syain_add.options.length; i++){
stradd = stradd+document.e_gru.syain_add.options[i].value+"/";
}
if (stradd == "//") {
alert("共有するの場合、共有者を1人以上入力してください");
return false;
}
}else{
stradd="";
}
if(document.e_gru.flg_pub[2].checked==true){
stradd2="/"
for (i=0; i<document.e_gru.syain_add2.options.length; i++){
stradd2 = stradd2+document.e_gru.syain_add2.options[i].value+"/";
}
if (stradd2 == "//") {
alert("公開先を指定する場合、公開者を1人以上入力してください");
return false;
}
}else{
stradd2="";
}
for(i=0;i<3;i++){
if (document.e_gru.scdl_type[i].checked == true){
iii=i;
break;
}
}
o = document.e_gru;
if(res_overlap_chk(o.st_year.value,o.st_mon.value,o.st_day.value,o.ed_year.value,o.ed_mon.value,o.ed_day.value,o.st_hour.value,o.st_minute.value,o.ed_hour.value,o.ed_minute.value,o.intsisetu.value,iii,o.scdl_yobi.value,o.scdl_day.value,o.intsisetu_seq.value) == false){
return false;
}
document.e_gru.syain_cd.value=syain_cd;
document.e_gru.intsts.value=flg;
document.e_gru.intseq.value=intseq;
document.e_gru.strsel.value=stradd;
document.e_gru.strsel2.value=stradd2;
document.e_gru.action = "TOP010.php";
document.e_gru.method="POST";
document.e_gru.submit();
return false;
}
function chk2(syain_cd,intseq,flg){
var stradd;
var st_date;
var ed_date;
var chk_date;
var chk_yobi;
var intMax;
var iii;
if ((document.e_gru.scdl_type[1].checked==true) && (document.e_gru.scdl_yobi.value==99)){
alert("曜日を選択してください");
document.e_gru.scdl_yobi.focus();
return false;
}
if ((document.e_gru.scdl_type[2].checked==true) && (document.e_gru.scdl_day.value==99)){
alert("日付を選択してください");
document.e_gru.scdl_day.focus();
return false;
}
if (date_chk(document.e_gru.st_year.value,document.e_gru.st_mon.value,document.e_gru.st_day.value)==false) {
document.e_gru.st_year.focus();
return false;
}
if (date_chk(document.e_gru.ed_year.value,document.e_gru.ed_mon.value,document.e_gru.ed_day.value)==false) {
document.e_gru.ed_year.focus();
return false;
}
st_date=document.e_gru.st_year.value+document.e_gru.st_mon.value+document.e_gru.st_day.value;
ed_date=document.e_gru.ed_year.value+document.e_gru.ed_mon.value+document.e_gru.ed_day.value;
if (st_date >ed_date){
alert("日付を正しく選択してください");
document.e_gru.st_year.focus();
return false;
}
if (document.e_gru.scdl_type[1].checked==true){
ed_date=new Date(document.e_gru.ed_year.value ,
document.e_gru.ed_mon.value - 1 ,
document.e_gru.ed_day.value );
chk_date=new Date(document.e_gru.st_year.value ,
document.e_gru.st_mon.value - 1 ,
document.e_gru.st_day.value);
intMax=(ed_date.getTime()-chk_date.getTime())/(24*60*60*1000)+1;
intset=0;
for (i=0; i<intMax; i++){
chk_date=new Date(document.e_gru.st_year.value ,
document.e_gru.st_mon.value - 1 ,
eval(document.e_gru.st_day.value)+i);
chk_yobi=chk_date.getDay();
if (chk_yobi == document.e_gru.scdl_yobi.value){
intset=1;
break;
}
}
if (intset!=1){
alert("期間を正しく選択してください");
document.e_gru.st_year.focus();
return false;
}
}
if (document.e_gru.scdl_type[2].checked==true){
ed_date=new Date(document.e_gru.ed_year.value ,
document.e_gru.ed_mon.value - 1 ,
document.e_gru.ed_day.value );
chk_date=new Date(document.e_gru.st_year.value ,
document.e_gru.st_mon.value - 1 ,
document.e_gru.st_day.value);
intMax=(ed_date.getTime()-chk_date.getTime())/(24*60*60*1000)+1;
intset=0;
for (i=0; i<intMax; i++){
chk_date=new Date(document.e_gru.st_year.value ,
document.e_gru.st_mon.value - 1 ,
eval(document.e_gru.st_day.value)+i);
chk_yobi=chk_date.getDate();
if (chk_yobi == document.e_gru.scdl_day.value){
intset=1;
break;
}
}
if (intset!=1){
alert("期間を正しく選択してください");
document.e_gru.st_year.focus();
return false;
}
}
if (document.e_gru.scdl_type[3].checked==true){
ed_date=new Date(document.e_gru.ed_year.value ,
document.e_gru.ed_mon.value - 1 ,
document.e_gru.ed_day.value );
chk_date=new Date(document.e_gru.st_year.value ,
document.e_gru.st_mon.value - 1 ,
document.e_gru.st_day.value);
document.e_gru.intDateCnt.value=(ed_date.getTime()-chk_date.getTime())/(24*60*60*1000)+1;
}
if ((document.e_gru.st_hour.value=="") && (document.e_gru.st_minute.value!="")) {
alert("時間を正しく選択してください");
document.e_gru.st_hour.focus();
return false;
}
if ((document.e_gru.ed_hour.value=="") && (document.e_gru.ed_minute.value!="")) {
alert("時間を正しく選択してください");
document.e_gru.ed_hour.focus();
return false;
}
if ((document.e_gru.st_hour.value=="") && (document.e_gru.ed_hour.value!="")){
alert("時間を正しく選択してください");
document.e_gru.st_hour.focus();
return false;
}
if ((document.e_gru.st_hour.value!="") && (document.e_gru.ed_hour.value!="")){
if(document.e_gru.st_hour.value+document.e_gru.st_minute.value > document.e_gru.ed_hour.value+document.e_gru.ed_minute.value){
alert("時間を正しく選択してください");
document.e_gru.st_hour.focus();
return false;
}
}
if (document.e_gru.plan_kbn.value==3){
if (hissu_chk("予定種別",document.e_gru.plan_komoku.value)==false) {
document.e_gru.plan_komoku.focus();
return false;
}
if (script_chk("予定種別",document.e_gru.plan_komoku.value)==false) {
document.e_gru.plan_komoku.focus();
return false;
}
document.e_gru.plan_komoku.value = document.e_gru.plan_komoku.value+" ";
}
if (hissu_chk("予定",document.e_gru.schedule.value)==false) {
document.e_gru.schedule.focus();
return false;
}
if (script_chk("予定",document.e_gru.schedule.value)==false) {
document.e_gru.schedule.focus();
return false;
}
document.e_gru.schedule.value = document.e_gru.schedule.value+" ";
if(document.e_gru.flg_share[1].checked==true){
stradd="/"
for (i=0; i<document.e_gru.syain_add.options.length; i++){
stradd = stradd+document.e_gru.syain_add.options[i].value+"/";
}
if (stradd == "//") {
alert("共有するの場合、共有者を1人以上入力してください");
return false;
}
}else{
stradd="";
}
if(document.e_gru.flg_pub[2].checked==true){
stradd2="/"
for (i=0; i<document.e_gru.syain_add2.options.length; i++){
stradd2 = stradd2+document.e_gru.syain_add2.options[i].value+"/";
}
if (stradd2 == "//") {
alert("公開先を指定する場合、公開者を1人以上入力してください");
return false;
}
}else{
stradd2="";
}
for(i=0;i<3;i++){
if (document.e_gru.scdl_type[i].checked == true){
iii=i;
break;
}
}
// o = document.e_gru;
// if(res_overlap_chk(o.st_year.value,o.st_mon.value,o.st_day.value,o.ed_year.value,o.ed_mon.value,o.ed_day.value,o.st_hour.value,o.st_minute.value,o.ed_hour.value,o.ed_minute.value,o.intsisetu.value,iii,o.scdl_yobi.value,o.scdl_day.value,o.intsisetu_seq.value) == false){
// return false;
// }
document.e_gru.syain_cd.value=syain_cd;
document.e_gru.intsts.value=flg;
document.e_gru.intseq.value=intseq;
document.e_gru.strsel.value=stradd;
document.e_gru.strsel2.value=stradd2;
var MaxCount = document.e_gru.elements.length;
var str = "";
var get_flg = 0;
for(i=0;i<MaxCount;i++){
get_flg=0;
input_flg=0;
if(document.e_gru.elements[i].name != "syain_cd" && document.e_gru.elements[i].name != "intsts" && document.e_gru.elements[i].name != "intseq" && document.e_gru.elements[i].name != "strsel" && document.e_gru.elements[i].name != "strsel2" && document.e_gru.elements[i].name != "Kojincomments" && document.e_gru.elements[i].name != "Etccomments"){
if(document.e_gru.elements[i].type == "hidden" || document.e_gru.elements[i].type == "select-one" || document.e_gru.elements[i].type == "seletc-multiple" || document.e_gru.elements[i].type == "radio" || document.e_gru.elements[i].type == "text" || document.e_gru.elements[i].type == "textarea"){
if(document.e_gru.elements[i].value != ""){
if(document.e_gru.elements[i].type == "radio"){
if(document.e_gru.elements[i].checked==true){
get_flg = 1;
}
}
if(document.e_gru.elements[i].type == "select-one" || document.e_gru.elements[i].type == "seletc-multiple"){
if(document.e_gru.elements[i].options[document.e_gru.elements[i].selectedIndex].selected==true){
get_flg = 1;
}
}
if(document.e_gru.elements[i].type == "hidden"){
get_flg = 1;
}
if(document.e_gru.elements[i].type == "text"){
get_flg = 1;
input_flg = 1;
}
if(document.e_gru.elements[i].type == "textarea"){
get_flg = 1;
input_flg = 1;
}
if(get_flg == 1){
var objName = document.e_gru.elements[i].name;
if(input_flg==1){
//alert(i);
//alert(MaxCount);
str = str + "&"+objName+"="+subRepURI(document.e_gru.elements[i].value);
}else{
str = str + "&"+objName+"="+(document.e_gru.elements[i].value);
}
}
}
}
}
}
// document.e_gru.action = "TOP010.php";
// document.e_gru.method="POST";
// document.e_gru.submit();
// loadHTMLFile4("TOP010_1.php?syain_cd="+syain_cd+"&intsts="+flg+"&intseq="+intseq+"&strsel="+stradd+"&strsel2="+stradd2);
loadHTMLFile4("TOP010_1.php?dummy=0"+str+"&syain_cd="+syain_cd+"&intsts="+flg+"&intseq="+intseq+"&strsel="+stradd+"&strsel2="+stradd2);
return false;
}
function get_from_data(){
return str;
}
function add(syain_cd,intseq,intaddsts){
var strsel;
var stradd;
var inti;
var intchk;
var intPt;
var strArray = new Array();
var intflg=0;
document.e_gru.intaddsts.value=intaddsts;
document.e_gru.syain_cd.value=syain_cd;
if (intaddsts==1){
document.e_gru.flg_share[1].checked=true;
inti=document.e_gru.syain_add.length-1;
for(i=0;i<document.e_gru.syain_list.length;i++){
if(document.e_gru.syain_list.options[i].selected){
//データ存在チェック
for(intchk=0;intchk<document.e_gru.syain_add.length;intchk++){
if (document.e_gru.syain_list.options[i].value==document.e_gru.syain_add.options[intchk].value){
intflg=1;
break;
}
}
//配信リスト設定
if (intflg==0){
document.e_gru.syain_add.options[inti]=new Option(document.e_gru.syain_list.options[i].text,document.e_gru.syain_list.options[i].value);
inti=inti+1;
}
intflg=0;
}
}
//最終行空文字
document.e_gru.syain_add.options[inti]=new Option(" ","");
}
else{
//削除選択データ取得
inti=0;
for(i=0;i<document.e_gru.syain_add.length;i++){
if(document.e_gru.syain_add.options[i].selected){
strArray[inti]=document.e_gru.syain_add.options[i].value;
inti=inti+1;
}
}
for(i=0;i<strArray.length;i++){
for(intchk=0;intchk<document.e_gru.syain_add.length;intchk++){
if (strArray[i]==document.e_gru.syain_add.options[intchk].value){
if (document.e_gru.syain_add.options[intchk].value!=""){
document.e_gru.syain_add.options[intchk]=null;
break;
}
}
}
}
}
}
function add2(syain_cd,intseq,intaddsts){
var strsel;
var stradd;
var inti;
var intchk;
var intPt;
var strArray = new Array();
var intflg=0;
document.e_gru.intaddsts.value=intaddsts;
document.e_gru.syain_cd.value=syain_cd;
if (intaddsts==1){
document.e_gru.flg_pub[2].checked=true;
inti=document.e_gru.syain_add2.length-1;
for(i=0;i<document.e_gru.syain_list2.length;i++){
if(document.e_gru.syain_list2.options[i].selected){
//データ存在チェック
for(intchk=0;intchk<document.e_gru.syain_add2.length;intchk++){
if (document.e_gru.syain_list2.options[i].value==document.e_gru.syain_add2.options[intchk].value){
intflg=1;
break;
}
}
//配信リスト設定
if (intflg==0){
document.e_gru.syain_add2.options[inti]=new Option(document.e_gru.syain_list2.options[i].text,document.e_gru.syain_list2.options[i].value);
inti=inti+1;
}
intflg=0;
}
}
//最終行空文字
document.e_gru.syain_add2.options[inti]=new Option(" ","");
}
else{
//削除選択データ取得
inti=0;
for(i=0;i<document.e_gru.syain_add2.length;i++){
if(document.e_gru.syain_add2.options[i].selected){
strArray[inti]=document.e_gru.syain_add2.options[i].value;
inti=inti+1;
}
}
for(i=0;i<strArray.length;i++){
for(intchk=0;intchk<document.e_gru.syain_add2.length;intchk++){
if (strArray[i]==document.e_gru.syain_add2.options[intchk].value){
if (document.e_gru.syain_add2.options[intchk].value!=""){
document.e_gru.syain_add2.options[intchk]=null;
break;
}
}
}
}
}
}
function del(intseq,syain_cd){
if (confirm("スケジュールを削除します\nよろしいですか?")){
document.e_gru.intseq.value=intseq;
document.e_gru.syain_cd.value=syain_cd;
document.e_gru.intsts.value=3;
document.e_gru.action="TOP010.php";
document.e_gru.method="POST";
document.e_gru.submit();
}
document.e_gru.intseq.value=intseq;
document.e_gru.syain_cd.value=syain_cd;
document.e_gru.method="POST";
}
function del2(intseq,syain_cd){
var MaxCount = document.e_gru.elements.length;
var str = "";
var get_flg = 0;
for(i=0;i<MaxCount;i++){
get_flg=0;
input_flg=0;
if(document.e_gru.elements[i].name != "syain_cd" && document.e_gru.elements[i].name != "intsts" && document.e_gru.elements[i].name != "intseq" && document.e_gru.elements[i].name != "strsel" && document.e_gru.elements[i].name != "strsel2" && document.e_gru.elements[i].name != "Kojincomments" && document.e_gru.elements[i].name != "Etccomments"){
if(document.e_gru.elements[i].type == "hidden" || document.e_gru.elements[i].type == "select-one" || document.e_gru.elements[i].type == "seletc-multiple" || document.e_gru.elements[i].type == "radio" || document.e_gru.elements[i].type == "text" || document.e_gru.elements[i].type == "textarea"){
if(document.e_gru.elements[i].value != ""){
if(document.e_gru.elements[i].type == "radio"){
if(document.e_gru.elements[i].checked==true){
get_flg = 1;
}
}
if(document.e_gru.elements[i].type == "select-one" || document.e_gru.elements[i].type == "seletc-multiple"){
if(document.e_gru.elements[i].options[document.e_gru.elements[i].selectedIndex].selected==true){
get_flg = 1;
}
}
if(document.e_gru.elements[i].type == "hidden"){
get_flg = 1;
}
if(document.e_gru.elements[i].type == "text"){
get_flg = 1;
input_flg = 1;
}
if(document.e_gru.elements[i].type == "textarea"){
get_flg = 1;
input_flg = 1;
}
if(get_flg == 1){
var objName = document.e_gru.elements[i].name;
if(input_flg==1){
//alert(objName);
str = str + "&"+objName+"="+subRepURI(document.e_gru.elements[i].value);
}else{
str = str + "&"+objName+"="+(document.e_gru.elements[i].value);
}
}
}
}
}
}
if (confirm("スケジュールを削除します\nよろしいですか?")){
document.e_gru.intseq.value=intseq;
document.e_gru.syain_cd.value=syain_cd;
document.e_gru.intsts.value=3;
//document.e_gru.action="TOP010.php";
//document.e_gru.method="POST";
//document.e_gru.submit();
loadHTMLFile4("TOP010_1.php?dummy=0"+str+"&syain_cd="+syain_cd+"&intsts=3&intseq="+intseq);
}
document.e_gru.intseq.value=intseq;
document.e_gru.syain_cd.value=syain_cd;
document.e_gru.method="POST";
}
function set_button(){
document.e_gru.data_add.disabled=document.e_gru.flg_share[0].checked;
document.e_gru.data_del.disabled=document.e_gru.flg_share[0].checked;
}
function banner_button(){
// document.e_gru.flg_share[0].checked=true;
// document.e_gru.data_add.disabled=true;
// document.e_gru.data_del.disabled=true;
// document.e_gru.data_add.disabled=document.e_gru.scdl_type[3].checked;
// document.e_gru.data_del.disabled=document.e_gru.scdl_type[3].checked;
// document.e_gru.flg_share[0].disabled=document.e_gru.scdl_type[3].checked;
// document.e_gru.flg_share[1].disabled=document.e_gru.scdl_type[3].checked;
}
function plan_select(){
if (document.e_gru.plan_kbn.selectedIndex==3) {
document.e_gru.plan_komoku.disabled=false;
}else{
document.e_gru.plan_komoku.disabled=true;
document.e_gru.plan_komoku.value="";
}
}
function move_top(syain_cd){
document.e_gru.syain_cd.value=syain_cd;
if (document.e_gru.intGmflg.value==1){
document.e_gru.action = "TOP002.php";
}
else{
document.e_gru.strwkdate.value=document.e_gru.strkijyunDate.value;
document.e_gru.action = "TOP000.php";
}
document.e_gru.method="POST";
document.e_gru.submit();
return false;
}
function clause_input(syain_cd){
$("TOP001").innerHTML = "";
}
function fnc_opt(flg){
if(flg==1){
document.getElementById("optional_data").style.display = "block";
}else{
document.getElementById("optional_data").style.display = "none";
}
}
function Syn_Date(flg){
//日付同期処理
if(flg==1){
//年
for(i=0;i<document.e_gru.ed_year.length;i++){
if(document.e_gru.ed_year[i].value == document.e_gru.st_year.value){
document.e_gru.ed_year.selectedIndex = i;
break;
}
}
}else if(flg==2){
//月
for(i=0;i<document.e_gru.ed_mon.length;i++){
if(document.e_gru.ed_mon[i].value == document.e_gru.st_mon.value){
document.e_gru.ed_mon.selectedIndex = i;
break;
}
}
}else if(flg==3){
//日
for(i=0;i<document.e_gru.ed_day.length;i++){
if(document.e_gru.ed_day[i].value == document.e_gru.st_day.value){
document.e_gru.ed_day.selectedIndex = i;
break;
}
}
}
}
</SCRIPT>