/*******************************************************************************************************/
/*                                                                                                     */
/*  Description................:  Fonctions Javascript pour la gestion des WaitButton.                 */
/*  Type.......................:  Fichier Javascript                                                   */
/*  Auteur.....................:  Maxime Jobin                                                         */
/*  Date de création...........:  2009-06-03                                                           */
/*  Date de modification.......:  2009-06-03                                                           */
/*                                                                                                     */
/*******************************************************************************************************/

/*****************************************************************************/
/* FONCTIONS                                                                 */
/*****************************************************************************/

/*=============================================================================*
	Remplace le bouton par son texte d'attente.
	@param bouton_nom Nom du bouton concerné
/*=============================================================================*/
function ButtonClick(bouton_nom, blnShow)
{
  var bouton = document.getElementById('btn' + bouton_nom);
	var txtPatientez = document.getElementById('txt' + bouton_nom);
	bouton.style.display = "none";			
	txtPatientez.style.display = "";
}


