Form Flash + PHP

Hi,

i try to make a form using flash, here´s the code:

[AS]
loadVarsEmail = new LoadVars();

loadVarsEmail.onLoad = function() {
gotoAndStop(“status”);
if(this.status) { campo_status.text = “Ok!”; }
else { campo_status.text = “Not okr”; }
}
enviar.onRelease = function() {
loadVarsEmail.nome = campo_nome.text;
loadVarsEmail.email = campo_email.text;
loadVarsEmail.telefone = campo_telefone.text;
loadVarsEmail.sendAndLoad(“send.php”, loadVarsEmail, “POST”);
gotoAndStop(“espera”);
}
[/AS]

send.php


include_once('ultramail.php');

$nome = stripslashes(utf8_decode($_POST["nome"]));
$email = stripslashes(utf8_decode($_POST["email"]));
$telefone = stripslashes(utf8_decode($_POST["telefone"]));

$msg = $nome . $email . $telefone;
$msg = str_replace("
", "
", $msg);
$msg = stripslashes(utf8_decode($msg));

$para = "XXX@XXX.com";
$assunto = "Webform";
$cabecalho = "MIME-Version: 1.0
";
$cabecalho .= "Content-type: text/html; charset=iso-8859-1
";
$cabecalho .= "From: $nome <$email>";
$cabecalho .= "Para: DWMX 
";

UltraMail($para, $assunto, $msg , $cabecalho);

ultramail is the function of email of my server…

there is something wrong here?

thanks!