function homeRecherche(autoNum)
{
	new Ajax.Request("/home/recherche.php",
	{
		method: 'post',
		asynchronous: true,
		contentType: 'application/x-www-form-urlencoded',
		encoding: 'UTF-8',
		parameters: 
		{
			"autoNum" :  autoNum
		},			
		
		onSuccess: function(reponse) 
		{
			document.getElementById("listePhoto").innerHTML = reponse.responseText;
		}
		
	});
}