function florenceoregoncoastdate() {

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

var months=new Array(12);
months[0]="January";
months[1]="February";
months[2]="March";
months[3]="April";
months[4]="May";
months[5]="June";
months[6]="July";
months[7]="August";
months[8]="September";
months[9]="October";
months[10]="November";
months[11]="December";

var digital = new Date();
var da = digital.getDate();
var mo = months[digital.getMonth()];
var weekday = daysofweek[digital.getDay()];
var ye = digital.getFullYear();
dispDate =  weekday + ", " + mo + " " + da + ", " + ye;

if (document.getElementById("florenceoregoncoastdateid"))
{
	document.getElementById("florenceoregoncoastdateid").innerHTML = dispDate;
	setTimeout("florenceoregoncoastdate()", 1000);
}

}