function enviarSolicitudCertificadoForm() {
	var form = $("#contact-form");
	if($("#nombre").val() =="") {
		alert(html_entity_decode("<!-- INCLUDE LABELS PRINT SOLICITUD_CERTIFICADO/ENTRAR_NOMBRE -->"));
		$("#nombre").focus();
		return false;
	} else if($("#apellidos").val() =="") {
		alert(html_entity_decode("<!-- INCLUDE LABELS PRINT SOLICITUD_CERTIFICADO/ENTRAR_APELLIDOS -->"));
		$("#apellidos").focus();
		return false;
	} else if($("#email").val() =="") {
		alert(html_entity_decode("<!-- INCLUDE LABELS PRINT SOLICITUD_CERTIFICADO/ENTRAR_EMAIL -->"));
		$("#email").focus();
		return false;
	} else if($("#telefono").val() =="") {
		alert(html_entity_decode("<!-- INCLUDE LABELS PRINT SOLICITUD_CERTIFICADO/ENTRAR_TELEFONO -->"));
		$("#telefono").focus();
		return false;
	} else if($("#empresa").val() == "") {
		alert(html_entity_decode("<!-- INCLUDE LABELS PRINT SOLICITUD_CERTIFICADO/ENTRAR_EMPRESA -->"));
		$("#empresa").focus();
		return false;
	} else if($("#provincia").val() == "") {
		alert(html_entity_decode("<!-- INCLUDE LABELS PRINT SOLICITUD_CERTIFICADO/ENTRAR_PROVINCIA -->"));
		$("#provincia").focus();
		return false;
	} else if($("#comentario").val() == "") {
		alert(html_entity_decode("<!-- INCLUDE LABELS PRINT SOLICITUD_CERTIFICADO/ENTRAR_COMENTARIO -->"));
		$("#comentario").focus();
		return false;
	} else if($("#captcha").val() == "") {
		alert(html_entity_decode("<!-- INCLUDE LABELS PRINT SOLICITUD_CERTIFICADO/ENTRAR_CODIGO -->"));
		$("#captcha").focus();
		return false;
	}	else if($("#lopd").attr("checked") == false) {
		alert(html_entity_decode("<!-- INCLUDE LABELS PRINT SOLICITUD_CERTIFICADO/ACEPTAR_LOPD -->"));
		return false;
	}
	return true;
}

