var Today=new Date();//Today is the Date object
var ThisDay=Today.getDay();//This variable is the Numerical value of the day of the week 
var ThisDate=Today.getDate();//This is the Numerical value of the Day of the Month
var ThisMonth=Today.getMonth()+1;//This is the Month 1 must be added because arrays are zero based
var ThisYear=Today.getFullYear();  //included if you wish to insert the year
var Day=DayTxt(ThisDay);//This function passes the numerical value of the day of the week to the function DayTxt to give it its alpha name
var Month=MonthTxt(ThisMonth)//This function passes the numerical value of the month to the function DayTxt to give it its alpha name

function DayTxt (DayNumber) {
	//Establish an array to hold the alpha values of the days of the week
	var Day=new Array();
	Day[0]="dimanche";
	Day[1]="lundi";
	Day[2]="mardi";
	Day[3]="mercredi";
	Day[4]="jeudi";
	Day[5]="vendredi";
	Day[6]="samedi";
	//return the appropriate day of the week, setting Day to this value
	return Day[DayNumber];
}

function MonthTxt (MonthNumber) {
	//Establish an array to hold the alpha values of the months of the year
	var Month=new Array(); 	
	Month[1]="Janvier";
	Month[2]="Février";
	Month[3]="Mars";
	Month[4]="Avril";
	Month[5]="Mai";
	Month[6]="Juin";
	Month[7]="Juillet";
	Month[8]="Août";
	Month[9]="Septembre";
	Month[10]="Octobre";
	Month[11]="Novembre";
	Month[12]="Décembre";
	//return the appropriate Month, setting Month to this value
	return Month[MonthNumber];
}

var PrintDate = Day+", "+Month+" "+ThisDate+", "+ThisYear;