<!--
Stamp = new Date();
if (Stamp.getMonth() == 0) {
 Month = "Gennaio";
}
if (Stamp.getMonth() == 1) {
Month = "Febbraio";
}
if (Stamp.getMonth() == 2) {
 Month = "Marzo";
}
if (Stamp.getMonth() == 3) {
 Month = "Aprile";
}
if (Stamp.getMonth() == 4) {
 Month = "Maggio";
}
if (Stamp.getMonth() == 5) {
Month = "Giugno";
}
if (Stamp.getMonth() == 6) {
 Month = "Luglio";
}
if (Stamp.getMonth() == 7) {
Month = "Agosto";
}
if (Stamp.getMonth() == 8) {
 Month = "Settembre";
}
if (Stamp.getMonth() == 9) {
 Month = "Ottobre";
}
if (Stamp.getMonth() == 10) {
 Month = "Novembre";
}
if (Stamp.getMonth() == 11) {
Month = "Dicembre";
}
document.write("<default>"+'' +  " " + Stamp.getDate() + " " + Month + " "+ Stamp.getYear() + '');
var Hours;
var Mins;
var Time;
if (Mins < 10) {
 Mins = "0" + Mins;
}
if (Hours== 0) {
document.write("&nbsp;&nbsp;   00: "+  Mins + " "+"");
}
if (Hours <0     )   {
document.write('' + Hours +" : "+  Mins + "  "+"<br>");
}
if (Hours >0     )  {
document.write('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'+'' + Hours + " : "+  Mins + "  "+"<br>");
}
// -->