function afficherAssociationsParActivites(id){
	var activite = document.getElementById('typeActivite'+id).value;
	
	if(activite != -1){
		if(activite == 0){
			document.location.href = 'associations.php?categorie='+id;
		}
		else {
			document.location.href = 'associations.php?categorie='+id+'&activite='+activite;
		}
	}
}
