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
|
<?php include_once("./_common.php"); ?> <!DOCTYPE html>
<? include("../../manage/category/common.php"); // DB는 이것 안쓰고 상단 커먼에 통일된 형식으로 처리함
?><head> <meta http-equiv="content-type" content="application/xhtml+xml;" /> <meta charset="euckr"> <meta http-equiv="X-UA-Compatible" content="IE=8,IE=9,IE=10,chrome=1"> <title>엠제이 소프트에 오신 것을 환영합니다.</title> <link rel="stylesheet" type="text/css" href="./css/renew_import.css"/> <script language='javascript' src="./js/jquery-1.7.2.min.js"></script> <script language='javascript' src='./js/img.js'></script><!-- Order_2.php --> <script src="./js/jqueryui/jquery-ui.js"></script> <!-- <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script> --> <script src="./js/html5shiv.js"></script> <script src="./js/respond.min.js"></script> <?php if($intro_page=='Y'){?> <link href="./js/jqueryui/jquery-ui_renew.css" rel="stylesheet" /> <?php } else {?> <link href="./js/jqueryui/jquery-ui.css" rel="stylesheet" /> <?php }?>
<noscript> <link rel="stylesheet" type="text/css" href="./css/noscript.css" /> </noscript>
<!-- 리포트2.0 로그분석코드 시작 --> <script type="text/javascript"> var JsHost = (("https:" == document.location.protocol) ? "https://" : "http://"); var uname = escape('엠제이소프트2'); document.write(unescape("%3Cscript id='log_script' src='" + JsHost + "mjsoft007.weblog.cafe24.com/weblog.js?uid=mjsoft007_4&uname="+uname+"' type='text/javascript'%3E%3C/script%3E")); </script> <!-- 리포트2.0 로그분석코드 완료 -->
<script language="javascript">
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"; }
function goFindIdPw() { var wfind = window.open("findidpw.php","goFindIdPw","width=350,height=250"); wfind.focus(); } //로그인 스크립트 끝
function blockError(){ //스크립트 오류방지 (오류나도 표시 하지 않기) return true; } window.onerror = blockError; </script>
</head>
<body> <!-- 사이트맵 시작 --> <div class="sitemap_new"> <div class="sitemap_menu"> <ul> <a href="./customer_buy_cs.php"> <li>구매상담 요청</li> </a> </ul> </div> </div> <!-- 사이트맵 끝 -->
<iframe name='login_ifm' width="0" height="0" style="display:none;"></iframe> <div class="wrap2">
<div class="lnb" style="margin-bottom:0;"> <? include("./Page/common/renew_navi.html"); ?> </div> </div>
</div><!-- <div class="header"> -->
|