/home/mjc1/public_html/html/m/hardware.php


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
<? include("./include/header.php"); ?>
    </div>
<style>
.hw_navbar{background:#4c4c4c;height:40px;}
.hw_navbar ul{color:#fff;padding:10px 0;}
.hw_navbar li a {display:block;text-align:center;color:#fff;font-weight:600;font-size:14px;}
.hw_navbar li{display:inline-block;width:20%;}
.hw_title_bg img{max-width:98%;padding-top:20px;}

.hw_container{float:left;width:30%;margin:10px 5px 0;padding:10px 0 10px;border:1.5px solid #cacaca; box-sizing:border-box;box-shadow:5px 5px 5px -1px #d7d7d7;color:#333333;}
.hw_container img{max-width:60%;margin:7px;}
.hw_container h3{font-size:10pt; font-weight:bold;}
.hw_container p{font-size:7pt;line-height:12px;}
.mySlides img{width:100%;}
/*팝업창뜨게하기*/
.modal {display:none;position:fixed; z-index:999;left:0;top:0;width:100%;height:100%;overflow:auto;background-color: rgb(0,0,0);background-color: rgba(0,0,0,0.4); /* Black w/ opacity */}
#myModal{display:none; }
/* Modal Content */
.modal-content {position: relative;background-color: #fefefe;margin:auto;padding: 0;border: 1px solid #888;max-width: 530px;box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);-webkit-animation-name: animatetop;-webkit-animation-duration: 0.4s;animation-name: animatetop;animation-duration: 0.4s}
.modal-header {padding:20px 16px 15px;background-color: #0166b6;color: white;height:20px;font-size:14pt;text-align:center;font-weight:bold;}
.modal-body {height:550px;}
.modal-footer {padding: 10px 16px;background-color: #ebebeb;color: white;}
.close {color: #fff;float: right;font-size: 50px;font-weight:400;}
.close:hover,.close:focus {color: #000;text-decoration: none;cursor: pointer;}
.hw_overlay {position: absolute;bottom: 0;left: 0;opacity: 0;transition: .5s ease;background:#4c4c4c;height:290px;text-align:center;float:left;width:220px;border:1px solid #4c4c4c; box-sizing:border-box;box-shadow:5px 5px 5px -1px #d7d7d7;color:#fff;}
.hw_container:hover .hw_overlay {opacity: 1;}
.hwSpec{ border-top:1px solid #bbbbbb;font-size:10px;width:100%;}
.hwSpec thead th{ color:#555;line-height:35px;font-weight:600;text-align:center;background:#f8f8f8;border-bottom:1px solid #d6d6d6;}
.hwSpec thead th:first-of-type{ border-right:1px solid #d6d6d6;}
.hwSpec tbody th{ width:100px;height:35px;color:#575757;line-height:35px;font-weight:600;border-right:1px solid #d6d6d6;border-bottom:1px solid #d6d6d6;}
.hwSpec tbody td{ width:330px;height:35px;line-height:35px;border-bottom:1px solid #d6d6d6;}
.hwSetBottom{ float:right;margin-top:10px;color:#1c62a0;font-size:12px;line-height:16px;font-weight:600;margin-right:20px;}    
.hwSetBottom1{ float:right;margin-top:10px;color:#ff0000;font-size:12px;line-height:16px;font-weight:600;margin-right:20px;}    
</style>    

    <!--TAP MENU-->
    <div class="hardware" style="width:100%;text-align:center;margin-top:50px;"><a name="smart"></a>
        <p><img src="./images/hardware/hw_title1.jpg" alt="하드웨어 title" style="max-width:100%;"></p>
        <div class="hw_navbar">
            <ul>
                <li><a href="#smart">스마트폰</a></li>
                <li><a href="#pda">PDA</a></li>
                <li><a href="#pos">POS</a></li>
                <li><a href="#etc">기타</a></li>
            </ul>
        </div>
        <a name="pda"></a>
        <!--스마트폰-->
        <div class="hw_product">
            <div class="hw_title_bg">
                <img src="./images/hardware/hw_title_smart.jpg" alt="smart_title">
            </div>
            <div class="hw_product_box" style=" top:0;right:0;bottom:0;left:0;display:flex;align-items:center;justify-content:center;display:-webkit-flex;-webkit-align-item;center;-webkit-justify-content:center;">
                <div class="hw_container" onclick="openModal();currentSlide(1)">
                    <h3>WSP-R241</h3>
                    <p>(영수증프린터)</p>
                    <img src="http://mjsoft.co/html/millennium/img/hw/hw_smart01.jpg" alt="WSP-R241">
                    <p>스마트폰 영수증출력<br>(블루투스 방식)</p>
                </div>
                <div class="hw_container" onclick="openModal();currentSlide(13)">
                    <h3>SPP-R215</h3>
                    <p>(영수증프린터)</p>
                    <img src="http://mjsoft.co/html/millennium/img/hw/hw_smart04.jpg" alt="KSR-03">
                    <p>스마트폰 영수증출력<br>IC신용카드 결제 기기</p>
                </div>
            </div>    

            <div class="hw_product_box" style=" top:0;right:0;bottom:0;left:0;display:flex;align-items:center;justify-content:center;display:-webkit-flex;-webkit-align-item;center;-webkit-justify-content:center;">
                <div class="hw_container" onclick="openModal();currentSlide(2)">
                    <h3>PM3</h3>
                    <p>(바코드스케너)</p>
                    <img src="http://mjsoft.co/html/millennium/img/hw/hw_smart03.jpg" alt="PM3">
                    <p>스마트폰 바코드검색<br>(블루투스 방식)</p>
                </div>
                <div class="hw_container" onclick="openModal();currentSlide(3)">
                    <h3>KSR-03</h3>
                    <p>(카드결제)</p>
                    <img src="http://mjsoft.co/html/millennium/img/hw/hw_smart02.jpg" alt="KSR-03">
                    <p>스마트폰연동<br>IC신용카드 결제 기기</p>
                </div>
            </div>    
        </div>
        <a name="pos"></a>
        <!--pda(2개영역)-->
        <div class="hw_product">
            <div class="hw_title_bg">
                <img src="./images/hardware/hw_title_pda.jpg" alt="pda_title">
            </div>
            <div class="hw_product_box" style=" top:0;right:0;bottom:0;left:0;display:flex;align-items:center;justify-content:center;display:-webkit-flex;-webkit-align-item;center;-webkit-justify-content:center;">
                <div class="hw_container"onclick="openModal();currentSlide(4)">
                    <h3>XPDA-A</h3>
                    <p>(천년cs연동)</p>
                    <img src="http://mjsoft.co/html/millennium/img/hw/hw_pda_xpda_a.png" alt="XPDA-A">
                    <p>주문.출고.상차.납품<br>재고.스캔.검수.영수증</p>
                </div>
                <div class="hw_container" onclick="openModal();currentSlide(5)">
                    <h3>CW-31</h3>
                    <p>(천년cs연동)</p>
                    <img src="http://mjsoft.co/html/millennium/img/hw/hw_pda02-1.jpg" alt="CW-31">
                    <p>주문.출고.상차.<br>납품.재고.검수</p>
                </div>
            </div>    
        </div>


        
        <!--pos(4개영역)-->
        <div class="hw_product">
            <div class="hw_title_bg">
                <img src="./images/hardware/hw_title_pos.jpg" alt="pos_title">
            </div>

            <div class="hw_product_box" style=" top:0;right:0;bottom:0;left:0;display:flex;align-items:center;justify-content:center;display:-webkit-flex;-webkit-align-item;center;-webkit-justify-content:center;">
                <div class="hw_container"onclick="openModal();currentSlide(6)">
                    <h3>APEXA® G</h3>
                    <p>(고정식 포스기기)</p>
                    <img src="http://mjsoft.co/html/millennium/img/hw/hw_pos01.jpg" alt="APEXA® G">
                    <p>소매판매용 POS<br>판매계산,터치스크린</p>
                </div>
                <div class="hw_container" onclick="openModal();currentSlide(7)">
                    <h3>SLK-TE202</h3>
                    <p>(영수증프린터)</p>
                    <img src="http://mjsoft.co/html/millennium/img/hw/hw_pos02.jpg" alt="hw_container">
                    <p>영수증을<br>출력하는 프린터</p>
                </div>
            </div>    
            <a name="etc"></a>
            <div class="hw_product_box" style=" top:0;right:0;bottom:0;left:0;display:flex;align-items:center;justify-content:center;display:-webkit-flex;-webkit-align-item;center;-webkit-justify-content:center;">
                <div class="hw_container"onclick="openModal();currentSlide(8)">
                    <h3>TSK-4100plus</h3>
                    <p>(바코드리더용<br>핸드스캐너)</p>
                    <img src="http://mjsoft.co/html/millennium/img/hw/hw_pos03.jpg" alt="TSK-4100plus">
                    <p>상품바코드 검색용<br>(USB케이블 방식)</p>
                </div>
                <div class="hw_container"onclick="openModal();currentSlide(9)">
                    <h3>TSK-750</h3>
                    <p>(바코드리더용<br>핸드스캐너)</p>
                    <img src="http://mjsoft.co/html/millennium/img/hw/hw_pos04.jpg" alt="TSK-750">
                    <p>상품바코드 검색용<br>(USB케이블 방식)</p>
                </div>
            </div>
        </div>


        <!--기타-->
        <div class="hw_product">
            <div class="hw_title_bg">
                <img src="./images/hardware/hw_title_etc.jpg" alt="etc_title">
            </div>
            <div class="hw_product_box" style=" top:0;right:0;bottom:0;left:0;display:flex;align-items:center;justify-content:center;display:-webkit-flex;-webkit-align-item;center;-webkit-justify-content:center;">
                <div class="hw_container"onclick="openModal();currentSlide(10)">
                    <h3>SLP-tx400</h3>
                    <p>(바코드 라벨인쇄)</p>
                    <img src="http://mjsoft.co/html/millennium/img/hw//hw_etc01.jpg" alt="SLP-tx400">
                    <p>상품에 부착하는 바코드<br>라벨 출력용 프린터</p>
                </div>
                <div class="hw_container"onclick="openModal();currentSlide(11)">
                    <h3>발신표시장비</h3>
                    <p>(발신번호검색)</p>
                    <img src="http://mjsoft.co/html/millennium/img/hw/hw_etc02.jpg" alt="발신표시장비">
                    <p>전화 온 고객의 정보를<br>자동으로 확인(1~4포트)</p>
                </div>
                <!--<div class="hw_container"onclick="openModal();currentSlide(12)">
                    <h3>고객관리카드</h3>
                    <p>(바코드/카드리더기)</p>
                    <img src="http://mjsoft.co/html/millennium/img/hw/hw_cs01-1.jpg" alt="고객관리카드">
                    <p>고객관리용 회원카드<br>(1000매기준 제작가능)</p>
                </div>-->
            </div>    
        </div>



    </div>

<div id="myModal" class="modal">
  <!-- Modal content -->
  <div class="modal-size">
  <div class="modal-content">
    <div class="modal-header">
      <span class="close" onclick="closeModal()">&times;</span>
      <h2>하드웨어 제품안내</h2>
    </div>
    <div class="modal-body">
        <!-- 스마트폰 (WSP-R241) -->
        <div class="mySlides">
            <div class="numbertext" style="overflow-y:scroll;height:550px;text-align:center;">
            <img src="http://mjsoft.co/html/millennium/img/hw/product_smart1-1.png" style="width:100%;" alt="팝업상세페이지">
                <div class="hwSpecification">
                    <table class="hwSpec" style="margin-bottom:50px;">
                        <tbody>
                            <tr>
                                <th scope="row" style="background:#f8f8f8;">업무용도</th>
                                <td>스마트폰으로 영수증출력(블루투스 방식)</td>
                            </tr>
                            <tr>
                                <th scope="row" style="background:#f8f8f8;">제품구성</th>
                                <td>WSP-R241 본체. 충전기</td>
                            </tr>
                        </tbody>
                    </table>
                </div>
            </div>
        </div>
        
        <!-- 스마트폰 (PM3) -->
        <div class="mySlides">
            <div class="numbertext" style="overflow-y:scroll;height:550px;text-align:center;">
            <img src="http://mjsoft.co/html/millennium/img/hw/product_smart1-2.png" alt="팝업상세페이지">
                <div class="hwSpecification">
                    <table class="hwSpec" style="margin-bottom:50px;">
                        <tbody>
                            <tr>
                                <th scope="row" style="background:#f8f8f8;">업무용도</th>
                                <td>스마트폰으로 상품바코드 검색(블루투스 방식)</td>
                            </tr>
                            <tr>
                                <th scope="row" style="background:#f8f8f8;">제품구성</th>
                                <td>스캐너 본체. 충전기</td>
                            </tr>
                        </tbody>
                    </table>
                </div>
            </div>
        </div>
        
        <!-- 스마트폰 (KSR-03) -->
        <div class="mySlides">
            <div class="numbertext" style="overflow-y:scroll;height:550px;text-align:center;">
                <img src="http://mjsoft.co/html/millennium/img/hw/product_smart1-3.png" alt="팝업상세페이지">
                <div class="hwSpecification">
                    <table class="hwSpec" style="margin-bottom:50px;">
                        <tbody>
                            <tr>
                                <th scope="row" style="background:#f8f8f8;">업무용도</th>
                                <td>스마트폰연동 IC신용카드 결제 기기</td>
                            </tr>
                            <tr>
                                <th scope="row" style="background:#f8f8f8;">제품구성</th>
                                <td>단말기본체 + 목걸이줄</td>
                            </tr>
                        </tbody>
                    </table>
                </div>
            </div>
        </div>
        
        <!-- pda (XPDA-A) -->
        <div class="mySlides">
            <div class="numbertext" style="overflow-y:scroll;height:550px;text-align:center;">
                <img src="http://mjsoft.co/html/millennium/img/hw/product_xpda_a.png" alt="팝업상세페이지">
                <div class="hwSpecification">
                    <table class="hwSpec" style="margin-bottom:50px;">
                        <tbody>
                            <tr>
                                <th scope="row" style="background:#f8f8f8;">업무용도</th>
                                <td>주문.출고.상차.납품.재고.스캔.검수.결제.영수증</td>
                            </tr>
                            <tr>
                                <th scope="row" style="background:#f8f8f8;">제품구성</th>
                                <td>XPDA-A 본체(배터리포함).데이터케이블. 충전기</td>
                            </tr>
                        </tbody>
                    </table>
                </div>
            </div>
        </div>
        
        <!-- pda (CW-30) -->
        <div class="mySlides">
            <div class="numbertext" style="overflow-y:scroll;height:550px;text-align:center;">
                <img src="http://mjsoft.co/html/millennium/img/hw/product_pda2-2-1.png" alt="팝업상세페이지">
                <div class="hwSpecification">
                    <table class="hwSpec" style="margin-bottom:50px;">
                        <tbody>
                            <tr>
                                <th scope="row" style="background:#f8f8f8;">업무용도</th>
                                <td>주문. 출고. 상차. 납품. 재고. 검수</td>
                            </tr>
                            <tr>
                                <th scope="row" style="background:#f8f8f8;">제품구성</th>
                                <td>CW-31 본체(배터리포함). 크레들. 크레들아답터. 데이터케이블. 액정보호필름. 스타일러스팬</td>
                            </tr>
                        </tbody>
                    </table>
                </div>
            </div>
        </div>
        

        <!-- pos (APEXA® G) -->
        <div class="mySlides">
          <div class="numbertext" style="overflow-y:scroll;height:550px;">
                <img src="http://mjsoft.co/html/millennium/img/hw/product_pos3-1.png"  alt="팝업상세페이지">
                <div class="hwSpecification">
                        <table class="hwSpec">
                            <thead>
                                <tr>
                                    <th scope="col">구 분</th>
                                    <th scope="col">규 격</th>
                                </tr>
                            </thead>

                            <tbody>
                                <tr>
                                    <th scope="row">크 기</th>
                                    <td>364 x 333 x 210 (mm)</td>
                                </tr>
                                <tr>
                                    <th scope="row">디스플레이</th>
                                    <td>15" TFT LED Backlight</td>
                                </tr>
                                <tr>
                                    <th scope="row">터치스크린</th>
                                    <td>Project Capacitive Touch</td>
                                </tr>
                                <tr>
                                    <th scope="row">해상도</th>
                                    <td>1024 x 768 resolution</td>
                                </tr>
                                <tr>
                                    <th scope="row">지원OS</th>
                                    <td>Windows 7, Windows 8.1, POS Ready 7, Windows 10</td>
                                </tr>
                                <tr>
                                    <th scope="row">색상</th>
                                    <td>Dark Grey, White</td>
                                </tr>
                            </tbody>
                        </table>
                        <span class="hwSetBottom" style="margin-bottom:50px;">※ 사양은 사전 통보 없이 변경될 수 있습니다.</span>
                    </div>

             </div>
        </div>
        <!-- pos (SRP-350 III) -->
        <div class="mySlides">
            <div class="numbertext" style="overflow-y:scroll;height:550px;text-align:center;">
                <img src="http://mjsoft.co/html/millennium/img/hw/product_pos3-2.png" alt="팝업상세페이지">
                <div class="hwSpecification">
                    <table class="hwSpec" style="margin-bottom:50px;">
                        <tbody>
                            <tr>
                                <th scope="row" style="background:#f8f8f8;">업무용도</th>
                                <td>영수증.계산서를 출력하는 프린터</td>
                            </tr>
                            <tr>
                                <th scope="row" style="background:#f8f8f8;">제품구성</th>
                                <td>SLK-TE202 본체</td>
                            </tr>
                        </tbody>
                    </table>
                </div>
            </div>
        </div>

        <!-- pos (TSK-4100plus) -->
        <div class="mySlides">
            <div class="numbertext" style="overflow-y:scroll;height:550px;text-align:center;">
            <img src="http://mjsoft.co/html/millennium/img/hw/product_pos3-3.png" alt="팝업상세페이지">
                <div class="hwSpecification">
                    <table class="hwSpec" style="margin-bottom:50px;">
                        <tbody>
                            <tr>
                                <th scope="row" style="background:#f8f8f8;">업무용도</th>
                                <td>상품바코드 검색용(USB케이블 방식)</td>
                            </tr>
                            <tr>
                                <th scope="row" style="background:#f8f8f8;">제품구성</th>
                                <td>    TSK-4100plus 본체</td>
                            </tr>
                        </tbody>
                    </table>
                </div>
            </div>
        </div>


        <!-- pos (TSK-750) -->
        <div class="mySlides">
            <div class="numbertext" style="overflow-y:scroll;height:550px;text-align:center;">
            <img src="http://mjsoft.co/html/millennium/img/hw/product_pos3-4.png" alt="팝업상세페이지">
                <div class="hwSpecification">
                    <table class="hwSpec" style="margin-bottom:50px;">
                        <tbody>
                            <tr>
                                <th scope="row" style="background:#f8f8f8;">업무용도</th>
                                <td>상품바코드 검색용(USB케이블 방식)</td>
                            </tr>
                            <tr>
                                <th scope="row" style="background:#f8f8f8;">제품구성</th>
                                <td>TSK-750 본체</td>
                            </tr>
                        </tbody>
                    </table>
                </div>
            </div>
        </div>

        <!-- pos (SLP-tx400) -->
        <div class="mySlides">
            <div class="numbertext" style="overflow-y:scroll;height:550px;text-align:center;">
            <img src="http://mjsoft.co/html/millennium/img/hw/product_etc4-2.png" alt="팝업상세페이지">
                <div class="hwSpecification">
                    <table class="hwSpec" style="margin-bottom:50px;">
                        <tbody>
                            <tr>
                                <th scope="row" style="background:#f8f8f8;">업무용도</th>
                                <td>상품에 부착하는 바코드라벨 출력용 프린터</td>
                            </tr>
                            <tr>
                                <th scope="row" style="background:#f8f8f8;">제품구성</th>
                                <td>SLP-tx400 본체. 시리얼케이블. 아답터. 라벨지 외부거치대</td>
                            </tr>
                        </tbody>
                    </table>
                </div>
            </div>
        </div>

        <!-- etc (발신표시장비1포트) -->
        <div class="mySlides">
            <div class="numbertext" style="overflow-y:scroll;height:550px;text-align:center;">
            <img src="http://mjsoft.co/html/millennium/img/hw/product_etc4-1.png" alt="팝업상세페이지">
                <div class="hwSpecification">
                    <table class="hwSpec" style="margin-bottom:50px;">
                        <tbody>
                            <tr>
                                <th scope="row" style="background:#f8f8f8;">업무용도</th>
                                <td>전화 온 고객의 정보를 자동으로 확인하는 장치(국선1회선)</td>
                            </tr>
                            <tr>
                                <th scope="row" style="background:#f8f8f8;">제품구성</th>
                                <td>발신표시장비 본체. PC연결케이블. 아답터</td>
                            </tr>
                        </tbody>
                    </table>
                </div>
            </div>
        </div>



        <!-- 고객 (마그네틱카드) -->
        <div class="mySlides">
            <div class="numbertext" style="overflow-y:scroll;height:550px;text-align:center;">
            <img src="http://mjsoft.co/html/millennium/img/hw/product_cs5-1.png" alt="팝업상세페이지">
                <div class="hwSpecification">
                    <span class="hwSetBottom1" style="margin-bottom:20px;">※ 현재 제품은 사용중인 것이므로, 동일하게 사용하실 수 없습니다. 참고만 해주세요.</span>
                </div>
            </div>
        </div>

        <!-- 스마트폰 (KSR-03) -->
        <div class="mySlides">
            <div class="numbertext" style="overflow-y:scroll;height:550px;text-align:center;">
                <img src="http://mjsoft.co/html/millennium/img/hw/product_smart1-4.png" alt="팝업상세페이지">
                <div class="hwSpecification">
                    <table class="hwSpec" style="margin-bottom:50px;">
                        <tbody>
                            <tr>
                                <th scope="row" style="background:#f8f8f8;">업무용도</th>
                                <td>스마트폰으로 영수증출력(블루투스 방식)</td>
                            </tr>
                            <tr>
                                <th scope="row" style="background:#f8f8f8;">제품구성</th>
                                <td>벨트 클립, 배터리 팩, 충전기</td>
                            </tr>
                        </tbody>
                    </table>
                </div>
            </div>
        </div>


        

    </div>
    <div class="modal-footer">
      <img src="http://mjsoft.co/html/millennium/img/hw/product_call.png" style="width:100%;" alt="팝업하단">
    </div>
  </div>
  </div>

</div>
    <br><br><br>

<? include("./include/footer.php"); ?>




<script>
//탭메뉴


var slideIndex = 1;
showSlides(slideIndex);

function plusSlides(n) {
  showSlides(slideIndex += n);
}

function currentSlide(n) {
  showSlides(slideIndex = n);
}

function showSlides(n) {
  var i;
  var slides = document.getElementsByClassName("company");
  var dots = document.getElementsByClassName("demo");
  var captionText = document.getElementById("caption");
  if (n > slides.length) {slideIndex = 1}
  if (n < 1) {slideIndex = slides.length}
  for (i = 0; i < slides.length; i++) {
      slides[i].style.display = "none";
  }
  for (i = 0; i < dots.length; i++) {
      dots[i].className = dots[i].className.replace(" active", "");
  }
  slides[slideIndex-1].style.display = "block";
  dots[slideIndex-1].className += " active";
  captionText.innerHTML = dots[slideIndex-1].alt;
}


//모달박스
function openModal() {
  document.getElementById('myModal').style.display = "block";
}

function closeModal() {
  document.getElementById('myModal').style.display = "none";
}

var slideIndex = 1;
showSlides(slideIndex);

function plusSlides(n) {
  showSlides(slideIndex += n);
}

function currentSlide(n) {
  showSlides(slideIndex = n);
}

function showSlides(n) {
  var i;
  var slides = document.getElementsByClassName("mySlides");
  var dots = document.getElementsByClassName("demo");
  var captionText = document.getElementById("caption");
  if (n > slides.length) {slideIndex = 1}
  if (n < 1) {slideIndex = slides.length}
  for (i = 0; i < slides.length; i++) {
      slides[i].style.display = "none";
  }
  for (i = 0; i < dots.length; i++) {
      dots[i].className = dots[i].className.replace(" active", "");
  }
  slides[slideIndex-1].style.display = "block";
  dots[slideIndex-1].className += " active";
  captionText.innerHTML = dots[slideIndex-1].alt;
}
</script>