
function affiche_date()
{
	var jour = new Array();
	jour[0]='Dimanche';
	jour[1]='Lundi';
	jour[2]='Mardi';
	jour[3]='Mercredi';
	jour[4]='Jeudi';
	jour[5]='Vendredi';
	jour[6]='Samedi';
	var mois = new Array();
	mois[0]='Jan.';
	mois[1]='Fév.';
	mois[2]='Mars';
	mois[3]='Avril';
	mois[4]='Mai';
	mois[5]='Juin';
	mois[6]='Juil.';
	mois[7]='Août';
	mois[8]='Sept.';
	mois[9]='Oct.';
	mois[10]='Nov.';
	mois[11]='Déc.';
	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); }
}
