Código PHP:
function valida_obligatorios(){
var mensaje="Los siguientes campos son obligatorios:\n\n";
var completos=true;
var seleccionado=false;
opciones = document.getElementsByName("rbnSexo");
//var valRadios = validar_rbnSexo(document.form.getElementsByName("rbnSexo"));
//var emailcorrecto=isEmailAddress(txtEmail);
if(trim_long(document.getElementById("txtPrimerApellido").value)==0)
{
completos=false;
//alert(mensaje+ "[Primer Apellido]");
mensaje+="[Primer Apellido]\n";
document.getElementById("txtPrimerApellidoobl").style.visibility = "visible";
}
if(trim_long(document.getElementById("txtSegundoApellido").value)==0)
{
completos=false;
//alert(mensaje+ "[Segundo Apellido]");
mensaje+="[Segundo Apellido]\n";
document.getElementById("txtSegundoApellidoobl").style.visibility = "visible";
}
if(trim_long(document.getElementById("txtNombre").value)==0)
{
completos=false;
//alert(mensaje+ "[Nombre]");
mensaje+="[Nombre]\n";
document.getElementById("txtNombreobl").style.visibility = "visible";
}
if(trim_long(document.getElementById("txtEmail").value)==0)
{
completos=false;
//alert(mensaje+ "[Email]");
mensaje+="[Email]\n";
document.getElementById("txtEmail").style.visibility = "visible";
}
if(trim_long(document.getElementById("txtNip").value)==0)
{
completos=false;
//alert(mensaje+ "[Nip]");
mensaje+="[Nip]\n";
document.getElementById("txtNip").style.visibility = "visible";
}
if(trim_long(document.getElementById("txtConfirmaNip").value)==0)
{
completos=false;
//alert(mensaje+ "[Confirmar Nip]");
mensaje+="[Confirmar Nip]\n";
document.getElementById("txtConfirmaNip").style.visibility = "visible";
}
var emailcorrecto=isEmailAddress(document.getElementById('txtEmail'));
if(emailcorrecto==false){completos=false; mensaje+="[Email] no valido\n"; }return false;
//llamado a funciones
if(completos==false){
alert(mensaje);
return false;}
if(!valida_correctos()) return false;
if(!valida_usuario()) return false;
}