// 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