
function ShowDate() {
//This date script by Rich Hamilton
DaysofWeek = new Array()
DaysofWeek[0]="Sunday"
DaysofWeek[1]="Monday"
DaysofWeek[2]="Tuesday"
DaysofWeek[3]="Wednesday"
DaysofWeek[4]="Thursday"
DaysofWeek[5]="Friday"
DaysofWeek[6]="Saturday"

Months = new Array()
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"

RightNow = new Date()

var day = DaysofWeek[RightNow.getDay()]
var date = RightNow.getDate()
var month = Months[RightNow.getMonth()]
var year = RightNow.getFullYear()
//var year = RightNow.getYear()+1900
var statement 
                                = ""
if(year>1999)
  {statement=day + ", " + month+ " " + date + ", " +year}
if(year>2020)
  {statement=day + ", " + month+ " " + date}
document.write(statement)
}

function RYOPop(sLoc) {
var xPos = (screen.width/2)-(550/2);
var yPos = (screen.height/2)-(550/2);
var pWin = null;
pWin = window.open(sLoc,"pWin", "height=2,width=2,status=0,menubar=0,location=0,resizable=1,titlebar=0,scrollbars=1,top=0,left=0");
pWin.moveTo (xPos, yPos);
pWin.resizeTo (550, 450);
pWin.focus ();
}
