

// Escribe la fecha ---------------------------------------------------------------------------------------------
function calend(){

    var now = new Date();
    var yr = now.getYear();
    var mName = now.getMonth() + 1;
    var dName = now.getDay() + 1;
    var dayNr = ((now.getDate()<10) ? "0" : "")+ now.getDate();
    if(dName==1) Day = "domingo";
    if(dName==2) Day = "lunes";
    if(dName==3) Day = "martes";
    if(dName==4) Day = "miercoles";
    if(dName==5) Day = "jueves";
    if(dName==6) Day = "viernes ";
    if(dName==7) Day = "sábado";
    if(mName==1) Month="enero";
    if(mName==2) Month="febrero";
    if(mName==3) Month="marzo";
    if(mName==4) Month="abril";
    if(mName==5) Month="mayo";
    if(mName==6) Month="junio";
    if(mName==7) Month="julio";
    if(mName==8) Month="agosto";
    if(mName==9) Month="septiembre";
    if(mName==10) Month="octubre";
    if(mName==11) Month="noviembre";
    if(mName==12) Month="diciembre";
    // fecha actual
       var todaysDate =(" "
           + Day
           + ", "
           + dayNr
           + "&nbsp;de&nbsp;"
           + Month
           + "&nbsp;del&nbsp;"
           + yr
           + "<BR>");
    document.open();
    document.write("<right><STRONG><font color=\"#000000\" size=\"1\" face=\"Geneva, Arial, Helvetica, sans-serif\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"+todaysDate+"</FONT></normal></right>");
}
//----------------------------------------------------------------------------------------------------------------                        
