function dispDate()
{
	mdt= new Date();
	mday = mdt.getDay();
	mdate = mdt.getDate();
	mmnth = (mdt.getMonth()+1);
	myear = mdt.getFullYear();

	if(mday==1)
		wday="Monday";
	else if(mday==2)
		wday="Tuesday";
	else if(mday==3)
		wday="Wednesday";
	else if(mday==4)
		wday="Thursday";
	else if(mday==5)
		wday="Friday";
	else if(mday==6)
		wday="Saturday";
	else
		wday="Sunday";

	if(mmnth==1)
		wmnth="Jan.";
	else if(mmnth==2)
		wmnth="Feb.";
	else if(mmnth==3)
		wmnth="Mar.";
	else if(mmnth==4)
		wmnth="Apr.";
	else if(mmnth==5)
		wmnth="May.";
	else if(mmnth==6)
		wmnth="Jun.";
	else if(mmnth==7)
		wmnth="Jul.";
	else if(mmnth==8)
		wmnth="Aug.";
	else if(mmnth==9)
		wmnth="Sep.";
	else if(mmnth==10)
		wmnth="Oct.";
	else if(mmnth==11)
		wmnth="Nov.";
	else
		wmnth="Dec.";

	return wday+", "+mdate+" "+wmnth+" "+myear
}
