<!-- JavaScript Follows
	var now = new Date();
	var date = now.getDate();
	var year = now.getYear();
	var month = now.getMonth();
		(month == 0) ? month = "JANUARY" :
		(month == 1) ? month = "FEBRUARY" :
		(month == 2) ? month = "MARCH" :
		(month == 3) ? month = "APRIL" :
		(month == 4) ? month = "MAY" :
		(month == 5) ? month = "JUNE" :
		(month == 6) ? month = "JULY" :
		(month == 7) ? month = "AUGUST" :
		(month == 8) ? month = "SEPTEMBER" :
		(month == 9) ? month = "OCTOBER" :
		(month == 10)? month = "NOVEMBER" :
		month = "DECEMBER";
	
	var timeValue = ""  +  month + " "  + date + ", " + year
	document.write ("<font face='arial, helvetica' size='+1' color='navy'><B>" + month
+ " "  + date + "</B>");
//JavaScript Ends -->
