Metropoli BBS
VIEWER: sidenav.asp MODE: TEXT (ASCII)
<% @ LANGUAGE=VBSCRIPT CODEPAGE = 1252 %>
<!--#include file="../constant.inc"-->
<!--#include file="../lib/session.inc"-->
<% SendHeader 0, 1 %>
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 3.2//EN">
<%
'<!-- Microsoft Chat Web Access-->
'<!-- SideNav.asp : Navigation for the main window -->
'<!-- Copyright (c) Microsoft Corporation 1993-1997. All rights reserved.-->

On Error Resume Next

urlString = Request.QueryString()
if urlString <> "" then urlString="?"+urlString
CheckSession bstrVirtRoot + "/root.asp" + urlString, "parent"

urlWin = Request.QueryString("iwin")
iCurrMainWin = Cint(urlWin)

If isMSIE Then
	bstrImgAlign = "middle"
Else
	bstrImgAlign = ""
End If

%>

<HTML>
<HEAD>

<STYLE TYPE="text/css">
<!--
A:link		{ color: black; text-decoration: none}
A:visited 	{ color: black; text-decoration: none}
A:active 	{ color: black; text-decoration: none}
-->
</STYLE>

</HEAD>

<BODY BGCOLOR=ffffff LINK=000000 VLINK=000000 ALINK=000000 TEXT=000000>

<table border=0 cellpadding=0 cellspacing=0 width=100%>

<tr>
	<td colspan=2>
		<a href="JavaScript:parent.refreshWindows(<%=MAINWIN_SERVER%>);">
		<% If iCurrMainWin = MAINWIN_SERVER Then %>
		<img src="<%=bstrVirtRoot%>/images/opnfldr.gif" ID=server width=16 height=16 alt="Server" align="<%=bstrImgAlign%>" border=0>
		<% Else %>
		<img src="<%=bstrVirtRoot%>/images/server.gif" width=16 height=16 alt="Server" align="<%=bstrImgAlign%>" border=0>
		<% End If %>
		<font size=2><%=Session(CURRENT_SERVER)%></font></a>
	</td>
</tr>

<tr>
	<td><img src="<%=bstrVirtRoot%>/images/dot_clr.gif" width=13></td>
	<td>
		<a href="JavaScript:parent.refreshWindows(<%=MAINWIN_INTRO%>);">
		<% If iCurrMainWin = MAINWIN_INTRO Then %>
		<img src="<%=bstrVirtRoot%>/images/opnfldr.gif" width=16 height=16 alt="Introduction" align="<%=bstrImgAlign%>" border=0>
		<% Else %>
		<img src="<%=bstrVirtRoot%>/images/clsfldr.gif" ID=intro width=16 height=16 alt="Introduction" align="<%=bstrImgAlign%>" border=0>
		<% End If %>
		<font size=2>Introduction</font></a>
	</td>
</tr>

<tr>
	<td></td>
	<td>
		<a href="JavaScript:parent.refreshWindows(<%=MAINWIN_SERVERMSG%>);">
		<% If iCurrMainWin = MAINWIN_SERVERMSG Then %>
		<img src="<%=bstrVirtRoot%>/images/opnfldr.gif" width=16 height=16 alt="Server Messages" align="<%=bstrImgAlign%>" border=0>
		<% Else %>
		<img src="<%=bstrVirtRoot%>/images/clsfldr.gif" ID=servermsg width=16 height=16 alt="Server Messages" align="<%=bstrImgAlign%>" border=0>
		<% End If %>
		<font size=2>Server Messages</font></a>
	</td>
</tr>

<tr>
	<td></td>
	<td>
		<a href="JavaScript:parent.refreshWindows(<%=MAINWIN_CHANNEL%>);">
		<% If iCurrMainWin = MAINWIN_CHANNEL Then %>
		<img src="<%=bstrVirtRoot%>/images/opnfldr.gif" width=16 height=16 alt="Manage Channels" align="<%=bstrImgAlign%>" border=0>
		<% Else %>
		<img src="<%=bstrVirtRoot%>/images/clsfldr.gif" ID=channel width=16 height=16 alt="Manage Channels" align="<%=bstrImgAlign%>" border=0>
		<% End If %>
		<font size=2>Managing Channels (Rooms)</font></a>
	</td>
</tr>

<tr>
	<td></td>
	<td>
		<a href="JavaScript:parent.refreshWindows(<%=MAINWIN_BAN%>);">
		<% If iCurrMainWin = MAINWIN_BAN Then %>
		<img src="<%=bstrVirtRoot%>/images/opnfldr.gif" width=16 height=16 alt="Manage Users" align="<%=bstrImgAlign%>" border=0>
		<% Else %>
		<img src="<%=bstrVirtRoot%>/images/clsfldr.gif" ID=ban width=16 height=16 alt="Manage Users" align="<%=bstrImgAlign%>" border=0>
		<% End If %>
		<font size=2>Managing Users (Bans)</font></a>
	</td>
</tr>

</table>
</BODY>

</HTML>
[ RETURN TO DIRECTORY ]