function showCalendar(mois){
	if(document.getElementById('calendrier_mois_'+mois).style.display == 'block'){
		document.getElementById('calendrier_mois_'+mois).style.display = 'none';
	}
	else{
		document.getElementById('calendrier_mois_'+mois).style.display = 'block';
	}
}
