function gettheDate() 
{
	Todays = new Date();
	Mnth = Todays.getMonth()+ 1;
	if (Mnth == 1) {
		Month = "January";
	}
	if (Mnth == 2) {
		Month = "February";
	}
	if (Mnth == 3) {
		Month = "March";
	}
	if (Mnth == 4) {
		Month = "April";
	}
	if (Mnth == 5) {
		Month = "May";
	}
	if (Mnth == 6) {
		Month = "June";
	}
	if (Mnth == 7) {
		Month = "July";
	}
	if (Mnth == 8) {
		Month = "August";
	}
	if (Mnth == 9) {
		Month = "September";
	}
	if (Mnth == 10) {
		Month = "October";
	}
	if (Mnth == 11) {
		Month = "November";
	}
	if (Mnth == 12) {
		Month = "December";
	}

	Year = Todays.getFullYear();
	
	TheDate = Month + " - " + Todays.getDate() + " - " + Year
	return (TheDate);
}

