

	function SetNameArray(item)

			{

				this.length = item

				return this

			}

		//SET MONTH AND WEEKDAY NAME ARRAYS

		Month = new SetNameArray(12)

		Month[1] = "Ene"

		Month[2] = "Feb"

		Month[3] = "Mar"

		Month[4] = "Abr"

		Month[5] = "May"

		Month[6] = "Jun"

		Month[7] = "Jul"

		Month[8] = "Ago"

		Month[9] = "Sep"

		Month[10] = "Oct"

		Month[11] = "Nov" 

		Month[12] = "Dic"



		WeekDay = new SetNameArray(7)

		WeekDay[1] = "Domingo"

		WeekDay[2] = "Lunes"

		WeekDay[3] = "Martes"

		WeekDay[4] = "Miercoles"

		WeekDay[5] = "Jueves"

		WeekDay[6] = "Viernes"

		WeekDay[7] = "Sabado"



		//CALC THE DATE INFORMATION

		function TodaysDate(theDate)

			{

				var theWeekDay = WeekDay[theDate.getDay() + 1]

				var theMonth = Month[theDate.getMonth() + 1]

				var theYear = theDate.getFullYear()

				return "&nbsp;" + theWeekDay + "&nbsp;" + theMonth + " " + theDate.getDate() + " " + theYear

			}


