function validarEmail(valor) {
	return (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(valor))
}

function validar() {
	var texto;
	texto="";
 
	if (document.formulario.nombre.value==""){
		texto+="- Debe introducir su nombre.\n";
	}
	if (document.formulario.apellidos.value==""){
		texto+="- Debe introducir sus apellidos.\n";
	}
	if (document.formulario.email.value==""){
		texto+="- Debe introducir su email.\n";
	}else{
		if(!validarEmail(document.formulario.email.value)){
			texto+="- Formato de email incorrecto.\n"
		}
	}
	
	if (texto!=""){
		alert("Se han encotrado los siguientes problemas:\n\n"+texto);
	}else{
		document.formulario.submit();
	}
}

