function fncProperDate() {
	var oneDate = new Date()
	var DateText = "Palatino"
	monthNames = new MakeArray(12)
	monthNames[1] = "January"; monthNames[2] = "February"; monthNames[3] = "March"; monthNames[4] = "April"; monthNames[5] = "May";	monthNames[6] = "June"; monthNames[7] = "July";	monthNames[8] = "August"; monthNames[9] = "September"; monthNames[10] = "October";	monthNames[11] = "November"; monthNames[12] = "December"
	dayNames = new MakeArray(7)
	dayNames[1] = "Sunday"; dayNames[2] = "Monday";	dayNames[3] = "Tuesday";;dayNames[4] = "Wednesday";	dayNames[5] = "Thursday"; dayNames[6] = "Friday";;dayNames[7] = "Saturday"
	var theDay = dayNames[oneDate.getDay() + 1]
	var theMonth = monthNames[oneDate.getMonth() + 1]
	var theYear = oneDate.getYear()
	if (theYear < 1000) { theYear += 1900 }
	TheText = theDay + ", " + theMonth + " " + oneDate.getDate() + ", " + theYear
	DateText = TheText
	document.write(DateText)
}

function MakeArray(n) {
	this.length = n
	return this
}
function flipBgColor(This, color) { if(This.style) { This.style.background = color;} return true; }


<!-- navBar -->

function navBar( tableCellRef, hoverFlag) {
	    if ( hoverFlag ) {
	        tableCellRef.style.backgroundColor = '#99BBCC';
		tableCellRef.style.borderBottomColor = '#A5C3D2';
		tableCellRef.style.borderLeftColor = '#86A4B3';
		tableCellRef.style.borderRightColor = '#A5C3D2';
		tableCellRef.style.borderTopColor = '#86A4B3';
	    } else {
	        tableCellRef.style.backgroundColor = '#E5EEF2';
		tableCellRef.style.borderBottomColor = '#C9D1D4';
		tableCellRef.style.borderLeftColor = '#E8F0F3';
		tableCellRef.style.borderRightColor = '#C9D1D4';
		tableCellRef.style.borderTopColor = '#E8F0F3';
	    }
	}
	function navClick( tableCellRef, url ) {
	    navBar( tableCellRef, 0);
	    exit=false;
	    window.location.href = url;
	}

