<!--
        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("del "+ weekDay + ", " + selectMonth[s_date.getMonth()] + " " +
s_date.getDate() + ", " + setYear);


// -->