   months = new Array("Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre");
   now = new Date();
   dow = now.getDay();
   d = now.getDate();
   m = now.getMonth();
   h = now.getTime();
   y = now.getFullYear();
   document.write("Burgos,"+" "+d+" de "+months[m]+" de "+y);
