        var d = new Date()
		document.write("<div class='data'>");
		if (d.getDay() == 1) document.write("Lunes");
		if (d.getDay() == 2) document.write("Martes");
		if (d.getDay() == 3) document.write("Miércoles");
		if (d.getDay() == 4) document.write("Jueves");
		if (d.getDay() == 5) document.write("Viernes");
		if (d.getDay() == 6) document.write("Sábado");
		if (d.getDay() == 0) document.write("Domingo");
		document.write(", ")

		document.write(d.getDate())
		document.write(" de ")
		//document.write(d.getMonth() + 1)
		if (d.getMonth() + 1 == 1) document.write("Enero");
		if (d.getMonth() + 1 == 2) document.write("Febrero");
		if (d.getMonth() + 1 == 3) document.write("Marzo");
		if (d.getMonth() + 1 == 4) document.write("Abril");
		if (d.getMonth() + 1 == 5) document.write("Mayo");
		if (d.getMonth() + 1 == 6) document.write("Junio");
		if (d.getMonth() + 1 == 7) document.write("Julio");
		if (d.getMonth() + 1 == 8) document.write("Agosto");
		if (d.getMonth() + 1 == 9) document.write("Septiembre");
		if (d.getMonth() + 1 == 10) document.write("Octubre");
		if (d.getMonth() + 1 == 11) document.write("Noviembre");
		if (d.getMonth() + 1 == 12) document.write("Diciembre");
		document.write(" de ")
		document.write(d.getFullYear())
		document.write(",")
       
        <!-- 
        today = new Date()
		var minutos = today.getMinutes();
		if (minutos == '0') minutos = '00';
		if (minutos == '1') minutos = '01';
		if (minutos == '2') minutos= '02';
		if (minutos == '3') minutos = '03';
		if (minutos == '4') minutos = '04';
		if (minutos == '5') minutos = '05';
		if (minutos == '6') minutos = '06';
		if (minutos == '7') minutos = '07';
		if (minutos == '8') minutos = '08';
		if (minutos == '9') minutos = '09';


        document.write("",today.getHours(),":",minutos)
				document.write("</div>");

        //  -->
       