<!--
function longMonthArray() {
	this[0] = "Enero";		this[1] = "Febrero";		this[2] = "Marzo";
	this[3] = "Abril";		this[4] = "Mayo";		this[5] = "Junio";
	this[6] = "Julio";		this[7] = "Agosto";		this[8] = "Septiembre";
	this[9] = "Octubre";		this[10] = "Noviembre";		this[11] = "Diciembre";
        return (this);
}

function getShortYear(year)
{
shortyear =  year%100;
     if (shortyear < 10) shortyear = "0"+shortyear;
	return shortyear
}

function getLongYear(year)
{
  if (year > 1900) return year
  return year+1900;
}

function writeDateLong()
{
   longMonths = new longMonthArray();
   d = new Date();
   day = d.getDate();
   month = d.getMonth();
	year = d.getYear();

   str = day + "  " + longMonths[month] + " de "+getLongYear(year);
  document.writeln(str);
}


