// JavaScript Document
 var today = new Date();
		var year = today.getYear();
        var dia = '';

        document.write('');
        if (today.getDay() == 0) {document.write('Domingo, ')};
        if (today.getDay() == 1) {document.write('Lunes, ')};
        if (today.getDay() == 2) {document.write('Martes, ')};
        if (today.getDay() == 3) {document.write('Mi&eacute;rcoles, ')};
        if (today.getDay() == 4) {document.write('Jueves, ')};
        if (today.getDay() == 5) {document.write('Viernes, ')};
        if (today.getDay() == 6) {document.write('S&aacute;bado, ')};
	
        document.write(today.getDate());
        document.write(' de ');
        if (today.getMonth() == 0) {document.write('enero ')};
        if (today.getMonth() == 1) {document.write('febrero ')};
        if (today.getMonth() == 2) {document.write('marzo ')};
        if (today.getMonth() == 3) {document.write('abril ')};
        if (today.getMonth() == 4) {document.write('mayo ')};
        if (today.getMonth() == 5) {document.write('junio ')};
        if (today.getMonth() == 6) {document.write('julio ')};
        if (today.getMonth() == 7) {document.write('agosto ')};
        if (today.getMonth() == 8) {document.write('septiembre ')};
        if (today.getMonth() == 9) {document.write('octubre ')};
        if (today.getMonth() == 10) {document.write('noviembre ')};
        if (today.getMonth() == 11) {document.write('diciembre ')};
 		if (year < 1000) {year+=1900};
        document.write('de ');
		document.write(year);