
function validar_formu(){
	var correcto=true;
	var mensaje="";
	var formulario="busca";

	/*Validación*/
	if(document.getElementById("apodo").value == ""){
		mensaje+="-¿Cual es tu apodo/nick?\n";
		correcto=false;
	}		
	if(document.getElementById("soy").selectedIndex == ""){
		mensaje+="- Debe indicar su sexo.\n";
		correcto=false;
	}		
	if(document.getElementById("mi_edad").selectedIndex == ""){
		mensaje+="- Indique su edad.\n";
		correcto=false;
	}		
	if(document.getElementById("que_busca").selectedIndex == ""){
	mensaje+="- ¿No sabe lo que busca?\n";
	correcto=false;
	}		
	if(document.getElementById("edad_uno").selectedIndex == "" || document.getElementById("edad_dos").selectedIndex == ""){
	mensaje+="- Rango de edad no válido.\n";
	correcto=false;
	}else{
		if(document.getElementById("edad_uno").value > document.getElementById("edad_dos").value){
			mensaje+="- Rango de edad no válido.\n";
			correcto=false;
	}	}

	if(document.getElementById("donde").selectedIndex == ""){
	mensaje+="- Localice la búsqueda por zona.\n";
	correcto=false;
	}		

	if(document.getElementById("amistad").checked == "" && document.getElementById("ligue").checked == "" &&  document.getElementById("relacion").checked == "" &&  document.getElementById("matrimonio").checked == ""){
	mensaje+="- Marque al menos uno de los intereses.\n";
	correcto=false;
	}		
	
	if(correcto==false){
		alert(mensaje);
		return false;
	}
	else{
		document.getElementById("busca").submit();
		return true;
	}
	
}








function registro(id){
	var correcto=true;
	var mensaje="";
	var formulario="registro_"+id;

/*Validación*/
	if(document.getElementById("nombre_"+id).value == ""){
		mensaje+="-Indique su nombre y apellidos.\n";
		correcto=false;
	}		
	if(document.getElementById("apellidos_"+id).value ==""){
		mensaje+="-Indique su nombre y apellidos.\n";
		correcto=false;
	}		
	if(document.getElementById("dni_"+id).value == ""){
		mensaje+="-Necesitamos su DNI como referencia.\n";
		correcto=false;
	}		
	if(document.getElementById("tlfn_"+id).value == ""){
		mensaje+="-Introduzca un telefono para contactar con usted.\n";
		correcto=false;
	}		
	if(document.getElementById("correo_"+id).value == ""){
		mensaje+="-El e-mail es una buena forma de contacto.\n";
		correcto=false;
	}		
	if(correcto==false){
		alert(mensaje);
		return false;
	}
	else{
		document.getElementById(formulario).submit();
		return true;
	}
	
}












function buscador(){
	var correcto=true;
	var mensaje="";
	var formulario="busca";

	/*Validación*/
	if(document.getElementById("que_busca").selectedIndex == ""){
	mensaje+="- ¿No sabe lo que busca?\n";
	correcto=false;
	}		
	if(document.getElementById("edad_uno").selectedIndex == "" || document.getElementById("edad_dos").selectedIndex == ""){
	mensaje+="- Rango de edad no válido.\n";
	correcto=false;
	}else{
		if(document.getElementById("edad_uno").value > document.getElementById("edad_dos").value){
			mensaje+="- Rango de edad no válido.\n";
			correcto=false;
	}	}

	if(document.getElementById("donde").selectedIndex == ""){
	mensaje+="- Localice la búsqueda por zona.\n";
	correcto=false;
	}		

	if(document.getElementById("amistad").checked == "" && document.getElementById("ligue").checked == "" &&  document.getElementById("relacion").checked == "" &&  document.getElementById("matrimonio").checked == ""){
	mensaje+="- Marque al menos uno de los intereses.\n";
	correcto=false;
	}		
	
	if(correcto==false){
		alert(mensaje);
		return false;
	}
	else{
		document.getElementById("busca").submit();
		return true;
	}
	
}
