<!--function process(){}
  today = new Date()
if(today.getMinutes() < 10) {    pad = "0"}  else    pad = "";
if((today.getHours() < 12) && (today.getHours() >= 6)) {  document.write("mattina" + "_")}
if((today.getHours() >= 12) && (today.getHours() < 18)) {  document.write("pomeriggio " + "_")}
if((today.getHours() >= 18) && (today.getHours() <= 23)) {  document.write("sera" + "_")}
if((today.getHours() >= 0) && (today.getHours() < 4)) {  document.write("notte" + "_")}
if((today.getHours() >= 4) && (today.getHours() <= 6)) {  document.write("giorno" + "_")}
document.write("ore ",today.getHours(),":",pad,today.getMinutes());
// end hiding contents // -->