function mostraData(){
function makeArray() {
      this.length = makeArray.arguments.length
      for (var i = 0; i < this.length; i++)
      this[i+1] = makeArray.arguments[i]
                    }

                                    var giorno = new makeArray;
                                    var mese = new makeArray;
		var adesso=new Date;
giorno[0]="Domenica";
		giorno[1]="Lunedì";
		giorno[2]="Martedì";
		giorno[3]="Mercoledì";
		giorno[4]="Giovedì";
		giorno[5]="Venerdì";
		giorno[6]="Sabato";

                mese[0]="Gennaio";
		mese[1]="Febbraio";
		mese[2]="Marzo";
		mese[3]="Aprile";
		mese[4]="Maggio";
		mese[5]="Giugno";
		mese[6]="Luglio";
		mese[7]="Agosto";
		mese[8]="Settembre";
		mese[9]="Ottobre";
		mese[10]="Novembre";
		mese[11]="Dicembre";  
		
	
	   
		document.write("<span class='data'><b>");
		document.write(adesso.getDate());
		document.write(" ");
		document.write(mese[adesso.getMonth()]);
		document.write(" ");
		document.write(giorno[adesso.getDay()]);
		document.write("</b></span>");
              }
function Preferiti(url,titolo)
           {
	if (document.all)
		window.external.AddFavorite(url,titolo)
}
function preparazione()
          {
	alert("Pagina non ancora disponibile.")
}
function apri(nomeFrame, larghezza, altezza, nomeFile)
	{
		var sPath=nomeFile;
		var sNomeFrame=nomeFrame;
				
		window.open(sPath,sNomeFrame,"width="+larghezza+",height="+altezza+",resizable=yes,toolbar=no,status=no,menubar=no,scrollbars=no,left=162,top=230");
		return;
}
