function voter_ajout_film(id) {
	var xhr_object = getXhr();
	var fichier = 'voter-ajouts-s.php?id='+id;
	xhr_object.open("GET", fichier, true);
	xhr_object.send(null);
	xhr_object.onreadystatechange = function() {
		if (xhr_object.readyState == 4 && xhr_object.status == 200) {
			var resultat = xhr_object.responseText;
			if(resultat != null) document.getElementById('film'+id).innerHTML = '<b>A voté, <i>'+resultat+'</i> votes</b>';
		}
	}
}