﻿function stampDate() {
	Fecha = new Date();
	dias = new Array("Domingo","Lunes", "Martes", "Miércoles","Jueves","Viernes","Sábado");
	meses = new Array("enero","febrero","marzo","abril","mayo","junio","julio","agosto","septiembre","octubre","noviembre","diciembre");
	var fechaHoy = dias[Fecha.getDay()]+" "+Fecha.getDate()+" de "+meses[Fecha.getMonth()]+" de "+Fecha.getFullYear();
	//alert(fechaHoy);
	document.write(fechaHoy);
}

function BackPage() {
    //alert(window.history.length);
    window.history.back(); 
}