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
|
<div id="footer"> <div id="wrap">
<a class="footer_logo" href="./index.php"><img src="./images/common/main_logo_footer.png" alt="하단로고"></a> <div id="fnb"> <ul> <li><a href="./company.php">회사소개</a></li> <li><a href="http://mjsoft.co/" target="_blank"><span class="blue">개발사</span></a></li> <?php if($_SERVER['REMOTE_ADDR']=='58.151.27.172' || $eid=='ryunen'){ ?> <li><a href="http://mjsoft.co/emillennium/shop_sync_check.php" target="_blank"><span class="blue">쇼핑몰 동기화 확인(회사내만 보임)</span></a></li> <?php } ?> </ul> </div> <div class="foot-info"> <span><b>엠제이소프트</b></span> <span>사업자번호 : 502-18-94746</span> <span>대표자 : 정일영</span> <span>통신판매업신고 : 2011-서울송파-0758</span> <span>고객센터 : <b>1566-8680</b></span> <span>팩스 : (02)832-3555</span> <br /> <span>서울 : 서울특별시 송파구 중대로 105(가락동, 가락아이디타워 1004호)</span> <span>대구 : 대구광역시 수성구 동대구로 331(범어3동, 청효정빌딩 7F)</span> </div>
</div><!-- //wrap --> </div> </div><!-- //id="container" --> <?php //_pr($_SESSION);?> <?php //_pr($_COOKIE);?> <script> var lastScrollY = 0; $(function(){ $("#div_mjtack a").mouseenter(function(){ $("#chat_img1").hide(); $("#chat_img2").show(); }); $("#div_mjtack a").mouseleave(function(){ $("#chat_img1").show(); $("#chat_img2").hide(); });
$("#div_edc a").mouseenter(function(){ $("#edc_img1").hide(); $("#edc_img2").show(); }); $("#div_edc a").mouseleave(function(){ $("#edc_img1").show(); $("#edc_img2").hide(); }); }); </script> <style> #div_happytack { position:fixed; right:120px; bottom:30px} #chat_img2, #price_img2, #edc_img2 { display:none; } #div_mjtack { position:fixed; right:30px; bottom:30px;} #div_freetalk { position:fixed; right:100px; bottom:30px;} #div_price { position:fixed; right:30px; bottom:120px;z-index:999;} #div_edc{ position:fixed; right:30px; bottom:210px;z-index:9999;} </style> <div id="div_mjtack"><a href="#" onclick="window.open('http://freetalk.biz/anonymous?code=20181230162927','name','resizable=no width=479 height=844');return false"><img src="http://mjsoft.co/html/millennium/img/quick_talk_bf.png" id='chat_img1'><img src="http://mjsoft.co/html/millennium/img/quick_talk.png" id='chat_img2'></a></div> <div id="div_price"><a href="http://mjsoft.co/html/millennium/customerprice.php" target="_blank"><img src="http://www.easytax.kr/html/easytax/images/common/price_talk_bf.png" id='price_img1'><img src="http://www.easytax.kr/html/easytax/images/common/price_talk.png" id='price_img2'></a></div> <div id="div_edc"><a href="http://mjsoft.co/html/millennium/customer_buy_cs.php"><img src="http://mjsoft.co/html/millennium/img/intro/buy_talk_bf.png" id='edc_img1'><img src="http://mjsoft.co/html/millennium/img/intro/buy_talk.png" id='edc_img2'></a></div> </body> </html>
|