Subversion Repositories DevTools

Rev

Rev 5512 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
5354 dpurdie 1
<%@LANGUAGE="VBSCRIPT"%>
2
<%
3
'=====================================================
4
'|                                                   |
5
'|				          Default					 |
6
'|                                                   |
7
'=====================================================
8
%>
9
<%
10
Option explicit
11
Response.Expires = 0
12
%>
13
<!--#include file="common/globals.asp"-->
14
<!--#include file="common/config.asp"-->
15
<!--#include file="common/common_subs.asp"-->
16
<%
17
'------------ ACCESS CONTROL ------------------
18
%>
19
<!--#include file="_access_control_general.asp"-->
20
<%
21
'------------ VARIABLE DEFINITION -------------
22
'------------ CONSTANTS DECLARATION -----------
23
'------------ VARIABLE INIT -------------------
24
'------------ CONDITIONS ----------------------
25
'----------------------------------------------
26
%>
27
<%
28
'------------ RUN BEFORE PAGE RENDER ----------
29
'----------------------------------------------
30
%>
31
<html>
32
<head>
33
<title>Access Manager</title>
34
<link rel="shortcut icon" href="<%=FavIcon%>"/>
35
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
36
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
37
<link href="scripts/access_manager.css" rel="stylesheet" type="text/css">
6658 dpurdie 38
<script language="JavaScript1.2" src="images/popup_menu.js"></script>
5354 dpurdie 39
</head>
40
 
41
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0">
42
<!-- HEADER ++++++++++++++++++++++ -->
43
<!--#include file="_header.asp"-->
44
<!-- +++++++++++++++++++++++++++++ -->
45
<table width="100%"  border="0" cellspacing="0" cellpadding="0">
46
  <tr>
47
    <td width="1%" valign="top" background="images/bg_bage_pane.gif">
48
	<!-- TREE NAVIGATOR ++++++++++++++++++++++++++++++++++++++++++++ -->
49
	<!--#include file="_treeNavigator.asp"-->  
50
	<!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
51
	</td>
52
    <td width="1" background="images/bg_drk_gray_border.gif"><img src="images/spacer.gif" width="1" height="500"></td>
53
    <td width="100%" valign="top"><table width="100%"  border="0" cellspacing="0" cellpadding="9">
54
      <tr>
55
        <td background="images/bg_drk_bage_pane.gif">
56
		  <table width="100%"  border="0" cellspacing="0" cellpadding="0">
57
            <tr>
58
              <td nowrap>&nbsp;</td>
59
              <td align="right" nowrap class="section_ttl">Home</td>
60
            </tr>
61
          </table>
62
		</td>
63
      </tr>
64
      <tr>
65
        <td class="menu_crumbttl">&nbsp;</td>
66
      </tr>
67
      <tr>
68
        <td>
69
		 <!-- DETAILS ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
70
		 <!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
71
         <br></td>
72
      </tr>
73
    </table></td>
74
  </tr>
75
</table>
76
<!-- FOOTER ++++++++++++++++++++++ -->
77
<!--#include file="_footer.asp"-->
78
<!-- +++++++++++++++++++++++++++++ -->
79
</body>
80
</html>
81
<%
82
'------------ RUN AFTER PAGE RENDER -----------
83
'----------------------------------------------
84
%>
2 rsolanki 85
<!--#include file="common/globals_destructor.asp"-->