function getLang(){
  var url = document.location.href.toLowerCase();
  if(url.indexOf("yourstyle")!=-1) return 'en';
  if(url.indexOf("tonstyle")!=-1) return 'fr';
  return 'en';
}