<!---
var MyDate    = new Date()
    MyDayWeek = (MyDate.getDay())
    MyMonth   = (MyDate.getMonth())
    MyDay     = (MyDate.getDate())
    MyYear    = (MyDate.getFullYear())
    DayWord = new Array("Domingo", "Lunes", "Martes", "Miercoles", "Jueves", "Viernes", "Sabado", 7)
    MonthWord = new Array("Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre", 12);

    document.write((DayWord [MyDayWeek])+", "+MyDay+" de "+(MonthWord [MyMonth])+"  "+MyYear);

function addbookmark()
{
bookmarkurl="http://www.buhoniki.com"
bookmarktitle="Regalos y Tarjetas del Buho Niki"
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarktitle)
}
//-->
