var today=new Date()
 if (today.getDay()==0)
	document.write("Domenica")
  if (today.getDay()==1)
	document.write("Lunedì")
  if (today.getDay()==2)
	document.write("Martedì")
  if (today.getDay()==3)
	document.write("Mercoledì")
  if (today.getDay()==4)
	document.write("Giovedì")
  if (today.getDay()==5)
	document.write("Venerdì")
  if (today.getDay()==6)
	document.write("Sabato")
  document.write(" ",today.getDate())
  if (today.getMonth()==0)
	document.write(" Gennaio")
  if (today.getMonth()==1)
	document.write(" Febbraio")
  if (today.getMonth()==2)
	document.write(" Marzo")
  if (today.getMonth()==3)
	document.write(" Aprile")
  if (today.getMonth()==4)
	document.write(" Maggio")
  if (today.getMonth()==5)
	document.write(" Giugno")
  if (today.getMonth()==6)
	document.write(" Luglio")
  if (today.getMonth()==7)
	document.write(" Agosto")
  if (today.getMonth()==8)
	document.write(" Settembre")
  if (today.getMonth()==9)
	document.write(" Ottobre")
  if (today.getMonth()==10)
	document.write(" Novembre")
  if (today.getMonth()==11)
	document.write(" Dicembre")
 // document.write(" ",today.getYear())