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, ")
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.getDate())
document.write(", ")
now = new Date()

now = new Date()
	if (navigator.appName == "Netscape") {
		var year = now.getYear() + 1900;
		document.write(year)
	}
	else {
		document.write(now.getYear())
	}
document.write("")

if (document.layers) {
origWidth = innerWidth;
origHeight = innerHeight;}
function reDo() {
if (innerWidth != origWidth || innerHeight != origHeight)
location.reload();}
if (document.layers) onresize = reDo;
