/home/mjc1/public_html/html/millennium/buypos.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
<?php include_once("./_common2.php"); ?>
<? 
include('../../html/poorman.php'); ?>
<? 
include("../../manage/category/common.php"); ?>
<? 
include('../../html/include/_Head.php'); ?>


<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
    <link href="./css/style.css" rel="stylesheet" type="text/css">
    <script language='javascript' src='./js/img.js'></script>
</head>

<script>
 function settle(s){
 location.href = "Order_03.php?ProductCode="+s;
  }
</script>

<SCRIPT LANGUAGE="JavaScript">
<!--
  var aryImages = new Array(2);

// À̹ÌÁö ¸®½ºÆ®
// Ãß°¡½Ã´Â ±×³É aryImages¸¦ º¹»çÇÏ¿© ¼ýÀÚ¸¸ Â÷·Ê´ë·Î ´Ã·ÁÁָ頵Ê
aryImages[0] = "../millennium/img/buy/pos_screen01.gif";
aryImages[1] = "../millennium/img/buy/pos_screen02.gif";

  for (i=0; i < aryImages.length; i++) {
    var preload = new Image();
    preload.src = aryImages[i];
  }

  function swap(imgIndex) {
    document['imgMain'].src = aryImages[imgIndex];
  }
//-->
</script>

<!-- À̹ÌÁö Å©±â¿¡ ¸Â°Ô »õâ ¶ç¿ì±â -->
<script language="javascript">
function showPicture(src) {
  var imgObj = new Image();
  imgObj.src = src;
  var wopt = "scrollbars=no,status=no,resizable=no";
  wopt += ",width=" + imgObj.width;
  wopt += ",height=" + imgObj.height;
  var wbody = "<head><title>¿¥Á¦À̼ÒÇÁÆ®</title>";
  wbody += "<script language='javascript'>";
  wbody += "function finalResize(){";
  wbody += "  var oBody=document.body;";
  wbody += "  var oImg=document.images[0];";
  wbody += "  var xdiff=oImg.width-oBody.clientWidth;";
  wbody += "  var ydiff=oImg.height-oBody.clientHeight;";
  wbody += "  window.resizeBy(xdiff,ydiff);";
  wbody += "}";
  wbody += "</"+"script>";
  wbody += "</head>";
  wbody += "<body onLoad='finalResize()' style='margin:0'>";
  wbody += "<a href='javascript:window.close()'><img src='" + src + "' border=0></a>";
  wbody += "</body>";
  winResult = window.open("about:blank","",wopt);
  winResult.document.open("text/html", "replace");
  winResult.document.write(wbody);
  winResult.document.close();
  return;
}
</script>

<!-- ¶ó¿îµå Å×ÀÌºí ½ºÅ©¸³Æ® -->
<script language="javascript">  
function roundTable(objID) {
    var obj = document.getElementById(objID);
    var Parent, objTmp, Table, TBody, TR, TD;
    var bdcolor, bgcolor, Space, width, ps, dv;
    var trIDX, tdIDX, MAX;
    var styleWidth, styleHeight;
 
    Parent = obj.parentNode;
    objTmp = document.createElement('SPAN');
    Parent.insertBefore(objTmp, obj);
    Parent.removeChild(obj);
 
    bdcolor = obj.getAttribute('rborder');
    bgcolor = obj.getAttribute('rbgcolor');
    width = obj.getAttribute('width');
    radius = parseInt(obj.getAttribute('radius'));
    if (radius == null || radius < 1) radius = 1;
    else if (radius > 6) radius = 6;
 
    MAX = radius * 2 + 1;
 
    Table = document.createElement('TABLE');
    TBody = document.createElement('TBODY');
 
    Table.cellSpacing = 0;
    Table.cellPadding = 0;
 
    if (width.indexOf('%'))
    {
        ps = 1;
        dv =  (MAX-1)/2;
        Table.width = width;
    }
 
 
    for(trIDX=0; trIDX < MAX; trIDX++) {
        TR = document.createElement('TR');
        Space = Math.abs(trIDX - parseInt(radius));
        for(tdIDX=0; tdIDX < MAX; tdIDX++) {        
            TD = document.createElement('TD');
            styleWidth = '1px'; styleHeight = '1px';
            if (tdIDX == 0 || tdIDX == MAX - 1) styleHeight = null;
            else if (trIDX == 0 || trIDX == MAX - 1) styleWidth = null;
            else if (radius > 2) {
                if (Math.abs(tdIDX - radius) == 1) styleWidth = '2px';
                if (Math.abs(trIDX - radius) == 1) styleHeight = '2px';
            }
 
            if (ps==1 && dv==tdIDX)
            {
                styleWidth = "100%";
                //width;                
            }
 
            if (styleWidth != null) { 
                TD.style.width = styleWidth; 
 
                if (width.indexOf('%'))
                {
                    IMG = document.createElement('img');
                    IMG.style.width = '1px';
                    IMG.style.height = '1px';
                    IMG.style.visibility = 'hidden';
                    TD.appendChild(IMG);
                }
            }
            if (styleHeight != null) TD.style.height = styleHeight;
 
            if (Space == tdIDX || Space == MAX - tdIDX - 1) TD.style.backgroundColor = bdcolor;
            else if (tdIDX > Space && Space < MAX - tdIDX - 1)  TD.style.backgroundColor = bgcolor;
 
            if (Space == 0 && tdIDX == radius) TD.appendChild(obj);
            TR.appendChild(TD);
          }
          TBody.appendChild(TR);
    }
    Table.appendChild(TBody);
    Parent.insertBefore(Table, objTmp);
}
</script>  


<!-- »õâÀ¸·Î ¶ç¿ì´Â ½ºÅ©¸³Æ®(ÁÖ¼ÒÇ¥½ÃÁÙ,µµ±¸¸·´ë ÀüºÎ ¾ø¾Ö±â) ½ÃÀÛ -->
<SCRIPT LANGUAGE="JavaScript"> 
function submitForm( siteURL ) 

  var win = window.open( siteURL, '_self', 'status=0,toolbar=0,scrollbars=1,resizable=1' ); 
  document.forms.search.action = siteURL; 
  document.forms.search.target = '_self'; 
  document.forms.search.submit(); 

} //function 
// --> 
</SCRIPT> 
<!-- »õâÀ¸·Î ¶ç¿ì´Â ½ºÅ©¸³Æ®(ÁÖ¼ÒÇ¥½ÃÁÙ,µµ±¸¸·´ë ÀüºÎ ¾ø¾Ö±â) ³¡ -->


<!-- ¹Ùµð ½ÃÀÛ ---------------------------->
<body topmargin="0" marginwidth="0" marginheight="0">

<table width="942" border="0" cellspacing="0" cellpadding="0" align="center" >
    <tr>
        <td>
        <!-- »ó´Ü Å¾¸Þ´º, Ç÷¡½Ã ¸Þ´º --------------  ½ÃÀÛ -->
        <? include("topflash.php"); ?>
         <!-- »ó´Ü Å¾¸Þ´º, Ç÷¡½Ã ¸Þ´º -------------- Á¾·á -->
        </td>
    </tr>

        <!-- »ó´Ü ¿©¹é -->
    <tr>
        <td height="15">
        </td>
    </tr>

    <tr>
        <td>
        <!-- ¸ÞÀΠ½ÃÀÛ --------------------------------->

            <table width="946" border="0" cellspacing="0" cellpadding="0">
                <tr>
                    <td valign="top" >
            <!-- ÁÂÃø Ç÷¡½Ã ¸Þ´º ½ÃÀÛ --------------------------->
                    <table>
                        <tr>
                            <td valign="top">
                                <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="212" height="239" id="lefthardware" align="middle">
                                    <param name="allowScriptAccess" value="sameDomain" />
                                    <param name="allowFullScreen" value="false" />
                                    <param name="movie" value="./flash/leftmenuhardware.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" />    <embed src="./flash/leftmenuhardware.swf" quality="high" bgcolor="#ffffff" width="212" height="239" name="lefthardware" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" />
                                    </object>
                            </td>
                        </tr>
                        <tr height="25">
                            <td>
                            </td>
                        </tr>
                        <tr>
                            <td>

                    <!-- ÁÂÃø Á¦Ç° µµ¿ò ¸Þ´º ½ÃÀÛ -->
                        <? include('../millennium/left_banner.php'); ?>
                    <!-- ÁÂÃø Á¦Ç° µµ¿ò ¸Þ´º ³¡ -->
                    </td>
                </tr>
            </table>
            <!-- ÁÂÃø Ç÷¡½Ã ¸Þ´º ³¡ --------------------------->
                </td>

            <!-- ¸Þ´º Æø ¿©¹é --------------------------->                
                <td width="12">
                </td>

                <td>


            <!-- »ó´Ü ¿©¹é¿ë Å×ÀÌºí ½ÃÀÛ----------------->
                <table cellspacing="0" cellpadding="0" border="0">
                    <tr>
                    <td height="7"></td>
                    </tr>
                    <tr>
                    <td>
                <!-- ¸ÞÀΠÅÇ ½ÃÀÛ --------------------------->
                            <table background="../millennium/img/titlebar/buyhw.gif" width="718" height="35" >
                            <tr>
                                <td width="500">
                                </td>
                                <td>

                                    <table align="right">
                                        <tr>
                                            <td>
                                                <a href=intro.php ><img src="../millennium/img/common/home.gif" border="0">
                                            </td>
                                            <td  class="txt01"><font color="999999">
                                                < Á¦Ç°±¸¸Å < <font color="494949">Çϵå¿þ¾î±¸¸Å
                                            </td>
                                            <td width="10">
                                            </td>
                                        </tr>
                                    </table>
                                </td>
                                <td>
                                </td>
                            </tr>
                        </table>
                <!-- ¸ÞÀΠÅÇ ³¡ ------------------------->
                        </tr>
                        </td>
                <!-- ¸ÞÀΠÅÇ ³»¿ë »çÀÌ ¿©¹é------------->
                    <tr>
                        <td height="20">
                        </td>
                    </tr>
    
                    <tr>
                        <td valign="top"  height="500">
                <!-- ¸ÞÀΠ³»¿ë ½ÃÀÛ ------------->
            <table width="688" border="0" cellpadding="0" cellspacing="0" align="center">
                <tr>
                    <td height="38" background="../millennium/img/buy/hwtab_bg.gif">
                        <table width="688" border="0" cellpadding="0" cellspacing="0" valign="top" background="../millennium/img/product/product_tab.gif">
                            <tr>
                                <td width="3"></td>
                                <td valign="bottom"> <!-- ½ºÄ³³Ê -->
                                    <? if ($category_code == 11) { ?>
                                        <p><A HREF="../millennium/buyhw.php?category_code=11"><IMG SRC="../millennium/img/buy/hwtab_1_on.gif" BORDER="0"></A></p>
                                    <? } else { ?>
                                        <p><A HREF="../millennium/buyhw.php?category_code=11"><IMG SRC="../millennium/img/buy/hwtab_1_off.gif" 
                                        onmouseover="this.src='../millennium/img/buy/hwtab_1_on.gif'" onmouseout="this.src='../millennium/img/buy/hwtab_1_off.gif'" BORDER="0"></A></p> 
                                    <? ?>
                                </td>
                                <td width="3"></td>
                                <td valign="bottom"> <!-- PDAÀåºñ -->
                                    <? if ($category_code == 13) { ?>
                                        <p><A HREF="../millennium/buyhw.php?category_code=13"><IMG SRC="../millennium/img/buy/hwtab_2_on.gif" BORDER="0"></A></p>
                                    <? } else { ?>
                                        <p><A HREF="../millennium/buyhw.php?category_code=13"><IMG SRC="../millennium/img/buy/hwtab_2_off.gif" 
                                        onmouseover="this.src='../millennium/img/buy/hwtab_2_on.gif'" onmouseout="this.src='../millennium/img/buy/hwtab_2_off.gif'" BORDER="0"></A></p>
                                    <? ?>
                                </td>
                                <td width="3"></td>
                                <td valign="bottom"> <!-- ÇÁ¸°ÅÍ -->
                                    <? if ($category_code == 12) { ?>
                                        <p><A HREF="../millennium/buyhw.php?category_code=12"><IMG SRC="../millennium/img/buy/hwtab_3_on.gif" BORDER="0"></A></p> 
                                    <? } else { ?>
                                        <p><A HREF="../millennium/buyhw.php?category_code=12"><IMG SRC="../millennium/img/buy/hwtab_3_off.gif" 
                                        onmouseover="this.src='../millennium/img/buy/hwtab_3_on.gif'" onmouseout="this.src='../millennium/img/buy/hwtab_3_off.gif'" BORDER="0"></A></p> 
                                    <? ?>
                                </td>
                                <td width="3"></td>
                                <td valign="bottom"> <!-- POSÁÖº¯±â±â -->
                                    <? if ($category_code == 14) { ?>
                                        <p><A HREF="../millennium/buyhw.php?category_code=14"><IMG SRC="../millennium/img/buy/hwtab_4_on.gif" BORDER="0" ></A></p> 
                                    <? } else { ?>
                                        <p><A HREF="../millennium/buyhw.php?category_code=14"><IMG SRC="../millennium/img/buy/hwtab_4_off.gif" 
                                        onmouseover="this.src='../millennium/img/buy/hwtab_4_on.gif'" onmouseout="this.src='../millennium/img/buy/hwtab_4_off.gif'" BORDER="0"></A></p>
                                    <? ?>
                                </td>
                                <td width="3"></td>
                                <td valign="bottom"> <!-- POSÀåºñ -->
                                    <? if ($category_code == 99) { ?>
                                        <p><A HREF="../millennium/buypos.php?category_code=99"><IMG SRC="../millennium/img/buy/hwtab_5_on.gif" BORDER="0"></A></p>
                                    <? } else { ?>
                                        <p><A HREF="../millennium/buypos.php?category_code=99"><IMG SRC="../millennium/img/buy/hwtab_5_off.gif" 
                                        onmouseover="this.src='../millennium/img/buy/hwtab_5_on.gif'" onmouseout="this.src='../millennium/img/buy/hwtab_5_off.gif'" BORDER="0"></A></p>
                                    <? ?>
                                </td>
                                <td width="3"></td>
                                <td valign="bottom"> <!-- CIDÀåºñ -->
                                    <? if ($category_code == 18) { ?>
                                        <p><A HREF="../millennium/buyhw.php?category_code=18"><IMG SRC="../millennium/img/buy/hwtab_6_on.gif" BORDER="0"></A></p>
                                    <? } else { ?>
                                        <p><A HREF="../millennium/buyhw.php?category_code=18"><IMG SRC="../millennium/img/buy/hwtab_6_off.gif" 
                                        onmouseover="this.src='../millennium/img/buy/hwtab_6_on.gif'" onmouseout="this.src='../millennium/img/buy/hwtab_6_off.gif'" BORDER="0"></A></p>
                                    <? ?>
                                </td>
                                <td width="3"></td>
                                <td valign="bottom"> <!-- °í°´°ü¸®Àåºñ -->
                                    <? if ($category_code == 19) { ?>
                                        <p><A HREF="../millennium/buyhw.php?category_code=19"><IMG SRC="../millennium/img/buy/hwtab_7_on.gif" BORDER="0"></A></p>
                                    <? } else { ?>
                                        <p><A HREF="../millennium/buyhw.php?category_code=19"><IMG SRC="../millennium/img/buy/hwtab_7_off.gif" 
                                        onmouseover="this.src='../millennium/img/buy/hwtab_7_on.gif'" onmouseout="this.src='../millennium/img/buy/hwtab_7_off.gif'" BORDER="0"></A></p>
                                    <? ?>
                                </td>


                            </tr>

                    </table>
                            <tr>
                                <td height="10"></td>
                            </tr>
                            <tr>
                                <td>
                                    <table width="688" border="0" cellspacing="0" cellpadding="0" align="center" valign="middle" >
                                        <tr>
                                            <td colspan="3" valign="middle">
                                                <img src="../millennium/img/pos/pos_tab.gif">
                                            </td>
                                        <tr>
                                            <td>
                                                <img src="../millennium/img/BasicImage/posbig_01.gif">
                                            </td>
                                            <td width="25">
                                            </td>
                                            <td>
                                                <a href="../millennium/pos_01.php"><img src="../millennium/img/pos/pos_info.gif" border="0"></a><br><br>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td colspan="3" height="1" background="../millennium/img/common/2pxdotbg.gif">
                                            </td>
                                        </tr>
                                    </table>
                                    
                                
                                </td>
                            </tr>
                            <tr>
                                <td align="center"><br>

                                <!-- À¯ÅëÆ÷½º ¼Ö·ç¼Ç ½ÃÀÛ -->
                                    <table width="688" border="0" cellspacing="0" cellpadding="0" align="center" valign="top" >
                                        <tr>
                                            <td colspan="3" width="688">
                                                <img src="../millennium/img/pos/pos_tab1.gif">
                                            </td>
                                        </tr>
                                        <tr>
                                            <td colspan="3" height="10">
                                            </td>
                                        </tr>
                                        <tr width="688">
                                            <td width="210" align="center">
                                                <img src="../millennium/img/pos/pos_sw1.gif" border="0" onclick="showPicture('../millennium/img/pos/pos_sw1big.gif');" style="cursor:hand" >
                                            </td>

                                            <td valign="bottom" align="center" >
                                                <table id="ta" width="450" height="130" cellpadding="0" cellspacing="0" border="0" radius="3" rborder="#cccccc" rbgcolor="#F8F8F8">  
                                                    <tr>  
                                                           <td width="35"></td>  
                                                           <td>
                                                            À¯ÅëPOS: ½´ÆÛ, ¸¶Æ®, ÆíÀÇÁ¡,ÇÁ·£Â÷ÀÌÁî, Ã¼ÀÎÁ¡, ¼Ò¸ÅÆÇ¸ÅÁ¡<br>
                                                            &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp¢¹¸ðµç À¯Åë¾÷Á¾ (Çö±Ý¿µ¼öÁõ, Ä«µå¿µ¼öÁõ Ãâ·Â) <br>
                                                            <br>
                                                            µµÀÔ¹æ½Ä: ¨ç POS Àü¿ëÀåºñ: ¸ÅÀåÀÇ À̹ÌÁö °³¼±<br>
                                                            &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp¨è ÀϹÝPC»ç¿ë: ¿µ¼öÁõÇÁ¸°ÅÍ, ½ºÄ³³Ê, ±ÝÀüÇÔ, Ä«µå¸®´õ±â ÇÊ¿ä
                                                           
                                                           </td>  
                                                    </tr>  
                                                    <tr>  
                                                        <td colspan="2" align="center">
                                                            <table cellpadding="0" cellspacing="0" border="0" width="340"> 
                                                           <td align="center">
                                                                <a href="http://mijinsoft.co.kr/download/ubi_pos.exe">
                                                                <img src="../millennium/img/pos/pos_swdn1.gif" border="0">
                                                                </a>
                                                            </td>
                                                           <td align="center">
                                                                <a href="http://www.mijinsoft.co.kr/html/download_01.php?cate2_code=05&category_code=97"  target="_blank">
                                                                <img src="../millennium/img/pos/pos_swinfo.gif" border="0">
                                                                </a>
                                                            </td>    
                                                            </table>
                                                        </td>
                                                    </tr>  
                                                    </table>  
                                                    <script>roundTable("ta");</script>
                                                    <br>
                                            </td>
                                        </tr>
                                    </table>
                                <!-- À¯ÅëÆ÷½º ¼Ö·ç¼Ç ³¡ -->

                                <!-- À¯ÅëÆ÷½º ¼Ö·ç¼Ç ½ÃÀÛ -->
                                    <table width="688" border="0" cellspacing="0" cellpadding="0" align="center" valign="top" >
                                        <tr>
                                            <td colspan="3" width="688">
                                                <img src="../millennium/img/pos/pos_tab2.gif">
                                            </td>
                                        </tr>
                                        <tr>
                                            <td colspan="3" height="10">
                                            </td>
                                        </tr>
                                        <tr width="688">
                                            <td width="210" align="center">
                                                <img src="../millennium/img/pos/pos_sw2.gif" border="0" onclick="showPicture('../millennium/img/pos/pos_sw2big.gif');" style="cursor:hand" >
                                            </td>

                                            <td valign="bottom" align="center" >
                                                <table id="ta1" width="450" height="130" cellpadding="0" cellspacing="0" border="0" radius="3" rborder="#cccccc" rbgcolor="#F8F8F8">  
                                                    <tr>  
                                                           <td width="35"></td>  
                                                           <td>
                                                            ¿Ü½ÄPOS: ½Ä´ç, À½½ÄÁ¡, Res Cafe, ÁÖÁ¡, À¯Èï¾÷¼Ò, Cafe<br>
                                                            &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp¢¹¸ðµç ¿ä½Ä¾÷Á¾ (Çö±Ý¿µ¼öÁõ, Ä«µå¿µ¼öÁõ Ãâ·Â)  <br>
                                                            <br>
                                                            µµÀÔ¹æ½Ä: ¨ç POS Àü¿ëÀåºñ: ¸ÅÀåÀÇ À̹ÌÁö °³¼±<br>
                                                            &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp¨è ÀϹÝPC»ç¿ë: ¿µ¼öÁõÇÁ¸°ÅÍ, ±ÝÀüÇÔ, Ä«µå¸®´õ±â ÇÊ¿ä
                                                           
                                                           </td>  
                                                    </tr>  
                                                    <tr>  
                                                        <td colspan="2" align="center">
                                                            <table cellpadding="0" cellspacing="0" border="0" width="340"> 
                                                           <td align="center">
                                                                <a href="http://mijinsoft.co.kr/download/easytable.exe">
                                                                <img src="../millennium/img/pos/pos_swdn2.gif" border="0">
                                                                </a>
                                                            </td>
                                                           <td align="center">
                                                                <a href="http://www.mijinsoft.co.kr/html/download_01.php?cate2_code=05&category_code=14" target="_blank">
                                                                <img src="../millennium/img/pos/pos_swinfo.gif" border="0">
                                                                </a>
                                                            </td>    
                                                            </table>
                                                        </td>
                                                    </tr>  
                                                    </table>  
                                                    <script>roundTable("ta1");</script>
                                            </td>
                                        </tr>
                                    </table>
                                    <br>
                                    <tr>
                                    <td height="1" background="../millennium/img/common/2pxdotbg.gif">
                                    </td>
                                    </tr>
                                    <td align="center"><br><br>
                                <font class="txt06"><b>¼­¿ï, °æ±â, ºÎ»ê, °æºÏÁö¿ª ÃâÀ弳ġ(VATº°µµ)&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbspPOSµµÀÔ¹®ÀÇ: 02)401-5121 / 011-522-0911
                                </td>
                                <!-- À¯ÅëÆ÷½º ¼Ö·ç¼Ç ³¡ -->
                                </td>
                            </tr>




            </table>

           
    
            <br><br>
                <!-- ¸ÞÀΠ³»¿ë ³¡ ------------->
                        </td>
                    </tr>
                </table>
            <!-- »ó´Ü ¿©¹é¿ë Å×ÀÌºí ³¡----------------->




                </td>
              </tr>
            </table>

        <!-- ¸ÞÀΠÁ¾·á --------------------------------->







        </td>
    </tr>

    <tr>
        <td height="20">
        <!-- ÇÏ´Ü¿©¹é -->
        </td>
    </tr>





    <tr>
        <td><? include('bottom.php'); ?></td>
    </tr>
</table>
</body>