<!--

/*****************************************************
 * "Today's Date" was created by John Eikamp
 * email John at john@eaglepeak.com
 */

function getToday() {
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(" Febuary")
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")
	document.write(", ")
now = new Date()
	document.write(now.getYear())
	document.write(".")

}

// end hiding script-->
