Error Message:
Microsoft VBScript runtime error '800a01f4'
Variable is undefined: 'PageBottom'
/Default.asp, line 29
CODE:
Expand|Select|Wrap|Line Numbers
- <!--#include virtual="/Library/SQL.inc"-->
- <%
- '
- ' MAKING CHANGES TO THIS FILE WILL AFFECT THE ENTIRE SITE!!!! BE CAREFUL!
- '
- %>
- <%'This function returns true if the browser is thought to be IE, otherwise it returns false.
- Function IsIE()
- If InStr(Request.ServerVariables("HTTP_USER_AGENT"), "MSIE") > 0 Then
- IsIE = True
- Else
- IsIE = False
- End If
- End Function
- %>
- <%
- Function GetHits()
- Dim rsTemp
- Set rsTemp = Exec("exec GetUniqueHits 'lapi.ntdls.com'")
- If NOT rsTemp.EOF And NOT rsTemp.BOF Then
- GetHits = rsTemp("UniqueHits")
- End If
- rsTemp.Close
- Set rsTemp = Nothing
- End Function
- %>
- <%Sub PageTop(Title)%>
- <%SQLOpen%>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
- <html>
- <head>
- <title>LAPI-Lower Alabama Paranormal Investigators - <%=Title%></title>
- <STYLE TYPE="text/css">
- <!--
- a.Menu { color:#fff000; font-family: Garamond; font-size: 21px; text-decoration:none;}
- a.Menu:hover { color:#ff0000; font-family: Garamond; font-size: 21px; text-decoration: none; }
- a { color:#fff000; font-family: Garamond; font-size: 18px; text-decoration:none;}
- a:hover { color:#ff0000; font-family: Garamond; font-size: 18px; text-decoration: none; }
- td.BodyTable {background: #000000 url('/Images/Watermark.jpg') no-repeat scroll top center ;}
- -->
- </STYLE>
- </head>
- <body BGColor="#000022" Text="#eeeeee">
- <table align="center" width="766" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td height="50" valign="top" align="Center" <%IF IsIE() Then%>BGColor="#000077" Background="/Images/TopLeftFade.gif"<%Else%>BGColor="#000033"<%End IF%>>
-
- </td>
- <td height="50" valign="top" align="Center" <%IF IsIE() Then%>style="filter:progid:DXImageTransform.Microsoft.Gradient(endColorstr='#000022', startColorstr='#000077', gradientType='1');"<%Else%>BGColor="#000033"<%End IF%>>
- <Img Src="/Images/Logo.gif">
- </td>
- </tr>
- <tr>
- <td height="679" Width="150" valign="top" <%IF IsIE() Then%>style="filter:progid:DXImageTransform.Microsoft.Gradient(endColorstr='#000022', startColorstr='#000077', gradientType='0');"<%Else%>BGColor="#000033"<%End IF%>>
- <!--#include file="Menu.asp"-->
- </td>
- <td Class="BodyTable" height="679" valign="top">
- <center><font Size="5" Color="#FFFFFF"><%=Title%></font></Center>
- <tr>
- <td Align="Center" <%IF IsIE() Then%>BGColor="#000022"<%Else%>BGColor="#000033"<%End IF%>><Font Size="-2"><%=GetHits%> Unique Hits</Font></td>
- <td BGColor="#000000"></a></font>
- <Center><font size="-2" color="#FFFFFF" face="arial">Copyright © <%=Year(Date)%> Chris Hicks. All rights reserved.</font></Center></font>
- </td>
- </tr>
- </table>
- </body>
- </html>
- <%SQLClose%>
- <%End Sub%>