 function MiniWin(location) { OpenWin = this.open(location, "MiniWindow", "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,Width=600,Height=500"); 
} function FlashWin(location) { OpenWin = this.open(location, "MiniWindow", "toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,Width=550,Height=450"); 
} function mediaplayer(location) { OpenWin = this.open(location, "MiniWindow", 
"toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,Width=250,Height=220"); 
} function ViewWin(location) { OpenWin = this.open(location, "MiniWindow", "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no,Width=600,Height=550"); 
} function jumpInside(sel){ location.href = sel.options[sel.selectedIndex].value; 
} function NewWin(location) { OpenWin = this.open(location, "MiniWindow", "toolbar=yes,menubar=yes,location=yes,scrollbars=yes,resizable=yes,Width=800,Height=600"); 
} 

{ // Store the date in a variable
d = new Date()
day = ""

// Get the current day and convert it to the name of the day
dayValue = d.getDay()
if (dayValue == 0)
    day += "Sunday"
else if (dayValue == 1)
    day += "Monday"
else if (dayValue == 2)
    day += "Tuesday"
else if (dayValue == 3)
    day += "Wednesday"
else if (dayValue == 4)
    day += "Thursday"
else if (dayValue == 5)
    day += "Friday"
else if (dayValue == 6)
    day += "Saturday"
// Write the day to the page
<!--
// Store the date in a variable
d = new Date()
dateText = ", "

// Get the current month and convert it to the name of the month
monthValue = d.getMonth()
dateText += " "
if (monthValue == 0)
    dateText += "January"
if (monthValue == 1)
    dateText += "February"
if (monthValue == 2)
    dateText += "March"
if (monthValue == 3)
    dateText += "April"
if (monthValue == 4)
    dateText += "May"
if (monthValue == 5)
    dateText += "June"
if (monthValue == 6)
    dateText += "July"
if (monthValue == 7)
    dateText += "August"
if (monthValue == 8)
    dateText += "September"
if (monthValue == 9)
    dateText += "October"
if (monthValue == 10)
    dateText += "November"
if (monthValue == 11)
    dateText += "December"

// Get the current year; if it's before 2000, add 1900

year = (d.getYear())
if (d.getYear() < 2000) 
    dateText += " " + d.getDate() + ", " + (1900 + d.getYear())
else 
    dateText += " " + d.getDate() + ", " + (d.getYear())

//-->
}