function StringTime(BrowserTime) {var DayofWeek = new Array(7)DayofWeek[0] = "Sunday"DayofWeek[1] = "Monday"DayofWeek[2] = "Tuesday"DayofWeek[3] = "Wednesday"DayofWeek[4] = "Thursday"DayofWeek[5] = "Friday"DayofWeek[6] = "Saturday"var MonthofYear = new Array(12)MonthofYear[0] = "January"MonthofYear[1] = "February"MonthofYear[2] = "March"MonthofYear[3] = "April"MonthofYear[4] = "May"MonthofYear[5] = "June"MonthofYear[6] = "July"MonthofYear[7] = "August"MonthofYear[8] = "September"MonthofYear[9] = "October"MonthofYear[10] = "November"MonthofYear[11] = "December"var theYear = BrowserTime.getYear()return "Today is " + DayofWeek[BrowserTime.getDay()] + ", " + MonthofYear[BrowserTime.getMonth()] + " " + BrowserTime.getDate() + ", " + theYear + "."}function Greeting(BrowserTime) {     thisTime = BrowserTime.getHours()       if (thisTime<12) {          document.write("<FONT FACE='arial,sans-serif' COLOR='#BF6000' SIZE=2>" + "Aloha kakahiaka! -- That means Good Morning in Hawaiian."           + "</FONT>" + "<BR>")     }     else if (thisTime>=12 && thisTime<18) {          document.write("<FONT FACE='arial,sans-serif' COLOR='#BF6000' SIZE=2>" + "Aloha Auinala! -- That means Good Afternoon in Hawaiian."           + "</FONT>" + "<BR>")     }     else if (thisTime>=18 && thisTime<21) {          document.write("<FONT FACE='arial,sans-serif' COLOR='#BF6000' SIZE=2>" + "Aloha ahiahi! -- That means Good Evening in Hawaiian."           + "</FONT>" + "<BR>")     }     else {          document.write("<FONT FACE='arial,sans-serif' COLOR='#BF6000' SIZE=2>" + "Aloha. a little late night surfing?"           + "</FONT>" + "<BR>")     }     return true}
