function valida(){

 if (document.forms[0].nombre.value==""){
    alert("Colocar el nombre es obligatorio");
    return false;
 }

 if (document.forms[0].telefono.value==""){
    alert("Colocar el Teléfono es obligatorio");
    return false;
 }

 if (document.forms[0].email.value==""){
    alert("Colocar el Email es obligatorio");
    return false;
 }


  return true;

}
