<!-- Begin Display of Current Date Javascript

	document.write('<span style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; font-style: italic; color:  ');

	if (d[today.getDay()]=="Sunday")
		document.write("#FF0000");
	if (d[today.getDay()]=="Monday")
		document.write("#FF6600");
	if (d[today.getDay()]=="Tuesday")
		document.write("#0066FF");
	if (d[today.getDay()]=="Wednesday")
		document.write("#CC0000");
	if (d[today.getDay()]=="Thursday")
		document.write("#009933");
	if (d[today.getDay()]=="Friday")
		document.write("#CC3300");
	if (d[today.getDay()]=="Saturday")
		document.write("#CC0099");

	document.write('">');

	document.write(d[today.getDay()]+", "+m[today.getMonth()]+" ");
	if (year >= 2000)
		document.write(day+", "+year+". ")
		else 
		document.write(day+", "+(1900 + year)+". ");

	document.write('</span>');

// End of script -->
