function PopupCentrer(page,largeur,hauteur,options) {
  var top=(screen.height-hauteur)/2;
  var left=(screen.width-largeur)/2;
  window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
}
function switchLanguage()
{
  var str = location.href;
  if (str.indexOf("/fr/") == -1) {
    window.location = str.replace("/en/","/fr/");
  } else {
    window.location = str.replace("/fr/","/en/");
  }
}

