// JavaScript Document Last Updated

// Language URL Switch
function switchLanguage(){
  s = new String(window.location);
  s = s.replace("/en","/fr");
  window.location=s;
}