loadVars question

i am using loadVars with the send method to send my contact info to a php file. This works fine but when i press the submit button the browser goes to the email.php file. How do i prevent it from opening that file in the browser window?

heres the as
[AS]
lv = new LoadVars();
lv.name = name;
lv.company = company;
lv.phone = phone;
lv.email = email;
lv.message = message;
lv.send(“email.php”, “POST”);
}
[/AS]