<!--
function StringTime(BrowserTime) {
var DayofWeek = new Array(7)
DayofWeek[0] = "Domenica"
DayofWeek[1] = "Lunedė"
DayofWeek[2] = "Martedė"
DayofWeek[3] = "Mercoledė"
DayofWeek[4] = "Giovedė"
DayofWeek[5] = "Venerdė"
DayofWeek[6] = "Sabato"

var MonthofYear = new Array(12)
MonthofYear[0] = "Gennaio"
MonthofYear[1] = "Febbraio"
MonthofYear[2] = "Marzo"
MonthofYear[3] = "Aprile"
MonthofYear[4] = "Maggio"
MonthofYear[5] = "Giugno"
MonthofYear[6] = "Luglio"
MonthofYear[7] = "Agosto"
MonthofYear[8] = "Settembre"
MonthofYear[9] = "Ottobre"
MonthofYear[10] = "Novembre"
MonthofYear[11] = "Dicembre"

var theYear = BrowserTime.getYear()
 return "Oggi " + DayofWeek[BrowserTime.getDay()] + 
", " + BrowserTime.getDate() + " " + 
MonthofYear[BrowserTime.getMonth()] + ", " + theYear}
function Greeting(BrowserTime) {thisTime = BrowserTime.getHours()  

     if (thisTime<12) {document.write ("<FONT FACE='ARIAL, HELVETICA' COLOR='#000000' SIZE=1>" + "<b>" + "Alč Augura Buon Giorno" 
          + "</FONT>" +  "</b>" + "<BR>")
     }
     else if (thisTime>=12 && thisTime<18) {document.write("<FONT FACE='ARIAL, HELVETICA' COLOR='#000000' SIZE=1>" + "<b>" + "Alč Augura Buon Pomeriggio" 
          + "</FONT>" + "</B>" + "<BR>")
     }
     else if (thisTime>=18 && thisTime<21) {document.write("<FONT FACE='ARIAL, HELVETICA' COLOR='#000000' SIZE=1>" + "<b>" + "Alč Augura Buona Sera" 
          + "</FONT>" + "</B>" + "<BR>")
     }
     else {document.write("<FONT FACE='ARIAL, HELVETICA' COLOR='#000000' SIZE=1>" + "<b>" + "Alč Augura Buona Notte" 
          + "</FONT>" + "</B>" + "<BR>")
     }
     return true
}
//-->
