<!--
function _Days()
{
  this[0] = "Domenica";    this[1] = "Lunedì";   this[2] = "Martedì"; 
  this[3] = "Mercoledì"; this[4] = "Giovedì"; this[5] = "Venerdì"; 
  this[6] = "Sabato";
}

function _Months()
{
  this[0] = "Gennaio";    this[1] = "Febbraio";   this[2] = "Marzo"; 
  this[3] = "Aprile"; this[4] = "Maggio"; this[5] = "Giugno"; 
  this[6] = "Luglio"; this[7] = "Agosto"; this[8] = "Settembre";
  this[9] = "Ottobre"; this[10] = "Novembre"; this[11] = "Dicembre";
}

function printDate(){
	var now = new Date();
	var yr  = now.getYear();
	
	var dt  = now.getDate();
	var dy  = now.getDay();
	
	var fyr = (yr < 1900) ? 1900 + yr : yr;
	
	var dys = new _Days();
	var dyj = dys[dy];
	var mth = new _Months();
	var mn  = mth[now.getMonth()];
	//document.write(fyr + "/" + mn + "/" + dt + " (" + dyj + ")");
	document.write(dyj +" "+ dt +" "+mn + " "+fyr);
}
//-->

