<!--
function makeMonthArray() {
        this.length=12;
        this[1] = "JANUARY", this[2] = "FEBRUARY"; this[3] = "MARCH";
        this[4] = "APRIL", this[5] = "MAY"; this[6] = "JUNE";
        this[7] = "JULY", this[8] = "AUGUST"; this[9] = "SEPTEMBER";
        this[10] = "OCTOBER", this[11] = "NOVEMBER"; this[12] = "DECEMBER";
        return(this);
}

function makeDayArray() {
        this.length=7;
        this[1] = "SUNDAY", this[2] = "MONDAY"; this[3] = "TUESDAY";
        this[4] = "WEDNESDAY", this[5] = "THURSDAY"; this[6] = "FRIDAY";
        this[7] = "SATURDAY";
        return(this);
}

function writeDate() {
        attdate = new Date();
        monthName = new makeMonthArray();
        dayName = new makeDayArray();
        day = attdate.getDay() + 1;
        date = attdate.getDate();
        month = attdate.getMonth() + 1;
        year = attdate.getYear();
                sec = attdate.getSeconds()
        if(isNav4 == true)
        {
                if ( year >= 100 && year < 1900)
                {year = 2000 + year - 100;}
                else
                {year = "19" + year;}
        }
		year = "2010" ;
        dateStr  = dayName[day];
        dateStr += ", ";
        dateStr += monthName[month];
        dateStr += " ";
        dateStr += date;
        dateStr += ", ";
        dateStr += "2010";
        document.write(dateStr);
}


//-->