function enf() {
	document.fo.nom.focus();
}


function validacua() {
	
	alerta = 0;
	devuelve = true;
	if ((document.fo.nom.value=="")||(document.fo.mensaje.value=="")||(document.fo.email.value=="")||(document.fo.asun.value==""))
	{
		
		alerta = 1;
		
		if (document.fo.mensaje.value=="") {
			document.fo.mensaje.focus();
		}		
		if (document.fo.asun.value=="") {
			document.fo.asun.focus();
		}
		if (document.fo.email.value=="") {
			document.fo.email.focus();
			alerta = 2;
		}
				
		if (document.fo.nom.value=="") {
			document.fo.nom.focus();
		}
		
		devuelve = false;
		
	}
	
	if (alerta < 2) {
		
		vemail = document.fo.email.value;
		
		resp = document.fo.email.value.indexOf('@');
		
		if (resp == -1) {
			alert('El campo email no es valido!');
			document.fo.email.focus();
			alerta = 0;
			devuelve = false;
		}
		
	}
	
	if (alerta > 0) {
		alert('Debe rellenar los cuatro campos, gracias');
	}
	
	return devuelve;
}
