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