<!--
// begin script
function time_data() 
{
 ltime= new Date()
 date = new Date();
 var day_of_week_number = date.getDay();
 var day_of_month = date.getDate();
 if (day_of_month < 10) {day_of_month = '0' + day_of_month}
 var month_number = date.getMonth();
 var year = date.getYear();
 var hours=ltime.getHours();
 var minutes=ltime.getMinutes();
 var seconds=ltime.getSeconds();
 if (eval(hours) <10) {hours='0' + hours}
 if (eval(minutes) < 10) {minutes='0' + minutes}
 if (seconds < 10) {seconds='0' + seconds}
 var ltime = hours+':'+minutes+':'+seconds
 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 = 'setiembre';}
 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 = 'medio';}
 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 = 'sabado';}
 var date_to_show = day_of_week  + ',&nbsp;&nbsp;' + year + ' '+ month + ' ' + day_of_month + '&nbsp;&nbsp;' + ltime + ' ';
/* var date_to_show =  day_of_month + ' ' + month + ' ' + year + ' ã.' + '<br>' + day_of_week  + ' ' + ltime; */
 if(document.all)  {hag.innerHTML=date_to_show}
 if(document.layers) {document.hag.document.write('<div id="hag">' + date_to_show + '</div>')
  document.close() }
 var timer = setTimeout("time_data()",1000)
}
// - End of JavaScript -
-->
