function display_date() {   date = new Date();   var day_of_week_number = date.getDay();   var day_of_month = date.getDate();   var month_number = date.getMonth();   var year = date.getYear();   var day_of_week = '';   var month = ''   if(month_number == 0){month = 'Enero';}   if(month_number == 1){month = 'Febrero';}   if(month_number == 2){month = 'Marzo';}   if(month_number == 3){month = 'Abril';}   if(month_number == 4){month = 'Mayo';}    if(month_number == 5){month = 'Junio';}   if(month_number == 6){month = 'Julio';}   if(month_number == 7){month = 'Agosto';}   if(month_number == 8){month = 'Septiembre';}   if(month_number == 9){month = 'Octubre';}   if(month_number == 10){month = 'Noviembre';}   if(month_number == 11){month = 'Diciembre';}   if(day_of_week_number == 0){day_of_week = 'Domingo';}   if(day_of_week_number == 1){day_of_week = 'Lunes';}   if(day_of_week_number == 2){day_of_week = 'Martes';}   if(day_of_week_number == 3){day_of_week = 'Miércoles';}   if(day_of_week_number == 4){day_of_week = 'Jueves';}   if(day_of_week_number == 5){day_of_week = 'Viernes';}   if(day_of_week_number == 6){day_of_week = 'Sábado';}  document.write(day_of_week + '  ' + day_of_month + ' de ' + month + ' de 2010'); } //end display date