<!--  
// Specify names of days:  
var dayNames = new Array("Domingo","Lunes","Martes", 
"Miércoles", "Jueves","Viernes","Sábado");  

// Specify names of months:  
var monthNames = new Array("Enero","Febrero","Marzo","Abril","Mayo","Junio", 
"Julio", "Agosto","Septiembre","Octubre", 
"Noviembre","Diciembre");  

var now = new Date();  
var thisday = dayNames[now.getDay()];  
var thismonth = monthNames[now.getMonth()];  
var thisdate = now.getDate();  
var thisdate=thisdate;  
var thisyear = now.getFullYear();  

document.write(thisday + " " + thisdate + " de " + thismonth + " de "  
 + thisyear);  

// -->  

