<%=siteurl%>
<%
dim errorcode, email, message, LoginID
'if already logged in then skip page.
If Session("loginID") = "" Then
errorcode = request.querystring("l")
email = Request.Cookies("email")
'if the email cookie exists display a "not me" link to delete the cookie.
if email <> "" then
message ="this is not me"
end if
'if this is not me then delete the cookie
if request.querystring("notme") = 1 then
Session.Abandon
email = ""
Response.Cookies("email") = " "
Response.Cookies("email").Expires = Date() - 1
end if
%>
<%
else
response.redirect("admin_add.asp")
end if %>