// JavaScript Document

  function media(location) { OpenWin = this.open(location, "miniWindow", 
  "toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,Width=385,Height=385"); 
  
  } function newpage(location) { OpenWin = this.open(location, "miniWindow", 
  "toolbar=yes,menubar=no,location=no,scrollbars=yes,resizable=yes,Width=400,Height=400"); 

  } function jumpInside(sel){ location.href = sel.options[sel.selectedIndex].value; 
  }
 
 
 
  
  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"


dateText += " " + d.getDate() 
 
datemessage= day + dateText

// Get the current year; if it's before 2000, add 1900

  d = new Date()

dateYear= ""

if (d.getYear() < 2000) 

    dateYear += (1900 + d.getYear())

else 

    dateYear += (d.getYear())




