<%
  if Fullserve.Login(Request("EmailAddress"), Request("Password")) > 0 then
    Session("Authenticated") = TRUE
    Session("UserId") = Fullserve.UserId
    if Request("FinishURL") <> "" then
      FinishUrl = Request("FinishURL")
    else
      Response.Redirect("home.asp")
    end if
  else
    Response.Redirect("login.asp")
  end if 
%>
<html>
<head>
<!--<META HTTP-EQUIV="refresh" content="0;URL=<%=FinishUrl%>">-->
</head>
<body>
</body>
</html>