function gestionClic(fichier,param)
{
    var url = fichier;
    var myAjax = new Ajax.Request(
            url,
            {
                method: 'get',
                onComplete: gestionReponse,
				parameters: param,
				
				
            });
	//var div = "resultat";
} 



function gestionReponse(xhr,div)
{
    if (xhr.status == 200)
    {
        $('resultat').innerHTML = xhr.responseText;
    }
    else
    {
        $('resultat').innerHTML = xhr.status;
    }
}// gestionClic()
