
		  {
		    var todayDate = new Date();
		    var day = todayDate.getDay();
		    var date = todayDate.getDate();
		    var year = todayDate.getYear();

		    if (todayDate.getDay() == 0) { theDay = "<FONT COLOR=#FF0000>Sunday</FONT>"};
		    if (todayDate.getDay() == 1) { theDay = "<FONT COLOR=#00DDFF>Monday</FONT>"};
		    if (todayDate.getDay() == 2) { theDay = "<FONT COLOR=#0080FF>Tuesday</FONT>"};
		    if (todayDate.getDay() == 3) { theDay = "<FONT COLOR=#0080FF>Wednesday</FONT>"};
		    if (todayDate.getDay() == 4) { theDay = "<FONT COLOR=#0080FF>Thursday</FONT>"};
		    if (todayDate.getDay() == 5) { theDay = "<FONT COLOR=#0080FF>Friday</FONT>"};
		    if (todayDate.getDay() == 6) { theDay = "<FONT COLOR=#0080FF>Saturday</FONT>"};

		    if (todayDate.getMonth() == 0)  { theMonth = 'January'};
		    if (todayDate.getMonth() == 1)  { theMonth = 'February'};
		    if (todayDate.getMonth() == 2)  { theMonth = 'March'};
		    if (todayDate.getMonth() == 3)  { theMonth = 'April'};
		    if (todayDate.getMonth() == 4)  { theMonth = 'May'};
		    if (todayDate.getMonth() == 5)  { theMonth = 'June'};
		    if (todayDate.getMonth() == 6)  { theMonth = 'July'};
		    if (todayDate.getMonth() == 7)  { theMonth = 'August'};
		    if (todayDate.getMonth() == 8)  { theMonth = 'September'};
		    if (todayDate.getMonth() == 9)  { theMonth = 'October'};
		    if (todayDate.getMonth() == 10) { theMonth = 'November'};
		    if (todayDate.getMonth() == 11) { theMonth = 'December'};

		    document.write('&nbsp;',theDay,' - ',theMonth,' ',date,' , ',year);
		  }

