var rightnow= new Date();
var weekday= rightnow.getDay();
var themonth= rightnow.getMonth();
var thedate= rightnow.getDate();
var theyear= rightnow.getYear();

// Set the Days of the Week
var someday= new Array(7)
	someday[0]="Sunday";
	someday[1]="Monday";
	someday[2]="Tuesday";
	someday[3]="Wednesday";
	someday[4]="Thursday";
	someday[5]="Friday";
	someday[6]="Saturday";

// Set the Abbreviations for Months
var somemonth= new Array(12)
	somemonth[0]="Jan";
	somemonth[1]="Feb";
	somemonth[2]="Mar";
	somemonth[3]="Apr";
	somemonth[4]="May";
	somemonth[5]="Jun";
	somemonth[6]="Jul";
	somemonth[7]="Aug";
	somemonth[8]="Sep";
	somemonth[9]="Oct";
	somemonth[10]="Nov";
	somemonth[11]="Dec";

//Set the Year Data for 4 Digits
	if (theyear<2000)
		theyear+=1900;