function switch_idioma(idioma, total){

    for (i = 0; i < total.length - 1; i++) {
    
        div_idioma = MM_findObj('div_leng_'+total[i]);
        div_idioma.style.display='none';
        
    }

    
    div_idioma=MM_findObj('div_leng_'+idioma);
    div_idioma.style.display='inline';
	

}