// JavaScript Document
<!--
var months = new Array("Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre");

function showDate() {
	var dt = new Date();
	var str;

	str = dt.getDate() + " de " + months[dt.getMonth()] + " de " + dt.getFullYear();

	return str;
}
-->
