<!--
 function J_Actualiser_Liste(variable,valeur)
  {
   for(i=0;i<eval(variable+'.length');i++)
    {
    if (eval(variable+'.options['+i+'].value=="'+valeur+'"'))
     eval(variable+'.options['+i+'].selected=true');
    }
  }
  
 function J_Ajouter_Option(variable,valeur,libelle)
    {
    	if (document.all)    	 
    	 {
    	 	// ie
    	 	var opt = document.createElement("OPTION");
    	 	opt.text = libelle;
    	 	opt.value = valeur;
    	 	eval(variable+".add(opt)");
    	 }
     else
      {
      	// ns
      	var opt = new Option(libelle,valeur);
    	 	eval(variable+".options["+variable+".length] = opt");
      }
    }
    
   function J_Supprimer_Options(variable)
    {
    	eval("var stop = "+variable+".length");
    	if (document.all)
    	 {
    	 	// ie
    	 	for (i=0;i<stop;i++)
    	 	 eval(variable+".remove(0)");
    	 }
    	else
    	 {
    	 	// ns
    	 	for (i=0;i<stop;i++)
    	 	 eval(variable+".options[0]=null");
    	 }
    }

//-->
