<!-- 
// FONCTIONS DIVERSES UTILES
// important :	1. Toutes ces fonctions nécessitent obligatoirement dans l'entete (head) de la page web :
//				  <script language="JavaScript1.2" type="text/javascript" src="fonctions_utiles_js.inc.js"></script>

// #SCRIPT AFFICHE_DATE_COMPLETE
// descriptif : afficher la date du jour au format francais complet
	// important :	Pour utiliser la fonction dans la page web :
	// 			insérer :   <script language="JavaScript1.2">affiche_date_complete();</script>  à l'endroit où l'on veut insérer la date.
function affiche_date_complete() {
	// Affichage de la date du jour
			Actuel = new Date();
			An=Actuel.toString();
			An= An.substring(An.length-4,An.length);
					if (Actuel.getMonth() == 0){ Mois = 'Janvier'};
					if (Actuel.getMonth() == 1){ Mois = 'Février'};
							if (Actuel.getMonth() == 2){ Mois = 'Mars'};
							if (Actuel.getMonth() == 3){ Mois = 'Avril'};
							if (Actuel.getMonth() == 4){ Mois = 'Mai'};
							if (Actuel.getMonth() == 5){ Mois = 'Juin'};
							if (Actuel.getMonth() == 6){ Mois = 'Juillet'};
							if (Actuel.getMonth() == 7){ Mois = 'Août'};
							if (Actuel.getMonth() == 8){ Mois = 'Septembre'};
							if (Actuel.getMonth() == 9){ Mois = 'Octobre'};
							if (Actuel.getMonth() == 10){ Mois = 'Novembre'};
							if (Actuel.getMonth() == 11){ Mois = 'Decembre'};
							if (Actuel.getDay() == 0){ Jour = 'Dimanche'};
							if (Actuel.getDay() == 1){ Jour = 'Lundi'};
							if (Actuel.getDay() == 2){ Jour = 'Mardi'};
							if (Actuel.getDay() == 3){ Jour = 'Mercredi'};
							if (Actuel.getDay() == 4){ Jour = 'Jeudi'};
							if (Actuel.getDay() == 5){ Jour = 'Vendredi'};
							if (Actuel.getDay() == 6){ Jour = 'Samedi'};
			document.write(Jour,' ',Actuel.getDate(),' ',Mois,' ',Actuel.getFullYear());
}


function mysh(idcible)
{
var cible;
cible = document.getElementById(idcible) ;
if (cible.style.display == "none")
{
cible.style.display = "" ;
} else {
cible.style.display = "none" ;
}
}


// -->	  
   
