// Fecha 
	days = new Array(7)
	days[1] = "Domingo";
	days[2] = "Lunes";
	days[3] = "Martes"; 
	days[4] = "Miércoles";
	days[5] = "Jueves";
	days[6] = "Viernes";
	days[7] = "Sábado";
	months = new Array(12)
	months[1] = "enero";
	months[2] = "febrero";
	months[3] = "marzo";
	months[4] = "abril";
	months[5] = "mayo";
	months[6] = "junio";
	months[7] = "julio";
	months[8] = "agosto";
	months[9] = "septiembre";
	months[10] = "octubre"; 
	months[11] = "noviembre";
	months[12] = "diciembre";
	today = new Date(); 
	day = days[today.getDay() + 1]
	month = months[today.getMonth() + 1]
	date = today.getDate()
	year=today.getYear(); 
	if (year < 2000)
	year = year + 1900;			
	// -- end hiding  