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
|
<? @session_start(); ?> <!DOCTYPE html>
<? if( !isset($_SESSION['ADMINID']) || $_SESSION['ADMINID'] == ""){ ?> <script> history.back(-1); </script> <? } ?>
<? include_once("./category/etaxcommontest.php"); ?>
<head> <meta http-equiv="content-type" content="application/xhtml+xml;" /> <meta charset="euc-kr"> <title>이지빌계산서</title> <link rel='stylesheet' type='text/css' href='./css/reset.css'> <link rel='stylesheet' type='text/css' href='./css/base.css'> </head>
<body onLoad="document.SearchFrm.keyword.focus();"> <div class="wrap"> <div class="header">
<? include("./include/gnb_menu.php"); ?>
</div><!-- //header -->
|