function AfficherAttente(nombouton,nomimage)		// affiche le message d'attente"
	{
	if (nomimage!="") document.getElementById(nomimage).className="montrer";
	if (nombouton!="") document.getElementById(nombouton).disabled=true;
	}

function retour(cible)		// retour page précédente 
	{
	if (cible=="1")	window.history.go(-1);
		else if (cible=="2") window.history.go(-2);
			else window.location.href=cible;
    }

