<!--
window.onerror = noErrors;

function noErrors()
{
return true;
}

function navFlip(wImg, imgSrc)
{
if (document.images) document.images[wImg].src = imgSrc;
}
window.onError = null;

function makeArray(n)
{
this.length = n;
for (i = 1; i <= n; i++)
	{
	this[i] = 0;
	}
return this;
}
                
function writeDate()
{
var thisMonth = new makeArray(12);
thisMonth[0]  = "January";
thisMonth[1]  = "February";
thisMonth[2]  = "March";
thisMonth[3]  = "April";
thisMonth[4]  = "May";
thisMonth[5]  = "June";
thisMonth[6]  = "July";
thisMonth[7]  = "August";
thisMonth[8]  = "September";
thisMonth[9]  = "October";
thisMonth[10] = "November";
thisMonth[11] = "December";

var thisDayW = new makeArray(7)
thisDayW[0] = "Sunday";
thisDayW[1] = "Monday";
thisDayW[2] = "Tuesday";
thisDayW[3] = "Wednesday";
thisDayW[4] = "Thursday";
thisDayW[5] = "Friday";
thisDayW[6] = "Saturday";

var thisSuffix = new makeArray(31);
thisSuffix[0] = "st";
thisSuffix[1] = "nd";
thisSuffix[2] = "rd";
thisSuffix[3] = "th";
thisSuffix[4] = "th";
thisSuffix[5] = "th";
thisSuffix[6] = "th";
thisSuffix[7] = "th";
thisSuffix[8] = "th";
thisSuffix[9] = "th";
thisSuffix[10] = "th";
thisSuffix[11] = "th";
thisSuffix[12] = "th";
thisSuffix[13] = "th";
thisSuffix[14] = "th";
thisSuffix[15] = "th";
thisSuffix[16] = "th";
thisSuffix[17] = "th";
thisSuffix[18] = "th";
thisSuffix[19] = "th";
thisSuffix[20] = "st";
thisSuffix[21] = "nd";
thisSuffix[22] = "rd";
thisSuffix[23] = "th";
thisSuffix[24] = "th";
thisSuffix[25] = "th";
thisSuffix[26] = "th";
thisSuffix[27] = "th";
thisSuffix[28] = "th";
thisSuffix[29] = "th";
thisSuffix[30] = "st";

var today = new Date();
var dayW = today.getDay();
var dayM   = today.getDate();
var month = today.getMonth();
var year  = today.getFullYear();

return(thisDayW[dayW] + " " + dayM + thisSuffix[dayM - 1] + " " + thisMonth[month] + ", " + year + " ");
}

// -->