ASP in flash to send email

Can anyone help here. I have an .asp script that I am using to post for an email inside a mc. But when you click submit, instead of submiting and sending the email it calls the asp file and pulls up a blank window. Here is the script below. Can anyone help?

<% @language=“VBSCRIPT”%>

<%

Dim myMail, myBody

myBody = "Name: "&request.form(“name”) & vbcrlf
myBody = myBody & “Address:” & request.form(“address”) & vbcrlf
myBody = myBody & “Email:” & request.form(“email”) & vbcrlf
myBody = myBody & “Telephone:” & request.form(“telephone”) & vbcrlf
myBody = myBody & “Message:” & request.form(“message”)

Set myMail = CreateObject(“CDONTS.NewMail”)

myMail.BodyFormat = 1
myMail.MailFormat = 1
myMail.From = request.form(“email”)
myMail.To = "[email protected]"
myMail.Subject = “Information Request”
myMail.Body = myBody
myMail.Send

set myMail=nothing

%>