function compteur() {
	var nbclic;
	var i=0;
	var expr = $(this).attr("id");
	var pos = expr.indexOf("html",i);
	if (pos!=-1) {var type = "html";} else {var type = "txt";}
	
	$.ajax({
		type: "GET",
		url: "/install-sagitone/nbclick_"+type+".txt",
		success: function(data) {
			nbclic = Number(data); nbclic++;
			datas = "nbclic="+nbclic+"&type="+type;
			$.ajax({
				type: "POST",
				url: "/install-sagitone/compteur_write.php",
				data: datas,
				success: function() {console.log(nbclic);}
			});
		}	
	});	
}

document.getElementById("sagitone_html_list").addEventListener("click",compteur,false);
document.getElementById("sagitone_txt_list").addEventListener("click",compteur,false);
