function fw(l){
/* Try immediately */
try{if(window.Weglot&&Weglot.switchTo){Weglot.switchTo(l);return;}}catch(e){}
/* Keep trying for 4 seconds */
var t=0,iv=setInterval(function(){
t++;
try{
if(window.Weglot&&Weglot.switchTo){
Weglot.switchTo(l);
clearInterval(iv);
}
}catch(e){}
if(t>16)clearInterval(iv);
},250);
}
top of page
bottom of page