 <!-- 
      
	var now = new Date();

        // Modify the variables days/months to display in the format
	// you wish (eg.  01-12/January-December/Jan-Dec or Sun/Sunday)
	
	var days = new Array('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday');
	var months = new Array('Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec');

	var date = ((now.getDate()<10) ? "0" : "")+ now.getDate();

	function longyear(number)
	{
		return (number < 1000) ? number + 1900 : number;
	}
	
	// Sample date formats
	// Today 1 format = YYYY.MM.DD
	today1 =  (longyear(now.getYear())) + "." +
	months[now.getMonth()] + "." +	date;	

	// Today 2 format = MM-DD-YYYY
	today2 = (months[now.getMonth()] + " " + date + ", " +
	longyear(now.getYear()));


	// Today 3 format = Day - MM/DD/YYYY
	today3 = (days[now.getDay()] + " - " + months[now.getMonth()] +
	"/" + date + "/" + longyear(now.getYear()));

	document.write("<font color=black>&nbsp;" + today2+ "</font>");

	//  End -->


