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
'|			          msgPleaseNote				 	 |
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
'------------ VARIABLE DEFINITION -------------
18
'------------ CONSTANTS DECLARATION -----------
19
'------------ VARIABLE INIT -------------------
20
'------------ CONDITIONS ----------------------
21
'----------------------------------------------
22
%>
23
<%
24
'------------ RUN BEFORE PAGE RENDER ----------
25
'----------------------------------------------
26
%>
27
<html>
28
<head>
29
<title>Access Manager</title>
30
<link rel="shortcut icon" href="<%=FavIcon%>"/>
31
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
32
<link href="../scripts/access_manager.css" rel="stylesheet" type="text/css">
33
<script language="JavaScript" src="../scripts/common.js"></script>
6658 dpurdie 34
<script language="JavaScript1.2" src="images/popup_menu.js"></script>
5354 dpurdie 35
</head>
36
 
37
<body leftmargin="0" topmargin="0">
38
<!-- HEADER ++++++++++++++++ -->
39
<!--#include file="_msg_header.asp"-->
40
<!-- +++++++++++++++++++++++ -->
41
<table width="100%" height="80%" border="0" cellpadding="0" cellspacing="0">
42
  <tr>
43
    <td align="center" valign="middle"><table width="450" border="0" cellspacing="0" cellpadding="1">
44
        <tr>
45
          <td background="../images/bg_bage_2.gif"><table width="100%"  border="0" cellspacing="0" cellpadding="0">
46
            <tr>
47
              <td background="../images/bg_bage_pane.gif"><table width="100%" border="0" cellpadding="10" cellspacing="0">
48
                <form name="form" method="get" action="">
49
                  <tr>
50
                    <td width="1%" align="center" valign="top"><img src="../images/i_warning.gif" width="30" height="31"></td>
51
                    <td width="100%" valign="top">
52
                      <table width="100%" border="0" cellspacing="0" cellpadding="0">
53
                        <tr>
54
                          <td class="msg_ttl"><%=objEH.MessageSummary%></td>
55
                        </tr>
56
                        <tr>
57
                          <td><img src="../images/spacer.gif" width="10" height="30"></td>
58
                        </tr>
59
                        <tr>
60
                          <td class="body_txt">
61
                            <%If objEH.MessageDetails <> "" Then%>
62
                            <a href="javascript:;" onClick="ToggleDisplay('divMessageDetails');" class="body_link">Message details... </a><br>
63
                            <DIV name="divMessageDetails" id="divMessageDetails" style="display:none;">
64
                              <hr width="100%" size="1" noshade color="#ACA899">
65
                              <SPAN class="body_sys"><%=objEH.MessageDetails%></SPAN> </DIV>
66
                            <%End If%>
67
                          </td>
68
                        </tr>
69
                    </table></td>
70
                    <td width="1%" valign="top"><img src="../images/spacer.gif" width="1" height="100"></td>
71
                  </tr>
72
                  <tr>
73
                    <td align="center" valign="middle">&nbsp;</td>
74
                    <td valign="top"><hr width="100%" size="1" noshade>
75
                        <input name="Reset" type="reset" class="form_btn" value="&laquo; Back" onClick="history.back()"></td>
76
                    <td valign="top">&nbsp;</td>
77
                  </tr>
78
                </form>
79
              </table></td>
80
            </tr>
81
          </table></td>
82
        </tr>
83
      </table></td>
84
  </tr>
85
</table>
86
</body>
87
</html>
88
<%
89
'------------ RUN AFTER PAGE RENDER -----------
90
'----------------------------------------------
91
%><!--#include file="../common/globals_destructor.asp"-->