﻿    function cambiaIdioma( idioma )
    {
        var aux = document.location.href;
        
        aux = aux.replace('_es.htm','');
        aux = aux.replace('_en.htm','');
        aux = aux.replace('_fr.htm','');
        aux = '_' + idioma + '.htm';
        
        document.location.href = aux;
    }
