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
|
<!DOCTYPE html> <?php header("Content-type:text/html;charset=euckr"); ?> <? include("../../../../manage/category/common.php"); ?>
<head> <meta http-equiv="Content-Type" content="text/html; charset=euc-kr" /> <title>õ³âÆ÷½º Multi POS System</title> <link rel="stylesheet" type="text/css" href="../../css/import.css" /> <script language='javascript' src="../../js/jquery-1.7.2.min.js"></script> <!--// smip Start //--> <script> var smipHomeCode = "smip20241213S3706T2453"; </script> <script src="//xn--hz2b15nw6b91c77vqrd.com/smip_log.js"></script> <noscript><img src="//xn--hz2b15nw6b91c77vqrd.com/ip_collect/insert.html?smipHomeCode=smip20241213S3706T2453" style="display:none;width:0;height:0;" referrerpolicy="unsafe-url"></noscript> <!--// smip End //--> <script type="text/javascript" > _dwiPID="d-Vpa-295"; if(typeof(_dwiCatch) == "function") { _dwiCatch();} </script>
<!----- ·Î±×ÀÎ ½ºÅ©¸³Æ® -----> <script> function loginChk(){ if( loginFrm.id.value == ''){ alert("¾ÆÀ̵𸦠ÀÔ·ÂÇϼ¼¿ä"); loginFrm.id.focus(); return; } if(loginFrm.passwd.value == ""){ alert("ºñ¹Ð¹øÈ£¸¦ ÀÔ·ÂÇϼ¼¿ä"); loginFrm.passwd.focus(); return;; } loginFrm.submit(); }
function MsgLogin(f,txt){ alert(txt); if(f == 1){ loginFrm.id.value = ''; loginFrm.id.focus(); } if(f== 2){
loginFrm.passwd.value = ''; loginFrm.passwd.focus(); } }
function inputSendit() { if(event.keyCode==13) { loginChk(); } }
function PageGo2(){ location.href = "/intro.php"; }
function logout(){ //login_ifm.location.href = "logout.php"; login_ifm.location.href = "../member/logout.php"; }
function goFindIdPw() { var wfind = window.open("findidpw.php","goFindIdPw","width=350,height=250"); wfind.focus(); } </script> <!-- //·Î±×ÀÎ ½ºÅ©¸³Æ® ³¡ -->
</head>
<body> <div class="wrap"> <div class="header"> <h1 class="logo"><a href="../../intro.php"><span class="screen_out">õ³âÆ÷½º Multi POS System</span></a></h1> <div class="gnb"> <ul> <!-- ·Î±×¾Æ¿ô »óÅ --> <? if( isset($_COOKIE['USERID']) && $_COOKIE['USERID'] !== ""){ ?> <li class="logout"><a href="javascript:logout();">·Î±×¾Æ¿ô</a></li> <li class="mypage"><a href="../mypage/mypageedit.php">¸¶ÀÌÆäÀÌÁö</a></li>
<!-- ·Î±×ÀÎ »óÅ --> <? } else { ?> <li class="login"><a href="../member/logingo.php">·Î±×ÀÎ</a></li> <li class="join"><a href="../member/join.php">ȸ¿ø°¡ÀÔ</a></li> <? } ?>
<li class="faq"><a href="../support/customerfaq.php">ÀÚÁÖ¹¯´ÂÁú¹®</a></li> <li class="favorite"><a style="cursor: hand" onClick="{window.external.AddFavorite('http://pos1000.co.kr', 'POS½Ã½ºÅÛ - õ³âÆ÷½º')}">Áñ°Üã±âÃß°¡</a></li> </ul> </div><!-- //gnb --> <iframe name='login_ifm' width="0" height="0" style="border:0px;"></iframe>
<div class="quickMenu"> <ul> <li class="office"><a href="http://www.mjsoft.co/html/millennium/customeroffice.php">ÁÖ¿ä°í°´»ç</a></li> <li class="qna"><a href="../support/customeras.php">Áú¹®/´äº¯</a></li> <li class="update"><a href="http://www.mjsoft.co/html/millennium/customerupdate.php">Á¤Ç°¾÷µ¥ÀÌÆ®</a></li> <li class="receipt"><a href="http://www.allthegate.com/hyosung/index.jsp" target="_blank">Ä«µå¿µ¼öÁõ</a></li> <li class="price"><a href="http://www.mjsoft.co/html/millennium/customerprice.php">°ßÀû¿äû</a></li> <li class="deallist"><a href="http://www.mjsoft.co/html/millennium/deallist.php">Çù·ÂÁ¡</a></li> <li class="remote"><a href="https://www3.startsupport.com/mijin" target="_blank">¿ø°ÝÁö¿ø</a></li> </ul> </div><!-- //quickMenu --> <div class="lnb"> <? include("../common/sub_navi.html"); ?> </div> </div><!-- //header --> </div><!-- wrap -->
<? include("../common/sub_right_banner.html"); ?>
|