If needed here is the entirety of the code.
============================================================
<%
if isempty(Request.Form("SubmitRequest"

) then
TheMessage1 = "Thank you for your interest in our comunity. <BR> " _
& "Please use the form below to submit your questions or comments. "
TheMessage2 = "Note that fields with <font color='ff0000'>*</font> are required."
else
TheName = Request.Form("Name"

TheEmailAddress = Request.Form("EmailAddress"

TheCity = Request.Form("City"

TheState = Request.Form("State"

TheZip = Request.Form("Zip"

TheCountry = Request.Form("Country"

TheMessage = Request.Form("Message"
if isempty(Request.Form("Name"

)or Request.Form("Name"

= "" then
TheMessage1 = "The form was not submitted."
TheMessage2 = "Name is required!"
elseif isempty(Request.Form("EmailAddress"

) or Request.Form("EmailAddress"

= "" then
TheMessage1 = "The form was not submitted."
TheMessage2 = "Email Address is required!"
elseif instr(Request.Form("EmailAddress"

,"@"

= 0 then
TheMessage1 = "The form was not submitted."
TheMessage2 = "Email Address is invalid!"
elseif instr(Request.Form("EmailAddress"

,"."

= 0 then
TheMessage1 = "The form was not submitted."
TheMessage2 = "Email Address is invalid!"
else
set conn = server.createobject ("adodb.connection"

conn.open "comments", "xxxx", "xxxx"
TheMessage1 = "Thank you for using this form."
TheMessage2 = "It has been submitted!"
EmailMessage = "H1BProtest.com, request for more information details:" & chr(13) & chr(13)
EmailMessage = EmailMessage & "Name: " & TheName & chr(13)
EmailMessage = EmailMessage & "Email Address: " & TheEmailAddress & chr(13)
EmailMessage = EmailMessage & "City: " & TheCity & chr(13)
EmailMessage = EmailMessage & "State: " & TheState & chr(13)
EmailMessage = EmailMessage & "Zip: " & TheZip & chr(13)
EmailMessage = EmailMessage & "Country: " & TheCountry & chr(13)
EmailMessage = EmailMessage & "Message: " & TheMessage & chr(13)
DistribSQL = "SELECT CIMoreInfoRequestDistributees.EmailAddress " _
& "FROM CIMoreInfoRequestDistributees INNER JOIN " _
& "CIInterestDistributionList ON CIMoreInfoRequestDistributees.DistributeeID " _
& "= CIInterestDistributionList.DistributeeID LEFT OUTER JOIN " _
& "CIInterests ON " _
& "CIInterestDistributionList.InterestID = CIInterests.InterestID " _
& "WHERE CIInterestDistributionList.InterestID = 1 "
For i = 1 to Request.Form("Topic"

.Count
set objMail = CreateObject("CDONTS.NewMail"

TempInterest = TempInterest & Request.Form("Topic"

.Item(i) & " "
DistribSQL = DistribSQL & " or CIInterests.InterestName = '" _
& Request.Form("Topic"

.Item(i) & "' "
set RSEmailResponses = conn.execute ("select * from CIInterests " _
& " where InterestName = '" & Request.Form("Topic"

.Item(i) & "'"

objMail.Send RSEmailResponses("RespondTo"

,Request.Form("EmailAddress"

,_
RSEmailResponses("MessageSubject"

,cstr(RSEmailResponses("MessageText"

)
set objmail = nothing
Next
if right(TempInterest,2) = ", " then
TempInterest = left(TempInterest, len(TempInterest) - 2 )
end if
EmailMessage = EmailMessage & "Topic: " & TempInterest & chr(13)
set RSDistrib = conn.execute (DistribSQL)
do until RSDistrib.eof
set objMail = CreateObject("CDONTS.NewMail"

objMail.Send Request.Form("Email"

,RSDistrib("EmailAddress"

, _
"New More Info Request!",cstr(EmailMessage)
set objmail = nothing
RSDistrib.MoveNext
loop
conn.Execute "insert into CIMoreInfoRequests (DateTimeRequested, Name, " _
& "EmailAddress, City, State, Zip, " _
& "Topic, Message) values (" _
& "'" & Now() & "', " _
& "'" & TheName & "', " _
& "'" & TheEmailAddress & "', " _
& "'" & TheCity & "', " _
& "'" & TheState & "', " _
& "'" & TheZip & "', " _
& "'" & TheCompany & "', " _
& "'" & TempInterest & "', " _
& "'" & TheMEssage & "')" _
end if
end if
%>
============================================================