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
|
<?php include_once("./_common2.php");?> <? session_start(); ?> <? $today = date("Y-m-d"); //¿À´Ã³¯Â¥ ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="ko" xml:lang="ko"> <head> <title>½º¸¶Æ®Åؽº</title> <link rel="shortcut icon" href="http://www.mijinsoft.co.kr/mijin2.ico" type="image/icon" /> <link rel="apple-touch-icon-precomposed" href="http://www.mijinsoft.co.kr/html/mobile/img/homeicon.png" /> <link href="http://www.mijinsoft.co.kr/html/smarttax/css/common.css" rel="stylesheet" type="text/css" /> <!-- <script language='javascript' src='/js/prototype.js'></script> <script language='javascript' src='/js/default.js'></script> <script language='javascript' src='/js/miya_validator.js'></script> --> </head> <body bgcolor="#efefef"> <!-- <? if (isset ($cookie)) { while (list ($name, $value) = each ($cookie)) { echo $name."==".$value."<br>"; } } ?> --> <div id="wrap">
<? include("./topmenu.php"); ?> <!-- Sub menu -->
<!-- contents start--> <div id="mainbt"> <table border="0" cellpadding="0" cellspacing="0" width="100%" height="240" align="center"> <? if ($stname != ""){ ?> <tr align="center" height="20"> <td colspan="3" valign="top" align="right"> <? echo $stname." ´Ô ȯ¿µÇÕ´Ï´Ù."; ?><br> <? if($apsa_demo == "demo"){ if($today > $apsa_limitdemo){ echo "µ¥¸ð »ç¿ë±â°£ ¸¸·á<br> À̿빮ÀÇ(02-401-5121)"; } else { echo "µ¥¸ð¸¸·áÀÏÀÚ : ".$apsa_limitdemo; } } ?> </td> </tr> <? } ?>
<? if($apsa_demo == "demo" && $today > $apsa_limitdemo){ ?> <tr align="center" height="100"> <td width="33%"> <a href="javascript:alert('µ¥¸ð»ç¿ë±â°£ÀÌ ¸¸·áµÇ¾ú½À´Ï´Ù.\nÀ̿빮ÀÇ:(02-401-5121)');"><img src="./img/common/main_bt1.gif"></a> </td> <td width="33%"> <a href="javascript:alert('µ¥¸ð»ç¿ë±â°£ÀÌ ¸¸·áµÇ¾ú½À´Ï´Ù.\nÀ̿빮ÀÇ:(02-401-5121)');"><img src="./img/common/main_bt2.gif"></a> </td> <td width="33%"> <a href="javascript:alert('µ¥¸ð»ç¿ë±â°£ÀÌ ¸¸·áµÇ¾ú½À´Ï´Ù.\nÀ̿빮ÀÇ:(02-401-5121)');"><img src="./img/common/main_bt3.gif"></a> </td> </tr> <? } else { ?> <tr align="center" height="110"> <td width="50%"> <a href="./menu1.php"><img src="./img/common/main_bt1.gif"></a> </td> <td width="50%"> <a href="./menu2.php"><img src="./img/common/main_bt2.gif"></a> </td> </tr> <tr align="center" height="110"> <td width="50%"> <a href="./menu3.php"><img src="./img/common/main_bt3.gif"></a> </td> <td width="50%"> <a href="./menu4.php"><img src="./img/common/main_bt4.gif"></a> </td> </tr> <? } ?> <!-- <tr align="center" height="100"> <td width="33%"> <a href="./menu4.php"><img src="./img/common/main_bt4.gif"></a> </td> <td width="33%"> <a href="./menu5.php"><img src="./img/common/main_bt5.gif"></a> </td> <td width="33%"> <a href="./config.php"><img src="./img/common/main_bt6.gif"></a> </td> </tr> --> </table> </div> <div id="footer"> <!-- <li><a href="./config.php"><img src="./img/common/config_bt.gif" border="0"></li> --> <li><div class="corp">Copyright ¨Ï Mijinsoft Corp.</div></li> </div> </div> </body> </html>
|