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]="Sunday";
	Day[1]="Monday";
	Day[2]="Tuesday";
	Day[3]="Wednesday";
	Day[4]="Thursday";
	Day[5]="Friday";
	Day[6]="Saturday";
	//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]="January";
	Month[2]="February";
	Month[3]="March";
	Month[4]="April";
	Month[5]="May";
	Month[6]="June";
	Month[7]="July";
	Month[8]="August";
	Month[9]="September";
	Month[10]="October";
	Month[11]="November";
	Month[12]="December";
	//return the appropriate Month, setting Month to this value
	return Month[MonthNumber];
}

var PrintDate = Day+", "+Month+" "+ThisDate+", "+ThisYear;
var PrintEnFrancais = Day+", "+Month+" "+ThisDate+", "+ThisYear;