				var theDate = new Date();
				var months = "enero febrero marzo abril puede junio julio agosto septiembre octubre noviembre diciembre";
				months = months.split(" ");
				var strDate = theDate.getDate() + " " + "de" + " " + months[theDate.getMonth()] + ', ' + theDate.getFullYear();
				var curYear = theDate.getFullYear();