Make a Reservation
Please fill in the form below to send us your booking request.
(Fields marked * are mandatory.)
<%
'Check if the stored session text - session("checktext") is the same as the
' text which has client entered - request("imagecheck").
if len(request("_imagecheck"))>0 and ucase("" & request("_imagecheck")) = ucase("" & session("CAPTCHA")) then
session("CAPTCHA")=""
strMsg = ""
%>
<%
else
'Create a random text and store the text to session.
' Image-Check.asp will show the text in a captcha image
strMsg = ""
if session("CAPTCHA")<>"" and request("First_Name")<>"" then
strMsg = " Entered Code doesn't match. Please try again."
end if
%>
<%end if%>