

function modifQte(typePrest,idprest,qte)
{
	new Ajax.Request('ajax.php',
	{
		method: 'post',
		parameters: 'typePrest='+typePrest+'&idprest='+idprest+'&qte='+qte,
		onSuccess: function(ajax)
		{
			$('qtt_' + typePrest + '_' + idprest).replace(ajax.responseText);
			
		}
	});
	
}

/*function mailKdo()
{
	if (document.formulaire.recevoir_bon.checked==false) $cacher = false;
	else $cacher = true;
	
	new Ajax.Request('ajax.php',
	{
		method: 'post',
		parameters: 'typePrest='+typePrest+'&idprest='+idprest+'&qte='+qte,
		onSuccess: function(ajax)
		{
			$('qtt_' + typePrest + '_' + idprest).replace(ajax.responseText);
			
		}
	});
}*/