// JavaScript Document
	
	//function ShowDate(){
		
		//Date & TIME
		var now= new Date();
	    var theDay= now.getDay();
		var theMonth = now.getMonth();
		var theDate = now.getDate()
		//to work around the year issues with IE+
		function getFullYear(now) {
			var y= now.getYear();
			if (y<1000) y+= 1900;
			return y;
			}
		var theYear = getFullYear(now);
		
		switch(theDay) {
			case 0:
				theDay = "Sunday";
				break;
			case 1: 
				theDay = "Monday";
				break;
			case 2:
			 	theDay = "Tuesday";
			case 3:
				theDay = "Wednesday";
				break;				
			case 4:
				theDay = "Thursday";
				break;
			case 5:
				theDay = "Friday";
				break;
			case 6:
				theDay = "Saturday";
				break;
			}
		switch(theMonth) {
			case 0:
				theMonth = "January";
				break;
			case 1: 
				theMonth = "February";
				break;
			case 2:
				theMonth = "March";
				break;
			case 3:
				theMonth = "April";
				break;
			case 4: 
				theMonth = "May";
				break;
			case 5:
				theMonth = "June";
				break;
			case 6:
				theMonth = "July";
			    break;
			case 7: 
				theMonth = "August";
				break;
			case 8:
				theMonth = "September";
				break;
			case 9: 
				theMonth = "October";
				break;
			case 10:
				theMonth = "November";
				break;
			case 11:
				theMonth = "December";
				break;
			}
		
		var todaysDate = theDay + ", " + theMonth + " " +theDate.toString() + ", " + theYear;
		todaysDate = todaysDate.toString();
		document.write(todaysDate);
		//return todaysDate
	//}