var datemodif= new Date();
	var today=datemodif.getDate();
	var month1=datemodif.getMonth();
	var year=datemodif.getYear();
	var month2=month1;

	if (month2==0) month2="Enero";
	else if (month2==1) month2="Febrrero";
	else if (month2==2) month2="Marzo";
	else if (month2==3) month2="Abril";
	else if (month2==4) month2="Mayo";
	else if (month2==5) month2="Junio";
	else if (month2==6) month2="Julio";
	else if (month2==7) month2="Agosto";
	else if (month2==8) month2="Septiembere";
	else if (month2==9) month2="Octubre";
	else if (month2==10) month2="Noviembre";
	else if (month2==11) month2="Deciembre";

	document.write( month2," " ,today,", " , year);