/**
* Permet de masquer/afficher un bloc
*/
function showHide(idDiv)
{
	if(document.getElementById(idDiv).style.display == "none")
		document.getElementById(idDiv).style.display = "block" ;
	else
		document.getElementById(idDiv).style.display = "none" ;
}//fin fonction showHide

/**
 * Affiche une fenêtre de confirmation de suppression
 *
 * @param String Le lien
 * @param String Le message à afficher
 *
 * @return Bool True si OK, Fasle si ANNULER
 */
function confirme(theLink, theMessage)
{
    if (window.confirm(theMessage))
    document.location.href = theLink ;
} //fin confirme

