<!-- This figures out what day of the week it is, and the date, and year. -->
<!--
        s_date = new Date();
        var weekDay = "";

        selectMonth = new Array(12);
                selectMonth[0] = "Enero";
                selectMonth[1] = "Febrero";
                selectMonth[2] = "Marzo";
                selectMonth[3] = "Abril";
                selectMonth[4] = "Mayo";
                selectMonth[5] = "Junio";
                selectMonth[6] = "Julio";
                selectMonth[7] = "Agosto";
                selectMonth[8] = "Septiembre";
                selectMonth[9] = "Octubre";
                selectMonth[10] = "Noviembre";
                selectMonth[11] = "Diciembre";

        if(s_date.getDay() == 1){
                weekDay = "Lunes ";
        }
        if(s_date.getDay() == 2){
                weekDay = "Martes ";
        }
        if(s_date.getDay() == 3){
                weekDay = "Miércoles ";
        }
        if(s_date.getDay() == 4){
                weekDay = "Jueves ";
        }
        if(s_date.getDay() == 5){
                weekDay = "Viernes ";
        }
        if(s_date.getDay() == 6){
                weekDay = "Sábado ";
        }
        if(s_date.getDay() == 7){
                weekDay = "Domingo ";
        }
        if(s_date.getDay() == 0){
                weekDay = "Domingo ";
        }


        var setYear = s_date.getYear();

 var BName = navigator.appName;

 if(BName == "Netscape"){
         var setYear = s_date.getYear() + 1900;
}

document.write(weekDay + s_date.getDate() + " de " + selectMonth[s_date.getMonth()] + " de " + setYear);
// -->