var u_cc ='ca'; var u_cn = 'na'; var u_cty='canada'; var ctry_str = "Latinoamerica"; if(typeof(u_cn)!="undefined" && typeof(u_cc)!="undefined" && typeof(u_cty)!="undefined"){ if(u_cn == 'sa' || u_cn == 'na' ){ switch(u_cc) { case "mx": ctry_str = "México"; break; case "us": ctry_str = "USA"; break; default: ctry_str = u_cty; } }else if (u_cc == 'es'){ ctry_str = "España"; } } window.onload = function() { var subd = window.location.host.split('.')[0]; if(subd == 'www' && (u_cc == 'mx' || u_cc == 'us')){ }else{ var stm_hl = document.getElementById('header-locale'); if(stm_hl == null) { return true; } if(typeof(stm_hl)=="object" && typeof(stm_hl.innerHTML) == "string") { stm_hl.innerHTML = ctry_str; } } }