// JavaScript Document Last Updated

function switchLanguage(){
  s = new String(window.location);
  s = s.replace("/english","/french");
  window.location=s;
}

function switchLanguagefr(){
  s = new String(window.location);
  s = s.replace("/french","/english");
  window.location=s;
}


