function set_function(){
   A_LIST = document.getElementsByTagName('a');
   for (i=0; i<A_LIST.length; i++)
   {
      if (A_LIST[i].className=='confirmer')
      {
         A_LIST[i].title='Opération ne pouvant être annulée';
         A_LIST[i].onclick = function(){
            return confirm('Attention cette opération ne peut être annulée');}
      }
      if (A_LIST[i].className=='popup')
      {
         A_LIST[i].title='S\'ouvre dans une nouvelle fenêtre';
         A_LIST[i].onclick = function(){
            window.open(this.href, "", "resizable=yes, menubar=yes, location=no, scrollbars=yes, status=yes, width=800, height=400"); // Ajouter ici les paramètres supplémentaires (width, height, resizable...)
            return false;}
      }
      if (A_LIST[i].className=='close')
      {
         A_LIST[i].title='Ferme la fenêtre';
         A_LIST[i].onclick = function(){
            window.close();
            return false;}
      }
   }
}
onload=set_function
