File: D:/web/secure/csl/bam/admin/heading.asp
<html>
<head>
<% ' (SS,8/10/14) disable cache
Response.CacheControl = "no-cache"
Response.AddHeader "Pragma", "no-cache"
Response.Expires = -1
%>
<title>
<%If Session("Title") = "" Then
Response.Write(Application("ConferenceName") + " Accommodation Administration")
Else
Response.Write(Session("Title"))
Session("Title") = ""
End If%>
</title>
<link rel="stylesheet" type="text/css" href="styles.css?v=2">
<meta http-equiv="Pragma" content="no-cache">
<style type="text/css">
<!--
.title { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: medium; font-style: normal; font-weight: bold; color: #003D9A}
-->
</style>
<script language="javascript" type="text/javascript" src="../javascript.js"></script>
</head>
<body leftmargin="10" bgcolor="#FFFFFF" topmargin="10" onload=uSetFocus()>
<%If Session("Heading") = "" Then
Response.Write("<span class=""maintitle"">" + Application("ConferenceName") + "<br>Accommodation Administration") ' (SS,5/12/14) added <br>
Else
Response.Write("<span class=""maintitle2"">" + Session("Heading"))
Session("Heading") = ""
End If%>
</span>
<%
If Session("MenuName") <> "" or Session("MenuShowMain") Then ' (SS,3/3/03) added or Session("MenuShowMain")
Response.Write("<br><a href=main.asp><strong>Main Menu</strong></a>")
' (SS,3/3/03) added If Session("MenuLink") <> ""
If Session("MenuLink") <> "" then
Response.Write("<strong> -> </strong>")
Response.Write("<a href=" + Session("MenuLink") + "><strong>" + Session("MenuName") + "</strong></a>")
End If
End If
%>