now = new Date()
if(0 == now.getDay())
	document.write(" SUNDAY ")
else if(1 == now.getDay())
	document.write(" MONDAY ")
else if(2 == now.getDay())
	document.write(" TUESDAY ")
else if(3 == now.getDay())
	document.write(" WEDNESDAY ")
else if(4 == now.getDay())
	document.write(" THURSDAY ")
else if(5 == now.getDay())
	document.write(" FRIDAY ")
else if(6 == now.getDay())
	document.write(" SATURDAY ")

	document.write(", ")
now = new Date()
	document.write(now.getDate())
now = new Date()
if(0 == now.getMonth())
	document.write(" JANUARY ")
else if(1 == now.getMonth())
	document.write(" FEBRUARY ")
else if(2 == now.getMonth())
	document.write(" MARCH ")
else if(3 == now.getMonth())
	document.write(" APRIL ")
else if(4 == now.getMonth())
	document.write(" MAY ")
else if(5 == now.getMonth())
	document.write(" JUNE ")
else if(6 == now.getMonth())
	document.write(" JULY ")
else if(7 == now.getMonth())
	document.write(" AUGUST ")
else if(8 == now.getMonth())
	document.write(" SEPTEMBER ")
else if(9 == now.getMonth())
	document.write(" OCTOBER ")
else if(10 == now.getMonth())
	document.write(" NOVEMBER ")
else if(11 == now.getMonth())
	document.write(" DECEMBER ")
	
now = new Date()
	document.write(now.getYear())
	document.write(".")