<!--
//Java Script per saluti

function saluto (){
 
            thisDate = new Date()
            ora = thisDate.getHours();
            if ( ora <= 4) { salve = "Buona notte";}
            if ( ora > 4 && ora <= 13) { salve = "Buon giorno";}
            if ( ora > 13 && ora <= 17) { salve = "Buon pomeriggio";}
            if ( ora > 17 && ora <= 22) { salve = "Buona sera";}
            if ( ora > 22) { salve = "Buona notte";}
            document.write(salve);
}
//-->
