Mail Form Problem

Hi everybody
this is my first post and i hope you can help me with this problem
ok well my problem is the next

i find a example of a mail form using flash and Php i’m not having problems with the php but with the flash file the code i’m using is the one below
(the variables names are in spanish)

well what I want to do is that people who use my form have/has to fill all the blanks but that they can leave the “telefono” blank on empty

Thanks, gracias

enviar = function () {
if (email_txt.text.length && nombre_txt.length && telefono_txt.length && mensaje_txt.length && estado_txt.length) {
if (email_txt.text.indexOf("@") != -1 && email_txt.text.indexOf(".") != -1) {
form_lv = new LoadVars();
form_lv.nombre = nombre_txt.text;
form_lv.mail = email_txt.text;
form_lv.mensaje = mensaje_txt.text;
form_lv.telefono = telefono_txt.text;
form_lv.estado = estado_txt.text;
form_lv.sendAndLoad(“http://www.pcservice.com.mx/medicinasmty/send.php”, form_lv, “POST”)
mensaje_txt.text = “Enviando Mensaje…”;
nombre_txt.text = “”;
email_txt.text = “”;
telefono_txt.text = “”;
estado_txt.text = “”;
form_lv.onLoad = function() {
trace(“LLEGO”);
if (this.estatus == “ok”) {
mensaje_txt.text = “Tu mensaje fue enviado…”;
nombre_txt.text = “”;
telefono_txt.text = “”;
email_txt.text = “”;
estado_txt.text = “”;
} else {
mensaje_txt.text = “Problemas con el servidor
Intentalo de Nuevo”;
}
};
} else {
email_txt.text = “Correo Invalido”;
}
} else {
email_txt.text = “Dato Necesario”;
nombre_txt.text = “Dato Necesario”;
telefono_txt.text =“Dato Necesario”;
estado_txt.text = “Dato Necesario”;
mensaje_txt.text = “Dato Necesario”;
}
};
borrar = function () { nombre_txt.text = “”;email_txt.text = “”;mensaje_txt.text = “”;estado_txt.text = “”;telefono_txt.text = “”;};
enviar_btn.onRelease = enviar;
borrar_btn.onRelease = borrar;
nombre_txt.tabIndex=1
email_txt.tabIndex=2
telefono_txt.tabIndex=3
estado_txt.tabIndex=4
mensaje_txt.tabIndex=5
enviar_btn.tabIndex=6