
function affiche_date()
	{var jour = new Array();
	jour[0]='Dim.,';
	jour[1]='Lun.,';
	jour[2]='Mar.,';
	jour[3]='Mer.,';
	jour[4]='Jeu.,';
	jour[5]='Ven.,';
	jour[6]='Sam.,';
	
	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); }}
