File: D:/web archive/conferencesearch (old) (to delete)/book/inc-template-main.asp
<!--#include file="inc-main.asp"-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title><%=RemoveHTMLTags(GetText("Title"))%></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="<%=GetStylesheetName%>?v=2" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
.main a,.menu li.active,.menu li.active a,#summary,#page-name,.time,h1 {color: <%=GetHighlightColor%>;}
body {background-color: <%=GetBackgroundColor%>;}
-->
</style>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" src="javascript.js?v=2"></script>
</head>
<body onload="ITP_ShowErrorMessage()">
<table width="770" border="0" align="center" cellpadding="0" cellspacing="0" class="container">
<tr><td class="menu">
<ul><%=GetMenu%>
</ul>
</td></tr>
<tr>
<td class="middle">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<%
' (SS,13/8/15)
Const TOP_LOGO_CHECK = "LIKE 'Top Logo%'"
Dim LNoLeftPictures
LNoLeftPictures = " main-no-left"
' (SS,27/7/09) only add the left column if there are pictures for this conference, or if full width page
' (SS,13/8/15) paramater to ArePictures and GetPictures to filter pictures for left and/or top
If Not FullWidthPage And ArePictures("NOT " + TOP_LOGO_CHECK) Then
LNoLeftPictures = ""
%>
<td class="left"><%=GetPictures("NOT " + TOP_LOGO_CHECK)%>
</td>
<%End If%>
<td class="main<%=LNoLeftPictures%>">
<% ' (SS,13/8/15) added code for top logo picture
If ArePictures(TOP_LOGO_CHECK) Then%>
<div id="top-logo"><%=GetPictures(TOP_LOGO_CHECK)%></div>
<%Else%>
<div id="title"><%=GetText("Title")%></div>
<div id="summary"><%=GetText("Summary")%></div>
<%End If%>
<div id="page-name"><%=GetPageName%></div>
<!-- START OF MAIN BODY -->
<!--#include file="inc-pages.asp"-->
<!-- END OF MAIN BODY -->
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="footer">
<div id=footer><%=GetText("Footer")%></div></td>
</tr>
</table>
<script type="text/javascript" src="custom.js?v=8"></script>
</body>
</html>
<!--#include file="inc-finalise.asp"-->