<!-- Copyright 2002 Bontrager Connection, LLC

function getCalendarDate()
{
   var months = new Array(13);
   months[0]  = "Gennaio";
   months[1]  = "Febbraio";
   months[2]  = "Marzo";
   months[3]  = "Aprile";
   months[4]  = "Maggio";
   months[5]  = "Giugno";
   months[6]  = "Luglio";
   months[7]  = "Agosto";
   months[8]  = "Settembre";
   months[9]  = "Ottobre";
   months[10] = "Novembre";
   months[11] = "Dicembre";
var weekday=new Array(7);
weekday[0]="Domenica";
weekday[1]="Lunedi";
weekday[2]="Martedi";
weekday[3]="Mercoledi";
weekday[4]="Giovedi";
weekday[5]="Venerdi";
weekday[6]="Sabato";
   var now         = new Date();
   var monthnumber = now.getMonth();
   var monthname   = months[monthnumber];
   var monthday    = now.getDate();
   var year        = now.getYear();
   var wday        = now.getDay();
   var giornodellase = weekday[wday];
   if(year < 2000) { year = year + 1900; }
   var dateString = giornodellase +
                    ' ' +
                    monthday +
                    ' ' +
                    monthname +
                    ' ' +
                    year;
   return dateString;
} // function getCalendarDate()

function getClockTime()
{
   var now    = new Date();
   var hour   = now.getHours();
   var minute = now.getMinutes();
   var second = now.getSeconds();
   if (hour   < 10) { hour   = "0" + hour;   }
   if (minute < 10) { minute = "0" + minute; }
   if (second < 10) { second = "0" + second; }
   var timeString = hour +
                    ':' +
                    minute;
   return timeString;
} // function getClockTime()
