function ChangeUrl(formulaire) 
   { 
   if (formulaire.ListeUrl.selectedIndex != 0) 
      { 
     var url ; 
     url = formulaire.ListeUrl.options[formulaire.ListeUrl.selectedIndex].value; 
     window.open(url,'_blank','toolbar=0, location=0, directories=0, status=0, scrollbars=1, resizable=1, copyhistory=0, menuBar=0'); 
       } 
   }

