if (navigator.appName == "Netscape") {
document.write('<layer id="orologio"></layer><br>');
}
if (navigator.appVersion.indexOf("MSIE") != 1){
document.write('<span id="orologio"></span>');
}
GiornodellaSettimana = new Array()
	GiornodellaSettimana[0]="Dom"
	GiornodellaSettimana[1]="Lun"
	GiornodellaSettimana[2]="Mar"
	GiornodellaSettimana[3]="Mer"
	GiornodellaSettimana[4]="Gio"
	GiornodellaSettimana[5]="Ven"
	GiornodellaSettimana[6]="Sab"

Mese = new Array()
	Mese[0]="/01/"
	Mese[1]="/02/"
	Mese[2]="/03/"
	Mese[3]="/04/"
	Mese[4]="/05/"
	Mese[5]="/06/"
	Mese[6]="/07/"
	Mese[7]="/08/"
	Mese[8]="/09/"
	Mese[9]="/10/"
	Mese[10]="/11/"
	Mese[11]="/12/"

function avvia_orologio(){
var dte = new Date();
var ora = dte.getHours();
var min = dte.getMinutes();
var sec = dte.getSeconds();
var giorno = GiornodellaSettimana[dte.getDay()]
var data = dte.getDate()
var mese = Mese[dte.getMonth()]
var anno = dte.getFullYear()

var col = ":";
var spc = " ";
var com = ",";
var apm;
if (12 < ora) {
apm="";

}
else {
apm="";
}
if (ora == 0) ora = 24;
if (ora <= 9) ora = "0" + ora;
if (min <= 9) min = "0" + min;
if (sec <= 9) sec = "0" + sec;
if(navigator.appName == "Netscape") {
document.orologio.document.write(giorno+com+spc+data+spc+mese+spc+anno+spc+ora+col+min);
document.orologio.document.close();
}
if (navigator.appVersion.indexOf("MSIE") != 1) {
orologio.innerHTML = data+mese+anno+spc+ora+col+min;
}
}

setInterval("avvia_orologio()", 1000); 
