/* Affiche la date du jour au format jj/mm/aaaa */

Today = new Date;
Jour = Today.getDate();
if (Jour<10) {Jour="0"+Jour;}
Mois = (Today.getMonth())+1;
if (Mois<10) {Mois="0"+Mois;}
Annee = Today.getFullYear();
document.write(Annee + Mois + Jour);

/* sinon avec des espaces ca donne: document.write(Annee + "/" + Mois + "/" + Jour);*/

/*texte a inserer dans page html
<script language="javascript" type="text/javascript" src="http://www.VOTRE_SITE/DateJour.js"></script>
<noscript>DateJour</noscript>
*/

