// JavaScript Document
function makeArray(n){
    this.length = n;
    for (i=1;i<=n;i++){
        this[i]=0;
    }
    return this;
}
function displayDate(){
	var myDays=

["Domingo","Lunes","Martes","Miércoles","Jueves","Viernes","Sábado","Domingo"];

    var this_month = new makeArray(12);
    this_month[0]  = "enero";
    this_month[1]  = "febrero";
    this_month[2]  = "marzo";
    this_month[3]  = "abril";
    this_month[4]  = "mayo";
    this_month[5]  = "junio";
    this_month[6]  = "julio";
    this_month[7]  = "agosto";
    this_month[8]  = "septiembre"; 
    this_month[9]  = "octubre";
    this_month[10] = "noviembre";
    this_month[11] = "diciembre";
	
    var today = new Date();
    var dayOfWeek  = today.getDay();
	var thisDay = myDays[dayOfWeek];
	var day = today.getDate();
    var month = today.getMonth();
    var year  = today.getYear();
    if (year < 1900){
        year += 1900;
			
    }
    return(thisDay+" "+day+" de "+this_month[month]+" de "+year);
}