
<!--  to hide script contents from old browsers
    
function greeting()
{
   var today = new Date();
   var hrs = today.getHours();

   
   
      document.write("<font size='1' face='verdana' color='000000'>");
  
      if (hrs < 6)
      document.write("Buona notte");
   else if (hrs < 12)
      document.write("Buon giorno");
   else if (hrs < 18)
      document.write("Buon pomeriggio");
   else
      document.write("Buona sera");
  document.write(" e buona navigazione");
   
   
}

greeting();




<!-- end hiding contents from old browsers  -->

// JavaScript Document