function longMonthArray(){this[0]="ene";this[1]="feb";this[2]="mar";this[3]="abril";this[4]="mayo";this[5]="junio";this[6]="julio";this[7]="ago";this[8]="sept";
this[9]="oct";this[10]="nov";this[11]="dic";return(this);}function longDayArray(){this[0]="domingo";this[1]="lunes";this[2]="martes";this[3]="miércoles";this[4]="jueves";this[5]="viernes";
this[6]="sábado";return(this);}function getLongYear(year){if (year <2000)return year+1900;else if (year <= 2000)return year;return year;}
function writeDateLong(format){longDays=new longDayArray();longMonths=new longMonthArray();d=new Date();day=d.getDate();month=d.getMonth();year = d.getYear();
str=longDays[d.getDay()]+" "+day+" "+longMonths[month]+" "+getLongYear(year);document.writeln(str);}function writeDate(){writeDateLong(0);}writeDateLong();