

    <!--
    //sistema calendario para blogs miarroba con links por EffectedCard - <a href="visitar.php?http://webernado.com" target="_blank">http://webernado.com</a>
    function calendar()
    {
    var monthNames = new Array("Enero", "Febrero", "Marzo", "Abril",
    "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre");
    var today = new Date();
    var thisDay = today.getDate();
    var monthDays = new Array(31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);
    var nmonth = new Array(01, 02, 03, 04, 05, 06, 07, 08, 09, 10, 11, 12);

    year = today.getYear();
    // ¿año bisiesto?
    if (((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0))
    monthDays[1] = 29;
    // achar o numero de dias deste mes
    nDays = monthDays[today.getMonth()];
    nummonth = nmonth[today.getMonth()];
    if (nummonth < 10) nummonth = "0" + nummonth;
    firstDay = today;
    firstDay.setDate(1);
    startDay = firstDay.getDay();
    if(year < 2000) year = year + 1900;
    document.writeln("<CENTER>");
    document.write("<table border=0 bordercolor=#ffffff style=\"border-collapse:collapse;border-collapse:collapse;\"><tr><td><TABLE BORDER=0 bgcolor=#ffffff>");
    document.write("<TR><TH COLSPAN=7 bgcolor=#ffffff><font color=#888888 size=1>");
    document.write(monthNames[ today.getMonth() ] + " " + year);
    document.write("</font><TR><TH>");
    document.write("<font color=#777777 face=\"arial, sans serif \" size=3>D</font><TH><font color=#777777 face=\"arial, sans serif \" size=3>L</font><TH><font color=#777777 face=\"arial, sans serif \" size=3>M</font><TH><font color=#777777 face=\"arial, sans serif \" size=3>M</font><TH><font color=#777777 face=\"arial, sans serif \" size=3>J</font><TH><font color=#777777 face=\"arial, sans serif \" size=3>V</font><TH><font color=#777777 face=\"arial, sans serif \" size=3>S</font>");
    document.write("<TR>");
    column = 0;
    for (i=0, column=0; i<startDay; i++, column++)
    document.write("<TD>");

    for (i=1; i<=nDays; i++)
    {

    day = i;
    if(day < 10) day = "0" + day;
    document.write("<TD align=\"center\" valign=\"top\"> <font color=#777777 size=3 face=\"arial, sans serif\">");
    if (i ==23)
    document.write("<a href=\"ayuntamiento.htm\"><FONT COLOR=\"#ff2222\">" + i + "</FONT></a>");
    //else  if (i ==20)
    //document.write("<a href=\"convocatorias.htm\"><FONT COLOR=\"#0000ff\"><b>" + i + "</b></FONT></a>");
    //else  if (i ==21)
    //document.write("<a href=\"convocatorias.htm\"><FONT COLOR=\"#0000ff\"><b>" + i + "</b></FONT></a>");
 
    else document.write(i);
    column++;
    if (column == 7)
    {
    document.write("</font><TR>"); // inicio de nueva linea
    column = 0;
    }
    }
    document.write("</TABLE></td></tr></table>");

    document.writeln("</CENTER>");
    }
    calendar();
    //-->
  
   document.writeln("</CENTER>");   
   

document.write("</div>");

