    	var date1 = new Date();

		var theWeekDay = date1.getDay();

		if (theWeekDay == 0) {printDay = "Sunday"};

		if (theWeekDay == 1) {printDay = "Monday"};

		if (theWeekDay == 2) {printDay = "Tuesday"};

		if (theWeekDay == 3) {printDay = "Wednesday"};

		if (theWeekDay == 4) {printDay = "Thursday"};

		if (theWeekDay == 5) {printDay = "Friday"};

		if (theWeekDay == 6) {printDay = "Saturday"};

		var theDay = date1.getDate();

		var theMonth = date1.getMonth();

		if (theMonth == 0) {printMonth = "January"};

		if (theMonth == 1) {printMonth = "Febuary"};

		if (theMonth == 2) {printMonth = "March"};

		if (theMonth == 3) {printMonth = "April"};

		if (theMonth == 4) {printMonth = "May"};

		if (theMonth == 5) {printMonth = "June"};

		if (theMonth == 6) {printMonth = "July"};

		if (theMonth == 7) {printMonth = "August"};

		if (theMonth == 8) {printMonth = "September"};

		if (theMonth == 9) {printMonth = "October"};

		if (theMonth == 10) {printMonth = "November"};

		if (theMonth == 11) {printMonth = "December"};		

		var theYear = date1.getYear();
		
		theYear = 1 * theYear + 1900;

        document.write(printDay + " - " + printMonth + " " + theDay + ", " + theYear);