<!--

            var months = new Array();

            months[0] = 'enero';

            months[1] = 'febrero';

            months[2] = 'marzo';

            months[3] = 'abril';

            months[4] = 'mayo';

            months[5] = 'junio';

            months[6] = 'julio';

            months[7] = 'agosto';

            months[8] = 'septiembre';

            months[9] = 'octubre';

            months[10] = 'noviembre';

            months[11] = 'diciembre';

            var days = new Array();

            days[0] = 'Domingo,';

            days[1] = 'Lunes,';

            days[2] = 'Martes,';

            days[3] = 'Mi&eacute;rcoles,';

            days[4] = 'Jueves,';

            days[5] = 'Viernes,';

            days[6] = 'S&aacute;bado,';

            now = new Date();

            var dayname = days[now.getDay()];

            var monthname = months[now.getMonth()];

            var dayofmonth =now.getDate();

            var year = now.getYear();

            if (year < 1000) year += 1900;

            document.write('<span class="date">');

            document.write(dayname + ' ' + dayofmonth + ' ' + monthname + ' ' + year);

            document.write('</span>');