function afficherCalendrier(input)
{
    if (input.id == 'date_debut')
        showCalendrier(
            'mois_debut', 
            'jour_debut', 
            input, 
            0, 
            130
            );
    if (input.id == 'date_fin')
        showCalendrier(
            'mois_fin', 
            'jour_fin', 
            input, 
            0, 
            130
            );
}

