function gettheDate() 
{
	Todays = new Date();
	Mnth = Todays.getMonth()+ 1;
	if (Mnth == 1) {
		Month = "enero";
	}
	if (Mnth == 2) {
		Month = "febrero";
	}
	if (Mnth == 3) {
		Month = "marzo";
	}
	if (Mnth == 4) {
		Month = "abril";
	}
	if (Mnth == 5) {
		Month = "mayo";
	}
	if (Mnth == 6) {
		Month = "junio";
	}
	if (Mnth == 7) {
		Month = "julio";
	}
	if (Mnth == 8) {
		Month = "agosto";
	}
	if (Mnth == 9) {
		Month = "septiembre";
	}
	if (Mnth == 10) {
		Month = "octubre";
	}
	if (Mnth == 11) {
		Month = "noviembre";
	}
	if (Mnth == 12) {
		Month = "diciembre";
	}

	Year = Todays.getFullYear();
	
	TheDate = Month + " - " + Todays.getDate() + " - " + Year
	return (TheDate);
}
