/home/mjc1/public_html/html/millennium/_product_pdapm.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
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
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
<?php include_once("./_common2.php"); ?>
<? 
include('../../html/poorman.php'); ?>
<? 
include("../../manage/category/common.php"); ?>
<? 
include('../../html/include/_Head.php'); ?>

<script>
function fileDown(type,name,cate2_code,category_code){
    
    location.href =   "fileDownLoad.php?type="+type+"&filename="+name+"&cate2_code="+cate2_code+"&category_code="+ category_code ;
    
}
</script>



<!-- ·Ñ¿À¹ö ½ºÅ¸ÀÏ -->
                <style>
                    a.rollover img { border-width:0px; display:block; }
                    a.rollover img.rollover { display:none; }
                    a.rollover:hover { position:relative; }
                    a.rollover:hover img { display:none; }
                    a.rollover:hover img.rollover { display:block; }
                </style>
<link href="./css/style.css" rel="stylesheet" type="text/css">
<!-- »õâ ¶ç¿ì±â PDA¿µ¼öÁõ¾ç½Ä -->
<SCRIPT LANGUAGE="JavaScript"> 
<!-- 
function submitForm( siteURL ) 

    var win = window.open( siteURL, 'newWin', 'status=0,toolbar=0,scrollbars=1,resizable=0,top=10, left=10, width=780,height=680' ); 
    document.forms.search.action = siteURL; 
    document.forms.search.target = 'newWin'; 
    document.forms.search.submit(); 
} //function 
// --> 
</SCRIPT> 

<!-- PDA µ¿¿µ»ó »õâ¶ç¿ì±â-->
<script>
    function popPda()
    {
        window.open('../../popup/popPda.swf1.html','popupPda','top=250,left=500,width=245,height=350');
    }

    function pdadown()
    {
        window.open('../millennium/pda_download.php','poppdadown','top=250,left=500,width=720,height=620');
    }

    function pdaprice()
    {
        window.open('../millennium/pda_price.php','poppdaprice','top=250,left=500,width=640,height=480');
    }
</script>


<style type="text/css">

BODY {background: url(../millennium/img/common/bodybg2.gif) repeat-x top center}
/*Á¤Áß¾Ó¿¡ ¹è°æ À̹ÌÁö °íÁ¤*/

</style>
<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="260" id="leftproduct" align="middle">
                                    <param name="allowScriptAccess" value="sameDomain" />
                                    <param name="allowFullScreen" value="false" />
                                    <param name="movie" value="./flash/leftmenuproduct.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" />    <embed src="./flash/leftmenuproduct.swf" quality="high" bgcolor="#ffffff" width="212" height="260" name="leftproduct" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" />
                                    </object>
                            </td>
                        </tr>
                        <tr height="10">
                            <td>
                            </td>
                        </tr>
                        <tr>
                            <td align="center">

                        <!-- °ßÀû¿äû¹è³Ê ½ÃÀÛ--------------------------------->
                                <a href="../millennium/customerprice.php"><img src="../millennium/img/common/price.gif" border="0">
                        <!-- °ßÀû¿äû¹è³Ê ³¡  --------------------------------->

                            </td>
                        </tr>
                        <tr height="10">
                            <td>
                            </td>
                        </tr>
                        <tr>
                            <td align="center">

                        <!-- PDA¹è³Ê ½ÃÀÛ--------------------------------->
                                <a href="../millennium/product_pdamain.php"><img src="../millennium/img/product/pda_banner.gif" border="0">
                        <!-- PDA¹è³Ê ³¡  --------------------------------->

                            </td>
                        </tr>
                        <tr>
                            <td align="center">
                                                        <!-- °ü·ÃÁ¦Ç°º¸±â ½ÃÀÛ--------------------------------->

                            <table border="0" cellspacing="0" cellpadding="0" background="../millennium/img/product/sicon/software_bg.gif" width="204" height="347">
                                <tr>
                                    <td colspan="3" height="35"></td>
                                </tr>
                                <tr>
                                    <td width="6"></td>
                                    <td><a href='productinfo.php?cate2_code=01&category_code=03'><img src="../millennium/img/product/sicon/mcs.gif" border="0"></a></td> <!-- Ãµ³â°æ¿µCS -->
                                    <td width="6"></td>
                                </tr>
                                <tr>
                                    <td colspan="3" height="2"></td>
                                </tr>
                                <tr>
                                    <td width="6"></td>
                                    <td><a href='productinfo.php?cate2_code=01&category_code=01'><img src="../millennium/img/product/sicon/mlite.gif" border="0"></a></td> <!-- Ãµ³â°æ¿µLite -->
                                    <td width="6"></td>
                                </tr>
                                <tr>
                                    <td colspan="3" height="1"></td>
                                </tr>
                                <tr>
                                    <td width="6"></td>
                                    <td><a href='productinfo.php?cate2_code=02&category_code=40'><img src="../millennium/img/product/sicon/jpro.gif" border="0"></a></td> <!-- Á¦Á¶°æ¿µPro -->
                                    <td width="6"></td>
                                </tr>
                                                                <tr>
                                    <td colspan="3" height="3"></td>
                                </tr>
                                <tr>
                                    <td width="6"></td>
                                    <td><a href='productinfo.php?cate2_code=02&category_code=41'><img src="../millennium/img/product/sicon/jprocs.gif" border="0"></a></td> <!-- Á¦Á¶°æ¿µProCS -->
                                    <td width="6"></td>
                                </tr>
                                <tr>
                                    <td colspan="3" height="10"></td>
                                </tr>
                            </table>

                    <!-- °ü·ÃÁ¦Ç°º¸±â ³¡  --------------------------------->

                        </td>
                    </tr>

                    <tr>
                        <td align="center" height="220">

                    <!-- ÀÌÁö°è»ê¼­,ÀüÀÚ°è»ê¼­,POSÀåºñ,¿ëÁöÁÖ¹® ½ÃÀÛ--------------------------------->
                            <img src="../millennium/img/product/four_banner.gif" border="0" usemap="#fourbanner" align="center">
                            <map name="fourbanner" id="fourbanner">
                            <area shape="rect" onfocus="blur()" coords="6,6,99,100" href="../millennium/productinfo.php?cate2_code=06&category_code=17" />    <!-- ÀÌÁö°è»ê¼­ -->
                            <area shape="rect" onfocus="blur()" coords="103,6,197,100" href="../millennium/productetax.php" />    <!-- ÀüÀÚ°è»ê¼­ -->
                            <area shape="rect" onfocus="blur()" coords="6,104,99,198" href="../millennium/pos_01.php" />    <!-- POSÀåºñ -->
                            <area shape="rect" onfocus="blur()" coords="103,104,197,198" href="../millennium/buypaperbest.php" />    <!-- Àü»ê¿ëÁöÁÖ¹® -->
                            </map>
                    <!-- ÀÌÁö°è»ê¼­,ÀüÀÚ°è»ê¼­,POSÀåºñ,¿ëÁöÁÖ¹® ³¡  --------------------------------->

                            </td>
                        </tr>
                    </table>
            <!-- ÁÂÃø Ç÷¡½Ã ¸Þ´º ³¡ --------------------------->
                </td>

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

                <td valign="top">


            <!-- »ó´Ü ¿©¹é¿ë Å×ÀÌºí ½ÃÀÛ----------------->
                <table cellspacing="0" cellpadding="0" border="0" >
                    <tr>
                    <td height="7"></td>
                    </tr>
                    <tr>
                    <td>
                <!-- ¸ÞÀΠÅÇ ½ÃÀÛ --------------------------->
                            <table background="../millennium/img/titlebar/productmain.gif" width="718" height="35" >
                            <tr>
                                <td width="300">
                                </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">
                                                < Á¦Ç°¼Ò°³ < Ãµ³âPDA < <font color="494949">õ³âPDA PM
                                            </td>
                                            <td width="10">
                                            </td>
                                        </tr>
                                    </table>


                                </td>
                                <td>
                                </td>
                            </tr>
                        </table>
                <!-- ¸ÞÀΠÅÇ ³¡ ------------------------->
                        </tr>
                        </td>
                <!-- ¸ÞÀΠÅÇ ³»¿ë »çÀÌ ¿©¹é------------->
                    <tr>
                        <td height="20">
                        </td>
                    </tr>
    
                    <tr>
                        <td>
                <!-- ¸ÞÀΠ³»¿ë ½ÃÀÛ ------------->

                    <table width="688" border="0" cellspacing="0" cellpadding="0" align="center">
                        <tr>
                            <td colspan="3" align="center">
                                <img src="../millennium/img/product/pda/title_pm.gif" usemap="#pdatitle" border="0">    <!-- Å¸ÀÌÆ²¹Ù À̹ÌÁö -->
                                <map name="pdatitle" id="pdatitle">
                                <area shape="rect" onfocus="blur()" coords="585,6,682,33" href="../millennium/customerprice.php" />            <!-- °ßÀû¿äû -->
                                </map>
                            <td>
                        </tr>
                        <tr>
                            <td height="20">
                            </td>
                        </tr>
                        <tr>
                            <td width="230" valign="top" align="center">
                                <table border="0" cellspacing="0" cellpadding="0">
                                    <tr>
                                        <td height="230" colspan="3" valign="top">
                                            <TABLE border="0" cellspacing="0" cellpadding="0">
                                                <TR>
                                                    <TD width="214" height = "236" align="left" valign="center"><img src="../millennium/img/product/pda/pdabox.gif" width="214" height="236"></TD>
                                                </TR>
                                            </TABLE>
                                        </td>
                                    </tr>
                                    <tr>
                                        <td align="center" height="55" valign="bottom">
                                            <a href="javascript:popPda();"><img src="../millennium/img/product/pda_movie.gif" border="0"></a>
                                        </td>
                                    </tr>
                                </table>
                            <td width="27"></td>
                                                        
                            <td width="432" valign="top" align="right">
                                <table width="432" border="0" cellspacing="0" cellpadding="0">
                                    <tr>
                                        <td align="right">
                                            <table border="0" cellspacing="0" cellpadding="0">
                                                <tr>

                                                    <td width="500" align="center">
                                                    <img src="../millennium/img/product/pda/toptext_pm.gif">
                                                    </td>
                                                </tr>
                                            </table>
                                        
                                        </td>
                                    </tr>
                                    <tr>
                                        <td align="center" height="145" valign="bottom">
                                                      <!-- Á¦Ç°¼³¸í Ãµ³âPDACM ************************** -->
                                                      <? include("../millennium/product/pdapm.php"); ?>
                                        </td>
                                    </tr>
                                    <tr>
                                        <td>&nbsp;</td>
                                    </tr>
                                    <tr>
                                        <td>
                                            <table border="0" cellpadding="0" cellspacing="0" width="100%">
                                                <tr>
                                                    <td width="33%" align="center">
                                                        <a href="javascript:pdadown();"><img src="../millennium/img/product/pda_download.gif" border="0"></a>
                                                    </td>
                                                    <td width="33%" align="center">
                                                        <a href="http://www.mijinsoft.co.kr/html/jaro/pda/MijinPdaSolution.ppt"><img src="../millennium/img/product/pda_info.gif" border="0"></a>
                                                    </td>
                                                    <td width="33%" align="center">
                                                        <a href="javascript:pdaprice();"><img src="../millennium/img/product/pda_price.gif" border="0"></a>
                                                    </td>
                                                </tr>
                                            </table>
                                        </td>
                                    </tr>
                                </table>
                            </td>
                        </tr>
                        <tr>
                            <td> 
                            
                            <!-- °ßÀû¿äû -->
                                <table border="0" cellspacing="0" cellpadding="0" align="center" >
                                    <tr>    
                                        <!-- °ßÀû¹®ÀÇ -->
                                        <!-- <a href="../millennium/customerprice.php"><img src="../millennium/img/product/pda/pda_bt1.gif" border="0"></a> -->

                                    </tr>
                                </table>

                            </td>
                            <td><!-- ¿©¹é-->
                            </td>
                            <td>
                            <!-- ±¸¸Å¾È³»-->
                                <table border="0" cellspacing="0" cellpadding="0" align="center" >
                                    <tr>
                                        <!--<img src="../millennium/img/product/pda/pda_bt2.gif" border="0">-->
                                    
                                    </tr>
                                </table>




                            </td>
                        </tr>
                        <tr>
                            <td height="15">
                            </td>
                        </tr>
                        <tr>
                            <td colspan="3" height="1" background="../millennium/img/common/2pxdotbg.gif">
                            </td>
                        </tr>
                        <tr>
                            <td height="15">
                            </td>
                        </tr>
                        <tr>

                        



<!-------ÅǸ޴º ½ÃÀÛ-------->
<script>
function premier(n) {
    for(var i = 1; i < 6; i++) {
        obj = document.getElementById('premier'+i);
        img = document.getElementById('premier_button'+i);
        if ( n == i ) {
            obj.style.display = "block";
            img.src = "../millennium/img/product/pda/pdatab_"+i+"_on.gif";
        } else {
            obj.style.display = "none";
            img.src = "../millennium/img/product/pda/pdatab_"+i+"_off.gif";
        }
    }
}
</script>
                                    <table width="688" height="30"border="0" align="center" cellpadding="0" cellspacing="0" background="../millennium/img/product/product_tab.gif">
                                        <tr>
                                            <td align="center">
                                                <table border=0 cellpadding=0 cellspacing=0>
                                                    <tr valign=bottom>
                                                        <td width="9"></td>

                                                        <!-- Á¦Ç°¼Ò°³ -->
                                                         <td height="30"><img src=../millennium/img/product/pda/pdatab_1_on.gif OnClick='premier(1);' OnMouseOver='this.style.cursor="hand";premier(1);' OnMouseOut='this.style.cursor="default"' id='premier_button1'></td>
                                                        <td width=6></td>

                                                        <!-- ÁÖ¿ä±â´É -->
                                                        <td><img src=../millennium/img/product/pda/pdatab_2_off.gif OnClick='premier(2);' OnMouseOver='this.style.cursor="hand";premier(2);' OnMouseOut='this.style.cursor="default"' id='premier_button2'></td>
                                                        <td width=6></td> 

                                                        <!-- »ç¿ë¾÷Á¾ -->
                                                        <td><img src=../millennium/img/product/pda/pdatab_3_off.gif OnClick='premier(3);' OnMouseOver='this.style.cursor="hand";premier(3);' OnMouseOut='this.style.cursor="default"' id='premier_button3'></td>
                                                        <td width=6></td> 

                                                        <!-- »ç¿ë¾÷Á¾ -->
                                                        <td><img src=../millennium/img/product/pda/pdatab_4_off.gif OnClick='premier(4);' OnMouseOver='this.style.cursor="hand";premier(4);' OnMouseOut='this.style.cursor="default"' id='premier_button4'></td>
                                                        <td width=6></td> 
                                                        
                                                        <!-- »ç¿ë¾÷Á¾ -->
                                                        <td><img src=../millennium/img/product/pda/pdatab_5_off.gif OnClick='premier(5);' OnMouseOver='this.style.cursor="hand";premier(5);' OnMouseOut='this.style.cursor="default"' id='premier_button5'></td>
                                                      <td width=6></td>
                                                    </tr>
                                                </table>
                                            </td>
                                            <td width=5></td>
                                        </tr>
                                    </table>


                                    <table width=560 border=0 align="center" cellpadding=0 cellspacing=0 bgcolor=#ffffff>
                                        <tr><td height="10"></td></tr>
                                        <tr>
                                            <td valign="top">













                                            <!-------1¹øÂ° ÅÇ (Á¦Ç°¼Ò°³)-------->
                                                <span id='premier1' style='display:block;'>
                                                <table width=688 border=0 cellpadding=0 cellspacing=0 align="center">

                                                    <tr>
                                                        <td align="center" valign="top">
                                                    <table width="688" align="center">
                                                        <tr>
                                                            <td>
                                                                <BR>
                                                                <IMG SRC="../millennium/img/product/pda/tab1_title01.gif" BORDER="0">
                                                            </td>
                                                        </tr>
                                                        <tr align="center">
                                                            <td align="center" width="688">
                                                                <IMG SRC="../millennium/img/product/pda/tab1_hardware.gif" BORDER="0" usemap="#pda2">
                                                                <map name="pda2" id="pda2">
                                                                <area shape="rect" onfocus="blur()" coords="1,1,668,252" href="../millennium/buyhw.php?category_code=13" /><!-- PDA±â±â ÆäÀÌÁö·ÎÀ̵¿ -->
                                                                <br><br>
                                                                <b>&nbsp;&nbsp;<FONT SIZE="2" COLOR="#FF3300">¡Ø PDAµµÀÔ ½Ç½Ã°£ Ä£Àý»ó´ã : (02)401-5121</FONT> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT SIZE="2" COLOR="#3366CC">¡Ø ´ëºÎºÐÀÇ PDA±âÁ¾À» Áö¿øÇÕ´Ï´Ù.</FONT></b>
                                                            </td>
                                                        </tr>
                                                    </table>

                                                    <!-- pda ¾÷¹« È帧µµ -->
                                                    <table>
                                                        <tr>
                                                            <td>
                                                                <BR><BR>
                                                                <IMG SRC="../millennium/img/product/pda/tab1_title02.gif" BORDER="0">
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td>
                                                                <IMG SRC="../millennium/img/product/pda/pda4_pm.gif" BORDER="0">
                                                            </td>
                                                        </tr>
                                                    </table>


                                                    <!-- pda ¼Ö·ç¼Ç °³¿ä -->
                                                    <table>
                                                        <tr>
                                                            <td>
                                                                <BR>
                                                                <IMG SRC="../millennium/img/product/pda/tab1_title03.gif" BORDER="0">
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td>

                                                                <table style="border-width:1px; border-color:#d0daf0; border-style:solid;" border="0" width="688" height="70" >
                                                                    <tr>
                                                                        <td bgcolor="#FFFFFF" class="txt03" style="padding:5pt 5pt;">
                                                                            <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf"><FONT COLOR="#627aaf">¾÷ü¿¡¼­ 1ÀÎÀÇ PDA»ç¿ëÀÚ°¡ °¢Á¾ ¾÷¹«¸¦ Ã³¸®Çϱ⿡ ÀûÇÕÇϰԠ°³¹ßµÈ PDA´Üµ¶ ¼Ö·ç¼ÇÀ¸·Î½á
  »ç¹«½ÇPC¿Í ÀڷḦ<br>&nbsp;&nbsp; ¿¬°èÇÏÁö ¾Ê°í PDA´Üµ¶À¸·Î ÀڷḦ °ü¸®Çϴ ÷´Ü¼Ö·ç¼ÇÀÔ´Ï´Ù.</FONT></B><br>
                                                                            
                                                                            <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf"><span class="style1">Æ÷Äϰ濵Àº À¯Åë¾÷¹«¿¡ ²À ÇÊ¿äÇÑ ±âº»ÀûÀΠ±â´É¸¸À» ¸ð¾Æ¼­ °³¹ßµÇ¾î
  ¼Ò±Ô¸ð »ç¾÷Àå¿¡¼­ °£ÆíÇϰԠ¾÷¹«¸¦ °ü¸®ÇϰíÀÚ <br>&nbsp;&nbsp;&nbsp;°³¹ßµÇ¾ú½À´Ï´Ù.
</span><br>
                                                <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf"><FONT COLOR="#627aaf">
                                                °Å·¡Ã³¿¡ ³³Ç°ÈÄ °£ÆíÇϰԠ³»¿ëÀ» ±â·ÏÇÒ¶§
                                                </FONT></B><br>

                                                <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf"><FONT COLOR="#627aaf">
                                                ¸ÅÀå¿¡¼­ »óǰÆÇ¸Å ÈÄ ¹Ù·Î Ä«µå°áÀ縦 ÇÒ¶§
                                                </FONT></B><br>

                                                <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf"><FONT COLOR="#627aaf">
                                                ¿ä½Ä¾÷Á¾¿¡¼­ ¸Þ´º ÁÖ¹®À» ¹Þ°í ¹Ù·Î ³»¿ëÀ» µî·ÏÇϰųª °áÀçÇÒ¶§
                                                </FONT></B><br>

                                                <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf"><FONT COLOR="#627aaf">
                                                °¢Á¾ °Å·¡ÀڷḦ ÇöÀå¿¡¼­ ¹Ù·Î Á¶È¸ÇϰíÀÚ ÇÒ¶§
                                                </FONT></B><br>

                                                <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf"><FONT COLOR="#627aaf">
                                                ±âŸ ¼ö¸¹Àº ¾÷¹«¿¡¼­ ´Ù¾çÇϰԠ»ç¿ëµÉ ¼ö ÀÖ½À´Ï´Ù.
                                                </FONT></B><br>

                                                <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf"><FONT COLOR="#627aaf">
                                                Æ÷Äϰ濵ÀÇ Æí¸®¼ºÀ» Áö±Ý ¹Ù·Î Ã¼Çè ÇØ º¸½Ã±â ¹Ù¶ø´Ï´Ù.
                                                </FONT></B><br>
                                                                            

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

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


                                                    <!-- pda »ç¿ë ¿¹½Ã -->
                                                    <table>
                                                        <tr>
                                                            <td>
                                                                <BR><BR>
                                                                <IMG SRC="../millennium/img/product/pda/tab1_title04.gif" BORDER="0">
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td>

                                                                
                                                                <table style="border-width:1px; border-color:#d0daf0; border-style:solid;" border="0" width="688" height="70" >
                                                                    <tr>
                                                                        <td bgcolor="#FFFFFF" class="txt03" style="padding:5pt 5pt;">
                                                                            <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf"> PDA 1´ë·Î °£ÆíÇϰԠ³³Ç°,¿µ¾÷Á¤º¸¸¦ °ü¸®ÇÒ ¶§ »ç¿ëµË´Ï´Ù.

<br><br>

                                                                            <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf"> PMÁ¦Ç°Àº PC¿Í ¿¬°èµÇÁö ¾Ê°í PDA´Üµ¶À¸·Î »ç¿ëµË´Ï´Ù.


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

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




                                                    <!-- pda ±â´É ¹× Æ¯Â¡ -->
                                                    <table>
                                                        <tr>
                                                            <td>
                                                                <BR><BR>
                                                                <IMG SRC="../millennium/img/product/pda/tab1_title05.gif" BORDER="0">
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td>
                                                                <!-- Å×ÀÌºí ½ÃÀÛ **************************************************************************** 1 -->
                                                                <table width="688" border="0" cellpadding="5" cellspacing="1" bgcolor="#d0daf0" >

                                                                         <tr bgcolor="#6699cc"> 
                                                                                  <td class="txt04" width="120" bgcolor="#6699cc">
                                                                                    <img src="../millennium/img/product/gray_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#ffffff"><b>¸ÅÀÔ/¸ÅÃâ°ü¸®
                                                                                  </td>
                                                                                  <td width="585" class="txt04" bgcolor="#FFFFFF" style="padding:5pt 5pt;">
                                                    <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">°Å·¡Ã³º° ¸ÅÀÔ/¸ÅÃâ µî·Ï°ü¸®<br>
                                                    <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">¹Ú½º,³¹°³,ÇÒÀαâ´É Áö¿ø<br>
                                                    <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">¸Þ´ºÆÇ½Ä »óǰ°Ë»ö ±â´É(ÅÍÄ¡¹æ½Ä)<br>
                                                    <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">Á÷¿øº°(IDº°) ¾÷¹«µî·Ï Áö¿ø<br>
                                                    
                                                                                  </td>
                                                                                </tr>
                                                                                <tr bgcolor="#33CCFF"> 
                                                                                  <td class="txt04" width="120" bgcolor="#6699cc">
                                                                                    <img src="../millennium/img/product/gray_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#ffffff"><b>¼ö±Ý°ü·Ã
                                                                                  </td>
                                                                                  <td width="585" class="txt04" bgcolor="#FFFFFF" style="padding:5pt 5pt;">
                                                    <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">Çö±Ý¼ö±Ý µî·Ï ±â´É<br>
                                                    <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">Ä«µå°áÀç ±â´É(CDMA ¹æ½Ä)<br>
                                                              </td>
                                                                                </tr>
                                                                                <tr bgcolor="#33CCFF"> 
                                                                                 <td class="txt04" width="120" bgcolor="#6699cc">
                                                                                    <img src="../millennium/img/product/gray_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#ffffff"><b>°Å·¡Ã³°ü¸®
                                                                                  </td>
                                                                                  <td width="585" class="txt04" bgcolor="#FFFFFF" style="padding:5pt 5pt;">
                                                    <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">»ç¾÷ÀÚÁ¤º¸, ¿¬¶ôó, ´ã´çÀÚ, ÇÒÀÎÀ² °ü¸®<br>
                                                    <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">°Å·¡Ã³º° Æ¯º°(°³ÀÎ)´Ü°¡ °ü¸®<br>
                                                                              </td>
                                                                                </tr>
                                                                                <tr bgcolor="#33CCFF"> 
                                                                                  <td class="txt04" width="120" bgcolor="#6699cc">
                                                                                    <img src="../millennium/img/product/gray_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#ffffff"><b>»óǰ°ü¸®
                                                                                  </td>
                                                                                  <td class="txt04" width="585" bgcolor="#FFFFFF" style="padding:5pt 5pt;">
                                                    <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">¸®»óǰÀ» Ä«Å×°í¸®(±×·ì)º°·Î ±¸ºÐ°ü¸®<br>
                                                    <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">³¹°³¹ÙÄÚµå, ¹Ú½º¹ÙÄڵ堰ü¸®<br>
                                                    <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">¸ÅÀÔ°¡, ¸ÅÃâ°¡ °ü¸®<br>
                                                    <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">»óǰ°Ë»ö½Ã ¹ÙµÏÆÇ½Ä ¸Þ´º¹è¿­ Áö¿ø 
                                                                                  </td>
                                                                                </tr>
                                                                                <tr bgcolor="#33CCFF"> 
                                                                                  <td class="txt04" width="120" bgcolor="#6699cc">
                                                                                    <img src="../millennium/img/product/gray_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#ffffff"><b>Àç°í½Ç»ç°ü¸®
                                                                                  </td>
                                                                                  <td class="txt04" width="585" bgcolor="#FFFFFF" style="padding:5pt 5pt;">
                                                    <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">½Ç»çÀç°í¿Í Àü»êÀç°í °ü¸®<br>
                                                    <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">½ºÄ³³Ê¸¦ ÀÌ¿ëÇÑ ½Ç»çÀç°í µî·Ï</FONT><br>
                                                    <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">½Ç»ç ÈÄ ¿ÀÂ÷¸ÂÃã ±â´É</FONT><br>
                                                                                  </td>
                                                                                </tr>
                                                                                 <tr bgcolor="#33CCFF"> 
                                                                                  <td class="txt04" width="120" bgcolor="#6699cc">
                                                                                    <img src="../millennium/img/product/gray_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#ffffff"><b>°¢Á¾ÇöȲ
                                                                                  </td>
                                                                                  <td class="txt04" width="585" bgcolor="#FFFFFF" style="padding:5pt 5pt;">
                                                    <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">±â°£º° ¸ÅÀÔ/¸ÅÃâÇöȲ Á¶È¸<br>
                                                    <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">±â°£º°/»óǰº° ¸ÅÀÔ/¸ÅÃâÇöȲ Á¶È¸<br>
                                                    <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">±â°£º°/»óǰº°/´ã´çº° ¸ÅÀÔ/¸ÅÃâÇöȲ Á¶È¸<br>
                                                    <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">°¢Á¾ ÇöȲ Ãâ·Â ±â´É <br>
                                                                      </td>
                                                                                </tr>
                                                                                <tr bgcolor="#33CCFF"> 
                                                                                  <td class="txt04" width="120" bgcolor="#6699cc">
                                                                                    <img src="../millennium/img/product/gray_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#ffffff"><b>ÀÔ/Ãâ±ÝÇöȲ 
                                                                                  </td>
                                                                                  <td class="txt04" width="585" bgcolor="#FFFFFF" style="padding:5pt 5pt;">
                                                    <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">±â°£º° ÀÔ/Ãâ±ÝÇöȲ Á¶È¸<br>
                                                    <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">±â°£º°/°Å·¡Ã³º° ÀÔ/Ãâ±ÝÇöȲ Á¶È¸<br>
                                                    
                                                                                  </td>
                                                                                </tr>
                                                                                <tr bgcolor="#33CCFF"> 
                                                                                  <td class="txt04" width="120" bgcolor="#6699cc">
                                                                                    <img src="../millennium/img/product/gray_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#ffffff"><b>Àç°íÁ¶È¸ 
                                                                                  </td>
                                                                                  <td class="txt04" width="585" bgcolor="#FFFFFF" style="padding:5pt 5pt;">
                                                    <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">»óǰ±×·ìº° ÇöÀç°í Á¶È¸<br>
                                                    <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">»óǰº° ÇöÀç°í Á¶È¸<br>
                                                    <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">ÇöÀç°íÇöȲ Ãâ·Â ±â´É<br>
                                                                        <tr bgcolor="#33CCFF"> 
                                                                                  <td class="txt04" width="120" bgcolor="#6699cc">
                                                                                    <img src="../millennium/img/product/gray_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#ffffff"><b>¹Ì¼ö°ü¸®
                                                                                  </td>
                                                                                  <td class="txt04" width="585" bgcolor="#FFFFFF" style="padding:5pt 5pt;">
                                                    <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">Àüü °Å·¡Ã³ ¹Ì¼ö³»¿ª ¹× ÇÕ°èÁ¶È¸<br>
                                                    <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">°Å·¡Ã³º° ¹Ì¼ö³»¿ª Á¶È¸<br>
                                                    <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">¹Ì¼ö±Ý ³»¿ª Ãâ·Â±â´É
                                                    
                                                                                  </td>
                                                                                </tr>

                                                                        <tr bgcolor="#33CCFF"> 
                                                                                  <td class="txt04" width="120" bgcolor="#6699cc">
                                                                                    <img src="../millennium/img/product/gray_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#ffffff"><b>ÆíÀDZâ´É
                                                                                  </td>
                                                                                  <td class="txt04" width="585" bgcolor="#FFFFFF" style="padding:5pt 5pt;">
                                                    <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">¼ö·® ÀԷ ½Ã ¼ýÀÚÆÇ ÀÚµ¿ È°¼ºÈ­ ±â´É<br>
                                                    <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">Űº¸µå ÀÚµ¿ È°¼ºÈ­ ±â´É<br>
                                                    <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">¿µ¼öÁõ Ãâ·Â½Ã ´Ù¾çÇÑ ¿É¼Ç¼³Á¤ ±â´É<br>
                                                    <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">»óǰÆÇ »ç¿ë±â´É (Æí¸®ÇÑ ¹ÙµÏÆÇ½Ä »óǰ°Ë»ö)<br>
                                                    <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">ÀÚ·á¹é¾÷ ¹× µ¥ÀÌÅÍ º¹±¸ ±â´É<br>
                                                    
                                                                                  </td>
                                                                                </tr>                                                    
                                                                                  </td>
                                                                                </tr>
                                                                </table> 
                                                                <!-- Å×ÀÌºí ³¡   **************************************************************************** 2 -->

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




                                                    <!-- pda ÇÁ·Î±×·¥ AS / ¾÷±×·¹À̵堾à°ü -->
                                                    <table>
                                                        <tr>
                                                            <td>
                                                                <BR><BR>
                                                                <IMG SRC="../millennium/img/product/pda/tab1_title06.gif" BORDER="0">
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td>


                                                    <!--Å×ÀÌºí ½ÃÀÛ -->
                                                    <table width="688" border="0" cellpadding="5" cellspacing="1" bgcolor="#d0daf0" >
                                                         <tr bgcolor="#6699cc"> 
                                                              <td class="txt04" rowspan="2" align="center" width="120" bgcolor="#6699cc"><b><font color="#ffffff">
                                                                »ç¿ëÇÁ·Î±×·¥
                                                            </td>
                                                            <td width="488" colspan="4" align="center" style="padding:5pt 0pt;"><b><font color="#dddddd">
                                                                AS / ¾÷±×·¹À̵堺ñ¿ë
                                                            </td>
                                                            
                                                        </tr>
                                                        <tr bgcolor="#6699cc"> 
                                                            <td width="122" bgcolor="#6699cc" align="center" style="padding:5pt 0pt;"><FONT COLOR="#ffffff"><b>õ³âPDA-LC</FONT></td>
                                                            <td width="122" bgcolor="#6699cc" align="center"><font color="#ffffff"><b>õ³âPDA-WL</font></td>
                                                            <td width="122" bgcolor="#6699cc" align="center"><font color="#ffffff"><b>õ³âPDA-CM</font></td>
                                                            <td width="122" bgcolor="#6699cc" align="center"><font color="#ffffff"><b>Æ÷Äϰ濵</font></td>
                                                        </tr>
                                                        <tr> 
                                                        </tr>


                                                     <tr bgcolor="#6699cc"> 
                                                            <td width="120" bgcolor="#ffffff" align="center" style="padding:5pt 0pt;">
                                                                <span class="style2"><font color="#627aaf"><b>¹«»ó±â°£</span>                    </td>
                                                            <td width="122" bgcolor="#FFFFFF" align="center"><font color="#627aaf">
                                                                1³â°£
                                                            </td>
                                                            <td width="122" bgcolor="#FFFFFF" align="center"><font color="#627aaf">
                                                                ¹«Á¦ÇÑ
                                                            </td>
                                                            <td width="122" bgcolor="#FFFFFF" align="center"><font color="#627aaf">
                                                                ¹«Á¦ÇÑ
                                                            </td>
                                                            <td width="122" bgcolor="#FFFFFF" align="center"><font color="#627aaf">
                                                                ¹«Á¦ÇÑ</td>
                                                            
                                                        </tr>
                                                        <tr bgcolor="#33CCFF"> 
                                                            <td width="120" bgcolor="#ffffff" align="center" style="padding:5pt 0pt;">
                                                                <span class="style2"><font color="#627aaf"><b>¹«»ó°æ°ú</span>        </td>
                                                            <td width="122" bgcolor="#FFFFFF" align="center"><font color="#627aaf">
                                                                °Çby°Ç</td>
                                                            <td width="122" bgcolor="#FFFFFF" align="center"><font color="#627aaf">
                                                                ¹«Á¦ÇÑ
                                                            </td>
                                                            <td width="122" bgcolor="#FFFFFF" align="center"><font color="#627aaf">
                                                                ¹«Á¦ÇÑ
                                                            </td>
                                                            <td width="122" bgcolor="#FFFFFF" align="center"><font color="#627aaf">
                                                                ¹«Á¦ÇÑ
                                                            </td>
                                                            
                                                        </tr>
                                                        
                                                        <tr bgcolor="#33CCFF"> 
                                                            <td width="120" bgcolor="#ffffff" align="center" style="padding:5pt 0pt;">
                                                                <span class="style2"><font color="#627aaf"><b>°ü¸®ºñ¿ë</span></td>
                                                            <td width="122" bgcolor="#FFFFFF" align="center"><font color="#627aaf">
                                                                ¾øÀ½
                                                            </td>
                                                            <td width="122" bgcolor="#FFFFFF" align="center" style="padding:5pt 0pt;"><font color="#627aaf">
                                                                ¿ùÁ¤¾×Á¦ <br> /À¯Àú¼ö±âÁØ
                                                            </td> 
                                                            <td width="122" bgcolor="#FFFFFF" align="center"><font color="#627aaf">
                                                                ¿ùÁ¤¾×Á¦ <br> /À¯Àú¼ö±âÁØ
                                                            </td>
                                                            <td width="122" bgcolor="#FFFFFF" align="center"><font color="#627aaf">
                                                                ÀÓ´ë/¿ù 25,000<br>(Vatº°µµ)
                                                            </td>
                                                            
                                                            <tr bgcolor="#33CCFF"> 
                                                            <td width="120" bgcolor="#ffffff" align="center"><span class="style2"><font color="#627aaf"><b>»ç¿ë¹æ½Ä</span>                    </td>
                                                            <td width="122" bgcolor="#FFFFFF" align="center" style="padding:5pt 0pt;"><font color="#627aaf">
                                                                PDA¿¡¼­ ¿µ¾÷ÀÚ·á Ã³¸®ÈÄ PC¿¡ ¿¬°áÇØ¼­ ÀÚ·á³Ñ±è
                                                            </td>
                                                            <td width="122" bgcolor="#FFFFFF" align="center"><font color="#627aaf">
                                                                AP°¡ Áö¿øµÇ´Â Ã¢°í¿¡¼­ PDA·Î »óǰÃâ°í½Ã PC·Î ÀÚ·á ¹«¼±Àü¼Û </td>
                                                            <td width="122" bgcolor="#FFFFFF" align="center"><font color="#627aaf">¿ÜºÎ¿¡¼­ PDA·Î ¿µ¾÷ÀÚ·á Ã³¸®½Ã PC·Î ¹«¼±ÀÚ·áÀü¼Û </td>
                                                            <td width="122" bgcolor="#FFFFFF" align="center"><font color="#627aaf">
                                                                PDA 1´ë·Î ±âº»ÀûÀΠ¿µ¾÷ÀÚ·á°ü¸® </td>
                                                    </table> 

                                                    <br> 
                                                    <font color="#627aaf">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1.Á¤¾×Á¦ : Á¦°øÇϴ À¯Áöº¸¼ö ¼­ºñ½º¿¡ µû¶ó¼­ ÀÏÁ¤±â°£ ´ÜÀ§·Î ³³ºÎÇϴ ¹æ½Ä
                                                    <br>
                                                    <font color="#627aaf">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2.°Çby°Ç : »ç¿ëÀÚ ¿äû ¼­ºñ½º °Ç¿¡ ´ëÇØ¼­ Ã»±¸Çϴ ¹æ½Ä<br>

                                                    <!-- Å×ÀÌºí ³¡ -->

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



                                                    <!-- pda Çüź° ºñ±³Ç¥ -->
                                                    <table>
                                                        <tr>
                                                            <td>
                                                                <BR><BR>
                                                                <IMG SRC="../millennium/img/product/pda/tab1_title08.gif" BORDER="0">
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td>

                                                    <!--Å×ÀÌºí ½ÃÀÛ -->
                                                    <table width="688" border="0" cellpadding="5" cellspacing="1" bgcolor="#d0daf0" >

                                                                         <tr bgcolor="#6699cc"> 
                                                                                  <td class="txt04" width="120" bgcolor="#6699cc" style="padding:5pt 0pt;">
                                                                                    <img src="../millennium/img/product/gray_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#ffffff"><b>ÀÌ¿ë¿ä±Ý
                                                                                  </td>
                                                                                  <td width="585" class="txt04" bgcolor="#FFFFFF" style="padding:5pt 0pt;">
                                                    <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">Æ÷ÄÆ°æ¿µPDA´Â ÀÓ´ë ¹× ±¸¸Å·Î µµÀÔ°¡´É ÇÕ´Ï´Ù.<br>
                                                    <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">1°³¿ù : 26,900¿ø (Vatº°µµ)<br>
                                                    <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">6 °³¿ù : 134,500¿ø (Vatº°µµ/1°³¿ùÇÒÀÎ)<br>
                                                    <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">12 °³¿ù : 269,000¿ø (Vatº°µµ/2°³¿ùÇÒÀÎ)<br>
                                                    <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">±¸¸Åºñ¿ë : 350,000¿ø(Vatº°µµ/1³â¹«»óas/¾÷±×·¹À̵å)<br>
                                                    <img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#f6822f">µµÀÔ¹®ÀÇ: 02-401-5121 / 010-9896-5352(´ã´çÀÚ ¿À»ó¸ñ ÆÀÀå)<br>
                                                    
                                                                                  </td>
                                                                                </tr>
                                                                        </table>
                                                    <br><br><br>
                                                    <!-- Å×ÀÌºí ³¡ -->


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

                                                </table>
                                                </span>

                                                
                                    <!-------2¹øÂ° ÅÇ (ÁÖ¿äÈ­¸é)-------->
                                                <span id='premier2' style='display:none;'>
                                                <table width="688" border=0 cellpadding=0 cellspacing=0>

                                                    <tr>
                                                        <td align="center" valign="top">


                                                    <!-- pda 5Á¾¹öư -->
                                                    <TABLE border="0" cellspacing="0" cellpadding="0">
                                                        <tr><td height="15"></td></tr>
                                                        <TR>
                                                            <TD>
                                                                <img src="../millennium/img/product/pda/tab2_bg.gif" usemap="#pdatab2" border="0" style="cursor:hand;">
                                                                <map name="pdatab2" id="pdatab2">
                                                                <area shape="rect" onfocus="blur()" coords="11,7,131,46" href="../../html/jaro/pda/pdainfo.ppt" /><!-- pda¿ëµµ -->
                                                                <area shape="rect" onfocus="blur()" coords="144,7,264,46" onClick="submitForm('pda_printer.php');" href="javascript:" style="cursor:hand;" /><!-- ¿µ¼öÁõ¾ç½Ä -->
                                                                <area shape="rect" onfocus="blur()" coords="277,7,397,46" onClick="javascript:popPda();" style="cursor:hand;" /><!-- PDAµ¿¿µ»ó -->
                                                                <area shape="rect" onfocus="blur()" coords="409,7,529,46" href="javascript:fileDown('w_doc','pdamenu_local.pdf');"> 
                                                                <area shape="rect" onfocus="blur()" coords="542,7,662,46" href="javascript:fileDown('w_doc','pdamenu_real.pdf');"> <!-- PDA¼³¸í¼­½Ç½Ã°£ -->
                                                            </TD>
                                                        </TR>
                                                    </TABLE>

                                                    <!-- pda ÁÖ¿äÈ­¸é -[·Î±×ÀÎ] -->
                                                      <table width="688">
                                                        <tr>
                                                            <td>
                                                                <BR>
                                                                <IMG SRC="../millennium/img/product/pda/tab2_title01.gif" BORDER="0">
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td>
                                                                &nbsp;&nbsp;&nbsp;&nbsp;<img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf"> Æ÷Äϰ濵 PDA ÇÁ·Î±×·¥ ·Î±×ÀΠȭ¸é ÀÔ´Ï´Ù.<BR>
                                                                &nbsp;&nbsp;&nbsp;&nbsp;<img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf"> ÃÖÃÊ ·Î±×ÀΠ¾ÆÀ̵ð´Â ADMIN À̰í, ºñ¹Ð¹øÈ£´Â ¾ø½À´Ï´Ù.<BR>
                                                                &nbsp;&nbsp;&nbsp;&nbsp;<img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf"> ÀÚ½ÅÀÇ ÀåÄ¡(PDA) ¿î¿µÃ¼Á¦(OS)¸¦ ¼±ÅàÈÄ ·Î±×ÀΠÇϼ¼¿ä.<BR>
                                                                <BR>
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center">
                                                                <TABLE width="550">
                                                                    <TR align='center'>
                                                                        <TD><img src="../../newimg/pda/pm/pda001.gif"></TD>
                                                                        <TD><img src="../../newimg/pda/pm/pda002.gif"></TD>
                                                                    </TR>
                                                                    <TR align='center'>
                                                                        <TD><FONT COLOR="#0033CC">[OS¼±ÅàÈÄ ·Î±×ÀÎ]</FONT></TD>
                                                                        <TD><FONT COLOR="#0033CC">[MENU(Á¦Ç°Á¤º¸/Á¤Ç°µî·Ï/ÃʱâÈ­/Á¾·á)]</FONT></TD>
                                                                    </TR>
                                                                </TABLE>
                                                            </td>
                                                        </tr>
                                                    </table>


                                                    <!-- pda ÁÖ¿äÈ­¸é -[¸ÞÀÎÈ­¸é] -->
                                                    <table width="688">
                                                        <tr>
                                                            <td>
                                                                <BR>
                                                                <IMG SRC="../millennium/img/product/pda/tab2_title02.gif" BORDER="0">
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td>
                                                                &nbsp;&nbsp;&nbsp;&nbsp;<img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf"> Æ÷Äϰ濵 PDA ÇÁ·Î±×·¥ ¸ÞÀÎÈ­¸é ÀÔ´Ï´Ù.<BR>
                                                                &nbsp;&nbsp;&nbsp;&nbsp;<img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf"> "±âÃÊ, µî·Ï, ÇöȲ, º¸Á¶" ¸Þ´º°¡ ÀÖ½À´Ï´Ù.<BR>
                                                                &nbsp;&nbsp;&nbsp;&nbsp;<img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf"> ÇØ´ç ¸Þ´º¸¦ ¼±ÅÃÇÏ¿© Ã³¸® ¹× Á¶È¸ ÇÕ´Ï´Ù.<BR>
                                                                <BR>
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center">
                                                                <TABLE width="550">
                                                                    <TR align='center'>
                                                                        <TD><img src="../../newimg/pda/pm/pda004.gif"></TD>
                                                                        <TD><img src="../../newimg/pda/pm/pda005.gif"></TD>
                                                                    </TR>
                                                                    <TR align='center'>
                                                                        <TD><FONT COLOR="#0033CC">[±âÃÊ(»ç¾÷Àå/Á÷¿ø/°Å·¡Ã³/»óǰ)°ü¸®]</FONT></TD>
                                                                        <TD><FONT COLOR="#0033CC">[µî·Ï(¸ÅÀÔ/¸ÅÃâ/Àç°í½Ç»ç)°ü¸®]</FONT></TD>
                                                                    </TR>
                                                                    <TR align='center'><TD height="10"></TD><TD></TD></TR>
                                                                    <TR align='center'>
                                                                        <TD><img src="../../newimg/pda/pm/pda006.gif"></TD>
                                                                        <TD><img src="../../newimg/pda/pm/pda007.gif"></TD>
                                                                    </TR>
                                                                    <TR align='center'>
                                                                        <TD><FONT COLOR="#0033CC">[°¢Á¾ÇöȲÁ¶È¸]</FONT></TD>
                                                                        <TD><FONT COLOR="#0033CC">[º¸Á¶(ȯ°æ¼³Á¤/DBÁ¡°Ë/¹é¾÷/º¹±¸)°ü¸®]</FONT></TD>
                                                                    </TR>
                                                                </TABLE>
                                                            </td>
                                                        </tr>
                                                    </table>


                                                    <!-- pda ÁÖ¿äÈ­¸é -[±âÃʰü¸®] -->
                                                    <table width="688">
                                                        <tr>
                                                            <td>
                                                                <BR>
                                                                <IMG SRC="../millennium/img/product/pda/tab2_title03.gif" BORDER="0">
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td>
                                                                &nbsp;&nbsp;&nbsp;&nbsp;<img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf"> Æ÷Äϰ濵 PDA ÇÁ·Î±×·¥ ±âÃʰü¸® È­¸é ÀÔ´Ï´Ù.<BR>
                                                                &nbsp;&nbsp;&nbsp;&nbsp;<img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf"> °Å·¡Ã³ ¹× »óǰÀÇ ±âÃÊ ¸®½ºÆ®¿Í »ó¼¼³»¿ªÀ» µî·Ï ¹× È®ÀΠÇÒ ¼ö ÀÖ½À´Ï´Ù.<BR>
                                                                <BR>
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center">
                                                                <TABLE width="550">
                                                                    <TR align='center'>
                                                                        <TD><img src="../../newimg/pda/pm/pda008.gif"></TD>
                                                                        <TD><img src="../../newimg/pda/pm/pda009.gif"></TD>
                                                                    </TR>
                                                                    <TR align='center'>
                                                                        <TD><FONT COLOR="#0033CC">[Á¶°Çº°(°ü¸®¿©ºÎ/±¸ºÐ)Á¶È¸ ¹× °ü¸®°¡ °¡´É]</FONT></TD>
                                                                        <TD><FONT COLOR="#0033CC">[°Å·¡Ã³ Ãß°¡ ¹× ¼öÁ¤ »ó¼¼ È­¸é]</FONT></TD>
                                                                    </TR>
                                                                    <TR align='center'><TD height="10"></TD><TD></TD></TR>
                                                                    <TR align='center'>
                                                                        <TD><img src="../../newimg/pda/pm/pda010.gif"></TD>
                                                                        <TD><img src="../../newimg/pda/pm/pda011.gif"></TD>
                                                                    </TR>
                                                                    <TR align='center'>
                                                                        <TD><FONT COLOR="#0033CC">[Á¶°Çº°(°ü¸®¿©ºÎ/±×·ì)Á¶È¸ ¹× °ü¸®°¡ °¡´É]</FONT></TD>
                                                                        <TD><FONT COLOR="#0033CC">[»óǰ Ãß°¡ ¹× ¼öÁ¤ »ó¼¼ È­¸é]</FONT></TD>
                                                                    </TR>
                                                                </TABLE>
                                                            </td>
                                                        </tr>
                                                    </table>

                                                    <!-- pda ÁÖ¿äÈ­¸é -[µî·Ï°ü¸®] -->
                                                    <table width="688">
                                                        <tr>
                                                            <td>
                                                                <BR>
                                                                <IMG SRC="../millennium/img/product/pda/tab2_title04.gif" BORDER="0">
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td>
                                                                &nbsp;&nbsp;&nbsp;&nbsp;<img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf"> Ãµ³â°æ¿µ PDA ÇÁ·Î±×·¥ µî·Ï°ü¸® È­¸é ÀÔ´Ï´Ù.<BR>
                                                                &nbsp;&nbsp;&nbsp;&nbsp;<img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf"> ¸ÅÀÔ/¸ÅÃâ ¹× ÀÔ±Ý/Ãâ±Ý/½Å¿ëÄ«µå °áÁ¦ µîÀÇ ±â´ÉÀ» Á¦°øÇÕ´Ï´Ù.<BR>
                                                                &nbsp;&nbsp;&nbsp;&nbsp;<img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf"> »óǰÆÇ ¹× ¼ýÀÚÆÇ ±â´ÉÀ» ÀÌ¿ëÇÏ¿© "¸ÅÀÔ/¸ÅÃâ"À» Æí¸®ÇϰԠó¸®ÇÒ ¼ö ÀÖ½À´Ï´Ù.<BR>
                                                                <BR>
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center">
                                                                <TABLE width="550">
                                                                    <TR align='center'>
                                                                        <TD><img src="../../newimg/pda/pm/pda013.gif"></TD>
                                                                        <TD><img src="../../newimg/pda/pm/pda014.gif"></TD>
                                                                    </TR>
                                                                    <TR align='center'>
                                                                        <TD><FONT COLOR="#0033CC">[°Å·¡Ã³º° ¸ÅÃâµî·Ï]</FONT></TD>
                                                                        <TD><FONT COLOR="#0033CC">[°Å·¡Ã³º° ÀÔ±Ý(Çö±Ý)°áÁ¦]</FONT></TD>
                                                                    </TR>
                                                                    <TR align='center'><TD height="10"></TD><TD></TD></TR>
                                                                    <TR align='center'>
                                                                        <TD><img src="../../newimg/pda/pm/pda015.gif"></TD>
                                                                        <TD><img src="../../newimg/pda/pm/pda016.gif"></TD>
                                                                    </TR>
                                                                    <TR align='center'>
                                                                        <TD><FONT COLOR="#0033CC">[½Å¿ëÄ«µå ÀԱݠ°áÁ¦]</FONT></TD>
                                                                        <TD><FONT COLOR="#0033CC">[°Å·¡Ã³º° ¸ÅÀÔµî·Ï]</FONT></TD>
                                                                    </TR>
                                                                    <TR align='center'><TD height="10"></TD><TD></TD></TR>
                                                                    <TR align='center'>
                                                                        <TD><img src="../../newimg/pda/pm/pda017.gif"></TD>
                                                                        <TD><img src="../../newimg/pda/pm/pda018.gif"></TD>
                                                                    </TR>
                                                                    <TR align='center'>
                                                                        <TD><FONT COLOR="#0033CC">[»óǰ°Ë»ö ½Ã »óǰÆÇ±â´É]</FONT></TD>
                                                                        <TD><FONT COLOR="#0033CC">[¼ýÀÚ ÀԷ ½Ã ¼ýÀÚÆÇ ±â´É]</FONT></TD>
                                                                    </TR>
                                                                </TABLE>
                                                            </td>
                                                        </tr>
                                                    </table>



                                                    <!-- pda ÁÖ¿äÈ­¸é -[Àç°í½Ç»ç] -->
                                                    <table width="688">
                                                        <tr>
                                                            <td>
                                                                <BR>
                                                                <IMG SRC="../millennium/img/product/pda/tab2_title05.gif" BORDER="0">
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td>
                                                                &nbsp;&nbsp;&nbsp;&nbsp;<img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf"> Æ÷Äϰ濵 PDA ÇÁ·Î±×·¥ Àç°í½Ç»ç È­¸é ÀÔ´Ï´Ù.<BR>
                                                                &nbsp;&nbsp;&nbsp;&nbsp;<img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf"> Á÷Á¢ÀԷ ¶Ç´Â ¹ÙÄڵ堽ºÄ³³Ê¸¦ ÅëÇÏ¿© ½Ç»ç¸¦ ÁøÇà ÇÕ´Ï´Ù.<BR>
                                                                &nbsp;&nbsp;&nbsp;&nbsp;<img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf"> Àç°í½Ç»ç ¿Ï·á ÈÄ '¿ÀÂ÷¸ÂÃã'À» ÀÌ¿ëÇÏ¿© ÇöÀç°í¸¦ Àϰý ¼öÁ¤ ÇÒ ¼ö ÀÖ½À´Ï´Ù.<BR>
                                                                <BR>
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center">
                                                                <TABLE width="550">
                                                                    <TR align='center'>
                                                                        <TD><img src="../../newimg/pda/pm/pda019.gif"></TD>
                                                                        <TD></TD>
                                                                    </TR>
                                                                    <TR align='center'>
                                                                        <TD><FONT COLOR="#0033CC">[»óǰº° Á¦°í ½Ç»ç µî·Ï]</FONT></TD>
                                                                        <TD></TD>
                                                                    </TR>
                                                                </TABLE>
                                                            </td>
                                                        </tr>
                                                    </table>

                                                    <!-- pda ÁÖ¿äÈ­¸é -[ȯ°æ¼³Á¤] -->
                                                    <table width="688">
                                                        <tr>
                                                            <td>
                                                                <BR>
                                                                <IMG SRC="../millennium/img/product/pda/tab2_title06pm.gif" BORDER="0">
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td>
                                                                &nbsp;&nbsp;&nbsp;&nbsp;<img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf"> Æ÷Äϰ濵 PDA ÇÁ·Î±×·¥ È¯°æ¼³Á¤ È­¸é ÀÔ´Ï´Ù.<BR>
                                                                &nbsp;&nbsp;&nbsp;&nbsp;<img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf"> ÁÖ¿ä±â´É (Ưº°´Ü°¡, °Å·¡Ã³º°ÇÒÀÎ, ¿µ¼öÁõ, ¸ÅÀÔ/¸ÅÃâ...) À» ¿É¼Çº°·Î ¼±Åà»ç¿ë °¡´É ÇÕ´Ï´Ù.<BR>
                                                                <BR>
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center">
                                                                <TABLE width="550">
                                                                    <TR align='center'>
                                                                        <TD><img src="../../newimg/pda/pm/pda020.gif"></TD>
                                                                        <TD><img src="../../newimg/pda/pm/pda021.gif"></TD>
                                                                    </TR>
                                                                    <TR align='center'>
                                                                        <TD><FONT COLOR="#0033CC">[ȯ°æ¼³Á¤ ¿µ¼öÁõ ¾ç½Ä ¼³Á¤]</FONT></TD>
                                                                        <TD><FONT COLOR="#0033CC">[ȯ°æ¼³Á¤ ±âº»¼³Á¤]</FONT></TD>
                                                                    </TR>
                                                                </TABLE>
                                                            </td>
                                                        </tr>
                                                    </table>


                                                    <!-- pda ÁÖ¿äÈ­¸é -[¿µ¼öÁõ] -->
                                                    <table width="688">
                                                        <tr>
                                                            <td>
                                                                <BR>
                                                                <IMG SRC="../millennium/img/product/pda/tab2_title07pm.gif" BORDER="0">
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td>
                                                                &nbsp;&nbsp;&nbsp;&nbsp;<img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf"> Æ÷Äϰ濵 PDA ÇÁ·Î±×·¥ ¸ÅÃâ ¿µ¼öÁõ »ùÇÃÀÔ´Ï´Ù.<BR>
                                                                <BR>
                                                            </td>
                                                        </tr>
                                                        <tr>
                                                            <td align="center">
                                                                <TABLE width="550">
                                                                    <TR align='center'>
                                                                        <TD><img src="../../newimg/pda/pm/pda022.gif"></TD>
                                                                        <TD></TD>
                                                                    </TR>
                                                                    <TR align='center'>
                                                                        <TD><FONT COLOR="#0033CC">[¸ÅÃâ ¿µ¼öÁõ »ùÇÃ]</FONT></TD>
                                                                        <TD></TD>
                                                                    </TR>
                                                                </TABLE>
                                                            </td>
                                                        </tr>
                                                    </table>

                                                    <br><br>
                                                </td>
                                                </tr>
                                                </table>
                                                </span>

                                                <!-------3¹øÂ° ÅÇ ÁÖ¿ä°í°´»ç-------->
                                                <span id='premier3' style='display:none;'>
                                                  <table width=560 border=0 cellpadding=0 cellspacing=0>
                                                      <tr>
                                                      </tr>
                                                    <tr>
                                                          <td align="center" valign="top">
                                                              <? include("pda_office.php"); ?>
                                                          </td>
                                                      </tr>
                                                    <tr>
                                                          
                                                      </tr>
                                                  </table>
                                                </span>
                                                
                                            <!-------3¹øÂ° ÅÇ ÇÁ·Î±×·¥¼³Ä¡-------->
                                            <span id='premier4' style='display:none;'>
                                                <table width="688">
                                                    <tr>
                                                        <td>
                                                            <BR>
                                                            <IMG SRC="../millennium/img/product/pda/tab3_title01.gif" BORDER="0">
                                                        </td>
                                                    </tr>
                                                    <tr>
                                                        <td>
                                                            &nbsp;&nbsp;&nbsp;&nbsp;<img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">PC¿Í PDA°¡ ¿¬°áµÈ »óÅ¿¡¼­ PC¿¡¼­ ¼³Ä¡ÆÄÀÏÀ» ½ÇÇà ÇÕ´Ï´Ù.<BR>
                                                            &nbsp;&nbsp;&nbsp;&nbsp;<img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">OSº°·Î ¿¬°áÇÁ·Î±×·¥, È¯°æ±¸Ãà, ÇÁ·Î±×·¥ÀÌ ´Ù¸¨´Ï´Ù. ÀÚ½ÅÀÇ ¿î¿µÃ¼Ã¼(OS)¸¦ È®ÀΠÈÄ ¼³Ä¡ ÁøÇàÇϼ¼¿ä.<BR>
                                                            <BR>
                                                        </td>
                                                    </tr>
                                                    <tr>
                                                        <td align="center">
                                                            <IMG SRC="../millennium/img/product/pda/pda_install.gif" BORDER="0"><br><br>
                                                        </td>
                                                    </tr>
                                                </table>


                                                <!-- pda ÇÁ·Î±×·¥ ´Ù¿î·Îµå -->
                                                <table width="688">
                                                    <tr>
                                                        <td>
                                                            <BR>
                                                            <IMG SRC="../millennium/img/product/pda/tab3_title02.gif" BORDER="0">
                                                        </td>
                                                    </tr>
                                                    <tr>
                                                        <td>
                                                            &nbsp;&nbsp;&nbsp;&nbsp;<img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">¾Æ·¡ ¼ø¼­(ÀýÂ÷)¿¡ µû¶ó ÇØ´çÆÄÀÏÀ» ´Ù¿î·Îµå ¹Þ¾Æ ¼³Ä¡ ÁøÇàÇϼ¼¿ä.<BR>
                                                            &nbsp;&nbsp;&nbsp;&nbsp;<img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">¼³Ä¡°¡ ¾î·Á¿ì½Å °æ¿ì ÀüÈ­Áֽø頿ø°ÝÀ¸·Î ¼³Ä¡ Áö¿øÇØ µå¸³´Ï´Ù. <B><FONT  COLOR="#3333FF"> Tel. 02-401-5121</FONT></B><BR>
                                                            &nbsp;&nbsp;&nbsp;&nbsp;<img src="../millennium/img/product/color_box.gif" width="3" height="3" hspace="5" vspace="7" align="absmiddle"><font color="#627aaf">¾Æ·¡ÆÄÀÏ Áß º»ÀÎÀǠȯ°æ¿¡ ÀûÇÕÇÑ ÆÄÀÏÀ» <B><FONT COLOR="#FF3300">1 ¡æ 2 ¡æ 3 ¡æ 4</FONT></B> ¼ø¼­´ë·Î ¼³Ä¡ ÁøÇàÇϼ¼¿ä. <BR>
                                                            <BR>
                                                        </td>
                                                    </tr>
                                                    <tr>
                                                        <td align="center">
                                                        <table width="688" border="0" cellpadding="3" cellspacing="1" bgcolor="#d0daf0" >
                                                            <tr bgcolor="#6699cc"> 
                                                                <td width="43" bgcolor="#6699cc" align="center" height="24">
                                                                    <font color="#ffffff"><B>¼ø¼­</B>
                                                                </td>
                                                                <td width="181" bgcolor="#6699cc" align="center" height="24">
                                                                    <font color="#ffffff"><B>¼³Ä¡¿ëµµ</B>
                                                                </td>
                                                                <td width="191" bgcolor="#6699cc" align="center" height="24">
                                                                    <font color="#ffffff"><B>¼³Ä¡ÆÄÀÏ</B>
                                                                </td>
                                                                <td width="201" bgcolor="#6699cc" align="center" height="24">
                                                                    <font color="#ffffff"><B>OSº° ¼³Ä¡ÆÄÀÏ</B>
                                                                </td>
                                                                <td width="70" bgcolor="#6699cc" align="center" height="24">
                                                                    <font color="#ffffff"><B>´Ù¿î·Îµå</B>
                                                                </td>
                                                            </tr>
                                                            <tr bgcolor="#33CCFF"> 
                                                                <td width="43" bgcolor="#F0F3FA" align="center" height="24" rowspan="3">
                                                                    <IMG SRC="../millennium/img/product/pda/table_num1.gif" BORDER="0">
                                                                </td>
                                                                <td width="181" bgcolor="#FFFFFF" align="center" height="24" rowspan="3">
                                                                    PC &amp; PDA ¿¬°á
                                                                </td>
                                                                <td width="191" bgcolor="#FFFFFF" align="center" height="24" rowspan="3">
                                                                    Active Sync
                                                                    <p>(PC &amp; PDA ¿¬°á)</p>

                                                                </td>
                                                                <td width="201" bgcolor="#FFFFFF" align="left">
                                                                    <FONT COLOR="#005dff">[PC] Window XP ¿ë</FONT>
                                                                </td>
                                                                <td width="34" bgcolor="#FFFFFF" align="left" style="padding:5pt 0pt;">
                                                                    <IMG SRC="../millennium/img/product/pda/download_bt.gif" BORDER="0" onClick="location.href='../../download/pda/setup.msi'" style="cursor:pointer" align="absmiddle">
                                                                </td>
                                                            </tr>
                                                            <tr bgcolor="#33CCFF"> 
                                                                <td width="201" bgcolor="#FFFFFF" align="left">
                                                                    <font color="#793bf4">[PC] Vista 32Bit ¿ë
                                                                </td>
                                                                <td width="34" bgcolor="#FFFFFF" align="left" style="padding:5pt 0pt;">
                                                                    <IMG SRC="../millennium/img/product/pda/download_bt.gif" BORDER="0" onClick="location.href='../../download/pda/drvupdate-x86.exe'" style="cursor:pointer" align="absmiddle">
                                                                </td>
                                                            </tr>
                                                            <tr bgcolor="#33CCFF"> 
                                                                <td width="201" bgcolor="#FFFFFF" align="left">
                                                                    <FONT COLOR="#ff6a00">[PC] Vista 64Bit ¿ë</FONT>
                                                                </td>
                                                                <td width="34" bgcolor="#FFFFFF" align="left" style="padding:5pt 0pt;">
                                                                    <IMG SRC="../millennium/img/product/pda/download_bt.gif" BORDER="0" onClick="location.href='../../download/pda/drvupdate-amd64.exe'" style="cursor:pointer" align="absmiddle">
                                                                </td>
                                                            </tr>
                                                            <tr bgcolor="#33CCFF"> 
                                                                <td width="43" bgcolor="#F0F3FA" align="center" height="24" rowspan="3">
                                                                    <IMG SRC="../millennium/img/product/pda/table_num2.gif" BORDER="0">
                                                                </td>
                                                                <td width="181" bgcolor="#FFFFFF" align="center" height="24" rowspan="3">
                                                                    PDA È¯°æ±¸Ãà
                                                                </td>
                                                                <td width="191" bgcolor="#FFFFFF" align="center" height="24" rowspan="3">
                                                                    Compact Framework 2.0
                                                                    <p>(Main Application)</p>

                                                                </td>
                                                                <td width="201" bgcolor="#FFFFFF" align="left">
                                                                    <FONT COLOR="#005dff">[PDA] Windows CE ¿ë</FONT>
                                                                </td>
                                                                <td width="34" bgcolor="#FFFFFF" align="left" style="padding:5pt 0pt;">
                                                                    <IMG SRC="../millennium/img/product/pda/download_bt.gif" BORDER="0" onClick="location.href='../../download/pda/CF_CE.exe'" style="cursor:pointer" align="absmiddle">
                                                                </td>
                                                            </tr>
                                                            <tr bgcolor="#33CCFF"> 
                                                                <td width="201" bgcolor="#FFFFFF" align="left">
                                                                    <font color="#793bf4">[PDA] Windows Mobile ¿ë
                                                                </td>
                                                                <td width="34" bgcolor="#FFFFFF" align="left" style="padding:5pt 0pt;">
                                                                    <IMG SRC="../millennium/img/product/pda/download_bt.gif" BORDER="0" onClick="location.href='../../download/pda/CF_WM.exe'" style="cursor:pointer" align="absmiddle">
                                                                </td>
                                                            </tr>
                                                            <tr bgcolor="#33CCFF"> 
                                                                <td width="201" bgcolor="#FFFFFF" align="left">
                                                                    <FONT COLOR="#ff6a00">[PDA] MicroSoft Pocket PC ¿ë</FONT>
                                                                </td>
                                                                <td width="34" bgcolor="#FFFFFF" align="left" style="padding:5pt 0pt;">
                                                                    <IMG SRC="../millennium/img/product/pda/download_bt.gif" BORDER="0" onClick="location.href='../../download/pda/CF_PPC.exe'" style="cursor:pointer" align="absmiddle">
                                                                </td>
                                                            </tr>
                                                            <tr bgcolor="#33CCFF"> 
                                                                <td width="43" bgcolor="#F0F3FA" align="center" height="24" rowspan="6">
                                                                    <IMG SRC="../millennium/img/product/pda/table_num3.gif" BORDER="0">
                                                                </td>
                                                                <td width="181" bgcolor="#FFFFFF" align="center" height="24" rowspan="6">
                                                                    PDA È¯°æ±¸Ãà
                                                                </td>
                                                                <td width="191" bgcolor="#FFFFFF" align="center" height="11" rowspan="3">
                                                                    SQLCE 2.0
                                                                    <p>(DB È¯°æ±¸Ãà)</p>

                                                                </td>
                                                                <td width="201" bgcolor="#FFFFFF" align="left">
                                                                    <FONT COLOR="#005dff">[PDA] Windows CE ¿ë</FONT>
                                                                </td>
                                                                <td width="34" bgcolor="#FFFFFF" align="left" style="padding:5pt 0pt;">
                                                                    <IMG SRC="../millennium/img/product/pda/download_bt.gif" BORDER="0" onClick="location.href='../../download/pda/SQLCE.exe'" style="cursor:pointer" align="absmiddle">
                                                                </td>
                                                            </tr>
                                                            <tr bgcolor="#33CCFF">
                                                              <td bgcolor="#FFFFFF" align="left"><font color="#793bf4">[PDA] Windows Mobile ¿ë</td>
                                                              <td bgcolor="#FFFFFF" align="left" style="padding:5pt 0pt;"><img src="../millennium/img/product/pda/download_bt.gif" alt="" border="0" align="absmiddle" style="cursor:pointer" onclick="location.href='../../download/pda/SQLCE.exe'" /></td>
                                                              </tr>
                                                            <tr bgcolor="#33CCFF"> 
                                                                <td width="201" bgcolor="#FFFFFF" align="left"><font color="#ff6a00">[PDA] MicroSoft Pocket PC ¿ë</font></td>
                                                                <td width="34" bgcolor="#FFFFFF" align="left" style="padding:5pt 0pt;"><img src="../millennium/img/product/pda/download_bt.gif" alt="" border="0" align="absmiddle" style="cursor:pointer" onclick="location.href='../../download/pda/SQLCE.exe'" /></td>
                                                            </tr>
                                                            <tr bgcolor="#33CCFF">
                                                              <td width="191" height="12" rowspan="3" align="center" bgcolor="#FFFFFF"><p>SQLCE 3.5</p>
                                                                <p>(DB È¯°æ±¸Ãà)</p></td> 
                                                                <td width="201" bgcolor="#FFFFFF" align="left"><font color="#005dff">[PDA] Windows CE ¿ë</font></td>
                                                                <td width="34" align="left" bgcolor="#FFFFFF" style="padding:5pt 0pt;"><img src="../millennium/img/product/pda/download_bt.gif" alt="" border="0" align="absmiddle" style="cursor:pointer" onclick="location.href='../../download/pda/sql35CE.exe'" /></td>
                                                            </tr>
                                                            <tr bgcolor="#33CCFF">
                                                              <td bgcolor="#FFFFFF" align="left"><font color="#793bf4">[PDA] Windows Mobile ¿ë</td>
                                                              <td width="34" align="left" bgcolor="#FFFFFF" style="padding:5pt 0pt;"><img src="../millennium/img/product/pda/download_bt.gif" alt="" border="0" align="absmiddle" style="cursor:pointer" onclick="location.href='../../download/pda/sql35WMPPC.exe'" /></td>
                                                              </tr>
                                                            <tr bgcolor="#33CCFF">
                                                              <td bgcolor="#FFFFFF" align="left"><font color="#ff6a00">[PDA] MicroSoft Pocket PC ¿ë</font></td>
                                                              <td width="34" align="left" bgcolor="#FFFFFF" style="padding:5pt 0pt;"><img src="../millennium/img/product/pda/download_bt.gif" alt="" border="0" align="absmiddle" style="cursor:pointer" onclick="location.href='../../download/pda/sql35WMPPC.exe'" /></td>
                                                              </tr>
                                                            <tr bgcolor="#33CCFF"> 
                                                                <td width="43" bgcolor="#F0F3FA" align="center" height="24" rowspan="5"><IMG SRC="../millennium/img/product/pda/table_num4.gif" BORDER="0"></td>
                                                                <td width="181" bgcolor="#FFFFFF" align="center" height="24" rowspan="5">¸ÞÀΠPDA ÇÁ·Î±×·¥</td>
                                                                <td width="191" bgcolor="#FFFFFF" align="center" rowspan="4">õ³â°æ¿µ PDA</td>
                                                                <td width="201" bgcolor="#FFFFFF" align="left"><FONT COLOR="#005dff">õ³â°æ¿µPDA_LC (·ÎÄÃ)</FONT></td>
                                                                <td width="34" bgcolor="#FFFFFF" align="left" style="padding:5pt 0pt;"><IMG SRC="../millennium/img/product/pda/download_bt.gif" BORDER="0" onClick="location.href='../../download/mjpda_local.exe'" style="cursor:pointer" align="absmiddle"></td>
                                                            </tr>
                                                            <tr bgcolor="#33CCFF"> 
                                                                <td width="201" bgcolor="#FFFFFF" align="left"><FONT COLOR="#793bf4">õ³â°æ¿µPDA_WL (¹«¼±·£)</FONT></td>
                                                                <td width="34" bgcolor="#FFFFFF" align="left" style="padding:5pt 0pt;"><IMG SRC="../millennium/img/product/pda/download_bt.gif" BORDER="0" onClick="location.href='../../download/mjpda_real.exe'" style="cursor:pointer" align="absmiddle"></td>
                                                            </tr>
                                                            <tr bgcolor="#33CCFF"> 
                                                                <td width="201" bgcolor="#FFFFFF" align="left"><FONT COLOR="#ff6a00">õ³â°æ¿µPDA_CM (CDMA)</FONT></td>
                                                                <td width="34" bgcolor="#FFFFFF" align="left" style="padding:5pt 0pt;"><IMG SRC="../millennium/img/product/pda/download_bt.gif" BORDER="0" onClick="location.href='../../download/mjpda_real.exe'" style="cursor:pointer" align="absmiddle"></td>
                                                            </tr>
                                                            <tr bgcolor="#33CCFF"> 
                                                                <td width="201" bgcolor="#FFFFFF" align="left"><FONT COLOR="#ff2266">Æ÷Äϰ濵_PM (·ÎÄÃ)</FONT></td>
                                                                <td width="34" bgcolor="#FFFFFF" align="left" style="padding:5pt 0pt;"><IMG SRC="../millennium/img/product/pda/download_bt.gif" BORDER="0" onClick="location.href='../../download/MJ_Pocket.exe'" style="cursor:pointer" align="absmiddle"></td>
                                                            </tr>
                                                            <tr bgcolor="#33CCFF"> <td width="191" bgcolor="#FFFFFF" align="center">AS ¸ÞÀÌÆ®</td>
                                                                <td width="201" bgcolor="#FFFFFF" align="left"><B>AS ¸ÞÀÌÆ® PDA ÇÁ·Î±×·¥</B></td>
                                                                <td width="34" bgcolor="#FFFFFF" align="left" style="padding:5pt 0pt;"><IMG SRC="../millennium/img/product/pda/download_bt.gif" BORDER="0" onClick="location.href='../../download/MJ_AsMate.exe'" style="cursor:pointer" align="absmiddle"></td>
                                                            </tr>

                                                        </table>  
                                                        <br><br><br>




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

                                                
                                                <!-------4¹øÂ° ÅÇ ¿Ö ÃųâPDAÀΰ¡?-------->
                                                <span id='premier5' style='display:none;'>
                                                  <table width=560 border=0 cellpadding=0 cellspacing=0>
                                                      <tr>
                                                      </tr>
                                                    <tr>
                                                          <td align="center" valign="top">
                                                              <table width="540" border="0" cellspacing="0" cellpadding="10">
                                                                  <tr>
                                                                      <td align="center" class="txt03">
                                                                      
                                                                          <img src="../millennium/img/product/pda/pdainfopm.gif">
                                                                      
                                                                      </td> 
                                                                  </tr>
                                                              </table>
                                                          </td>
                                                      </tr>
                                                    <tr>
                                                          
                                                      </tr>
                                                  </table>
                                                </span>
                                                
                                    

                                            





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


                                            
                                

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





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







        </td>
    </tr>

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





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