function verif(nbr)
{

	total=0;
	for(i=0;i<nbr;i++)
	{
		total+=parseInt(document.getElementById("input"+i).value);
	}
	if (document.getElementById("inputadh").checked) total+=1;
	if ((document.getElementById("inputado")!=null) && (document.getElementById("inputado").checked)) total+=1;
	if (total==0)
	{
		alert("Selectionner au minimum un article.");
		return false;
	}
	return true;
}
