function fValidarMailContacto(pLang) {
	
	if (String(document.getElementById("txtnombre").value).length==0) {
		alert("Introduzca el nombre");
		document.getElementById("txtnombre").focus();
		return false;
	}
	var mail=String(document.getElementById("txtemail").value);
	if (mail.length==0) {
		alert("Introduzca una dirección de correo válida");
		document.getElementById("txtemail").focus();
		return false;
	} else {
		if (mail.indexOf("@")<0) {
			alert("Introduzca una dirección de correo válida");
			document.getElementById("txtemail").focus();
			return false;
		}
	}
	if (String(document.getElementById("txtasunto").value).length==0) {
		alert("Debe indicar el asunto");
		document.getElementById("txtasunto").focus();
		return false;
	}
	if (String(document.getElementById("txtcomen").value).length==0) {
		alert("No ha introducido ningún comentario");
		document.getElementById("txtcomen").focus();
		return false;
	}
	if (chklopd=document.getElementById("chklopd")){
		if (!chklopd.checked) {
			alert("Debe aceptar la Política de protección de datos");
			document.getElementById("chklopd").focus();
			return false;
		}
	}
	return true;
}
