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
|
<?php include_once("../../_common.php"); ?> <link rel="stylesheet" type="text/css" href="../../css/import.css"/> <title>바코드 라벨지(7000개)</title>
<div class="HWpopupWrap"> <a href="javascript:window.close();" class="close"></a> <dl> <dt><span>전산용지 제품안내</span></dt> <dd class="hwInfo"> <table class="popupInfo"> <!--caption class="screen_out">용지정보</caption--> <colgroup> <col style="width:90px;"><col style="width:180px;"><col style="width:90px;"><col style="width:140px;"> </colgroup> <tr> <th>제품명</th> <td>바코드 라벨지 - 7000개</td> <th>분류</th> <td>바코드 공 라벨지</td> </tr> <tr> <th>운송료</th> <td colspan="3"> 제품과 동시구매시 운송료 무료 </td> </tr> <tr> <th>업무용도</th> <td colspan="3"> 잉크젯 / 레이저로 바코드 출력 (천년경영. 제조경영에서 지원)<br/> 70개 X 100매 </td> </tr> <tr> <th>제품장점</th> <td colspan="3">저비용으로 라벨지 제작</td> </tr> </table> </dd><!-- //hwInfo -->
<dd class="paperView"> <img src="http://www.mjsoft.co/html/millennium/img/paper/bar_02.jpg" alt=""> </dd><!-- //paperView --> </dl>
<div class="paperBtn"> <a onclick="goBuyPaper();">용지구매</a> </div> </div><!-- popupWrap -->
<script> function goBuyPaper(){ opener.location.href = "../../Order_02.php?ProductCode=0221148"; window.close(); } </script>
|