function afficheForm(id){
	var a = document.getElementById("montant"+id);
	var m = document.getElementById("bOrdre"+id);
    var d = document.getElementById("divBouton"+id);

	if (a.style.display == "none"){
		a.style.display = "block";
		m.style.display = "block";
        d.style.display = "block";
	} else {
		a.style.display = "none";
		m.style.display = "none";
        d.style.display = "none";
	}

	return false;
}

function showConfirm(id,bool){
	var conf = document.getElementById('confirm'+id);
	if (bool){
		conf.style.display = "block";
	} else {
		conf.style.display = "none";
	}
	return false;
}