function search(){
var  search = document.getElementById("search_input").value;

window.location.href = 'search.php?search='+search+'';
}

var xhr = null; 
function getXhr()
{
     if(window.XMLHttpRequest)xhr = new XMLHttpRequest(); 
else if(window.ActiveXObject)
  { 
  try{
     xhr = new ActiveXObject("Msxml2.XMLHTTP");
     } catch (e) 
     {
     xhr = new ActiveXObject("Microsoft.XMLHTTP");
     }
  }
else 
  {
  alert("Votre navigateur ne supporte pas les objets XMLHTTPRequest..."); 
  xhr = false; 
  } 
  
  return xhr;
}



function vote_internaute(id,action){
		var xhr = getXhr()
		// On défini ce qu'on va faire quand on aura la réponse
		xhr.onreadystatechange = function(){

			  if(xhr.readyState == 4 && xhr.status == 200)
			  {
				alert(xhr.responseText);
			  }
}
		xhr.open("POST","ajax/avis-produit.php",true);
		xhr.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
		xhr.send("id="+id+"&action="+action+"");
	}