function plusmoins(id,type) {
	var nb = document.forms['actualiser'].elements[id]
	if (type==2) 
		nb.value = parseInt(nb.value) + 1
	if (type==1 && parseInt(nb.value)>0)
		nb.value = parseInt(nb.value) - 1
	if (parseInt(nb.value) >= 0)
		document.forms['actualiser'].submit()
	}