function displaydate()
{
	var s = "";
	var d = new Date();
	var thisday = d.getDay();
	var thismonth = d.getMonth();
	var thisdate = d.getDate();
	var thisyear = d.getYear();

	switch(thisday)
	{
	case 0:
		thisday = "Sunday";
		break;
	case 1:
		thisday = "Monday";
		break;
	case 2:
		thisday = "Tuesday";
		break;
	case 3:
		thisday = "Wednesday";
		break;
	case 4:
		thisday = "Thursday";
		break;
	case 5:
		thisday = "Friday";
		break;
	case 6:
		thisday = "Saturday";
		break;
	}

	switch(thismonth)
	{
	case 0:
		thismonth = "January";
		break;
	case 1:
		thismonth = "February";
		break;
	case 2:
		thismonth = "March";
		break;
	case 3:
		thismonth = "April";
		break;
	case 4:
		thismonth = "May";
		break;
	case 5:
		thismonth = "June";
		break;
	case 6:
		thismonth = "July";
		break;
	case 7:
		thismonth = "August";
		break;
	case 8:
		thismonth = "September";
		break;
	case 9:
		thismonth = "October";
		break;
	case 10:
		thismonth = "November";
		break;
	case 11:
		thismonth = "December";
		break;
	}

	s = thisday + ", " + thismonth + " " + thisdate + ", " + thisyear;
	return(s);
}