today = new Date() 
 
function CreateArray(n) {this.length = n
return this } 
 
day = new CreateArray(7)
day[0]="Domingo"
day[1]="Lunes"
day[2]="Martes"
day[3]="Mi&eacute;rcoles"
day[4]="Jueves"
day[5]="Viernes"
day[6]="S&aacute;bado" 
 
month = new CreateArray(12)
month[0]="Enero"
month[1]="Febrero"
month[2]="Marzo"
month[3]="Abril"
month[4]="Mayo"
month[5]="Junio"
month[6]="Julio"
month[7]="Agosto"
month[8]="Septiembre"
month[9]="Octubre"
month[10]="Noviembre"
month[11]="Diciembre"

modifier = new CreateArray(31)
var modifier = new String(" ")
var loop = 0
do {
    modifier[loop] = modifier.substring(loop * 2, 2 + (loop * 2));
    loop = loop + 1;
} while (loop < 32);
myDate = new String(today.getDate())
mySuffix = modifier[today.getDate()]
myYear = new String(today.getFullYear())
// -->

document.write("<font color=ffffff face=verdana class= textopequeno_rojos_titulos>",day[today.getDay()]," " ,today.getDate()," de ",month[today.getMonth()],mySuffix," de ",myYear," </font>","")
delete myDate
delete myYear
delete myIndex

 
