dat = new Date();
  month = dat.getMonth();
  monthname = new Array();
  monthname[0] = "Enero";
  monthname[1] = "Febrero";
  monthname[2] = "Marzo";
  monthname[3] = "Abril";
  monthname[4] = "Mayo";
  monthname[5] = "Junio";
  monthname[6] = "Julio";
  monthname[7] = "Agosto";
  monthname[8] = "Septiembre";
  monthname[9] = "Octubre";
  monthname[10] = "Noviembre";
  monthname[11] = "Diciembre";
  day = dat.getDate();
  year = dat.getFullYear();
  document.write('<span style="font-size:12px;color:#ffffff">' + monthname[month] + ' ' + day + ',  ' + year + '</span>');