function choose_activity(id_groupe) {
	if(id_groupe=="")window.location.replace("./spip.php?article8");
	else {
	$.get("spip.php?page=inc-liste_activite&id_groupe=" + id_groupe,
		function(data) {
			$("#activity").html(data);
		}		
	);
	}
}

function display_category(id_mot,langue) {
if(langue=='fr')window.location.replace("./spip.php?article8&id_mot=" + id_mot);
else window.location.replace("./spip.php?article23&id_mot=" + id_mot);
}

function recharger(langue) {
if(langue=='fr')window.location.replace("./spip.php?article8");
else window.location.replace("./spip.php?article23");
}


