function cambiar_idioma(idioma){
    /*
    if (!document.sending) {
        document.sending = true;
        var data = {
            idioma: idioma
        };
        $.ajax({
            data: data,
            type: 'POST',
            url: WEB_PATH + 'app/ajax/idioma_change.php',
            success: function(response) {
                document.sending = false;
                window.location = window.location.href;
            }
        });
    }
     */
    if (idioma == 'en') {
        alert("Próximamente soporte para inglés");
    }
    if (idioma == 'pr') {
        alert("Próximamente soporte para portugués");
    }
    
    
}
