function writeDate(){	var now   = new Date();	var day   = now.getDay();	var djour = now.getDate();	var month = now.getMonth();	var year  = now.getYear();	var mois  = "";	var jour  = "";	//ANNEE	if(year < 200)		year += 1900;	//MOIS	if(month == 0)		mois = "janvier";	else if(month == 1)		mois = "fevrier";	else if(month == 2)		mois = "mars";	else if(month == 3)		mois = "avril";	else if(month == 4)		mois = "mai";	else if(month == 5)		mois = "juin";	else if(month == 6)		mois = "juillet";	else if(month == 7)		mois = "aout";	else if(month == 8)		mois = "septembre";	else if(month == 9)		mois = "octobre";	else if(month == 10)		mois = "novembre";	else if(month == 11)		mois = "decembre";	//JOUR	if(day == 0)		jour = "Dimanche";	else if(day == 1)		jour = "Lundi";	else if(day == 2)		jour = "Mardi";	else if(day == 3)		jour = "Mercredi";	else if(day == 4)		jour = "Jeudi";	else if(day == 5)		jour = "Vendredi";	else if(day == 6)		jour = "Samedi";	document.open();	document.write(jour + " " + djour + " " + mois + " " + year);	document.close();}
