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);
}
