function incremente_vues_video(id_video, incremente){
	if(incremente=="1"){
		//alert("on incremente " + id_video);
		var url = contextPath+ "/news.com/commun/ajax/incremente_vues_video.jspz" ;
		var pars = "";
		pars += "&id_video="+id_video;
		var myAjax = new Ajax.Request(url, {method: "post", parameters: pars, onComplete: traiteReponseIncrementeVues, onFailure: afficheErreurIncrementeVues, asynchronous:true});
	}else{
		//alert("on n'incrémente pas " + id_video);
	}
}

function traiteReponseIncrementeVues(res){
	//alert("ca a marché");
}

function afficheErreurIncrementeVues(res){
	//alert("ca a pas marché " + res);
}