// Fonction gérant le popUp affichant la liste de mots-clés
function fct_popUpMotCle(parametresGet, valWidth, valHeight, valLeft, valTop) {	
  var xpage = parseInt((screen.width-valWidth)-15);
  var ypage = parseInt((screen.height-valHeight)/2);
  w=window.open(parametresGet, "monPopUp", "top="+ypage+", left="+xpage+", height="+valHeight+", width="+valWidth+", toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=0, resizable=0");
  w.document.close();
  w.focus();
}