Argg! Windows a popin'

[AS]stop ();

function sendForm () {
my_lv = new LoadVars ();
my_lv.fname = name;
my_lv.email = email;
my_lv.subject = subject;
my_lv.content = content;
my_lv.send (“email.php”, “POST”);
gotoAndPlay(3);

}

send_btn.onRelease = function () {
if (name.text == “” || email == “” || subject.text == “” || content.text == “”) {
status_txt.text = “Please fill in all fields.”;
} else {
status_txt.text = “”;
sendForm ();
}
};[/AS]

Okay that is my code to run my e-mail form. It works great. BUT! After a use clicks send it opens up the email.php, how do I fix this.

Here is the peice of code I think is causing the window to open upon submiting:
[AS]my_lv.send (“email.php”, “POST”);[/AS]
Thanks.