/home/mjc1/public_html/a1.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ko" lang="ko">
<head>
    <title></title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="description" content="" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <link rel="stylesheet" type="text/css" href="https://script.esmplus.com/css/ssl/common.css" />
    <link rel="stylesheet" type="text/css" href="https://script.esmplus.com/css/ssl/popup.css" />
    <script type="text/javascript" src="https://script.esmplus.com/js/jquery-1.7.1.min.js"></script>
    <script type="text/javascript" src="https://script.esmplus.com/js/jquery-ui-1.8.17.min.js"></script>
    <script type="text/javascript">
    <!--
        /* 초기화 함수 */
        $(function () {
            // 탭 초기화
            $("div.styleuitab").tabs({
                select: function (event, ui) {
                    var li = $(ui.tab).parent();
                    var lis = li.siblings("li");
                    lis.removeClass("on");
                    li.addClass("on");

                    lis.find("img.tabimg").each(function (index) {
                        if (this.src.indexOf("_on.gif") >= 0) {
                            this.src = this.src.replace("_on.gif", ".gif");
                        }
                    });
                    li.find("img.tabimg").each(function (index) {
                        if (this.src.indexOf("_on.gif") < 0) {
                            this.src = this.src.replace(".gif", "_on.gif");
                        }
                    });
                    return true;
                }
            });
            // 툴팁 초기화
            $(".styleuitooltip").mouseover(function (e) {
                var tooltipID = $(this).attr("tooltipid");
                if (tooltipID == null || $.trim(tooltipID) == "") return;

                var layer = $("#" + tooltipID);

                $("body").append(layer[0]);

                layer.show();

                layer.position({
                    of: $(this)
                , my: "center top"
                , at: "center bottom"
                , offset: "0 -1"
                });

                $(this).bind("mouseleave", function () {
                    layer.hide();
                });
                layer.bind("mouseenter", function () {
                    layer.show();
                });
                layer.bind("mouseleave", function () {
                    layer.hide();
                });
            });
        });

        var mouseGesture = {
            tableRowHover_type1: function (elem, cls) {
                $(elem + " tr").hover(function () {
                    $(this).addClass(cls);
                }, function () {
                    $(this).removeClass(cls);
                });
            }
        }
    //-->
    </script>
    <script type="text/javascript">

        function auto_fit_size() {
            window.resizeTo(600, 100);
            var thisX = parseInt(document.body.scrollWidth);
            var thisY = parseInt(document.body.scrollHeight);
            var maxThisX = screen.width - 50;
            var maxThisY = screen.height - 50;
            var marginY = 0;

            //alert("임시 브라우저 확인 : " + navigator.userAgent);
            // 브라우저별 높이 조절. (표준 창 하에서 조절해 주십시오.)
            if (navigator.userAgent.indexOf("MSIE 6") > 0) marginY = 60;        // IE 6.x
            else if (navigator.userAgent.indexOf("MSIE 7") > 0) marginY = 80;    // IE 7.x
            else if (navigator.userAgent.indexOf("Firefox") > 0) marginY = 50;   // FF
            else if (navigator.userAgent.indexOf("Opera") > 0) marginY = 30;     // Opera
            else if (navigator.userAgent.indexOf("Netscape") > 0) marginY = -2;  // Netscape
            else if (navigator.userAgent.indexOf("Chrome") > 0) marginY = 30;  // Netscape

            if (thisX > maxThisX) {
                window.document.body.scroll = "yes";
                thisX = maxThisX;
            }
            if (thisY > maxThisY - marginY) {
                window.document.body.scroll = "yes";
                thisX += 19;
                thisY = maxThisY - marginY;
            }
            window.resizeTo(thisX + 10, thisY + marginY + 30);
        }

    </script>
    
    <script language="javascript" type="text/javascript" src="https://script.esmplus.com/js/Dictionary.js"></script>
    <script language="javascript" type="text/javascript" src="https://script.esmplus.com/js/json2.js"></script>
    <script language="javascript" type="text/javascript">
        var gridID = 'g01';
    </script>
    <script language="javascript" type="text/javascript" src="/Areas/Member/Views/CustomerService/BuyItemInfo.js?dummy=201211081230" ></script>

</head>
<body onload="auto_fit_size();">
    <div id="popWrap">
        <h1>
    <img src="https://pics.esmplus.com/front/title/tit_buyerin.gif" alt="구매정보" />
</h1>
        <div id="popContents">
            

    <h2 class="popstit fir_tit">
        주문정보</h2>
    <div class="pop_data_board">
        <table>
            <colgroup>
                <col style="width: 21%;" />
                <col />
                <col style="width: 21%;" />
                <col />
            </colgroup>
            <tbody>
                <tr class="fir">
                    <th class="fir" scope="row">
                        상품번호
                    </th>
                    <td class="td_text">B249412694
                    </td>
                    <th scope="row">
                        주문번호
                    </th>
                    <td class="td_text">1098383317
                    </td>
                </tr>
                <tr>
                    <th class="fir" scope="row">
                        상품명
                    </th>
                    <td class="td_text" colspan="3">리퍼키보드 판매테스트
                    </td>
                </tr>
                <tr>
                    <th class="fir" scope="row">
                        수량
                    </th>
                    <td class="td_text" colspan="3">1 개
                    </td>
                </tr>
                <tr>
                    <th class="fir" scope="row">
                        주문옵션
                    </th>
                    <td class="td_text">색상:1,기종:1
                    </td>
                    <th scope="row">
                        추가구성
                    </th>
                    <td class="td_text">
                    </td>
                </tr>
                <tr>
                    <th class="fir" scope="row">
                        사은품
                    </th>
                    <td class="td_text" colspan="3">
                    </td>
                </tr>
                <tr>
                    <th class="fir" scope="row">
                        구매금액
                    </th>
                    <td class="td_text" colspan="3">
                        <strong>1,000</strong>
                        원
                    </td>
                </tr>
                <tr>
                    <th class="fir" scope="row">
                        배송비
                    </th>
                    <td class="td_text">
             <span class="css_btn11" style="padding-right:0;"><a style="cursor:pointer" onclick="Events.DeliveryFeePopup('mjsoft1','1098383317');">상세보기</a></span>
                    </td>
                    <th scope="row">
                        배송방법
                    </th>
                    <td class="td_text">
                    </td>
                </tr>
            </tbody>
        </table>
    </div>
    <h2 class="popstit">
        구매자정보</h2>
    <div class="pop_data_board">
        <table>
            <colgroup>
                <col style="width: 21%;" />
                <col />
                <col style="width: 21%;" />
                <col />
            </colgroup>
            <tbody>
                <tr class="fir">
                    <th class="fir" scope="row">
                        구매자ID
                    </th>
                    <td class="td_text">ryunen
                    </td>
                    <th scope="row">
                        구매자이름
                    </th>
                    <td class="td_text">박성원
                    </td>
                </tr>
                <tr>
                    <th class="fir" scope="row">
                        연락처1
                    </th>
                    <td class="td_text">010-9357-0525
                    </td>
                    <th scope="row">
                        연락처2
                    </th>
                    <td class="td_text">053-953-0525
                    </td>
                </tr>
            </tbody>
        </table>
    </div>
    <h2 class="popstit">
        배송지정보</h2>
    <div class="pop_data_board">
        <table>
            <colgroup>
                <col style="width: 21%;" />
                <col />
                <col style="width: 21%;" />
                <col />
            </colgroup>
            <tbody>
                <tr class="fir">
                    <th class="fir" scope="row">
                        상품수령인
                    </th>
                    <td class="td_text" colspan="3">박성원
                    </td>
                </tr>
                <tr>
                    <th class="fir" scope="row">
                        연락처1
                    </th>
                    <td class="td_text">--
                    </td>
                    <th scope="row">
                        연락처2
                    </th>
                    <td class="td_text">010-9357-0525
                    </td>
                </tr>
                <tr>
                    <th class="fir" scope="row">
                        배송지주소
                    </th>
                    <td class="td_text" colspan="3">(
701-812                        ) 대구광역시 동구 신암동  250-1
                        <br />
                        101동 1407호
                    </td>
                </tr>
                <tr>
                    <th class="fir" scope="row">
                        배송 요청사항
                    </th>
                    <td class="td_text" colspan="3">
                    </td>
                </tr>
            </tbody>
        </table>
    </div>
    <h2 class="popstit">
        배송 진행 정보</h2>
    <div class="pop_data_board_01">
        <table>
            <colgroup>
                <col style="width: 33%;" />
                <col />
                <col style="width: 33%;" />
            </colgroup>
            <thead>
                <tr>
                    <th class="fir" scope="col">
                        처리일시
                    </th>
                    <th scope="col">
                        처리구분
                    </th>
                    <th scope="col">
                        상세보기
                    </th>
                </tr>
            </thead>
            <tbody>

                         <tr class="fir">
                        <td class="fir">2015-11-02 10:08
                        </td>
                        <td>
                            결제일
                        </td>
                        <td>
                        </td>
                    </tr>
            </tbody>
        </table>
    </div>

            <div id="popFooter">
                <a onclick="javascript:window.close();" style="cursor: pointer;"><img alt="닫기" src="https://pics.esmplus.com/front/btn/btn_pop_close.gif" /></a>
            </div>
        </div>
    </div>
</body>
    <script type="text/javascript" src="https://script.esmplus.com/js/GoogleAnalytics.js"></script>
</html>