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
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
|
<? include_once("./_common.php"); include("./include/common/header.php");
if (!isset($height)) $height = ""; if (!isset($MenuImage_dis)) $MenuImage_dis = "";
if( isset($category_code) && $category_code !== "" && isset($cate2_code) && $cate2_code !== ""){
$cate3Qry = " SELECT * FROM cate3_info WHERE cate2_code = '$cate2_code' and category_code = '$category_code' "; $cate3Result = MYSQL_QUERY($cate3Qry);
if( MYSQL_NUM_ROWS($cate3Result) > 0 ){
$cate3Row = MYSQL_FETCH_ARRAY($cate3Result); $cate3Name = explode( "->" , $cate3Row['category_name']); } }
//Á¦Ç° ±âº»»çÁø À̹ÌÁö $cate3Row['goods_img'] = str_replace("jpg", "gif", $cate3Row['goods_img']); $goods_img = "./images/software/".$cate3Row['goods_img']; ?>
<div class="location"> <div class="wrap"> <a href="./mall.php" class="home"><span class="screen_out">Home</span></a> <span>></span> <a href="./sw_list.php"><span class="depth1">¼ÒÇÁÆ®¿þ¾î Á¦Ç°±º</span></a> <span>></span><span class="depth2"><?=$cate3Row['programName'];?></span> </div><!-- //wrap --> </div><!-- //location -->
<div class="wrap">
<style> .error_area {position:relative;display:block;margin:0 auto;/*width:990px;*/} #download1, #download2, #download3 { position:absolute;width:430px;height:280px;background:url('https://mjsoft.co/html/millennium/images/banner_cs3/download_bg_1.png') no-repeat;z-index: 100;} #manual { position:absolute; padding:2px 0 0; width:200px; height:37px; background:url('./images/millennium/btn_area2.png') no-repeat; z-index: 100;} .error_area .text {margin:0 0 5px;padding:65px 0 0;color:#555;font-size:13px;text-align:center;letter-spacing:0.5px;} .error_area .big {font-size:16px;font-weight:600;} .orange {color:#ff6600;font-weight:600;} .sky {color:#585CBD;font-weight:600;} .close_btn {position:absolute;top:15px;right:15px;width:50px;height:50px;cursor:pointer;} .btn_area {width:272px;margin:0 auto;} .btn_area a {margin:0 3px;} .orange_btn { display:block;float:left;width:130px;height:45px;line-height:45px; color:#fff !important;font-size:14px;font-weight:600;text-align:center;text-decoration:none; background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ff8400), color-stop(1, #db5304)); background:-moz-linear-gradient(top, #ff8400 5%, #db5304 100%); background:-webkit-linear-gradient(top, #ff8400 5%, #db5304 100%); background:-o-linear-gradient(top, #ff8400 5%, #db5304 100%); background:-ms-linear-gradient(top, #ff8400 5%, #db5304 100%); background:linear-gradient(to bottom, #ff8400 5%, #db5304 100%); filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff8400', endColorstr='#db5304',GradientType=0); background-color:#ff8400; -moz-border-radius:4px; -webkit-border-radius:4px; border-radius:4px; } .orange_btn:hover { background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #db5304), color-stop(1, #ff8400)); background:-moz-linear-gradient(top, #db5304 5%, #ff8400 100%); background:-webkit-linear-gradient(top, #db5304 5%, #ff8400 100%); background:-o-linear-gradient(top, #db5304 5%, #ff8400 100%); background:-ms-linear-gradient(top, #db5304 5%, #ff8400 100%); background:linear-gradient(to bottom, #db5304 5%, #ff8400 100%); filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#db5304', endColorstr='#ff8400',GradientType=0); background-color:#db5304; } .green_btn { display:block;float:left;width:130px;height:45px;line-height:45px; color:#fff !important;font-size:14px;font-weight:600;text-align:center;text-decoration:none; background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #9cc720), color-stop(1, #7da117)); background:-moz-linear-gradient(top, #9cc720 5%, #7da117 100%); background:-webkit-linear-gradient(top, #9cc720 5%, #7da117 100%); background:-o-linear-gradient(top, #9cc720 5%, #7da117 100%); background:-ms-linear-gradient(top, #9cc720 5%, #7da117 100%); background:linear-gradient(to bottom, #9cc720 5%, #7da117 100%); filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#9cc720', endColorstr='#7da117',GradientType=0); background-color:#9cc720; -moz-border-radius:4px; -webkit-border-radius:4px; border-radius:4px; cursor:pointer; } .green_btn:hover { background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #7da117), color-stop(1, #9cc720)); background:-moz-linear-gradient(top, #7da117 5%, #9cc720 100%); background:-webkit-linear-gradient(top, #7da117 5%, #9cc720 100%); background:-o-linear-gradient(top, #7da117 5%, #9cc720 100%); background:-ms-linear-gradient(top, #7da117 5%, #9cc720 100%); background:linear-gradient(to bottom, #7da117 5%, #9cc720 100%); filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#7da117', endColorstr='#9cc720',GradientType=0); background-color:#7da117; } </style> <div class='error_area'> <div id="download1"> <div class="text"> <span class="big orange">Àá±ñ!</span> <span class="big sky">¼³Ä¡°¡ ¾ÈµÉ ¶§</span><br> "<span class="big orange">¹ÙÀÌ·¯½º ¶§¹®ÀÌ ¾Æ´Õ´Ï´Ù.</span>"<br> °¢Á¾ º¸¾È¼³Á¤À¸·Î ¼³Ä¡°¡ ¾ÈµÉ ¼ö ÀÖ½À´Ï´Ù.<br> <span class="big sky">¿ø°Ý¼³Ä¡(±³À°)¿äû</span>À» ÇØÁֽøé <span class="big sky">Àü¹® »ó´ã¿ø</span>ÀÌ<br> <span class="big orange">20ºÐ ³» ¿ø°Ý</span>À¸·Î <span class="big orange">¼³Ä¡(»ç¿ë¼³¸í)</span> ÇØ µå¸³´Ï´Ù.<br> <span class="big">¼³Ä¡¹®ÀÇ : <span class="sky">02) 401-5121 / 1566-8680</span></span><br> <br> - MJSOFT °í°´Áö¿ø½Ç - </div>
<? if ($category_code == "82" || $category_code == "81" || $category_code == "03" || $category_code == "02" || $category_code == "01" || $category_code == "41" || $category_code == "40" || $category_code == "28" || $category_code == "37" || $category_code == "95" || $category_code == "96" || $category_code == "08" || $category_code == "07" || $category_code == "54" || $category_code == "56") { //¿¬µ¿±â±â ¾øÀ» ¶§ ?> <div class="btn_area"> <input type="hidden" name="download_file[]" value="https://mjsoft.co/download/<?=$cate3Row['DemoDownFile'];?>"> <a class="orange_btn">Á÷Á¢¼³Ä¡</a> <a class="install_btn green_btn">¼³Ä¡(±³À°)¿äû</a> </div> <? } else { //¼³Ä¡¿äû ¾øÀ½ ?>
<div class="btn_area" style="width:136px;"> <!-- <a href="http://mjsoft.co/download/<?=$cate3Row['DemoDownFile'];?>" class="orange_btn">Á÷Á¢¼³Ä¡</a> --> <input type="hidden" name="download_file[]" value="https://mjsoft.co/download/<?=$cate3Row['DemoDownFile'];?>"> <a class="orange_btn">Á÷Á¢¼³Ä¡</a> </div>
<? } ?>
<a class="close_btn"></a> </div> </div> <script> $(function(){ $("#download1, #download2, #download3, #manual").hide(); $("#id_message").click(function(){ $("#download1").css("top","120px").css("left","300px").fadeIn("fast"); var down_value = $('#download1').find("input[name='download_file[]']").val(); $('#download1 .orange_btn').attr('href', down_value); return false; }); $(".install_btn").click(function(){ $div_obj = $(this).closest("div"); $.get("install_req.inc.php?smtitle=<?php echo $cate2_code.$category_code;?>",function(rtn){ $("#modal_member_box").html(rtn).dialog({ resizable: true, height:520, width:500, modal: true, title: "¿ø°Ý¼³Ä¡(±³À°) Áö¿ø³»¿ë" }); $(".close_btn").click(); }); });
$(".close_btn").click(function(){ $("#download1, #download2").css('display','none'); return false; }); });
</script>
<div class="goodsDetail"> <div class="goodsDetail_view">
<? if ($category_code == "13" || $category_code == "15" || $category_code == "16" || $category_code == "17" || $category_code == "18" || $category_code == "28" || $category_code == "10" || $category_code == "09" || $category_code == "08" || $category_code == "07" || $category_code == "96" || $category_code == "32" || $category_code == "37" || $category_code == "38" ) { //¿¬µ¿±â±â ¾øÀ» ¶§ ?> <p class="goodsImages_none"><img src="<?=$goods_img;?>" alt="À̹ÌÁö"></p>
<? } else { // ¿¬µ¿±â±â ÀÖÀ» ¶§ ?> <p class="goodsImages"><img src="<?=$goods_img;?>" alt="À̹ÌÁö"></p>
<? // ¿¬µ¿±â±â ÀÖÀ» ¶§ ³¡ } ?>
<? if ($category_code == "01" || $category_code == "02" || $category_code == "03" || $category_code == "81" || $category_code == "82" || $category_code == "40" || $category_code == "41" || $category_code == "54" || $category_code == "55" || $category_code == "56" || $category_code == "21" || $category_code == "22" || $category_code == "23" || $category_code == "04" || $category_code == "14" || $category_code == "31" || $category_code == "11" || $category_code == "95") { //¿¬µ¿±â±â°¡ ÀÖ´Â Á¦Ç° ?> <div class="goodsHw"> <h5>¿¬µ¿±â±â</h5> <ul>
<? if ($category_code == "03" || $category_code == "82" || $category_code == "41") { ?> <li><a href="./hw_list.php#pda"><img src="./images/software/goodsHw_1.gif" alt="PDA"></a></li> <li><a href="#"><img src="./images/software/goodsHw_2.gif" alt="½º¸¶Æ®Æù"></a></li> <li><a href="./hw_list.php#pos"><img src="./images/software/goodsHw_3.gif" alt="POS"></a></li> <li><a href="./hw_list.php#scanner"><img src="./images/software/goodsHw_4.gif" alt="¹ÙÄڵ彺ij³Ê"></a></li> <li class="last"><a href="./hw_list.php#print"><img src="./images/software/goodsHw_5.gif" alt="¹ÙÄÚµåÇÁ¸°ÅÍ"></a></li>
<? } elseif ($category_code == "02" || $category_code == "81" || $category_code == "40") { ?> <li><a href="./hw_list.php#pda"><img src="./images/software/goodsHw_1.gif" alt="PDA"></a></li> <li><a href="./hw_list.php#pos"><img src="./images/software/goodsHw_3.gif" alt="POS"></a></li> <li><a href="./hw_list.php#scanner"><img src="./images/software/goodsHw_4.gif" alt="¹ÙÄڵ彺ij³Ê"></a></li> <li class="last"><a href="./hw_list.php#print"><img src="./images/software/goodsHw_5.gif" alt="¹ÙÄÚµåÇÁ¸°ÅÍ"></a></li>
<? } elseif ($category_code == "01") { ?> <li class="last"><a href="./hw_list.php#print"><img src="./images/software/goodsHw_6.gif" alt="¿µ¼öÁõÇÁ¸°ÅÍ"></a></li>
<? } elseif ($category_code == "54" || $category_code == "56") { ?> <li><img src="./images/software/goodsHw_51.gif" alt="ÀüÀÚ°è»ê¼"></li> <li><img src="./images/software/goodsHw_52.gif" alt="Á¾À̰è»ê¼"></li> <li class="last"><img src="./images/software/goodsHw_53.gif" alt="°Å·¡¸í¼¼Ç¥"></li>
<? } elseif ($category_code == "55") { ?> <li class="last"><img src="./images/software/goodsHw_51.gif" alt="ÀüÀÚ°è»ê¼"></li>
<? } elseif ($category_code == "21") { //PDA ?> <li><a href="./sw_detail.php?cate2_code=01&category_code=03"><img src="./images/software/goodsHw_21.gif" alt="õ³â°æ¿µCS"></a></li> <li class="plus">+</li> <li><a href="./hw_list.php#pda"><img src="./images/software/goodsHw_1.gif" alt="PDA"></a></li> <li class="plus">+</li> <li class="last"><img src="./images/software/goodsHw_23.gif" alt="PDA CM"></li>
<? } elseif ($category_code == "22") { ?> <li><a href="./sw_detail.php?cate2_code=01&category_code=03"><img src="./images/software/goodsHw_21.gif" alt="õ³â°æ¿µCS"></a></li> <li class="plus">+</li> <li><a href="./hw_list.php#pda"><img src="./images/software/goodsHw_1.gif" alt="PDA"></a></li> <li class="plus">+</li> <li class="last"><img src="./images/software/goodsHw_24.gif" alt="PDA WL"></li>
<? } elseif ($category_code == "23") { ?> <li><a href="./sw_detail.php?cate2_code=01&category_code=02"><img src="./images/software/goodsHw_22.gif" alt="õ³â°æ¿µII"></a></li> <li class="plus">+</li> <li><a href="./hw_list.php#pda"><img src="./images/software/goodsHw_1.gif" alt="PDA"></a></li> <li class="plus">+</li> <li class="last"><img src="./images/software/goodsHw_25.gif" alt="PDA LC"></li>
<? } elseif ($category_code == "04" || $category_code == "14" || $category_code == "31") { //POS ?> <li><a href="./hw_list.php#scanner"><img src="./images/software/goodsHw_4.gif" alt="¹ÙÄڵ彺ij³Ê"></a></li> <li><a href="./hw_list.php#print"><img src="./images/software/goodsHw_6.gif" alt="¿µ¼öÁõÇÁ¸°ÅÍ"></a></li> <li><a href="./hw_list.php#print"><img src="./images/software/goodsHw_5.gif" alt="¹ÙÄÚµåÇÁ¸°ÅÍ"></a></li> <li><a href="./hw_list.php#pos"><img src="./images/software/goodsHw_34.gif" alt="Ä«µå¸®´õ±â"></a></li> <li class="last"><a href="./hw_list.php#pos"><img src="./images/software/goodsHw_35.gif" alt="±ÝÀüÇÔ"></a></li>
<? } elseif ($category_code == "11") { ?> <li><a href="./hw_list.php#scanner"><img src="./images/software/goodsHw_4.gif" alt="¹ÙÄڵ彺ij³Ê"></a></li> <li><a href="./hw_list.php#print"><img src="./images/software/goodsHw_5.gif" alt="¹ÙÄÚµåÇÁ¸°ÅÍ"></a></li> <li><a href="./hw_list.php#pos"><img src="./images/software/goodsHw_8.gif" alt="Ä«µå¸®´õ±â"></a></li> <li class="last"><a href="./hw_list.php#customer"><img src="./images/software/goodsHw_9.gif" alt="°í°´Ä«µå"></a></li>
<? } elseif ($category_code == "95") { ?> <li><a href="./hw_list.php#scanner"><img src="./images/software/goodsHw_4.gif" alt="¹ÙÄڵ彺ij³Ê"></a></li> <li><img src="./images/software/goodsHw_2.gif" alt="½º¸¶Æ®Æù"></li> <li class="last"><a href="./paper_list.php#print"><img src="./images/software/goodsHw_5.gif" alt="¹ÙÄÚµåÇÁ¸°ÅÍ"></a></li>
<? } ?>
</ul> </div>
<? } else { ?>
<? } //¿¬µ¿±â±â ³¡ ?>
<? //ÁÂÃø¹öư ¾øÀ» ¶§ if( $category_code == "13" || $category_code == "15" ) { ?> <!-- ¹öư ¾øÀ» ¶§´Â °ø¶õ -->
<? } else { //ÁÂÃø¹öư ÀÖÀ» ¶§ ³¡ ?>
<!-- »ó´ÜÁ¦Ç° ¹Ø ÁÂÃø¹öư --> <div class="goodsDetail_btn"> <? if( $category_code=="01" || $category_code=="02" || $category_code=="03" || $category_code=="54" || $category_code=="55" || $category_code=="56" ) { ?> <a href="javascript:compare('<?=$cate2_code;?>','<?=$category_code;?>');" class="btn"> <span>CS / II / Lite Á¦Ç°ºñ±³</span> </a> <? } elseif( $category_code=="81" || $category_code=="82"){ ?> <a href="./sw_detail.php?cate2_code=01&category_code=13" class="btn"> <span>½º¸¶Æ®Æù¿µ¾÷°ü¸®</span> </a>
<? } elseif( $category_code=="40" || $category_code=="41"){ ?> <a href="javascript:compare('<?=$cate2_code;?>','<?=$category_code;?>');" class="btn"> <span>ProCS / CS Á¦Ç°ºñ±³</span> </a> <? } elseif( $category_code=="21" || $category_code=="22" || $category_code=="23" ){ ?> <a href="javascript:compare('<?=$cate2_code;?>','<?=$category_code;?>');" class="btn"> <span>CM / WL / LC Á¦Ç°ºñ±³</span> </a> <? } elseif( $category_code == "04" || $category_code == "14" || $category_code == "31" ){ ?> <a href="javascript:compare('<?=$cate2_code;?>','<?=$category_code;?>');" class="btn"> <span>Æ÷½º±â´É</span> </a> <? } elseif( $category_code == "11" ){ ?> <a href="./sw_detail.php?cate2_code=06&category_code=95" class="btn"> <span>°íÁ¤ÀÚ»ê°ü¸®</span> </a> <? } elseif( $category_code == "95" ){ ?> <a href="javascript:csVersion();" class="btn"> <span>CS¹öÀüÀ̶õ?</span> </a> <? } else if($category_code=="18" ) { ?> <a href="javascript:MJoutlogin();" class="btn"> <!-- <a href="javascript:window.open('http://mjsoft.co/onlinecs/mjoutlogin.php', '', 'width=420, height=250, menubar=no, location=no, toolbar=no, scrollbar=no')", class="btn"> --> <span>e-¼ö¹ßÁÖ ·Î±×ÀÎ</span> </a> <? } else if($category_code=="16" ) { ?> <a href="http://me2.do/xTkZwaoT " class="btn"> <span>¾Û ´Ù¿î·Îµå</span> </a> <? } elseif( $category_code == "17" ){ ?> <a href="http://me2.do/G47PavDK " class="btn"> <span>¾Û ´Ù¿î·Îµå</span> </a> <? } ?>
<!-- »ó´ÜÁ¦Ç° ¹Ø ¿ìÃø¹öư --> <? if( $category_code == "01" || $category_code == "02" || $category_code == "03" || $category_code == "40" || $category_code == "41") { ?> <a href="./sw_detail.php?cate2_code=01&category_code=13" class="btn right"><span>¿µ¾÷°ü¸®¾Û</span></a> <? } else if( $category_code == "81" || $category_code == "82" ) { ?> <a href="./sw_list.php#pda" class="btn right"><span>PDA¿µ¾÷°ü¸®</span></a>
<? } else if( $category_code == "54" || $category_code == "55" || $category_code == "56" ) { ?> <a href="#popOperationGuide" class="right taxOpen"><span>ÀÌ¿ë¾È³»</span></a> <? } else if( $category_code == "21" || $category_code == "22" || $category_code == "23" ) { ?> <a href="javascript:eduPda();" class="right"><span>PDAµ¿¿µ»ó</span></a>
<? } else if( $category_code == "04" ) { ?> <a href="http://pos1000.co.kr/html/software/ubipos.php" target="_blank" class="right"><span>POS ÀÚ¼¼È÷º¸±â</span></a>
<? } else if( $category_code == "14" || $category_code == "31" ) { ?> <a href="http://pos1000.co.kr/html/software/easytable.php" target="_blank" class="right"><span>POS ÀÚ¼¼È÷º¸±â</span></a>
<? } else if( $category_code == "11" ){ ?> <a href="./paper_list.php#bar" target="_blank" class="right"><span>¹ÙÄÚµå¶óº§Áö</span></a>
<? } else if( $category_code == "95" ){ ?> <a href="http://mjsoft.co/download/amscs_setup.exe" class="right"><span>CS¹öÀü ´Ù¿î·Îµå</span></a>
<? } else if( $category_code == "18" ) { ?> <a href="./sw_detail.php?cate2_code=01&category_code=16" class="right"><span>õ³â½º¸¶Æ®¹ßÁÖ</span></a>
<? } else if( $category_code == "16" ) { ?> <a href="./sw_detail.php?cate2_code=06&category_code=18" class="right"><span>e-¼ö¹ßÁÖ</span></a>
<? } else if( $category_code == "17" ) { ?> <a href="./sw_detail.php?cate2_code=06&category_code=95" class="right"><span>ÀÚ»ê°ü¸®Pro</span></a>
<? } ?> </div><!-- //goodsDetail_btn -->
<? //ÁÂÃø¹öư ÀÖÀ» ¶§ ³¡ } ?>
</div><!-- //goodsDetail_view -->
<div class="goodsDetail_about" style="padding:0 0 40px;"> <div class="goodView_cont"> <h4> <p><?=$cate3Row['category_info'];?></p> <?=$cate3Row['programName'];?> <span><?=$cate3Row['category_text'];?><!-- ÆÇ¸Å.Àç°í.¿µ¾÷.¹ÙÄÚµå.PDA.POS.À§Å¹°ü¸® --></span> </h4> <table summary="Á¦Ç°Á¤º¸¿¡ °üÇÑ Ç¥·Î½á, µ¥ÀÌÅÍÀúÀå, ÆÇ¸Å¹æ½Ä, °¡°Ý µîÀÇ Á¤º¸¸¦ Á¦°øÇÕ´Ï´Ù."> <caption class="screen_out">Á¦Ç°Á¤º¸</caption> <colgroup> <col width="90"><col width="420"> </colgroup> <tbody> <tr> <th>°¡°Ý</th> <td> <? if( $category_code == "55" || $category_code == "38") { //ÀÌÁöÅØ½ºLite, ¹®ÀÚ·Î ?> <span class="sellPrice"><?=$cate3Row['selling_price'];?></span> <? } else if( $category_code == "56" || $category_code == "54" || $category_code == "21" || $category_code == "22" || $category_code == "23" || $category_code == "04" || $category_code == "14" || $category_code == "31" || $category_code == "13" || $category_code == "15" || $category_code == "16" || $category_code == "17" || $category_code == "18") { //ÀÌÁöÅØ½º2/CS, õ³âPDA, õ³âÆ÷½º, ½º¸¶Æ®Æù, ¼ö¹ßÁÖ, ÀÚ»ê ?> <span class="etcPrice"><?=$cate3Row['retail_price'];?> :</span><span class="sellPrice"> <?=$cate3Row['selling_price'];?></span> <? } else { ?> <!--span>Á¤»ó°¡ : </span--> <span class="retailPrice"><?=$cate3Row['retail_price'];?></span> <span class="priceArrow">¡æ</span> <span>ÀÎÅͳݰ¡ : </span> <span class="sellPrice"><?=$cate3Row['selling_price'];?></span> <span>(1User/Vatº°µµ)</span> <? } ?> </td> </tr> <tr> <th rowspan="2"></th> <td> <span class="Related_link"><a href="./customerprice.php">°ßÀû¿äû</a></span> <span class="Related_link"><a href="./paper_list.php" target="_blank">¿ëÁö±¸¸Å</a></span> </td> </tr> <tr> <td class="tel">¢Ï Àüȹ®ÀÇ : (02) 401-5121</td> </tr> <tr> <th>¹è¼Û·á</th><td><?=$cate3Row['shipping_charge'];?></td> </tr>
<tr> <td colspan="2" class="gray_line"></td> </tr>
<tr> <th>¹öÀü</th><td>ÃֽŹöÀü<?=$cate3Row['version'];?></td> </tr> <tr> <th>DataÀúÀå</th><td><?=$cate3Row['save_data'];?></td> </tr> <tr> <th>ÆÄÀÏÅ©±â</th><td><?=$cate3Row['file_size'];?></td> </tr> <tr> <th>¿î¿µÃ¼Á¦</th><td><?=$cate3Row['operating_system'];?></td> </tr> <tr> <th>ÆÇ¸Å¹æ½Ä</th><td><?=$cate3Row['sales_system'];?></td> </tr> </tbody> </table> </div>
<div class="goodBuy_btn"> <ul> <li><!-- (1) ¹«·á´Ù¿î·Îµå --> <? if( $cate3Row['DemoDownFile'] !== "") { if( $category_code == "21" || $category_code == "22" || $category_code == "23" ) { //PDA ?> <a href="javascript:pdadown();" class="download">¹«·á¼³Ä¡</a>
<? } else if( $category_code == "13" || $category_code == "15" || $category_code == "16" || $category_code == "17" ) { //smart ?> <a href="javascript:appdown();" class="download">¾Û ´Ù¿î·Îµå</a> <? } else { //»óǰ±º ?> <a href= "https://mjsoft.co/download/<?=$cate3Row['DemoDownFile'];?>" class="download" id="id_message">¹«·á´Ù¿î·Îµå</a> <>
<? } } ?> </li><!-- //¹«·á´Ù¿î·Îµå -->
<li><!-- (2) Á¦Ç°¼³¸í¼ ¹öư--> <? if( $cate3Row['ManualDocumentFile'] !== "") { if( $category_code == "03" || $category_code == "02" || $category_code == "01" ){ //õ³â°æ¿µ ?> <a href="https://mjsoft.co/save_dir/doc/<?=$cate3Row['ManualDocumentFile'];?>" class="manual2">Çѱۼ³¸í¼</a> <a href="https://mjsoft.co/html/millennium/webmanual.php" target="_blank" class="manual2 last">À¥¼³¸í¼</a>
<? } else if( $category_code == "13" || $category_code == "15" || $category_code == "16" || $category_code == "17" ){ //õ³â°æ¿µ ?> <a href="#View" class="manual">ȸé¹Ì¸®º¸±â</a>
<? } else { //Á¦Ç°±º ?> <a href="https://mjsoft.co/save_dir/doc/<?=$cate3Row['ManualDocumentFile'];?>" class="manual">Á¦Ç°¼³¸í¼</a> <? } } ?> </li><!-- //Á¦Ç°¼³¸í¼ -->
<li class="last"><!-- (3) Á¦Ç°±¸¸Å--> <? /*Á¤Ç°*/ $TMP_ProductCode = "01".$cate2_code.$category_code;
$ModeQry = "SELECT ProductMode FROM Product WHERE SUBSTRING(ProductCode, 1, 6) = '$TMP_ProductCode' and ProductMode = '1' "; $ModeResult = MYSQL_QUERY($ModeQry);
if( MYSQL_NUM_ROWS($ModeResult) > 0){
if ( $category_code == "54" || $category_code == "55" || $category_code == "56"){ //ÀÌÁöÅØ½º¹®±¸¼öÁ¤ ?> <a onClick="settle('1','<?=$TMP_ProductCode;?>');" class="buy">ÀÌ¿ë·á°áÁ¦</a>
<? } else if( $category_code == "81" ) { //õ³â3 ?>
<a href="./Order_01_cs3.php?mode=1&category_code=010181" class="buy">Á¦Ç°±¸¸Å</a>
<? } else if( $category_code == "82" ) { //õ³â3 CS ?>
<a href="./Order_01_cs3.php?mode=1&category_code=010182" class="buy">Á¦Ç°±¸¸Å</a>
<? } else { ?>
<a onClick="settle('1','<?=$TMP_ProductCode;?>');" class="buy">Á¦Ç°±¸¸Å</a>
<? } } ?>
<? if( $category_code == "21" || $category_code == "22" || $category_code == "23") { //PDA ?>
<a href="javascript:pdaPrice();" class="buy">°¡°Ý¾È³»</a>
<? } else if( $category_code == "13" || $category_code == "15" || $category_code == "16" || $category_code == "17" ) { //smart ?>
<a href="javascript:appPrice();" class="buy">°¡°Ý¾È³»</a>
<? } else if( $category_code == "04" ) { //õ³âPOS ?>
<a href="./Order_01.php?mode=1&category_code=010103" class="buy">Á¦Ç°±¸¸Å</a>
<? } ?>
</li><!-- //±¸¸ÅÇϱâ --> </ul> </div><!-- //goodBuy_btn -->
<style> #error { position:absolute; padding:15px 0 0; width:360px; height:30px; background:url('https://mjsoft.co/html/millennium/images/millennium/item_buy_error.png') no-repeat; z-index: 100;} #error p {color:#ff6600;height:19px;font-size:13px;text-align:center;font-weight:600;} #error p span {letter-spacing:-1px;} </style> <div id="error"> <p><span>¼³Ä¡°¡ ¾ÈµÇ´Â °æ¿ì ÀüÈÁÖ¼¼¿ä!</span> 02)401-5121 / 1566-8680 </p> </div> <script> $("#error").hide();
/*$("#id_message").mouseover(function(){ $("#error").css("top","448px").css("left","0px").fadeIn("fast"); return false; });
$("#id_message").mouseout(function(){ $("#error").fadeOut("fast"); return false; });*/ </script> </div><!-- //goodsDetail_about --> </div><!-- //goodsDetail -->
<? //°ü·ÃÁ¦Ç° »óǰ±º if( $category_code== "01" || $category_code== "02" || $category_code== "03" || $category_code== "13" || $category_code== "15" || $category_code== "16" || $category_code== "40" || $category_code== "41" || $category_code== "21" || $category_code== "22" || $category_code== "23" || $category_code== "18" || $category_code== "95" || $category_code== "17" || $category_code== "54" || $category_code== "55" || $category_code== "56" ){ ?>
<div class="relatedGoods"> <h3>°ü·ÃÁ¦Ç°</h3>
<? if ($category_code== "03") { //õ³â°æ¿µCS $Item01 = "pda"; $Item02 = "m_s"; $Item03 = "m_2"; $Item04 = "m_lite";
$Text01 = "PDA ¿µ¾÷°ü¸®"; $Text02 = "À¥¿ë ÆÇ¸Å/Àç°í°ü¸®"; $Text03 = "È®ÀåÇü ÆÇ¸Å/Àç°í°ü¸®"; $Text04 = "±âº»Çü ÆÇ¸Å/Àç°í°ü¸®";
$Title01 = "õ³âPDA CM"; $Title02 = "õ³â°æ¿µS"; $Title03 = "õ³â°æ¿µII"; $Title04 = "õ³â°æ¿µLite";
$Link01 = "cate2_code=07&category_code=21"; $Link02 = "cate2_code=01&category_code=13"; $Link03 = "cate2_code=01&category_code=02"; $Link04 = "cate2_code=01&category_code=01";
} else if ( $category_code=="13" || $category_code== "15" || $category_code=="16" ) { //õ³â°æ¿µS, ½º¸¶Æ®¹ßÁÖ, ½º¸¶Æ®°áÁ¦ $Item01 = "m_cs"; $Item02 = "m_s"; $Item03 = "s_order"; $Item04 = "m_order";
$Text01 = "À¥¿ë ÆÇ¸Å/Àç°í°ü¸®"; $Text02 = "½º¸¶Æ®Æù¿µ¾÷°ü¸®"; $Text03 = "½º¸¶Æ®Æù ÁÖ¹®°ü¸®"; $Text04 = "À¥¿ë ÁÖ¹®°ü¸®";
$Title01 = "õ³â°æ¿µCS"; $Title02 = "õ³â°æ¿µS"; $Title03 = "õ³â½º¸¶Æ®¹ßÁÖ"; $Title04 = "¿Â¶óÀμö¹ßÁÖ";
$Link01 = "cate2_code=01&category_code=03"; $Link02 = "cate2_code=01&category_code=13"; $Link03 = "cate2_code=01&category_code=16"; $Link04 = "cate2_code=06&category_code=18";
} else if ($category_code== "02") { //õ³â°æ¿µII $Item01 = "pda_lc"; $Item02 = "m_cs"; $Item03 = "m_lite"; $Item04 = "tax_2";
$Text01 = "PDA ¿µ¾÷°ü¸®"; $Text02 = "À¥¿ë ÆÇ¸Å/Àç°í°ü¸®"; $Text03 = "±âº»Çü ÆÇ¸Å/Àç°í°ü¸®"; $Text04 = "È®ÀåÇü ÆÇ¸Å/Àç°í°ü¸®";
$Title01 = "õ³âPDA LC"; $Title02 = "õ³â°æ¿µCS"; $Title03 = "õ³â°æ¿µLite"; $Title04 = "ÀÌÁöÅØ½ºII";
$Link01 = "cate2_code=07&category_code=23"; $Link02 = "cate2_code=01&category_code=03"; $Link03 = "cate2_code=01&category_code=01"; $Link04 = "cate2_code=06&category_code=18";
} else if ($category_code== "01" || $category_code== "40" || $category_code== "41") { //õ³â°æ¿µLite, Á¦Á¶°æ¿µPro 2°³ $Item01 = "m_2"; $Item02 = "m_cs"; $Item03 = "pda"; $Item04 = "m_s";
$Text01 = "È®ÀåÇü ÆÇ¸Å/Àç°í°ü¸®"; $Text02 = "À¥¿ë ÆÇ¸Å/Àç°í°ü¸®"; $Text03 = "PDA ¿µ¾÷°ü¸®"; $Text04 = "½º¸¶Æ®Æù ¿µ¾÷°ü¸®";
$Title01 = "õ³â°æ¿µII"; $Title02 = "õ³â°æ¿µCS"; $Title03 = "õ³âPDA CM"; $Title04 = "õ³â°æ¿µS";
$Link01 = "cate2_code=01&category_code=02"; $Link02 = "cate2_code=01&category_code=03"; $Link03 = "cate2_code=07&category_code=21"; $Link04 = "cate2_code=01&category_code=13";
} else if ($category_code== "21" || $category_code== "22" || $category_code== "23") { //pda $Item01 = "m_s"; $Item02 = "m_2"; $Item03 = "m_cs"; $Item04 = "m_lite";
$Text01 = "½º¸¶Æ®Æù ¿µ¾÷°ü¸®"; $Text02 = "È®ÀåÇü ÆÇ¸Å/Àç°í°ü¸®"; $Text03 = "À¥¿ë ÆÇ¸Å/Àç°í°ü¸®"; $Text04 = "±âº»Çü ÆÇ¸Å/Àç°í°ü¸®";
$Title01 = "õ³â°æ¿µS"; $Title02 = "õ³â°æ¿µCS"; $Title03 = "õ³â°æ¿µII"; $Title04 = "õ³â°æ¿µLite";
$Link01 = "cate2_code=01&category_code=13"; $Link02 = "cate2_code=01&category_code=03"; $Link03 = "cate2_code=01&category_code=02"; $Link04 = "cate2_code=01&category_code=01";
} else if ($category_code== "18") { //e¼ö¹ßÁÖ $Item01 = "pda"; $Item02 = "m_2"; $Item03 = "m_cs"; $Item04 = "m_lite";
$Text01 = "PDA ¿µ¾÷°ü¸®"; $Text02 = "È®ÀåÇü ÆÇ¸Å/Àç°í°ü¸®"; $Text03 = "À¥¿ë ÆÇ¸Å/Àç°í°ü¸®"; $Text04 = "±âº»Çü ÆÇ¸Å/Àç°í°ü¸®";
$Title01 = "õ³âPDA CM"; $Title02 = "õ³â°æ¿µII"; $Title03 = "õ³â°æ¿µCS"; $Title04 = "õ³â°æ¿µLite";
$Link01 = "cate2_code=07&category_code=21"; $Link02 = "cate2_code=01&category_code=02"; $Link03 = "cate2_code=01&category_code=03"; $Link04 = "cate2_code=01&category_code=01";
} else if ($category_code== "54" || $category_code== "55" || $category_code== "56" ) { //ÀÌÁöÅØ½º $Item01 = "m_cs"; $Item02 = "m_2"; $Item03 = "pda"; $Item04 = "m_s";
$Text01 = "À¥¿ë ÆÇ¸Å/Àç°í°ü¸®"; $Text02 = "È®ÀåÇü ÆÇ¸Å/Àç°í°ü¸®"; $Text03 = "PDA¿µ¾÷°ü¸®"; $Text04 = "½º¸¶Æ®Æù ¿µ¾÷°ü¸®";
$Title01 = "õ³â°æ¿µCS"; $Title02 = "õ³â°æ¿µII"; $Title03 = "õ³âPDA CM"; $Title04 = "õ³â°æ¿µS";
$Link01 = "cate2_code=01&category_code=03"; $Link02 = "cate2_code=01&category_code=02"; $Link03 = "cate2_code=07&category_code=21"; $Link04 = "cate2_code=01&category_code=13";
} else if ($category_code== "95" || $category_code== "17") { //ÀÚ»ê°ü¸®Pro, ÀÚ»ê°ü¸®S $Item01 = "pda"; $Item02 = "ams"; $Item03 = "ams_s"; $Item04 = "m_cs";
$Text01 = "PDA ¿µ¾÷°ü¸®"; $Text02 = "ºñǰ/°íÁ¤ÀÚ»ê°ü¸®"; $Text03 = "½º¸¶Æ®Æù ÀÚ»ê°ü¸®"; $Text04 = "À¥¿ë ÆÇ¸Å/Àç°í°ü¸®";
$Title01 = "õ³âPDA CM"; $Title02 = "ÀÚ»ê°ü¸®Pro"; $Title03 = "ÀÚ»ê°ü¸®S"; $Title04 = "õ³â°æ¿µCS";
$Link01 = "cate2_code=07&category_code=21"; $Link02 = "cate2_code=01&category_code=95"; $Link03 = "cate2_code=01&category_code=03"; $Link04 = "cate2_code=01&category_code=13"; } ?> <ul> <li><a href='sw_detail.php?<?=$Link01;?>'> <p><img src='./images/software/related_<?=$Item01;?>.png' alt="<?=$Item01;?>"></p> <span class="s_text"><?=$Text01;?></span> <span class="title_text"><?=$Title01;?></span> </a></li> <li><a href='sw_detail.php?<?=$Link02;?>'> <p><img src='./images/software/related_<?=$Item02;?>.png' alt="<?=$Item02;?>"></p> <span class="s_text"><?=$Text02;?></span> <span class="title_text"><?=$Title02;?></span> </a></li> <li><a href='sw_detail.php?<?=$Link03;?>'> <p><img src='./images/software/related_<?=$Item03;?>.png' alt="<?=$Item03;?>"></p> <span class="s_text"><?=$Text03;?></span> <span class="title_text"><?=$Title03;?></span> </a></li> <li><a href='sw_detail.php?<?=$Link04;?>'> <p><img src='./images/software/related_<?=$Item04;?>.png' alt="<?=$Item04;?>"></p> <span class="s_text"><?=$Text04;?></span> <span class="title_text"><?=$Title04;?></span> </a></li> </ul> </div><!-- //relatedGoods --> <? } ?>
<? //°ü·ÃÁ¦Ç° »óǰ±º if( $category_code=="01" || $category_code=="02" || $category_code=="03" || $category_code=="40" || $category_code=="41" || $category_code=="54" || $category_code=="55" || $category_code=="56" || $category_code=="13" || $category_code=="16" || $category_code=="15" ){ ?>
<div class="numberView">
<? //¼ýÀÚ·Î º¸´Â õ³â°æ¿µ if( $category_code== "01" || $category_code=="02" || $category_code=="03"){ //õ³â°æ¿µ $Title = "¼ýÀÚ·Î º¸´Â õ³â°æ¿µ2"; $Group = "millennium";
} else if ($category_code== "40" || $category_code== "41") { //Á¦Á¶°æ¿µ $Title = "¼ýÀÚ·Î º¸´Â Á¦Á¶°æ¿µ"; $Group = "jejo";
} else if ($category_code== "54" || $category_code== "55" || $category_code== "56") { //ÀÌÁöÅØ½º $Title = "¼ýÀÚ·Î º¸´Â ÀÌÁöÅØ½º"; $Group = "tax";
} else if ($category_code== "13") { //½º¸¶Æ®Æù $Title = "õ³â°æ¿µS Ư¡"; $Group = "smart";
} else if ($category_code== "16") { //½º¸¶Æ®Æù $Title = "õ³â½º¸¶Æ®¹ßÁÖ Æ¯Â¡"; $Group = "smart";
} else if ($category_code== "15") { //½º¸¶Æ®Æù $Title = "õ³â½º¸¶Æ®°áÁ¦ Ư¡"; $Group = "payment";
} ?> <h3><?=$Title;?></h3> <ul> <li class="first"><img src='./images/software/<?=$Group;?>/number_1.png' alt="õ³â°æ¿µ 1³âÀÌ»ó À¯Áö"></li> <li><img src='./images/software/<?=$Group;?>/number_2.png' alt="¿¥Á¦À̼ÒÇÁÆ® Ãßõ¹ÞÀº °í°´"></li> <li><img src='./images/software/<?=$Group;?>/number_3.png' alt="Ÿ ÇÁ·Î±×·¥ Àüȯ »ç¿ëÀÚ"></li> <li><img src='./images/software/<?=$Group;?>/number_4.png' alt="Àú·ÅÇÑ ÀÌ¿ë·áÀÇ Ãµ³â°æ¿µ"></li> <li><img src='./images/software/<?=$Group;?>/number_5.png' alt="PC¿ë ÆÇ¸Å°ü¸® 1À§ õ³â°æ¿µ"></li> </ul> </div><!-- //relatedGoods -->
<? } ?>
<? //¾÷¹«È帧µµ »óǰ±º if( $category_code== "01" || $category_code=="02" || $category_code=="03"|| $category_code=="81" || $category_code=="82" || $category_code=="40" || $category_code=="41" || $category_code=="21" || $category_code=="22" || $category_code=="23" || $category_code=="13" || $category_code=="15" || $category_code=="16" || $category_code=="18" || $category_code=="95" || $category_code=="17" || $category_code=="54" || $category_code=="55" || $category_code=="56" ){ ?> <div class="goodsFlow"> <h3 class="screen_out">¾÷¹«È帧µµ</h3> <div> <? switch($category_code) { case "01" : // õ³â°æ¿µLite include("./include/software/flow_millennium_lite.html"); break; case "02" : // õ³â°æ¿µ2 include("./include/software/flow_millennium_2.html"); break; case "03" : // õ³â°æ¿µCS include("./include/software/flow_millennium_cs.html"); break; case "81" : // õ³â°æ¿µ3 include("./include/software/flow_millennium_3.html"); break; case "82" : // õ³â°æ¿µ3CS include("./include/software/flow_millennium_3cs.html"); break; case "40" : // Á¦Á¶°æ¿µPro include("./include/software/flow_jejo_pro.html"); break; case "41" : // Á¦Á¶°æ¿µProCS include("./include/software/flow_jejo_procs.html"); break; case "21" : // PDA CM include("./include/software/flow_pda_cm.html"); break; case "22" : // PDA WL include("./include/software/flow_pda_wl.html"); break; case "23" : // PDA LC include("./include/software/flow_pda_lc.html"); break; case "13" : // õ³â°æ¿µS include("./include/software/flow_millennium_s.html"); break; case "15" : // ½º¸¶Æ®°áÁ¦ include("./include/software/flow_payment.html"); break; case "16" : // ½º¸¶Æ®¹ßÁÖ include("./include/software/flow_order_s.html"); break; case "18" : // e¼ö¹ßÁÖ include("./include/software/flow_order_s.html"); break; case "17" : // ÀÚ»ê°ü¸®S include("./include/software/flow_ams_s.html"); break; case "95" : // ÀÚ»ê°ü¸®Pro include("./include/software/flow_ams.html"); break; case "54" : // ÀÌÁöÅØ½ºCS include("./include/software/flow_tax_cs.html"); break; case "55" : // ÀÌÁöÅØ½ºLite include("./include/software/flow_tax_lite.html"); break; case "56" : // ÀÌÁöÅØ½ºII include("./include/software/flow_tax_2.html"); break; } ?> </div> </div><!-- //goodsFlow --> <? } ?>
<!-- ÅǸ޴º ½ÃÀÛ --> <script> function premier(n) { $(".tabContainer").hide(); for(var i = 1; i < 6; i++) { obj = $("#premier"+i); img = $("#premier_button"+i); if ( n == i ) { obj.show() img.attr("src","./images/software/tabmenu_"+i+"_on.png"); } else { obj.hide(); img.attr("src","./images/software/tabmenu_"+i+"_off.png"); } } } </script>
<a name="View"></a> <div class="tabMenu"> <ul> <li><img alt="Á¦Ç°¼Ò°³" src="./images/software/tabmenu_1_on.png" OnClick='premier(1);' OnMouseOver='this.style.cursor="pointer";premier(1);' OnMouseOut='this.style.cursor="default"' id='premier_button1'></li>
<li><img alt="ÁÖ¿ä±â´É" src="./images/software/tabmenu_2_off.png" OnClick='premier(2);' OnMouseOver='this.style.cursor="pointer";premier(2);' OnMouseOut='this.style.cursor="default"' id='premier_button2'></li>
<li><img alt="»ç¿ë¾÷Á¾" src="./images/software/tabmenu_3_off.png" OnClick='premier(3);' OnMouseOver='this.style.cursor="pointer";premier(3);' OnMouseOut='this.style.cursor="default"' id='premier_button3'></li>
<? //õ³â°æ¿µ2 / CS, Á¦Á¶°æ¿µ if ( $category_code == "02" || $category_code == "03" || $category_code == "40" || $category_code == "41" ) { ?> <li><img alt="Ãß°¡¿É¼Ç" src="./images/software/tabmenu_4_off.png" OnClick='premier(4);' OnMouseOver='this.style.cursor="pointer";premier(4);' OnMouseOut='this.style.cursor="default"' id='premier_button4'></li> <? } ?> <? //õ³â2, õ³â2 CS, õ³â3, õ³â3 CS if (($category_code == "02") || ($category_code == "03") || ($category_code == "81") || ($category_code == "82")) { ?> <li class="last"><img alt="µ¿¿µ»ó°ÀÇ" src="./images/software/tabmenu_5_off.png" OnClick='premier(5);' OnMouseOver='this.style.cursor="pointer";premier(5);' OnMouseOut='this.style.cursor="default"' OnMouseOut='this.style.cursor="default"' id='premier_button5'></li> <? } ?> </ul> </div><!-- //tabMenu -->
<!-------1¹øÂ° ÅÇ (Á¦Ç°¼Ò°³)--------> <div id='premier1' class="tabContainer" style='display:block;'> <?php if($category_code == "40" || $category_code == "41"){ } else { ?><h3>Á¦Ç° ÁÖ¿äÈ¸é ¹Ì¸®º¸±â</h3><?php } ?> <div> <? if ( $category_code == "02" || $category_code == "03" ) { //õ³â°æ¿µ2, CS include("./include/software/view_millennium_2.php"); } elseif ( $category_code == "81" || $category_code == "82" ) { //õ³â°æ¿µ3 include("./include/software/view_millennium_3.php"); } elseif ( $category_code == "01" ) { //õ³â°æ¿µLite include("./include/software/view_millennium_lite.php"); } elseif ( $category_code == "40" || $category_code == "41" ) { //Á¦Á¶°æ¿µPro, Á¦Á¶°æ¿µProCS //include("./include/software/view_jejo.php"); } elseif ( $category_code == "54" || $category_code == "55" || $category_code == "56" ) { //ÀÌÁöÅØ½º include("./include/software/view_tax.php"); } elseif ( $category_code == "21" || $category_code == "22" || $category_code == "23") { //õ³âPDA include("./include/software/view_pda.php"); } elseif ( $category_code == "13" ) { //õ³â°æ¿µS include("./include/software/view_smart.php"); } elseif ( $category_code == "15" ) { //õ³â½º¸¶Æ®°áÁ¦ include("./include/software/view_payment.php"); } elseif ($category_code == "16" ) { //õ³â½º¸¶Æ®¹ßÁÖ include("./include/software/view_order.php"); } elseif ( $category_code == "17" ) { //ÀÚ»ê°ü¸®S include("./include/software/view_ams_s.php"); } elseif ( $category_code == "18" ) { //¿Â¶óÀμö¹ßÁÖ include("./include/software/view_online.php");
} elseif ( $category_code == "04" ) { //õ³âÆ÷½º include("./include/software/view_pos.php"); } elseif ( $category_code == "14" || $category_code == "31") { //ÀÌÁöÆ÷½º include("./include/software/view_easypos.php");
} elseif ( $category_code == "11" ) { //Á¶ÀÌ·»Æ®(½Ã³×¶óÀÌÇÁ) include("./include/software/view_cinelife.php"); } elseif ( $category_code == "28" ) { //ÀÓ´ë°ü¸® include("./include/software/view_room.php"); } elseif ( $category_code == "95" ) { //ÀÚ»ê°ü¸®(AMS) include("./include/software/view_ams.php"); } elseif ( $category_code == "37" ) { //±Þ¿©°ü¸® include("./include/software/view_pay.php");
} elseif ( $category_code == "07" || $category_code == "96" ) { //Ä«¸ÞÀÌÆ®Pro, Ä«¸ÞÀÌÆ®ProCS include("./include/software/view_carpro.php"); } elseif ( $category_code == "08" ) { //Ä«¸ÞÀÌÆ®_Lite include("./include/software/view_carlite.php");
} elseif ( $category_code == "10" ) { //Çì¾îÆ÷½º include("./include/software/view_hair.php"); } elseif ( $category_code == "09" ) { //½ºÇǵå include("./include/software/view_speed.php"); } elseif ( $category_code == "32" ) { //ȸ¿ø°ü¸® include("./include/software/view_member.php"); } elseif ( $category_code == "38" ) { //¹®ÀÚ·Î include("./include/software/view_sms.php"); } ?>
</div>
<div class="mean">
<script> function pro_img(n) { try { for(var i = 1; i < 20; i++) { obj = document.getElementById('pro_img'+i); img = document.getElementById('pro_img_button'+i); if ( n == i ) { obj.style.display = "block"; img.height = 23; img.src = "../img/download/on"+i+".gif"; } else { obj.style.display = "none"; img.height = 23; img.src = "../img/download/off"+i+".gif"; } } } catch(e) {
} } </script>
<?=$program_mean;?>
</div><!-- //mean --> </div> <!-- //premier1 -->
<!-------2¹øÂ° ÅÇ (ÁÖ¿ä±â´É)--------> <div id='premier2' class="tabContainer" style='display:none;'> <h3><a name="premier_button2">Á¦Ç° ÁÖ¿ä±â´É</a></h3> <div> <? if (($category_code == "02") || ($category_code == "03")) { //õ³â°æ¿µ2, CS include("./include/software/function_millennium_cs.html"); } elseif (($category_code == "81") || ($category_code == "82")) { //õ³â°æ¿µ3 include("./include/software/function_millennium_3.html"); } elseif (($category_code == "01")) { //õ³â°æ¿µLite include("./include/software/function_millennium_lite.html"); } elseif (($category_code == "40")) { //Á¦Á¶°æ¿µPro include("./include/software/function_jejo_pro.html"); } elseif (($category_code == "41")) { // Á¦Á¶°æ¿µProCS include("./include/software/function_jejo_procs.html"); } elseif (($category_code == "54") || ($category_code == "55") || ($category_code == "56")) { //ÀÌÁöÅØ½º include("./include/software/why_tax.html"); } elseif (($category_code == "21") || ($category_code == "22") || ($category_code == "23")) { //õ³âPDA include("./include/software/function_pda_cm.html"); } elseif (($category_code == "04")) { //À¯Åë¾÷POS include("./include/software/function_pos.html"); } elseif (($category_code == "14") || ($category_code == "31")) { //¿Ü½Ä¾÷POS include("./include/software/function_easypos.html"); } elseif (($category_code == "13")) { //õ³â°æ¿µS include("./include/software/function_millennium_s.html"); } elseif (($category_code == "15")) { //õ³â½º¸¶Æ®°áÁ¦ include("./include/software/function_payment.html"); } elseif (($category_code == "16")) { //õ³â½º¸¶Æ®¹ßÁÖ include("./include/software/function_order.html"); } elseif (($category_code == "17")) { //ÀÚ»ê°ü¸®S include("./include/software/function_ams_s.html"); } elseif (($category_code == "18")) { //¿Â¶óÀμö¹ßÁÖ include("./include/software/why_order.html"); } elseif (($category_code == "11")) { //Á¶ÀÌ·»Æ®(½Ã³×¶óÀÌÇÁ) include("./include/software/function_rental.html"); } elseif (($category_code == "28")) { //ÀÓ´ë°ü¸® include("./include/software/function_rent.html"); } elseif (($category_code == "95")) { //ÀÚ»ê°ü¸®(AMS) include("./include/software/why_ams.html"); } elseif (($category_code == "37")) { //±Þ¿©°ü¸® include("./include/software/why_pay.html"); } elseif (($category_code == "08") || ($category_code == "96") || ($category_code == "07")) { //Ä«¸ÞÀÌÆ®Pro, Ä«¸ÞÀÌÆ®ProCS include("./include/software/function_carmate_pro.html"); } elseif (($category_code == "10")) { //Çì¾îÆ÷½º include("./include/software/function_hair.html"); } elseif (($category_code == "09")) { //½ºÇǵå include("./include/software/function_speed.html"); } elseif (($category_code == "32")) { //ȸ¿ø°ü¸® include("./include/software/function_member.html"); } elseif (($category_code == "38")) { //¹®ÀÚ·Î include("./include/software/function_sms.html"); } ?> </div> </div><!-- //premier2 -->
<!-------3¹øÂ° ÅÇ (»ç¿ë¾÷Á¾)--------> <div id='premier3' class="tabContainer" style='display:none;'> <h3>ÁÖ¿ä °í°´»ç</h3> <div style=""> <img src="./images/software/company1.gif" alt="ÁÖ¿ä°í°´»ç1"> <img src="./images/software/company2.gif" alt="ÁÖ¿ä°í°´»ç2"> <img src="./images/software/company3.gif" alt="ÁÖ¿ä°í°´»ç3"> <img src="./images/software/company4.gif" alt="ÁÖ¿ä°í°´»ç4"> <img src="./images/software/company5.gif" alt="ÁÖ¿ä°í°´»ç5"> </div>
<? //°ü·ÃÁ¦Ç° »óǰ±º if( $category_code=="01" || $category_code=="02" || $category_code=="03" || $category_code=="40" || $category_code=="41" || $category_code=="54" || $category_code=="55" || $category_code=="56" || $category_code=="13" || $category_code=="15" || $category_code=="16" || $category_code=="18" || $category_code== "21" || $category_code== "22" || $category_code== "23" ){ ?> <div class="businessType">
<? //¼ýÀÚ·Î º¸´Â õ³â°æ¿µ if( $category_code== "01" || $category_code=="02" || $category_code=="03"){ //õ³â°æ¿µ $Title = "õ³â°æ¿µ2"; $Group = "millennium";
} else if ($category_code== "40" || $category_code== "41") { //Á¦Á¶°æ¿µ $Title = "Á¦Á¶°æ¿µ"; $Group = "jejo";
} else if ($category_code== "54" || $category_code== "55" || $category_code== "56") { //ÀÌÁöÅØ½º $Title = "ÀÌÁöÅØ½º"; $Group = "tax";
} else if ($category_code== "13") { //õ³â°æ¿µS $Title = "õ³â°æ¿µS"; $Group = "smart";
/*} else if ($category_code== "15") { //õ³â½º¸¶Æ®¹ßÁÖ $Title = "õ³â½º¸¶Æ®°áÁ¦"; $Group = "order";*/
} else if ($category_code== "21" || $category_code== "22" || $category_code== "23") { //PDA $Title = "õ³âPDA¿µ¾÷°ü¸®"; $Group = "pda";
} else if ($category_code== "16" || $category_code== "18") { //PDA $Title = "ÁÖ¹®°ü¸®"; $Group = "order"; } ?> <h4><?=$Title;?> ¾÷Á¾º° »ç¿ëºÐÆ÷µµ</h4> <img src="./images/software/<?=$Group;?>/business_type.png" alt="»ç¿ë¾÷Á¾ ±×·¡ÇÁ"> </div>
<? } ?>
</div><!-- //premier3 -->
<!-------4¹øÂ° ÅÇ (Ãß°¡¿É¼Ç)--------> <div id='premier4' class="tabContainer" style='display:none;'> <h3>Ãß°¡¿É¼Ç</h3> <? include("./include/software/option.html"); ?> </div><!-- //premier4 -->
<!-------5¹øÂ° ÅÇ (µ¿¿µ»ó°ÀÇ)-------> <div id='premier5' class="tabContainer" style='display:none;'> <h3>µ¿¿µ»ó°ÀÇ</h3> <? if (($category_code == "02") || ($category_code == "03")) { // õ³â2, CS include("./include/software/lecture_millennium.php"); } elseif (($category_code == "81") || ($category_code == "82")) { include("./include/software/lecture_etc.php"); } ?> </div><!-- //premier5 -->
</div><!-- wrap -->
<!-- ÀÌÁöÅØ½º ÀÌ¿ë¾È³» ÆË¾÷ --> <div id="popOperationGuide"> <? if ($category_code == "54") { include("./include/software/popup_guide_cs.php"); } elseif ($category_code == "56") { include("./include/software/popup_guide_ii.php"); } elseif ($category_code == "55") { include("./include/software/popup_guide_lite.php"); } ?> </div><!-- //popContents -->
<? include("./include/common/footer.php"); ?>
<script language="JavaScript">/* LOGGER TRACKING SCRIPT V.27 : 6482 *//*X*//* COPYRIGHT 2002-2004 BIZSPRING INC. *//*X*//* DO NOT MODIFY THIS SCRIPT. *//*X*/var _TRK_DOMAIN="logger.co.kr";var _trk_bMSIE=(document.all)?true:false;var _trk_bJS12=(window.screen)?true:false;function _trk_escape(_str) { var str, ch; var bEncURI = "N"; eval("try{bEncURI=encodeURI('Y');}catch(_e){ }" ); if( bEncURI == "Y" ) str=encodeURI(_str); else str = escape(_str); while((ch=str.indexOf("+"))>0) str=str.substr(0,ch)+"%2B"+str.substr(ch+1,str.length); while((ch=str.indexOf("/"))>0) str=str.substr(0,ch)+"%2F"+str.substr(ch+1,str.length); while((ch=str.indexOf("&"))>0) str=str.substr(0,ch)+"%26"+str.substr(ch+1,str.length); while((ch=str.indexOf("?"))>0) str=str.substr(0,ch)+"%3F"+str.substr(ch+1,str.length); while((ch=str.indexOf(":"))>0) str=str.substr(0,ch)+"%3A"+str.substr(ch+1,str.length); while((ch=str.indexOf("#"))>0) str=str.substr(0,ch)+"%23"+str.substr(ch+1,str.length); return str;}function _trk_setCookie(name,value,expire) { var today=new Date(); today.setDate(today.getDate()+parseInt(expire)); document.cookie=name+"="+escape(value)+"; path=/; expires="+today.toGMTString()+";";}function _trk_getCookie(name) { var cookieName=name+"="; var x=0; while(x<=document.cookie.length) { var y=(x+cookieName.length); if(document.cookie.substring(x,y)==cookieName) { if((endOfCookie=document.cookie.indexOf(";",y))==-1) endOfCookie=document.cookie.length; return unescape(document.cookie.substring(y,endOfCookie)); } x=document.cookie.indexOf(" ",x)+1; if(x == 0) break; } return "";}function _trk_getParameter(name) { var paraName=name+"="; var URL=""+self.document.location.search; var tURL=""; eval("try{ tURL=top.document.location.search; }catch(_e){}"); URL=URL+"&"+tURL; if(URL.indexOf(paraName)!=-1) { var x=URL.indexOf(paraName)+paraName.length; var y=URL.substr(x).indexOf("&"); if(y!=-1) return URL.substring(x,x+y); else return URL.substr(x); } return "";}function _trk_make_code(_TRK_SERVER,_TRK_U) { var dt=document.title.toString(); dt=dt.substr(0,128); var dr=self.document.referrer; var tdr=""; eval("try{ tdr=top.document.referrer; }catch(_e){}"); var tdu=""; eval("try{ tdu=top.document.location.href; }catch(_e){}"); if(dr==tdu) dr=tdr; if(dr=="undefined") dr=""; var du=self.document.location.href; if(du.substr(0,4)=="file") return ""; var adKeyVal = ""; adKeyVal=_trk_getParameter("OVKEY"); if(adKeyVal!="" && du.indexOf("OVKEY=")<0) if(du.indexOf("?")!=-1) du=du+"&OVKEY="+adKeyVal; else du=du+"?OVKEY="+adKeyVal; adKeyVal=_trk_getParameter("netpia"); if(adKeyVal!="" && du.indexOf("netpia=")<0) if(du.indexOf("?")!=-1) du=du+"&netpia="+adKeyVal; else du=du+"?netpia="+adKeyVal; adKeyVal=_trk_getParameter("logger_kw"); if(adKeyVal!="" && du.indexOf("logger_kw=")<0) if(du.indexOf("?")!=-1) du=du+"&logger_kw="+adKeyVal; else du=du+"?logger_kw="+adKeyVal; adKeyVal=_trk_getParameter("source"); if(adKeyVal!="" && du.indexOf("source=")<0) if(du.indexOf("?")!=-1) du=du+"&source="+adKeyVal; else du=du+"?source="+adKeyVal; var ce=navigator.cookieEnabled?"Y":"N"; var je=navigator.javaEnabled()?"Y":"N"; var ss=""; var cd = ""; if(_trk_bJS12) { ss=screen.width+"x"+screen.height; cd=screen.colorDepth; } if(!dt) dt=""; if(!dr) dr=""; if(!du) du=""; if(!ce) ce=""; if(!je) je=""; var t = new Date; var tye=(_trk_bMSIE)?(t.getYear()):(t.getFullYear()); var tmo=t.getMonth()+1; var tda=t.getDate(); var tho=t.getHours(); var tmi=t.getMinutes(); var tse=t.getSeconds(); var tzo=t.getTimezoneOffset(); var tc = ""; var prtcl=document.location.protocol.indexOf("https")!=-1?"https://":"http://"; if(prtcl=="https://") _TRK_SERVER="ssl."+_TRK_DOMAIN; tc=tc+prtcl+_TRK_SERVER; var bPNF=((typeof _TRK_PI)!="undefined" && _TRK_PI=="PNF")?true:false; if(bPNF) tc=tc+"/tracker_click.tsp"; else tc=tc+"/tracker.tsp"; tc=tc+"?u="+_TRK_U+"&XU="; if(bPNF) { tc=tc+"&rnd="+Math.random()+"&CKFL="+_TRK_PI+"&CKDATA="+_trk_escape(du); } else { tc=tc+"&dr="+_trk_escape(dr)+"&XDR="+"&dt="+_trk_escape(dt)+"&du="+_trk_escape(du); if((typeof _TRK_CP)!="undefined" && _TRK_CP!="") tc=tc+"&CP="+_trk_escape(_TRK_CP)+"&XCP="; if((typeof _TRK_PI)!="undefined" && _TRK_PI!="") tc=tc+"&PI="+_TRK_PI; if((typeof _TRK_PN)!="undefined" && _TRK_PN!="") tc=tc+"&PN="+_trk_escape(_TRK_PN); if((typeof _TRK_MF)!="undefined" && _TRK_MF!="") tc=tc+"&MF="+_trk_escape(_TRK_MF); if((typeof _TRK_OA)!="undefined" && _TRK_OA!="") tc=tc+"&OA="+_TRK_OA; if((typeof _TRK_OP)!="undefined" && _TRK_OP!="") tc=tc+"&OP="+_trk_escape(_TRK_OP); if((typeof _TRK_OE)!="undefined" && _TRK_OE!="") tc=tc+"&OE="+_TRK_OE; if((typeof _TRK_CC)!="undefined" && _TRK_CC!="") tc=tc+"&CC="+_TRK_CC; if((typeof _TRK_RK)!="undefined" && _TRK_RK!="") tc=tc+"&RK="+_trk_escape(_TRK_RK); if((typeof _TRK_SX)!="undefined" && _TRK_SX!="") tc=tc+"&SX="+_TRK_SX; if((typeof _TRK_AG)!="undefined" && _TRK_AG!="") tc=tc+"&AG="+_TRK_AG; if((typeof _TRK_IK)!="undefined" && _TRK_IK!="") tc=tc+"&IK="+_trk_escape(_TRK_IK); tc=tc+"&js=Y"+"&ss="+escape(ss)+"&cd="+cd+"&ce="+ce+"&je="+je+"&tzo="+tzo+"&tye="+tye+"&tmo="+tmo+"&tda="+tda+"&tho="+tho+"&tmi="+tmi+"&tse="+tse; } return tc;}var _TRK_LIFE=_trk_getParameter("_L_");if(_TRK_LIFE=="") _TRK_LIFE=14;var _TRK_U="";var _TRK_U_P=_trk_getParameter("_U_");var _TRK_U_C= _trk_getCookie("_TRK_U");if(_TRK_U_C!="") _TRK_U=_TRK_U_C;if(_TRK_U_P!="") _TRK_U=_TRK_U_P;if(_TRK_U!="" && _TRK_U_P!="") _trk_setCookie("_TRK_U",_TRK_U,_TRK_LIFE);var _TRK_CC_C=_trk_getCookie("_TRK_CC");var _TRK_CC_P=_trk_getParameter("_C_");if((typeof _TRK_CC)!="undefined" && _TRK_CC!="") _TRK_CC_P=_TRK_CC;if(_TRK_CC_C!="") _TRK_CC=_TRK_CC_C;if(_TRK_CC_P!="") _TRK_CC=_TRK_CC_P;if((typeof _TRK_CC)!="undefined" && _TRK_CC!="" && _TRK_CC_P!="") _trk_setCookie("_TRK_CC",_TRK_CC,_TRK_LIFE);var _TRK_RK_C=_trk_getCookie("_TRK_RK");var _TRK_RK_P=_trk_getParameter("_R_");if((typeof _TRK_RK)!="undefined" && _TRK_RK!="") _TRK_RK_P=_TRK_RK;if(_TRK_RK_C!="") _TRK_RK=_TRK_RK_C;if(_TRK_RK_P!="") _TRK_RK=_TRK_RK_P;if((typeof _TRK_RK)!="undefined" && _TRK_RK!="" && _TRK_RK_P!="") _trk_setCookie("_TRK_RK",_TRK_RK,_TRK_LIFE);var _trk_code_base=_trk_make_code("trk8.logger.co.kr","6482");var _trk_code_chan="";if(_TRK_U!="") _trk_code_chan=_trk_code_base.replace(/\?u=6482&XU=/g,"?u="+_TRK_U+"&XU=");var _trk_img_base=new Image();var _trk_img_chan=new Image();var _trk_img_base_click=new Image();var _trk_img_chan_click=new Image();if(_trk_bJS12==true) { if(_trk_bMSIE) { _trk_img_base.src=_trk_code_base; if(_TRK_U!="") _trk_img_chan.src=_trk_code_chan; } else { setTimeout("_trk_img_base.src=_trk_code_base;",1); if(_TRK_U!="") setTimeout("_trk_img_chan.src=_trk_code_chan;",1); }} else { if(_trk_bMSIE) document.write('<div style=\"display: none\">'); document.write('<img src=\"'+_trk_code_base+'\" height=\"0\" width=\"0\">'); if(_TRK_U!="") document.write('<img src=\"'+_trk_code_chan+'\" height=\"0\" width=\"0\">'); if(_trk_bMSIE) document.write('</div>');}function _trk_flashContentsView(_TRK_CP) { var _trk_code_flash=_trk_code_base; _trk_code_flash=_trk_code_flash.replace(/&CP=.*&XCP=/g,"&XCP="); _trk_code_flash=_trk_code_flash.replace(/&dr=.*&XDR=/g,"&XDR="); _trk_img_base_click.src=_trk_code_flash+"&dr=&CP="+_trk_escape(_TRK_CP)+"&rnd="+Math.random(); if(_TRK_U!="") { _trk_code_flash=_trk_code_flash.replace(/\?u=6482&XU=/g,"?u="+_TRK_U+"&XU="); _trk_img_chan_click.src=_trk_code_flash+"&dr=&CP="+_trk_escape(_TRK_CP)+"&rnd="+Math.random(); }}function _trk_clickTrace(_TRK_CKFL,_TRK_CKDATA) { var _trk_code_click=_trk_code_base.substr(0,_trk_code_base.indexOf("tracker.tsp")); _trk_code_click=_trk_code_click+"tracker_click.tsp?rnd="+Math.random()+"&CKFL="+_TRK_CKFL+"&CKDATA="+_trk_escape(_TRK_CKDATA); _trk_img_base_click.src=_trk_code_click+"&u=6482"; if(_TRK_U!="") _trk_img_chan_click.src=_trk_code_click+"&u="+_TRK_U;}</script> <noscript><img src="http://trk8.logger.co.kr/tracker.tsp?u=6482&js=N" width=0 height=0></noscript> <!-- //END OF LOGGER TRACKING SCRIPT -->
<script> function fileDown(type,name,cate2_code,category_code){ location.href = "./include/software/fileDownLoad.php?type="+type+"&filename="+name+"&cate2_code="+cate2_code+"&category_code="+ category_code ; }
function compare(cate2_code,category_code){ window.open("./include/software/compare.php?cate2_code="+cate2_code + "&category_code="+category_code,"","width=930,height=515,scrollbars=yes"); }
function csVersion(){ //CS¹öÀüÀ̶õ? window.open("./include/software/ams_cs_version.html",'popCSversion','top=250,left=500,width=520,height=300'); }
function MJoutlogin(){// e ¼ö¹ßÁÖ ·Î±×ÀÎ //window.open("http://mjsoft.co/onlinecs/mjoutlogin.php",'','width=420, height=250, menubar=no, location=no, toolbar=no, scrollbar=no'); window.open("http://ord.mjsoft.co/onlinecs",'','width=1200, height=950, menubar=no, location=no, toolbar=no, scrollbar=yes'); }
function settle(mode , category_code){ location.href = "Order_01.php?mode="+mode+"&category_code="+category_code; }
function eduPda(){ //PDA µ¿¿µ»ó »õâ¶ç¿ì±â window.open('./include/software/pda_education.php','popPDAeducation','top=250,left=500,width=340,height=520'); }
function pdadown(){ //¼³Ä¡¹æ¹ý window.open('./include/software/pda_download.php','popPDAdown','top=250,left=500,width=740,height=670,scrollbars=yes'); }
function appdown(){ //¾Û ¼³Ä¡¹æ¹ý window.open('./include/software/app_download.php','popAppDown','top=250,left=500,width=725,height=560,scrollbars=yes'); }
function pdaPrice(){ //°¡°Ý¾È³» window.open('./include/software/pda_price.php','popPDAprice','top=300,left=500,width=740,height=600,scrollbars=yes'); }
function appPrice(){ //¾Û °¡°Ý¾È³» window.open('./include/software/app_price.php','popAppPrice','top=300,left=500,width=760,height=500,scrollbars=yes'); } </script>
<script> $(document).ready(function () {
//»ç¿ë¾È³» ·¹À̾îÆË¾÷ $("#popOperationGuide").hide(); $("a.taxOpen").click(function(){ $("#popOperationGuide").fadeIn("fast"); return false; }); $("a.close").click(function(){ $("#popOperationGuide").fadeOut("fast"); return false; }); $("#popOperationGuide dt").mousedown(function(e){ $("#popOperationGuide") .data("clickX" , e.pageX - $("#popOperationGuide").offset().left) .data("clickY" , e.pageY - $("#popOperationGuide").offset().top); $(document).mousemove(function(e){ $("#popOperationGuide").css({ top:e.pageY - $("#popOperationGuide").data("clickY")+"px", left:e.pageX - $("#popOperationGuide").data("clickX")+"px" }); }); console.log($("#popOperationGuide").data("clickX")); console.log($("#popOperationGuide").data("clickY")); console.log($("#popOperationGuide").css("top")); console.log($("#popOperationGuide").css("left")); }).mouseup(function(){ $(document).unbind("mousemove"); });
}); </script> <!--<div id="modal_member_box" title="°Å·¡Ã³¼öÁ¤" style="display:none;width:100%; height:100%; padding-top:3px;padding-left:3px;background-color:#FFFFFF;position:relative;"></div>-->
<!--³ª¿¡°Ô¸Â´ÂÁ¦Ç°Ã£±â--> <div id="modal_member_box" style="display:none;width:900px; height:684px; padding-top:15px;padding-left:17px;padding-right:3px;position:relative;"><iframe id='pop_box_iframe' style='width:100%;height:100%;' frameborder=0 src=''></iframe></div> <script>
$(function(){ $(".show_program_tax").css("cursor","pointer").click(function(){ //¿¥Á¦ÀÌ ¼ÒÇÁÆ®¶õ ÆË¾÷ó¸® main_popup_show("https://mjsoft.co/html/millennium/index_new_program_new2.php","725","900","³ª¿¡°Ô ¸Â´Â Á¦Ç°Ã£±â"); }); });
function main_popup_show(url,v_width,v_height,v_title){ $("#pop_box_iframe").attr("src",""); $("#modal_member_box").dialog({ resizable: true, height:v_width, width:v_height, modal: true, title: v_title, show : {effect:'blind',duration:500}, buttons: { ´Ý±â: function() { $( this ).dialog( "close" ); } }, close: function() { $("#pop_box_iframe").attr("src",""); } }); setTimeout(function(){ $("#pop_box_iframe").attr("src",url); },500); }
function dialog_close(){ $("#modal_member_box").dialog( "close" ); } //document.getElementById("user_tap_open").click(); // »ç¿ëÀÚ ÅÇ Ã³¸® window.addEventListener('message', function(e) { console.log('parent message'); console.log(e.data); // { childData : 'test data' } console.log("e.origin : " + e.origin); //http://123.com(ÀÚ½Äâ µµ¸ÞÀÎ)
$day = 0; if(e.data.childData === 'close window'){ dialog_close(); } else if(e.data.childData === 'close window1'){ dialog_close(); $day = 1; } else if(e.data.childData === 'close window7'){ dialog_close(); $day = 7; } else if(e.data.childData === 'goto customerprice'){ document.location.href='https://mjsoft.co/html/millennium/customerprice.php#list_view'; } else if(e.data.childData === 'goto customer_buy_cs'){ document.location.href='https://mjsoft.co/html/millennium/customer_buy_cs.php#list_view'; }
if($day>0){ return; if($day=='1'){ var today = new Date(); $remain_time = 24-today.getHours(); setsave_time("find_pop_not_open", "1", $remain_time); } else { setsave("find_pop_not_open", "1", $day); } } }); function setsave(name, value, expiredays){ value = encodeURI(value); // Çѱ۱úÁü¹®Á¦ ó¸® var today = new Date(); today.setDate( today.getDate() + expiredays ); //alert(today.toGMTString()); return; document.cookie = name + "=" + escape( value ) + "; path=/; expires=" + today.toGMTString() + ";" }
function setsave_time(name, value, expiretime){ value = encodeURI(value); // Çѱ۱úÁü¹®Á¦ ó¸® var today = new Date(); today.setTime( today.getTime() + (parseInt(expiretime)*60*60*1000) ); document.cookie = name + "=" + escape( value ) + "; path=/; expires=" + today.toGMTString() + ";" } </script> <?php if($_COOKIE['find_pop_not_open']!='1' && $cate2_code=='04' && $category_code=='11'){ ?> <script> $(function(){ setTimeout(function(){ main_popup_show("https://mjsoft.co/html/millennium//index_new_program_new2.php?mode=pop&domain=other","725","900","³»°Ô ¸Â´Â ÇÁ·Î±×·¥"); },1000); }); </script> <?}?>
|