/**
 * Fonction pour mettre à jour les durées proposées en fonction de la date d'arrivée
*/
function init_durees_proposees(date_debut, traduction_semaine, traduction_jour, id_champ_duree_sejour) {           
                   
    var html = '<select id="divDureeSejour" name="duree">';                                         

    if (date_debut == '18/12/2010'){
      html = html + '<option value="7" >1 ' + traduction_semaine + '</option>'
      html = html + '<option value="8" >8 ' + traduction_jour + 's</option>';
    } else {
      if (date_debut == '19/12/2010'){
        html = html + '<option value="7" >1 ' + traduction_semaine + '</option>';
      } else {
        if (date_debut == '26/12/2010'){
          html = html + '<option value="7" >1 ' + traduction_semaine + '</option>';
        } else {
          if (date_debut == '02/01/2011'){
            html = html + '<option value="6" >6 ' + traduction_jour + 's</option>';
            html = html + '<option value="7" >1 ' + traduction_semaine + '</option>';
          } else {  
            // Durée Normale
            for(iDuree=1; iDuree<=4; iDuree++){ 
              if(iDuree>1){s = "s";}else{s = "";}
                html = html + '<option value="' + (iDuree*7) + '" >' + iDuree + ' ' + traduction_semaine + s + '</option>';
            }
          }                                        
        }
      }   
    }  

    html = html + '</select>';       
    
    if(typeof(id_champ_duree_sejour) == 'undefined' || id_champ_duree_sejour == '') {
        id_champ_duree_sejour = 'duree_sejour_proposee';
    }
                           
    document.getElementById(id_champ_duree_sejour).innerHTML = html;                       
}
//-->
