function switchLng(l){var s=document.location.toString();if (l=='en'){if(s.indexOf('/tc/')>0 && l!='tc'){location.href=s.replace('/tc/','/');}else if(s.indexOf('/sc/')>0 && l!='sc'){location.href=s.replace('/sc/','/');}}else {if(s.indexOf('/tc/')>0){if(l!='tc') {location.href=s.replace('/tc/','/'+l+'/');}}else if(s.indexOf('/sc/')>0){if(l!='sc') {location.href=s.replace('/sc/','/'+l+'/');}}else{var x=s.lastIndexOf('/');location.href=s.substr(0,x)+'/'+l+'/'+s.substr(x+1);}}return false;}
