/*
Nombre pagina: 
Fecha creacion:  2004
Fecha actualizacion: 2004
Descripcion: 
Grupo TACA - Dpto. Ecommerce - Carlos Gonzalez (Mark)
*/
function changeLng(chLng) 
{
//En chLng
//[cero]: se desea cambiar a ingles
//[uno]: se desea cambiar a espanol
      var bandera = 0;
      var longitud = 0;

    if (chLng == 0) {idiomaCh = 'eng'; idiomaCu = 'esp';} //cambie a ingles
    if (chLng == 1) {idiomaCh = 'esp'; idiomaCu = 'eng';} //cambie a espaņol
    
    var checkOK = "/"+idiomaCu+"/";
    var longIdiomaCh = checkOK.length;
    
    var url=location.href; //Obteniendo url del navegador
    longitud = url.length; //Longitud de toda la cadena

bandera=url.indexOf(checkOK); //Posicion de actual idioma: idiomaCu


text1 = url.substring(0,bandera); //Obteniendo el dominio
text2 = url.substring(bandera+5,longitud); //Obteniendo pagina web
urlnew = text1 + "/"+ idiomaCh +"/"+ text2; //Creando nuevo url
setTimeout("go_now(urlnew)",1);  //Redireccionando
}
function go_now ()   { window.location.href = urlnew; }