function displayMonth(pNumPage){
	var value = document.getElementById('listeMoisManifsLEI').value;
	value = value.split('_');
	
	var month = value[0];
	var year = value[1];
	
	document.location.href = 'manifestations.php?page='+pNumPage+'&month='+month+'&year='+year;
}

function displayMonthTown(pTown, pNumPage){
	var value = document.getElementById('listeMoisManifsLEI').value;
	value = value.split('_');
	
	var month = value[0];
	var year = value[1];
	
	document.location.href = 'manifestations.php?commune='+pTown+'&page='+pNumPage+'&month='+month+'&year='+year;
}