

function show_clock_it() {

data = new Date();
ora =data.getHours();
minuti=data.getMinutes();
secondi=data.getSeconds();
giorno = data.getDay();
mese = data.getMonth();
date= data.getDate();
year= data.getYear();
if(minuti< 10)minuti="0"+minuti;
if(secondi< 10)secondi="0"+secondi;
if(year<1900)year=year+1900;
if(ora<10)ora="0"+ora;
if(giorno == 0) giorno = " Domenica ";
if(giorno == 1) giorno = " Lunedì ";
if(giorno == 2) giorno = " Martedì ";
if(giorno == 3) giorno = " Mercoledì ";
if(giorno == 4) giorno = " Giovedì ";
if(giorno == 5) giorno = " Venerdì ";
if(giorno == 6) giorno = " Sabato ";
if(mese == 0) mese = "Gennaio ";
if(mese ==1) mese = "Febbraio ";
if(mese ==2) mese = "Marzo ";
if(mese ==3) mese = "Aprile ";
if(mese ==4) mese = "Maggio ";
if(mese ==5) mese = "Giugno ";
if(mese ==6) mese = "Luglio ";
if(mese ==7) mese = "Agosto ";
if(mese ==8) mese = "Settembre ";
if(mese ==9) mese = "Ottobre ";
if(mese ==10) mese = "Novembre ";
if(mese ==11) mese = "Dicembre";
document.write("Genova,   "+ giorno+" "+date+" "+mese+" "+year+" H: "+ora+":"+minuti);

		
}

function show_clock_en() {

data = new Date();
ora =data.getHours();
minuti=data.getMinutes();
secondi=data.getSeconds();
giorno = data.getDay();
mese = data.getMonth();
date= data.getDate();
year= data.getYear();
if(minuti< 10)minuti="0"+minuti;
if(secondi< 10)secondi="0"+secondi;
if(year<1900)year=year+1900;
if(ora<10)ora="0"+ora;
if(giorno == 0) giorno = " Sunday ";
if(giorno == 1) giorno = " Monday ";
if(giorno == 2) giorno = " Tuesday ";
if(giorno == 3) giorno = " Wednesday ";
if(giorno == 4) giorno = " Thursday ";
if(giorno == 5) giorno = " Friday ";
if(giorno == 6) giorno = " Saturday ";
if(mese == 0) mese = "January ";
if(mese ==1) mese = "February ";
if(mese ==2) mese = "March ";
if(mese ==3) mese = "April ";
if(mese ==4) mese = "May ";
if(mese ==5) mese = "June ";
if(mese ==6) mese = "July ";
if(mese ==7) mese = "August ";
if(mese ==8) mese = "September ";
if(mese ==9) mese = "October ";
if(mese ==10) mese = "November ";
if(mese ==11) mese = "December ";
document.write("Genova,   "+ giorno+" "+mese+" "+date+"  "+year+" H: "+ora+":"+minuti);

		
}

