, Shoot us an email. Send Funny Monkey Site an email about some monkey business. "/>
" />
<%
badcaptcha = 0
response.write badcaptcha
if request.form("sitede") <> "" then response.redirect("http://www.google.com")
if not blnCAPTCHAcodeCorrect and request.form <> "" then badcaptcha = 1
if request.form <> "" AND blnCAPTCHAcodeCorrect then
if session("sendmailcount") = "" then session("sendmailcount") = 0
session("sendmailcount") = session("sendmailcount") + 1
if session("sendmailcount") > 3 then response.redirect(Application("url"))
strcomments = request.form("textarea")
namefrom = request.form("name")
strcomments = replace(strcomments, "<", "#")
strcomments = replace(strcomments, ">", "#")
strcomments = replace(strcomments, "'", "#")
strcomments = server.HTMLEncode(strcomments)
namefrom = replace(namefrom, "<", "#")
namefrom = replace(namefrom, ">", "#")
namefrom = replace(namefrom, "'", "#")
namefrom = replace(namefrom, "
" & strcomments
strcomments = replace(strcomments, vbCrLf, "
")
sTo = application("emailto")
sFrom = request.form("email")
sSubject = "Email From " & Application("title")
sTextBody = strcomments & "
This email was submitted from IP address: " & Request.ServerVariables("REMOTE_ADDR") & "