function enviarRRHHForm() {
	var form = $("#rrhh-form");
	if($("#nombre").val() =="") {
		alert(html_entity_decode("<!-- INCLUDE LABELS PRINT CONTACTO/ENTRAR_NOMBRE -->"));
		$("#nombre").focus();
		return false;
	} else if($("#apellidos").val() =="") {
		alert(html_entity_decode("<!-- INCLUDE LABELS PRINT CONTACTO/ENTRAR_APELLIDOS -->"));
		$("#apellidos").focus();
		return false;
	} else if($("#email").val() =="") {
		alert(html_entity_decode("<!-- INCLUDE LABELS PRINT CONTACTO/ENTRAR_EMAIL -->"));
		$("#email").focus();
		return false;
	} else if($("#localidad").val() == "") {
		alert(html_entity_decode("<!-- INCLUDE LABELS PRINT RRHH/ENTRAR_LOCALIDAD -->"));
		$("#localidad").focus();
		return false;
	} else if( $("#carta").val() == "" && $("#cv").val() == "" ) {
		alert(html_entity_decode("<!-- INCLUDE LABELS PRINT RRHH/ENTRAR_CV -->"));
		$("#carta").focus();
		return false;
	} else if($("#captcha").val() == "") {
		alert(html_entity_decode("<!-- INCLUDE LABELS PRINT CONTACTO/ENTRAR_CODIGO -->"));
		$("#captcha").focus();
		return false;
	}	else if($("#lopd").attr("checked") == false) {
		alert(html_entity_decode("<!-- INCLUDE LABELS PRINT CONTACTO/ACEPTAR_LOPD -->"));
		return false;
	}
	return true;
}

