
function afficherCommentaires(id)
{
	

	 $.post("comment.php", "idevent="+id,
	
	function(data){
		
		
 var ButtonJs = document.getElementById("ButtonJs"); 
   var CommentaireJs = document.getElementById("CommentaireJs"); 


CommentaireJs.innerHTML = data;

CommentaireJs.style.display="block";



 
	}
 );
 
 }
 




function envoyerCommentaires(id)
{
	
var CommentaireJs = document.getElementById("CommentaireJs"); 
var nom3 = document.getElementById("nom3"); 
var comment = document.getElementById("comment") ; 

var captchaCoo= document.getElementById("captchaCoo"); 

		var param="idevent="+id+"&nom3="+nom3.value+"&comment="+comment.value+"&action=ajouterC";
		
	 $.post("comment.php", param,
 
	function(data){
		
		
CommentaireJs.innerHTML = data;

 
	}
 );
}
 
 
 
function reload()

{

var Rcaptcha = document.getElementById("CommentCaptcha"); 

Rcaptcha.src="captcha/captcha.php?test="+(Math.random()*500000000)+"";



}


 function reload2()

{

var Rcaptcha = document.getElementById("CommentCaptcha2"); 

Rcaptcha.src="captcha/captchaCoo.php?test="+(Math.random()*500000000)+"";



}

