<!--
var currentTime = new Date();

var day = currentTime.getDate();

var month = currentTime.getMonth();
var year = currentTime.getFullYear();
var hours = currentTime.getHours();
var minutes = currentTime.getMinutes();
var commento = new Array(1);
var m_names = new Array("Gennaio", "Febbraio", "Marzo", 
"Aprile", "Maggio", "Giugno", "Luglio", "Agosto", "Settembre", 
"Ottobre", "Novembre", "Dicembre");
if (minutes < 10)
minutes = "0" + minutes;

if (hours < 10)
hours = "0" + hours
;
if (hours < 9)
commento = "cosa fai alzato a quest'ora? E soprattutto su questo sito?"
if (9 <= hours);

if (hours <=18)
commento = "non dovresti essere a lavoro invece che consultare questo sito? Va bene dai, per questa volta...";
if (hours > 18)
commento = "non hai proprio nient'altro di meglio da fare?";

document.write("<p align=\"justify\"><font face=\"Arial\" size=\"2\" color=\"#000000\"><i>Alle ore <b>" + hours + ":" + minutes + "</b> del <b>" + day + " " + m_names[month] + " " + year + "</b> mi domando:" + commento + "</i></font><p>");


//-->