<%
' Role Administrator
' main.asp
' Copyright (c) Microsoft Corporation 1993-1998. All rights reserved.
' ******************************************************************************
' This page creates the frameset for the Role Admin application.
' ******************************************************************************
On Error Resume Next
Response.Expires = 0
If Session("Server") = "" Then
Response.Redirect "logon.asp"
End If
%>
<HTML>
<HEAD>
<TITLE>Role Administrator</TITLE>
</HEAD>
<FRAMESET COLS=34%,66%>
<FRAME NAME="main" SRC="tree.asp">
<FRAME NAME="command" SRC="blank.htm">
</FRAMESET>
<BODY>
</BODY>
</HTML>