function SetNameArray(item)
	{
	this.length = item
	return this
	}
	Month = new SetNameArray(12)
	Month[1] = "01"
	Month[2] = "02"
	Month[3] = "03"
	Month[4] = "04"
	Month[5] = "05"
	Month[6] = "06"
	Month[7] = "07"
	Month[8] = "08"
	Month[9] = "09"
	Month[10] = "10"
	Month[11] = "11"
	Month[12] = "12"
theDate = new Date()
	var theMonth = Month[theDate.getMonth() + 1]
	var theYear = theDate.getYear() + 0
	document.write(theDate.getDate() + " " + theMonth + " " +theYear);
