// JavaScript Document
function affiche_date()
{
jour = new Array();
jour[0]='Dimanche';
jour[1]='Lundi';
jour[2]='Mardi';
jour[3]='Mercredi';
jour[4]='Jeudi';
jour[5]='Vendredi';
jour[6]='Samedi';
mois = new Array();
mois[0]='Janvier';
mois[1]='Février';
mois[2]='Mars';
mois[3]='Avril';
mois[4]='Mai';
mois[5]='Juin';
mois[6]='Juillet';
mois[7]='Août';
mois[8]='Septembre';
mois[9]='Octobre';
mois[10]='Novembre';
mois[11]='Décembre';
var my_date= new Date();
var year=my_date.getYear();
var month=my_date.getMonth();
var day=my_date.getDay();
var date=my_date.getDate();
if (navigator.appName=="Netscape")
{
	year%=100;
	if (year<10)
		document.write(jour[day] + " " + date + " " + mois[month] + " 200" + year);
	else {document.write(jour[day] + " " + date + " " + mois[month] + " 20" + year);}
}
else {document.write(jour[day] + " " + date + " " + mois[month] + " " + year);}
}

