// JavaScript Document
function write_date()
{
		today = new Date();
		month = today.getMonth();
		if (month == 0) document.write('JANUARY');
		if (month == 1) document.write('FEBUARY');
		if (month == 2) document.write('MARCH');
		if (month == 3) document.write('APRIL');
		if (month == 4) document.write('MAY');
		if (month == 5) document.write('JUNE');
		if (month == 6) document.write('JULY');
		if (month == 7) document.write('AUGUST');
		if (month == 8) document.write('SEPTEMBER');
		if (month == 9) document.write('OCTOBER');
		if (month == 10) document.write('NOVEMBER');
		if (month == 11) document.write('DECEMBER');
		date = today.getDate();
		year=today.getYear();
		document.write (' ', date, ', 2008');
}
