/** Fonctions qui chargent les liste des pays **/


// 1ère liste Home Page CAT VL (uk)
function ajouteListeCAT_VL(){
  for (i=0; i<tableauNomPaysCAT_VL.length; i++) {
  	document.forms.COUNTRY.ID_COUNTRY1.options[document.forms.COUNTRY.ID_COUNTRY1.options.length]=new Option(tableauNomPaysCAT_VL[i],tableauFichierPaysCAT_VL[i]);    
  }
  /*
   * Lignes de débuggages
   */
		  //alert('lenght:'+document.forms.COUNTRY.ID_COUNTRY1.options.length);
		  //alert('value : '+document.forms.COUNTRY.ID_COUNTRY1.options[document.forms.COUNTRY.ID_COUNTRY1.options.length-1].value);
		  //alert('ajout de '+tableauNomPays[i]);
}


// 2nde liste CAT CL (uk)
function ajouteListeCAT_CL(){
  for (i=0; i<tableauNomPaysCAT_CL.length; i++) {
  	document.forms.COUNTRY2.ID_COUNTRY2.options[document.forms.COUNTRY2.ID_COUNTRY2.options.length]=new Option(tableauNomPaysCAT_CL[i],tableauFichierPaysCAT_CL[i]);    
  }
  
  /*
   * Lignes de débuggages
   */
		  //alert('lenght:'+document.forms.COUNTRY.ID_COUNTRY1.options.length);
		  //alert('value : '+document.forms.COUNTRY.ID_COUNTRY1.options[document.forms.COUNTRY.ID_COUNTRY1.options.length-1].value);
		  //alert('ajout de '+tableauNomPaysCAT_CL[i]);
}
