				var fecha = new Date()
				if ((fecha.getMonth() + 1) == 1)
					{
						document.write("Enero")
					}
				if ((fecha.getMonth() + 1) == 2)
					{
						document.write("Febrero")
					}
				if ((fecha.getMonth() + 1) == 3)
					{
						document.write("Marzo")
					}
				if ((fecha.getMonth() + 1) == 4)
					{
						document.write("Abril")
					}
				if ((fecha.getMonth() + 1) == 5)
					{
						document.write("Mayo")
					}
				if ((fecha.getMonth() + 1) == 6)
					{
						document.write("Junio")
					}
				if ((fecha.getMonth() + 1) == 7)
					{
						document.write("Julio")
					}
				if ((fecha.getMonth() + 1) == 8)
					{
						document.write("Agosto")
					}
				if ((fecha.getMonth() + 1) == 9)
					{
						document.write("Septiembre")
					}
				if ((fecha.getMonth() + 1) == 10)
					{
						document.write("Octubre")
					}
				if ((fecha.getMonth() + 1) == 11)
					{
						document.write("Noviembre")
					}
				if ((fecha.getMonth() + 1) == 12)
					{
						document.write("Diciembre")
					}
 				document.write(" ")  
				document.write(fecha.getFullYear())  
			