/* prelevato sul sito di http://www.web-link.it */
/* By Andrea Bianchi */

function aggiorna() {

var mesi = new Array("gennaio","febbraio","marzo","aprile","maggio","giugno","luglio","agosto","settembre","ottobre","novembre","dicembre");
var nomeGiorno = new Array('domenica','lunedi','martedi','mercoledi','giovedi','venerdi','sabato');

Data = new Date()
Giorno = Data.getDate()
Mese = Data.getMonth()
Anno = Data.getFullYear() 
Ore = Data.getHours()
Minuti = Data.getMinutes()
Secondi = Data.getSeconds()


if (Minuti < 10) Minuti = "0" + Minuti

if (Secondi < 10) Secondi = "0" + Secondi

messaggio = "Oggi " + nomeGiorno[Data.getDay()] + " " + Giorno + " " + mesi[Mese] + " " + Anno + " ore " + Ore + ":" + Minuti + ":" + Secondi 

if(!document.layers){
  aggsec = setTimeout("aggiorna();",1000);}

if (document.getElementById){
    document.getElementById('clock').innerHTML=messaggio;}

else if (document.all){ 
    document.all.clock.innerHTML=messaggio;}

else if(document.layers){
    document.write(messaggio);}
}
aggiorna();

document.write("<span class=\"data\">");

        if(Ore < 5)
        {
        document.write(" Buona Notte");
        }
        else
        if(Ore < 12)
        {
         document.write(" Buon Giorno");
        }
        else
        if(Ore < 18)
        {
        document.write(" Buon Pomeriggio");
        }
        else
        {
        document.write(" Buona Sera");
        }
        document.write("<\/span>");
		
/* prelevato sul sito di http://www.web-link.it */
/* By Andrea Bianchi */

