
var entryUUIDsList = new Array("E20091109235133","E20091002210214","E20090921124933","E20090912213406","E20090905000512","E20090901223701","E20090827151343","E20090825003021","E20090819214743","E20090728235819","E20090707230421","E20090703122450","E20090629213643","E20090617225419","E20090616084259","E20090605211111","E20090421001134","E20090415004406","E20090311033022","E20090308223030","E20090303005810","E20090221230252","E20090216020654","E20090212022624","E20090208221017","E20081224021609","E20081215140654","E20081211231919","E20081128015416","E20081107014144","E20081103202018","E20080904014806","E20080901220400","E20080624220024","E20080619010524","E20080616235744","E20080605233549","E20080521034317","E20080516020624","E20080512024811","E20080506035138","E20080430014136","E20080427032305","E20080410023256","E20080405012551","E20080331025926","E20080317034906","E20080313025342","E20080226022434","E20080222125820","E20080214033225","E20080209151946","E20080201035145","E20080125002755","E20071222035721","E20071210220722","E20071206031811","E20071130031217","E20071114230540","E20071112205957","E20071108032555","E20071021162652","E20071006014558","E20071002034934","E20070605021748","E20070527011027","E20070430233213","E20070322000829","E20070131182631","E20070114031740","E20070111210016","E20061231003501","E20061128021131","E20061029122447","E20061006141317","E20060521032018","E20050914233120","E20050915125228");

function getHaloscanJavascript() {
	var haloscanJavascript = '';
	document.write(haloscanJavascript);
}

function getCommentsCode(entryUUID) {
	var commentsCode = '';
	document.write(commentsCode);
}

function getAdsenseCode() {
	var adsenseCode = '';
	document.write(adsenseCode);
}

function getNextEntryLink(currentUUID) {   
	var i;
	var entryUUID;
	var categoryUUID;
	
    for(i = 0; i < entryUUIDsList.length -1; i++) {
        if(entryUUIDsList[i] == currentUUID) {
			entryUUID = entryUUIDsList[i+1];
			categoryUUID = getCategoryUUIDForEntry(entryUUID);
            document.write('<a href="../../' + categoryUUID + '/' + entryUUID + '/index.html"> Next </a>');
			return;
        }
    }
	
	document.write('');
}

function getPreviousEntryLink(currentUUID) {   
	var i;
	var entryUUID;
	var categoryUUID;
	
    for(i = 1; i < entryUUIDsList.length; i++) {
        if(entryUUIDsList[i] == currentUUID) {
			entryUUID = entryUUIDsList[i-1];
			categoryUUID = getCategoryUUIDForEntry(entryUUID);
            document.write('<a href="../../' + categoryUUID + '/' + entryUUID + '/index.html"> Previous </a>');
			return;
        }
    }
	
	document.write('');
}

function getCategoryUUIDForEntry(entryUUID) {
    var entryCategoryUUIDPairs = new Array("E20091109235133","C12842123","E20091002210214","C1524140684","E20090921124933","C275148649","E20090912213406","C157472673","E20090905000512","C37685682","E20090901223701","C1578704959","E20090827151343","C701133590","E20090825003021","C1842251579","E20090819214743","C167044444","E20090728235819","C1810816775","E20090707230421","C1881221688","E20090703122450","C212922253","E20090629213643","C1704726908","E20090617225419","C28111200","E20090616084259","C2049468284","E20090605211111","C674688158","E20090421001134","C1134667560","E20090415004406","C1206392002","E20090311033022","C1948860855","E20090308223030","C1199109312","E20090303005810","C909087259","E20090221230252","C1624577335","E20090216020654","C10479553","E20090212022624","C126975937","E20090208221017","C2053979368","E20081224021609","C103785141","E20081215140654","C80054398","E20081211231919","C1066504829","E20081128015416","C696194110","E20081107014144","C1837134154","E20081103202018","C1606847260","E20080904014806","C282445581","E20080901220400","C2043608177","E20080624220024","C726273582","E20080619010524","C276729914","E20080616235744","C489394444","E20080605233549","C1253573218","E20080521034317","C1891058256","E20080516020624","C897570137","E20080512024811","C1374750161","E20080506035138","C1828912986","E20080430014136","C1006558065","E20080427032305","C728499275","E20080410023256","C953798309","E20080405012551","C716622022","E20080331025926","C141965677","E20080317034906","C992193242","E20080313025342","C1506180861","E20080226022434","C1656462758","E20080222125820","C1004579410","E20080214033225","C187746348","E20080209151946","C1172321991","E20080201035145","C1702306285","E20080125002755","C399270732","E20071222035721","C1696024019","E20071210220722","C1910971742","E20071206031811","C1406807676","E20071130031217","C2142761500","E20071114230540","C351264401","E20071112205957","C577541657","E20071108032555","C1462933681","E20071021162652","C1306234206","E20071006014558","C302536974","E20071002034934","C1837443113","E20070605021748","C1576566175","E20070527011027","C253306328","E20070430233213","C9072617","E20070322000829","C1575150996","E20070131182631","C1711637601","E20070114031740","C213265317","E20070111210016","C1860591585","E20061231003501","C2037613811","E20061128021131","C1362994797","E20061029122447","C1702179280","E20061006141317","C1252725207","E20060521032018","C2126962984","E20050914233120","C131062164","E20050915125228","C1075632517");
    
    for(var i = 0; i < entryCategoryUUIDPairs.length -1; i++) {
        if(entryCategoryUUIDPairs[i] == entryUUID) {
            return(entryCategoryUUIDPairs[i+1]);
        }
    }
}

function getBlogName() {
    var blogName = 'Juan Beat, Editor de Los Avengers Fanzine y Valiant 76 Fanzine';
    document.write(blogName);
}

function getCategoryName(categoryUUID) {
    var categoryPairs = new Array("C141965677","Marzo 31 2008","C37685682","Septiembre 05 2009","C1075632517","Julio 21 2005","C1948860855","Marzo 11 2009","C577541657","Noviembre 12 2007","C1066504829","Diciembre 11 2008","C1702306285","Febrero 01 2008","C10479553","Febrero 16 2009","C726273582","Junio 24 2008","C1711637601","Enero 31 2007","C276729914","Junio 19 2008","C1837443113","Octubre 02 2007","C1696024019","Diciembre 22 2007","C131062164","Agosto 21 2005","C1837134154","Noviembre 07 2008","C187746348","Febrero 14 2008","C103785141","Diciembre 24 2008","C212922253","Julio 03 2009","C9072617","Abril 30 2007","C1881221688","Julio 07 2009","C953798309","Abril 10 2008","C1462933681","Noviembre 08 2007","C213265317","Enero 14 2007","C716622022","Abril 05 2008","C1810816775","Julio 28 2009","C12842123","Noviembre 09 2009","C1842251579","Agosto 25, 2009","C1506180861","Marzo 13 2008","C1606847260","Noviembre 03 2008","C253306328","Mayo 27 2007","C282445581","Septiembre 04 2008","C1704726908","Junio 29 2009","C275148649","Septiembre 1 2009","C1575150996","Marzo 22 2007","C1374750161","Mayo 12 2008","C167044444","Agosto 19, 2009","C1134667560","Abril 21 2009","C1004579410","Febrero 22 2008","C909087259","Marzo 03 2009","C399270732","Enero 25 2008","C1006558065","Abril 30 2008","C351264401","Noviembre 14 2007","C1410956214","unfiled","C1524140684","Octubre 02 2009","C1624577335","Febrero 21 2009","C1362994797","Noviembre 28 2006","C302536974","Octubre 06 2007","C1199109312","Marzo 08 2009","C28111200","Junio 17 2009","C1306234206","Octubre 21 2007","C1206392002","Abril 15 2009","C1172321991","Febrero 09 2008","C992193242","Marzo 17 2008","C489394444","junio 16 2008","C1576566175","Junio 05 2007","C1828912986","Mayo 06 2008","C1702179280","Octubre 29 2006","C1253573218","junio 05 2008","C2053979368","Febrero 08 2009","C897570137","Mayo 16 2008","C157472673","Septiembre 12 2009","C2142761500","Noviembre 30 2007","C2043608177","Septiembre 01 2008","C126975937","Febrero 12 2009","C2126962984","Mayo 21 2006","C701133590","Agosto 27 2009","C1578704959","Septiembre 01  2009","C1656462758","Febrero 26 2008","C696194110","Noviembre 28 2008","C2037613811","Diciembre 31 2006","C1252725207","Octubre 06 2006","C1406807676","Diciembre  06 2007","C1910971742","Diciembre 10 2007","C2049468284","Junio 16 2009","C80054398","Diciembre 15 2008","C1860591585","Enero 11 2007","C1891058256","Mayo 21 2008","C674688158","Junio 05 2009","C728499275","Abril 27 2008");
    
    for(var i = 0; i < categoryPairs.length -1; i++) {
        if(categoryPairs[i] == categoryUUID) {
            document.write(categoryPairs[i+1]);
        }
    }
}

function getCalendarHead() {
    var calendarHead = 'Noviembre 2009';
    document.write(calendarHead);
}

function getBlogCalendarRows() {
    var calendarRows = '<tr><td align="center"><span class="calendar">1</span></td><td align="center"><span class="calendar">2</span></td><td align="center"><span class="calendar">3</span></td><td align="center"><span class="calendar">4</span></td><td align="center"><span class="calendar">5</span></td><td align="center"><span class="calendar">6</span></td><td align="center"><span class="calendar">7</span></td></tr> <tr><td align="center"><span class="calendar">8</span></td><td align="center"><span class="calendar"><a href="2009/11/9/index.html">9</a></span></td><td align="center"><span class="calendar">10</span></td><td align="center"><span class="calendar">11</span></td><td align="center"><span class="calendar">12</span></td><td align="center"><span class="calendar">13</span></td><td align="center"><span class="calendar">14</span></td></tr> <tr><td align="center"><span class="calendar">15</span></td><td align="center"><span class="calendar">16</span></td><td align="center"><span class="calendar">17</span></td><td align="center"><span class="calendar">18</span></td><td align="center"><span class="calendar">19</span></td><td align="center"><span class="calendar">20</span></td><td align="center"><span class="calendar">21</span></td></tr> <tr><td align="center"><span class="calendar">22</span></td><td align="center"><span class="calendar">23</span></td><td align="center"><span class="calendar">24</span></td><td align="center"><span class="calendar">25</span></td><td align="center"><span class="calendar">26</span></td><td align="center"><span class="calendar">27</span></td><td align="center"><span class="calendar">28</span></td></tr> <tr><td align="center"><span class="calendar">29</span></td><td align="center"><span class="calendar">30</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td></tr> <tr><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td></tr>';
    document.write(calendarRows);
}

function getCategoryCalendarRows() {
    var calendarRows = '<tr><td align="center"><span class="calendar">1</span></td><td align="center"><span class="calendar">2</span></td><td align="center"><span class="calendar">3</span></td><td align="center"><span class="calendar">4</span></td><td align="center"><span class="calendar">5</span></td><td align="center"><span class="calendar">6</span></td><td align="center"><span class="calendar">7</span></td></tr> <tr><td align="center"><span class="calendar">8</span></td><td align="center"><span class="calendar"><a href="../2009/11/9/index.html">9</a></span></td><td align="center"><span class="calendar">10</span></td><td align="center"><span class="calendar">11</span></td><td align="center"><span class="calendar">12</span></td><td align="center"><span class="calendar">13</span></td><td align="center"><span class="calendar">14</span></td></tr> <tr><td align="center"><span class="calendar">15</span></td><td align="center"><span class="calendar">16</span></td><td align="center"><span class="calendar">17</span></td><td align="center"><span class="calendar">18</span></td><td align="center"><span class="calendar">19</span></td><td align="center"><span class="calendar">20</span></td><td align="center"><span class="calendar">21</span></td></tr> <tr><td align="center"><span class="calendar">22</span></td><td align="center"><span class="calendar">23</span></td><td align="center"><span class="calendar">24</span></td><td align="center"><span class="calendar">25</span></td><td align="center"><span class="calendar">26</span></td><td align="center"><span class="calendar">27</span></td><td align="center"><span class="calendar">28</span></td></tr> <tr><td align="center"><span class="calendar">29</span></td><td align="center"><span class="calendar">30</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td></tr> <tr><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td></tr>';
    document.write(calendarRows);
}

function getEntryCalendarRows() {
    var calendarRows = '<tr><td align="center"><span class="calendar">1</span></td><td align="center"><span class="calendar">2</span></td><td align="center"><span class="calendar">3</span></td><td align="center"><span class="calendar">4</span></td><td align="center"><span class="calendar">5</span></td><td align="center"><span class="calendar">6</span></td><td align="center"><span class="calendar">7</span></td></tr> <tr><td align="center"><span class="calendar">8</span></td><td align="center"><span class="calendar"><a href="../../2009/11/9/index.html">9</a></span></td><td align="center"><span class="calendar">10</span></td><td align="center"><span class="calendar">11</span></td><td align="center"><span class="calendar">12</span></td><td align="center"><span class="calendar">13</span></td><td align="center"><span class="calendar">14</span></td></tr> <tr><td align="center"><span class="calendar">15</span></td><td align="center"><span class="calendar">16</span></td><td align="center"><span class="calendar">17</span></td><td align="center"><span class="calendar">18</span></td><td align="center"><span class="calendar">19</span></td><td align="center"><span class="calendar">20</span></td><td align="center"><span class="calendar">21</span></td></tr> <tr><td align="center"><span class="calendar">22</span></td><td align="center"><span class="calendar">23</span></td><td align="center"><span class="calendar">24</span></td><td align="center"><span class="calendar">25</span></td><td align="center"><span class="calendar">26</span></td><td align="center"><span class="calendar">27</span></td><td align="center"><span class="calendar">28</span></td></tr> <tr><td align="center"><span class="calendar">29</span></td><td align="center"><span class="calendar">30</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td></tr> <tr><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td></tr>';
    document.write(calendarRows);
}

function getArchiveCalendarRows() {
    var calendarRows = '<tr><td align="center"><span class="calendar">1</span></td><td align="center"><span class="calendar">2</span></td><td align="center"><span class="calendar">3</span></td><td align="center"><span class="calendar">4</span></td><td align="center"><span class="calendar">5</span></td><td align="center"><span class="calendar">6</span></td><td align="center"><span class="calendar">7</span></td></tr> <tr><td align="center"><span class="calendar">8</span></td><td align="center"><span class="calendar"><a href="2009/11/9/index.html">9</a></span></td><td align="center"><span class="calendar">10</span></td><td align="center"><span class="calendar">11</span></td><td align="center"><span class="calendar">12</span></td><td align="center"><span class="calendar">13</span></td><td align="center"><span class="calendar">14</span></td></tr> <tr><td align="center"><span class="calendar">15</span></td><td align="center"><span class="calendar">16</span></td><td align="center"><span class="calendar">17</span></td><td align="center"><span class="calendar">18</span></td><td align="center"><span class="calendar">19</span></td><td align="center"><span class="calendar">20</span></td><td align="center"><span class="calendar">21</span></td></tr> <tr><td align="center"><span class="calendar">22</span></td><td align="center"><span class="calendar">23</span></td><td align="center"><span class="calendar">24</span></td><td align="center"><span class="calendar">25</span></td><td align="center"><span class="calendar">26</span></td><td align="center"><span class="calendar">27</span></td><td align="center"><span class="calendar">28</span></td></tr> <tr><td align="center"><span class="calendar">29</span></td><td align="center"><span class="calendar">30</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td></tr> <tr><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td></tr>';
    document.write(calendarRows);
}

function getYearCalendarRows() {
    var calendarRows = '<tr><td align="center"><span class="calendar">1</span></td><td align="center"><span class="calendar">2</span></td><td align="center"><span class="calendar">3</span></td><td align="center"><span class="calendar">4</span></td><td align="center"><span class="calendar">5</span></td><td align="center"><span class="calendar">6</span></td><td align="center"><span class="calendar">7</span></td></tr> <tr><td align="center"><span class="calendar">8</span></td><td align="center"><span class="calendar"><a href="11/9/index.html">9</a></span></td><td align="center"><span class="calendar">10</span></td><td align="center"><span class="calendar">11</span></td><td align="center"><span class="calendar">12</span></td><td align="center"><span class="calendar">13</span></td><td align="center"><span class="calendar">14</span></td></tr> <tr><td align="center"><span class="calendar">15</span></td><td align="center"><span class="calendar">16</span></td><td align="center"><span class="calendar">17</span></td><td align="center"><span class="calendar">18</span></td><td align="center"><span class="calendar">19</span></td><td align="center"><span class="calendar">20</span></td><td align="center"><span class="calendar">21</span></td></tr> <tr><td align="center"><span class="calendar">22</span></td><td align="center"><span class="calendar">23</span></td><td align="center"><span class="calendar">24</span></td><td align="center"><span class="calendar">25</span></td><td align="center"><span class="calendar">26</span></td><td align="center"><span class="calendar">27</span></td><td align="center"><span class="calendar">28</span></td></tr> <tr><td align="center"><span class="calendar">29</span></td><td align="center"><span class="calendar">30</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td></tr> <tr><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td></tr>';
    document.write(calendarRows);
}

function getDayCalendarRows() {
    var calendarRows = '<tr><td align="center"><span class="calendar">1</span></td><td align="center"><span class="calendar">2</span></td><td align="center"><span class="calendar">3</span></td><td align="center"><span class="calendar">4</span></td><td align="center"><span class="calendar">5</span></td><td align="center"><span class="calendar">6</span></td><td align="center"><span class="calendar">7</span></td></tr> <tr><td align="center"><span class="calendar">8</span></td><td align="center"><span class="calendar"><a href="../../../2009/11/9/index.html">9</a></span></td><td align="center"><span class="calendar">10</span></td><td align="center"><span class="calendar">11</span></td><td align="center"><span class="calendar">12</span></td><td align="center"><span class="calendar">13</span></td><td align="center"><span class="calendar">14</span></td></tr> <tr><td align="center"><span class="calendar">15</span></td><td align="center"><span class="calendar">16</span></td><td align="center"><span class="calendar">17</span></td><td align="center"><span class="calendar">18</span></td><td align="center"><span class="calendar">19</span></td><td align="center"><span class="calendar">20</span></td><td align="center"><span class="calendar">21</span></td></tr> <tr><td align="center"><span class="calendar">22</span></td><td align="center"><span class="calendar">23</span></td><td align="center"><span class="calendar">24</span></td><td align="center"><span class="calendar">25</span></td><td align="center"><span class="calendar">26</span></td><td align="center"><span class="calendar">27</span></td><td align="center"><span class="calendar">28</span></td></tr> <tr><td align="center"><span class="calendar">29</span></td><td align="center"><span class="calendar">30</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td></tr> <tr><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td><td align="center"><span class="calendar">&nbsp;</span></td></tr>';
    document.write(calendarRows);
}

function getBlogEntriesCount() {
    var blogEntriesCount = '78';
    document.write(blogEntriesCount);
}

function getCategoryStatistics() {
    var categoryStatistics = 'Abril 05 2008: 1 <br />Abril 10 2008: 1 <br />Abril 15 2009: 1 <br />Abril 21 2009: 1 <br />Abril 27 2008: 1 <br />Abril 30 2007: 1 <br />Abril 30 2008: 1 <br />Agosto 19, 2009: 1 <br />Agosto 21 2005: 1 <br />Agosto 25, 2009: 1 <br />Agosto 27 2009: 1 <br />Diciembre  06 2007: 1 <br />Diciembre 10 2007: 1 <br />Diciembre 11 2008: 1 <br />Diciembre 15 2008: 1 <br />Diciembre 22 2007: 1 <br />Diciembre 24 2008: 1 <br />Diciembre 31 2006: 1 <br />Enero 11 2007: 1 <br />Enero 14 2007: 1 <br />Enero 25 2008: 1 <br />Enero 31 2007: 1 <br />Febrero 01 2008: 1 <br />Febrero 08 2009: 1 <br />Febrero 09 2008: 1 <br />Febrero 12 2009: 1 <br />Febrero 14 2008: 1 <br />Febrero 16 2009: 1 <br />Febrero 21 2009: 1 <br />Febrero 22 2008: 1 <br />Febrero 26 2008: 1 <br />Julio 03 2009: 1 <br />Julio 07 2009: 1 <br />Julio 21 2005: 1 <br />Julio 28 2009: 1 <br />Junio 05 2007: 1 <br />junio 05 2008: 1 <br />Junio 05 2009: 1 <br />junio 16 2008: 1 <br />Junio 16 2009: 1 <br />Junio 17 2009: 1 <br />Junio 19 2008: 1 <br />Junio 24 2008: 1 <br />Junio 29 2009: 1 <br />Marzo 03 2009: 1 <br />Marzo 08 2009: 1 <br />Marzo 11 2009: 1 <br />Marzo 13 2008: 1 <br />Marzo 17 2008: 1 <br />Marzo 22 2007: 1 <br />Marzo 31 2008: 1 <br />Mayo 06 2008: 1 <br />Mayo 12 2008: 1 <br />Mayo 16 2008: 1 <br />Mayo 21 2006: 1 <br />Mayo 21 2008: 1 <br />Mayo 27 2007: 1 <br />Noviembre 03 2008: 1 <br />Noviembre 07 2008: 1 <br />Noviembre 08 2007: 1 <br />Noviembre 09 2009: 1 <br />Noviembre 12 2007: 1 <br />Noviembre 14 2007: 1 <br />Noviembre 28 2006: 1 <br />Noviembre 28 2008: 1 <br />Noviembre 30 2007: 1 <br />Octubre 02 2007: 1 <br />Octubre 02 2009: 1 <br />Octubre 06 2006: 1 <br />Octubre 06 2007: 1 <br />Octubre 21 2007: 1 <br />Octubre 29 2006: 1 <br />Septiembre 01  2009: 1 <br />Septiembre 01 2008: 1 <br />Septiembre 04 2008: 1 <br />Septiembre 05 2009: 1 <br />Septiembre 1 2009: 1 <br />Septiembre 12 2009: 1 <br />';
    document.write(categoryStatistics);
}

function getCategoryEntriesCount(categoryUUID) {
    var categoryPairs = new Array("C141965677","1","C37685682","1","C1075632517","1","C1948860855","1","C577541657","1","C1066504829","1","C1702306285","1","C10479553","1","C726273582","1","C1711637601","1","C276729914","1","C1837443113","1","C1696024019","1","C131062164","1","C1837134154","1","C187746348","1","C103785141","1","C212922253","1","C9072617","1","C1881221688","1","C953798309","1","C1462933681","1","C213265317","1","C716622022","1","C1810816775","1","C12842123","1","C1842251579","1","C1506180861","1","C1606847260","1","C253306328","1","C282445581","1","C1704726908","1","C275148649","1","C1575150996","1","C1374750161","1","C167044444","1","C1134667560","1","C1004579410","1","C909087259","1","C399270732","1","C1006558065","1","C351264401","1","C1410956214","0","C1524140684","1","C1624577335","1","C1362994797","1","C302536974","1","C1199109312","1","C28111200","1","C1306234206","1","C1206392002","1","C1172321991","1","C992193242","1","C489394444","1","C1576566175","1","C1828912986","1","C1702179280","1","C1253573218","1","C2053979368","1","C897570137","1","C157472673","1","C2142761500","1","C2043608177","1","C126975937","1","C2126962984","1","C701133590","1","C1578704959","1","C1656462758","1","C696194110","1","C2037613811","1","C1252725207","1","C1406807676","1","C1910971742","1","C2049468284","1","C80054398","1","C1860591585","1","C1891058256","1","C674688158","1","C728499275","1");
    
    for(var i = 0; i < categoryPairs.length; i++) {
        if(categoryPairs[i] == categoryUUID) {
            document.write(categoryPairs[i+1]);
        }
    }
}

function getBlogCategories() {
    var categories = ' <a href="C716622022/index.html"> Abril 05 2008 </a> <br />  <a href="C953798309/index.html"> Abril 10 2008 </a> <br />  <a href="C1206392002/index.html"> Abril 15 2009 </a> <br />  <a href="C1134667560/index.html"> Abril 21 2009 </a> <br />  <a href="C728499275/index.html"> Abril 27 2008 </a> <br />  <a href="C9072617/index.html"> Abril 30 2007 </a> <br />  <a href="C1006558065/index.html"> Abril 30 2008 </a> <br />  <a href="C167044444/index.html"> Agosto 19, 2009 </a> <br />  <a href="C131062164/index.html"> Agosto 21 2005 </a> <br />  <a href="C1842251579/index.html"> Agosto 25, 2009 </a> <br />  <a href="C701133590/index.html"> Agosto 27 2009 </a> <br />  <a href="C1406807676/index.html"> Diciembre  06 2007 </a> <br />  <a href="C1910971742/index.html"> Diciembre 10 2007 </a> <br />  <a href="C1066504829/index.html"> Diciembre 11 2008 </a> <br />  <a href="C80054398/index.html"> Diciembre 15 2008 </a> <br />  <a href="C1696024019/index.html"> Diciembre 22 2007 </a> <br />  <a href="C103785141/index.html"> Diciembre 24 2008 </a> <br />  <a href="C2037613811/index.html"> Diciembre 31 2006 </a> <br />  <a href="C1860591585/index.html"> Enero 11 2007 </a> <br />  <a href="C213265317/index.html"> Enero 14 2007 </a> <br />  <a href="C399270732/index.html"> Enero 25 2008 </a> <br />  <a href="C1711637601/index.html"> Enero 31 2007 </a> <br />  <a href="C1702306285/index.html"> Febrero 01 2008 </a> <br />  <a href="C2053979368/index.html"> Febrero 08 2009 </a> <br />  <a href="C1172321991/index.html"> Febrero 09 2008 </a> <br />  <a href="C126975937/index.html"> Febrero 12 2009 </a> <br />  <a href="C187746348/index.html"> Febrero 14 2008 </a> <br />  <a href="C10479553/index.html"> Febrero 16 2009 </a> <br />  <a href="C1624577335/index.html"> Febrero 21 2009 </a> <br />  <a href="C1004579410/index.html"> Febrero 22 2008 </a> <br />  <a href="C1656462758/index.html"> Febrero 26 2008 </a> <br />  <a href="C212922253/index.html"> Julio 03 2009 </a> <br />  <a href="C1881221688/index.html"> Julio 07 2009 </a> <br />  <a href="C1075632517/index.html"> Julio 21 2005 </a> <br />  <a href="C1810816775/index.html"> Julio 28 2009 </a> <br />  <a href="C1576566175/index.html"> Junio 05 2007 </a> <br />  <a href="C1253573218/index.html"> junio 05 2008 </a> <br />  <a href="C674688158/index.html"> Junio 05 2009 </a> <br />  <a href="C489394444/index.html"> junio 16 2008 </a> <br />  <a href="C2049468284/index.html"> Junio 16 2009 </a> <br />  <a href="C28111200/index.html"> Junio 17 2009 </a> <br />  <a href="C276729914/index.html"> Junio 19 2008 </a> <br />  <a href="C726273582/index.html"> Junio 24 2008 </a> <br />  <a href="C1704726908/index.html"> Junio 29 2009 </a> <br />  <a href="C909087259/index.html"> Marzo 03 2009 </a> <br />  <a href="C1199109312/index.html"> Marzo 08 2009 </a> <br />  <a href="C1948860855/index.html"> Marzo 11 2009 </a> <br />  <a href="C1506180861/index.html"> Marzo 13 2008 </a> <br />  <a href="C992193242/index.html"> Marzo 17 2008 </a> <br />  <a href="C1575150996/index.html"> Marzo 22 2007 </a> <br />  <a href="C141965677/index.html"> Marzo 31 2008 </a> <br />  <a href="C1828912986/index.html"> Mayo 06 2008 </a> <br />  <a href="C1374750161/index.html"> Mayo 12 2008 </a> <br />  <a href="C897570137/index.html"> Mayo 16 2008 </a> <br />  <a href="C2126962984/index.html"> Mayo 21 2006 </a> <br />  <a href="C1891058256/index.html"> Mayo 21 2008 </a> <br />  <a href="C253306328/index.html"> Mayo 27 2007 </a> <br />  <a href="C1606847260/index.html"> Noviembre 03 2008 </a> <br />  <a href="C1837134154/index.html"> Noviembre 07 2008 </a> <br />  <a href="C1462933681/index.html"> Noviembre 08 2007 </a> <br />  <a href="C12842123/index.html"> Noviembre 09 2009 </a> <br />  <a href="C577541657/index.html"> Noviembre 12 2007 </a> <br />  <a href="C351264401/index.html"> Noviembre 14 2007 </a> <br />  <a href="C1362994797/index.html"> Noviembre 28 2006 </a> <br />  <a href="C696194110/index.html"> Noviembre 28 2008 </a> <br />  <a href="C2142761500/index.html"> Noviembre 30 2007 </a> <br />  <a href="C1837443113/index.html"> Octubre 02 2007 </a> <br />  <a href="C1524140684/index.html"> Octubre 02 2009 </a> <br />  <a href="C1252725207/index.html"> Octubre 06 2006 </a> <br />  <a href="C302536974/index.html"> Octubre 06 2007 </a> <br />  <a href="C1306234206/index.html"> Octubre 21 2007 </a> <br />  <a href="C1702179280/index.html"> Octubre 29 2006 </a> <br />  <a href="C1578704959/index.html"> Septiembre 01  2009 </a> <br />  <a href="C2043608177/index.html"> Septiembre 01 2008 </a> <br />  <a href="C282445581/index.html"> Septiembre 04 2008 </a> <br />  <a href="C37685682/index.html"> Septiembre 05 2009 </a> <br />  <a href="C275148649/index.html"> Septiembre 1 2009 </a> <br />  <a href="C157472673/index.html"> Septiembre 12 2009 </a> <br /> ';
    document.write(categories); 
}

function getBlogHorizontalCategories() {
    var horizontalCategories = ' <a href="C716622022/index.html"> Abril 05 2008 </a> &nbsp; &nbsp;  <a href="C953798309/index.html"> Abril 10 2008 </a> &nbsp; &nbsp;  <a href="C1206392002/index.html"> Abril 15 2009 </a> &nbsp; &nbsp;  <a href="C1134667560/index.html"> Abril 21 2009 </a> &nbsp; &nbsp;  <a href="C728499275/index.html"> Abril 27 2008 </a> &nbsp; &nbsp;  <a href="C9072617/index.html"> Abril 30 2007 </a> &nbsp; &nbsp;  <a href="C1006558065/index.html"> Abril 30 2008 </a> &nbsp; &nbsp;  <a href="C167044444/index.html"> Agosto 19, 2009 </a> &nbsp; &nbsp;  <a href="C131062164/index.html"> Agosto 21 2005 </a> &nbsp; &nbsp;  <a href="C1842251579/index.html"> Agosto 25, 2009 </a> &nbsp; &nbsp;  <a href="C701133590/index.html"> Agosto 27 2009 </a> &nbsp; &nbsp;  <a href="C1406807676/index.html"> Diciembre  06 2007 </a> &nbsp; &nbsp;  <a href="C1910971742/index.html"> Diciembre 10 2007 </a> &nbsp; &nbsp;  <a href="C1066504829/index.html"> Diciembre 11 2008 </a> &nbsp; &nbsp;  <a href="C80054398/index.html"> Diciembre 15 2008 </a> &nbsp; &nbsp;  <a href="C1696024019/index.html"> Diciembre 22 2007 </a> &nbsp; &nbsp;  <a href="C103785141/index.html"> Diciembre 24 2008 </a> &nbsp; &nbsp;  <a href="C2037613811/index.html"> Diciembre 31 2006 </a> &nbsp; &nbsp;  <a href="C1860591585/index.html"> Enero 11 2007 </a> &nbsp; &nbsp;  <a href="C213265317/index.html"> Enero 14 2007 </a> &nbsp; &nbsp;  <a href="C399270732/index.html"> Enero 25 2008 </a> &nbsp; &nbsp;  <a href="C1711637601/index.html"> Enero 31 2007 </a> &nbsp; &nbsp;  <a href="C1702306285/index.html"> Febrero 01 2008 </a> &nbsp; &nbsp;  <a href="C2053979368/index.html"> Febrero 08 2009 </a> &nbsp; &nbsp;  <a href="C1172321991/index.html"> Febrero 09 2008 </a> &nbsp; &nbsp;  <a href="C126975937/index.html"> Febrero 12 2009 </a> &nbsp; &nbsp;  <a href="C187746348/index.html"> Febrero 14 2008 </a> &nbsp; &nbsp;  <a href="C10479553/index.html"> Febrero 16 2009 </a> &nbsp; &nbsp;  <a href="C1624577335/index.html"> Febrero 21 2009 </a> &nbsp; &nbsp;  <a href="C1004579410/index.html"> Febrero 22 2008 </a> &nbsp; &nbsp;  <a href="C1656462758/index.html"> Febrero 26 2008 </a> &nbsp; &nbsp;  <a href="C212922253/index.html"> Julio 03 2009 </a> &nbsp; &nbsp;  <a href="C1881221688/index.html"> Julio 07 2009 </a> &nbsp; &nbsp;  <a href="C1075632517/index.html"> Julio 21 2005 </a> &nbsp; &nbsp;  <a href="C1810816775/index.html"> Julio 28 2009 </a> &nbsp; &nbsp;  <a href="C1576566175/index.html"> Junio 05 2007 </a> &nbsp; &nbsp;  <a href="C1253573218/index.html"> junio 05 2008 </a> &nbsp; &nbsp;  <a href="C674688158/index.html"> Junio 05 2009 </a> &nbsp; &nbsp;  <a href="C489394444/index.html"> junio 16 2008 </a> &nbsp; &nbsp;  <a href="C2049468284/index.html"> Junio 16 2009 </a> &nbsp; &nbsp;  <a href="C28111200/index.html"> Junio 17 2009 </a> &nbsp; &nbsp;  <a href="C276729914/index.html"> Junio 19 2008 </a> &nbsp; &nbsp;  <a href="C726273582/index.html"> Junio 24 2008 </a> &nbsp; &nbsp;  <a href="C1704726908/index.html"> Junio 29 2009 </a> &nbsp; &nbsp;  <a href="C909087259/index.html"> Marzo 03 2009 </a> &nbsp; &nbsp;  <a href="C1199109312/index.html"> Marzo 08 2009 </a> &nbsp; &nbsp;  <a href="C1948860855/index.html"> Marzo 11 2009 </a> &nbsp; &nbsp;  <a href="C1506180861/index.html"> Marzo 13 2008 </a> &nbsp; &nbsp;  <a href="C992193242/index.html"> Marzo 17 2008 </a> &nbsp; &nbsp;  <a href="C1575150996/index.html"> Marzo 22 2007 </a> &nbsp; &nbsp;  <a href="C141965677/index.html"> Marzo 31 2008 </a> &nbsp; &nbsp;  <a href="C1828912986/index.html"> Mayo 06 2008 </a> &nbsp; &nbsp;  <a href="C1374750161/index.html"> Mayo 12 2008 </a> &nbsp; &nbsp;  <a href="C897570137/index.html"> Mayo 16 2008 </a> &nbsp; &nbsp;  <a href="C2126962984/index.html"> Mayo 21 2006 </a> &nbsp; &nbsp;  <a href="C1891058256/index.html"> Mayo 21 2008 </a> &nbsp; &nbsp;  <a href="C253306328/index.html"> Mayo 27 2007 </a> &nbsp; &nbsp;  <a href="C1606847260/index.html"> Noviembre 03 2008 </a> &nbsp; &nbsp;  <a href="C1837134154/index.html"> Noviembre 07 2008 </a> &nbsp; &nbsp;  <a href="C1462933681/index.html"> Noviembre 08 2007 </a> &nbsp; &nbsp;  <a href="C12842123/index.html"> Noviembre 09 2009 </a> &nbsp; &nbsp;  <a href="C577541657/index.html"> Noviembre 12 2007 </a> &nbsp; &nbsp;  <a href="C351264401/index.html"> Noviembre 14 2007 </a> &nbsp; &nbsp;  <a href="C1362994797/index.html"> Noviembre 28 2006 </a> &nbsp; &nbsp;  <a href="C696194110/index.html"> Noviembre 28 2008 </a> &nbsp; &nbsp;  <a href="C2142761500/index.html"> Noviembre 30 2007 </a> &nbsp; &nbsp;  <a href="C1837443113/index.html"> Octubre 02 2007 </a> &nbsp; &nbsp;  <a href="C1524140684/index.html"> Octubre 02 2009 </a> &nbsp; &nbsp;  <a href="C1252725207/index.html"> Octubre 06 2006 </a> &nbsp; &nbsp;  <a href="C302536974/index.html"> Octubre 06 2007 </a> &nbsp; &nbsp;  <a href="C1306234206/index.html"> Octubre 21 2007 </a> &nbsp; &nbsp;  <a href="C1702179280/index.html"> Octubre 29 2006 </a> &nbsp; &nbsp;  <a href="C1578704959/index.html"> Septiembre 01  2009 </a> &nbsp; &nbsp;  <a href="C2043608177/index.html"> Septiembre 01 2008 </a> &nbsp; &nbsp;  <a href="C282445581/index.html"> Septiembre 04 2008 </a> &nbsp; &nbsp;  <a href="C37685682/index.html"> Septiembre 05 2009 </a> &nbsp; &nbsp;  <a href="C275148649/index.html"> Septiembre 1 2009 </a> &nbsp; &nbsp;  <a href="C157472673/index.html"> Septiembre 12 2009 </a> &nbsp; &nbsp; ';
    document.write(horizontalCategories);
}

function getCategoryCategories() {
    var categories = ' <a href="../C716622022/index.html"> Abril 05 2008 </a> <br />  <a href="../C953798309/index.html"> Abril 10 2008 </a> <br />  <a href="../C1206392002/index.html"> Abril 15 2009 </a> <br />  <a href="../C1134667560/index.html"> Abril 21 2009 </a> <br />  <a href="../C728499275/index.html"> Abril 27 2008 </a> <br />  <a href="../C9072617/index.html"> Abril 30 2007 </a> <br />  <a href="../C1006558065/index.html"> Abril 30 2008 </a> <br />  <a href="../C167044444/index.html"> Agosto 19, 2009 </a> <br />  <a href="../C131062164/index.html"> Agosto 21 2005 </a> <br />  <a href="../C1842251579/index.html"> Agosto 25, 2009 </a> <br />  <a href="../C701133590/index.html"> Agosto 27 2009 </a> <br />  <a href="../C1406807676/index.html"> Diciembre  06 2007 </a> <br />  <a href="../C1910971742/index.html"> Diciembre 10 2007 </a> <br />  <a href="../C1066504829/index.html"> Diciembre 11 2008 </a> <br />  <a href="../C80054398/index.html"> Diciembre 15 2008 </a> <br />  <a href="../C1696024019/index.html"> Diciembre 22 2007 </a> <br />  <a href="../C103785141/index.html"> Diciembre 24 2008 </a> <br />  <a href="../C2037613811/index.html"> Diciembre 31 2006 </a> <br />  <a href="../C1860591585/index.html"> Enero 11 2007 </a> <br />  <a href="../C213265317/index.html"> Enero 14 2007 </a> <br />  <a href="../C399270732/index.html"> Enero 25 2008 </a> <br />  <a href="../C1711637601/index.html"> Enero 31 2007 </a> <br />  <a href="../C1702306285/index.html"> Febrero 01 2008 </a> <br />  <a href="../C2053979368/index.html"> Febrero 08 2009 </a> <br />  <a href="../C1172321991/index.html"> Febrero 09 2008 </a> <br />  <a href="../C126975937/index.html"> Febrero 12 2009 </a> <br />  <a href="../C187746348/index.html"> Febrero 14 2008 </a> <br />  <a href="../C10479553/index.html"> Febrero 16 2009 </a> <br />  <a href="../C1624577335/index.html"> Febrero 21 2009 </a> <br />  <a href="../C1004579410/index.html"> Febrero 22 2008 </a> <br />  <a href="../C1656462758/index.html"> Febrero 26 2008 </a> <br />  <a href="../C212922253/index.html"> Julio 03 2009 </a> <br />  <a href="../C1881221688/index.html"> Julio 07 2009 </a> <br />  <a href="../C1075632517/index.html"> Julio 21 2005 </a> <br />  <a href="../C1810816775/index.html"> Julio 28 2009 </a> <br />  <a href="../C1576566175/index.html"> Junio 05 2007 </a> <br />  <a href="../C1253573218/index.html"> junio 05 2008 </a> <br />  <a href="../C674688158/index.html"> Junio 05 2009 </a> <br />  <a href="../C489394444/index.html"> junio 16 2008 </a> <br />  <a href="../C2049468284/index.html"> Junio 16 2009 </a> <br />  <a href="../C28111200/index.html"> Junio 17 2009 </a> <br />  <a href="../C276729914/index.html"> Junio 19 2008 </a> <br />  <a href="../C726273582/index.html"> Junio 24 2008 </a> <br />  <a href="../C1704726908/index.html"> Junio 29 2009 </a> <br />  <a href="../C909087259/index.html"> Marzo 03 2009 </a> <br />  <a href="../C1199109312/index.html"> Marzo 08 2009 </a> <br />  <a href="../C1948860855/index.html"> Marzo 11 2009 </a> <br />  <a href="../C1506180861/index.html"> Marzo 13 2008 </a> <br />  <a href="../C992193242/index.html"> Marzo 17 2008 </a> <br />  <a href="../C1575150996/index.html"> Marzo 22 2007 </a> <br />  <a href="../C141965677/index.html"> Marzo 31 2008 </a> <br />  <a href="../C1828912986/index.html"> Mayo 06 2008 </a> <br />  <a href="../C1374750161/index.html"> Mayo 12 2008 </a> <br />  <a href="../C897570137/index.html"> Mayo 16 2008 </a> <br />  <a href="../C2126962984/index.html"> Mayo 21 2006 </a> <br />  <a href="../C1891058256/index.html"> Mayo 21 2008 </a> <br />  <a href="../C253306328/index.html"> Mayo 27 2007 </a> <br />  <a href="../C1606847260/index.html"> Noviembre 03 2008 </a> <br />  <a href="../C1837134154/index.html"> Noviembre 07 2008 </a> <br />  <a href="../C1462933681/index.html"> Noviembre 08 2007 </a> <br />  <a href="../C12842123/index.html"> Noviembre 09 2009 </a> <br />  <a href="../C577541657/index.html"> Noviembre 12 2007 </a> <br />  <a href="../C351264401/index.html"> Noviembre 14 2007 </a> <br />  <a href="../C1362994797/index.html"> Noviembre 28 2006 </a> <br />  <a href="../C696194110/index.html"> Noviembre 28 2008 </a> <br />  <a href="../C2142761500/index.html"> Noviembre 30 2007 </a> <br />  <a href="../C1837443113/index.html"> Octubre 02 2007 </a> <br />  <a href="../C1524140684/index.html"> Octubre 02 2009 </a> <br />  <a href="../C1252725207/index.html"> Octubre 06 2006 </a> <br />  <a href="../C302536974/index.html"> Octubre 06 2007 </a> <br />  <a href="../C1306234206/index.html"> Octubre 21 2007 </a> <br />  <a href="../C1702179280/index.html"> Octubre 29 2006 </a> <br />  <a href="../C1578704959/index.html"> Septiembre 01  2009 </a> <br />  <a href="../C2043608177/index.html"> Septiembre 01 2008 </a> <br />  <a href="../C282445581/index.html"> Septiembre 04 2008 </a> <br />  <a href="../C37685682/index.html"> Septiembre 05 2009 </a> <br />  <a href="../C275148649/index.html"> Septiembre 1 2009 </a> <br />  <a href="../C157472673/index.html"> Septiembre 12 2009 </a> <br /> ';
    document.write(categories); 
}

function getCategoryHorizontalCategories() {
    var horizontalCategories = ' <a href="../C716622022/index.html"> Abril 05 2008 </a> &nbsp; &nbsp;  <a href="../C953798309/index.html"> Abril 10 2008 </a> &nbsp; &nbsp;  <a href="../C1206392002/index.html"> Abril 15 2009 </a> &nbsp; &nbsp;  <a href="../C1134667560/index.html"> Abril 21 2009 </a> &nbsp; &nbsp;  <a href="../C728499275/index.html"> Abril 27 2008 </a> &nbsp; &nbsp;  <a href="../C9072617/index.html"> Abril 30 2007 </a> &nbsp; &nbsp;  <a href="../C1006558065/index.html"> Abril 30 2008 </a> &nbsp; &nbsp;  <a href="../C167044444/index.html"> Agosto 19, 2009 </a> &nbsp; &nbsp;  <a href="../C131062164/index.html"> Agosto 21 2005 </a> &nbsp; &nbsp;  <a href="../C1842251579/index.html"> Agosto 25, 2009 </a> &nbsp; &nbsp;  <a href="../C701133590/index.html"> Agosto 27 2009 </a> &nbsp; &nbsp;  <a href="../C1406807676/index.html"> Diciembre  06 2007 </a> &nbsp; &nbsp;  <a href="../C1910971742/index.html"> Diciembre 10 2007 </a> &nbsp; &nbsp;  <a href="../C1066504829/index.html"> Diciembre 11 2008 </a> &nbsp; &nbsp;  <a href="../C80054398/index.html"> Diciembre 15 2008 </a> &nbsp; &nbsp;  <a href="../C1696024019/index.html"> Diciembre 22 2007 </a> &nbsp; &nbsp;  <a href="../C103785141/index.html"> Diciembre 24 2008 </a> &nbsp; &nbsp;  <a href="../C2037613811/index.html"> Diciembre 31 2006 </a> &nbsp; &nbsp;  <a href="../C1860591585/index.html"> Enero 11 2007 </a> &nbsp; &nbsp;  <a href="../C213265317/index.html"> Enero 14 2007 </a> &nbsp; &nbsp;  <a href="../C399270732/index.html"> Enero 25 2008 </a> &nbsp; &nbsp;  <a href="../C1711637601/index.html"> Enero 31 2007 </a> &nbsp; &nbsp;  <a href="../C1702306285/index.html"> Febrero 01 2008 </a> &nbsp; &nbsp;  <a href="../C2053979368/index.html"> Febrero 08 2009 </a> &nbsp; &nbsp;  <a href="../C1172321991/index.html"> Febrero 09 2008 </a> &nbsp; &nbsp;  <a href="../C126975937/index.html"> Febrero 12 2009 </a> &nbsp; &nbsp;  <a href="../C187746348/index.html"> Febrero 14 2008 </a> &nbsp; &nbsp;  <a href="../C10479553/index.html"> Febrero 16 2009 </a> &nbsp; &nbsp;  <a href="../C1624577335/index.html"> Febrero 21 2009 </a> &nbsp; &nbsp;  <a href="../C1004579410/index.html"> Febrero 22 2008 </a> &nbsp; &nbsp;  <a href="../C1656462758/index.html"> Febrero 26 2008 </a> &nbsp; &nbsp;  <a href="../C212922253/index.html"> Julio 03 2009 </a> &nbsp; &nbsp;  <a href="../C1881221688/index.html"> Julio 07 2009 </a> &nbsp; &nbsp;  <a href="../C1075632517/index.html"> Julio 21 2005 </a> &nbsp; &nbsp;  <a href="../C1810816775/index.html"> Julio 28 2009 </a> &nbsp; &nbsp;  <a href="../C1576566175/index.html"> Junio 05 2007 </a> &nbsp; &nbsp;  <a href="../C1253573218/index.html"> junio 05 2008 </a> &nbsp; &nbsp;  <a href="../C674688158/index.html"> Junio 05 2009 </a> &nbsp; &nbsp;  <a href="../C489394444/index.html"> junio 16 2008 </a> &nbsp; &nbsp;  <a href="../C2049468284/index.html"> Junio 16 2009 </a> &nbsp; &nbsp;  <a href="../C28111200/index.html"> Junio 17 2009 </a> &nbsp; &nbsp;  <a href="../C276729914/index.html"> Junio 19 2008 </a> &nbsp; &nbsp;  <a href="../C726273582/index.html"> Junio 24 2008 </a> &nbsp; &nbsp;  <a href="../C1704726908/index.html"> Junio 29 2009 </a> &nbsp; &nbsp;  <a href="../C909087259/index.html"> Marzo 03 2009 </a> &nbsp; &nbsp;  <a href="../C1199109312/index.html"> Marzo 08 2009 </a> &nbsp; &nbsp;  <a href="../C1948860855/index.html"> Marzo 11 2009 </a> &nbsp; &nbsp;  <a href="../C1506180861/index.html"> Marzo 13 2008 </a> &nbsp; &nbsp;  <a href="../C992193242/index.html"> Marzo 17 2008 </a> &nbsp; &nbsp;  <a href="../C1575150996/index.html"> Marzo 22 2007 </a> &nbsp; &nbsp;  <a href="../C141965677/index.html"> Marzo 31 2008 </a> &nbsp; &nbsp;  <a href="../C1828912986/index.html"> Mayo 06 2008 </a> &nbsp; &nbsp;  <a href="../C1374750161/index.html"> Mayo 12 2008 </a> &nbsp; &nbsp;  <a href="../C897570137/index.html"> Mayo 16 2008 </a> &nbsp; &nbsp;  <a href="../C2126962984/index.html"> Mayo 21 2006 </a> &nbsp; &nbsp;  <a href="../C1891058256/index.html"> Mayo 21 2008 </a> &nbsp; &nbsp;  <a href="../C253306328/index.html"> Mayo 27 2007 </a> &nbsp; &nbsp;  <a href="../C1606847260/index.html"> Noviembre 03 2008 </a> &nbsp; &nbsp;  <a href="../C1837134154/index.html"> Noviembre 07 2008 </a> &nbsp; &nbsp;  <a href="../C1462933681/index.html"> Noviembre 08 2007 </a> &nbsp; &nbsp;  <a href="../C12842123/index.html"> Noviembre 09 2009 </a> &nbsp; &nbsp;  <a href="../C577541657/index.html"> Noviembre 12 2007 </a> &nbsp; &nbsp;  <a href="../C351264401/index.html"> Noviembre 14 2007 </a> &nbsp; &nbsp;  <a href="../C1362994797/index.html"> Noviembre 28 2006 </a> &nbsp; &nbsp;  <a href="../C696194110/index.html"> Noviembre 28 2008 </a> &nbsp; &nbsp;  <a href="../C2142761500/index.html"> Noviembre 30 2007 </a> &nbsp; &nbsp;  <a href="../C1837443113/index.html"> Octubre 02 2007 </a> &nbsp; &nbsp;  <a href="../C1524140684/index.html"> Octubre 02 2009 </a> &nbsp; &nbsp;  <a href="../C1252725207/index.html"> Octubre 06 2006 </a> &nbsp; &nbsp;  <a href="../C302536974/index.html"> Octubre 06 2007 </a> &nbsp; &nbsp;  <a href="../C1306234206/index.html"> Octubre 21 2007 </a> &nbsp; &nbsp;  <a href="../C1702179280/index.html"> Octubre 29 2006 </a> &nbsp; &nbsp;  <a href="../C1578704959/index.html"> Septiembre 01  2009 </a> &nbsp; &nbsp;  <a href="../C2043608177/index.html"> Septiembre 01 2008 </a> &nbsp; &nbsp;  <a href="../C282445581/index.html"> Septiembre 04 2008 </a> &nbsp; &nbsp;  <a href="../C37685682/index.html"> Septiembre 05 2009 </a> &nbsp; &nbsp;  <a href="../C275148649/index.html"> Septiembre 1 2009 </a> &nbsp; &nbsp;  <a href="../C157472673/index.html"> Septiembre 12 2009 </a> &nbsp; &nbsp; ';
    document.write(horizontalCategories);
}

function getEntryCategories() {
    var categories = ' <a href="../../C716622022/index.html"> Abril 05 2008 </a> <br />  <a href="../../C953798309/index.html"> Abril 10 2008 </a> <br />  <a href="../../C1206392002/index.html"> Abril 15 2009 </a> <br />  <a href="../../C1134667560/index.html"> Abril 21 2009 </a> <br />  <a href="../../C728499275/index.html"> Abril 27 2008 </a> <br />  <a href="../../C9072617/index.html"> Abril 30 2007 </a> <br />  <a href="../../C1006558065/index.html"> Abril 30 2008 </a> <br />  <a href="../../C167044444/index.html"> Agosto 19, 2009 </a> <br />  <a href="../../C131062164/index.html"> Agosto 21 2005 </a> <br />  <a href="../../C1842251579/index.html"> Agosto 25, 2009 </a> <br />  <a href="../../C701133590/index.html"> Agosto 27 2009 </a> <br />  <a href="../../C1406807676/index.html"> Diciembre  06 2007 </a> <br />  <a href="../../C1910971742/index.html"> Diciembre 10 2007 </a> <br />  <a href="../../C1066504829/index.html"> Diciembre 11 2008 </a> <br />  <a href="../../C80054398/index.html"> Diciembre 15 2008 </a> <br />  <a href="../../C1696024019/index.html"> Diciembre 22 2007 </a> <br />  <a href="../../C103785141/index.html"> Diciembre 24 2008 </a> <br />  <a href="../../C2037613811/index.html"> Diciembre 31 2006 </a> <br />  <a href="../../C1860591585/index.html"> Enero 11 2007 </a> <br />  <a href="../../C213265317/index.html"> Enero 14 2007 </a> <br />  <a href="../../C399270732/index.html"> Enero 25 2008 </a> <br />  <a href="../../C1711637601/index.html"> Enero 31 2007 </a> <br />  <a href="../../C1702306285/index.html"> Febrero 01 2008 </a> <br />  <a href="../../C2053979368/index.html"> Febrero 08 2009 </a> <br />  <a href="../../C1172321991/index.html"> Febrero 09 2008 </a> <br />  <a href="../../C126975937/index.html"> Febrero 12 2009 </a> <br />  <a href="../../C187746348/index.html"> Febrero 14 2008 </a> <br />  <a href="../../C10479553/index.html"> Febrero 16 2009 </a> <br />  <a href="../../C1624577335/index.html"> Febrero 21 2009 </a> <br />  <a href="../../C1004579410/index.html"> Febrero 22 2008 </a> <br />  <a href="../../C1656462758/index.html"> Febrero 26 2008 </a> <br />  <a href="../../C212922253/index.html"> Julio 03 2009 </a> <br />  <a href="../../C1881221688/index.html"> Julio 07 2009 </a> <br />  <a href="../../C1075632517/index.html"> Julio 21 2005 </a> <br />  <a href="../../C1810816775/index.html"> Julio 28 2009 </a> <br />  <a href="../../C1576566175/index.html"> Junio 05 2007 </a> <br />  <a href="../../C1253573218/index.html"> junio 05 2008 </a> <br />  <a href="../../C674688158/index.html"> Junio 05 2009 </a> <br />  <a href="../../C489394444/index.html"> junio 16 2008 </a> <br />  <a href="../../C2049468284/index.html"> Junio 16 2009 </a> <br />  <a href="../../C28111200/index.html"> Junio 17 2009 </a> <br />  <a href="../../C276729914/index.html"> Junio 19 2008 </a> <br />  <a href="../../C726273582/index.html"> Junio 24 2008 </a> <br />  <a href="../../C1704726908/index.html"> Junio 29 2009 </a> <br />  <a href="../../C909087259/index.html"> Marzo 03 2009 </a> <br />  <a href="../../C1199109312/index.html"> Marzo 08 2009 </a> <br />  <a href="../../C1948860855/index.html"> Marzo 11 2009 </a> <br />  <a href="../../C1506180861/index.html"> Marzo 13 2008 </a> <br />  <a href="../../C992193242/index.html"> Marzo 17 2008 </a> <br />  <a href="../../C1575150996/index.html"> Marzo 22 2007 </a> <br />  <a href="../../C141965677/index.html"> Marzo 31 2008 </a> <br />  <a href="../../C1828912986/index.html"> Mayo 06 2008 </a> <br />  <a href="../../C1374750161/index.html"> Mayo 12 2008 </a> <br />  <a href="../../C897570137/index.html"> Mayo 16 2008 </a> <br />  <a href="../../C2126962984/index.html"> Mayo 21 2006 </a> <br />  <a href="../../C1891058256/index.html"> Mayo 21 2008 </a> <br />  <a href="../../C253306328/index.html"> Mayo 27 2007 </a> <br />  <a href="../../C1606847260/index.html"> Noviembre 03 2008 </a> <br />  <a href="../../C1837134154/index.html"> Noviembre 07 2008 </a> <br />  <a href="../../C1462933681/index.html"> Noviembre 08 2007 </a> <br />  <a href="../../C12842123/index.html"> Noviembre 09 2009 </a> <br />  <a href="../../C577541657/index.html"> Noviembre 12 2007 </a> <br />  <a href="../../C351264401/index.html"> Noviembre 14 2007 </a> <br />  <a href="../../C1362994797/index.html"> Noviembre 28 2006 </a> <br />  <a href="../../C696194110/index.html"> Noviembre 28 2008 </a> <br />  <a href="../../C2142761500/index.html"> Noviembre 30 2007 </a> <br />  <a href="../../C1837443113/index.html"> Octubre 02 2007 </a> <br />  <a href="../../C1524140684/index.html"> Octubre 02 2009 </a> <br />  <a href="../../C1252725207/index.html"> Octubre 06 2006 </a> <br />  <a href="../../C302536974/index.html"> Octubre 06 2007 </a> <br />  <a href="../../C1306234206/index.html"> Octubre 21 2007 </a> <br />  <a href="../../C1702179280/index.html"> Octubre 29 2006 </a> <br />  <a href="../../C1578704959/index.html"> Septiembre 01  2009 </a> <br />  <a href="../../C2043608177/index.html"> Septiembre 01 2008 </a> <br />  <a href="../../C282445581/index.html"> Septiembre 04 2008 </a> <br />  <a href="../../C37685682/index.html"> Septiembre 05 2009 </a> <br />  <a href="../../C275148649/index.html"> Septiembre 1 2009 </a> <br />  <a href="../../C157472673/index.html"> Septiembre 12 2009 </a> <br /> ';
    document.write(categories); 
}

function getEntryHorizontalCategories() {
    var horizontalCategories = ' <a href="../../C716622022/index.html"> Abril 05 2008 </a> &nbsp; &nbsp;  <a href="../../C953798309/index.html"> Abril 10 2008 </a> &nbsp; &nbsp;  <a href="../../C1206392002/index.html"> Abril 15 2009 </a> &nbsp; &nbsp;  <a href="../../C1134667560/index.html"> Abril 21 2009 </a> &nbsp; &nbsp;  <a href="../../C728499275/index.html"> Abril 27 2008 </a> &nbsp; &nbsp;  <a href="../../C9072617/index.html"> Abril 30 2007 </a> &nbsp; &nbsp;  <a href="../../C1006558065/index.html"> Abril 30 2008 </a> &nbsp; &nbsp;  <a href="../../C167044444/index.html"> Agosto 19, 2009 </a> &nbsp; &nbsp;  <a href="../../C131062164/index.html"> Agosto 21 2005 </a> &nbsp; &nbsp;  <a href="../../C1842251579/index.html"> Agosto 25, 2009 </a> &nbsp; &nbsp;  <a href="../../C701133590/index.html"> Agosto 27 2009 </a> &nbsp; &nbsp;  <a href="../../C1406807676/index.html"> Diciembre  06 2007 </a> &nbsp; &nbsp;  <a href="../../C1910971742/index.html"> Diciembre 10 2007 </a> &nbsp; &nbsp;  <a href="../../C1066504829/index.html"> Diciembre 11 2008 </a> &nbsp; &nbsp;  <a href="../../C80054398/index.html"> Diciembre 15 2008 </a> &nbsp; &nbsp;  <a href="../../C1696024019/index.html"> Diciembre 22 2007 </a> &nbsp; &nbsp;  <a href="../../C103785141/index.html"> Diciembre 24 2008 </a> &nbsp; &nbsp;  <a href="../../C2037613811/index.html"> Diciembre 31 2006 </a> &nbsp; &nbsp;  <a href="../../C1860591585/index.html"> Enero 11 2007 </a> &nbsp; &nbsp;  <a href="../../C213265317/index.html"> Enero 14 2007 </a> &nbsp; &nbsp;  <a href="../../C399270732/index.html"> Enero 25 2008 </a> &nbsp; &nbsp;  <a href="../../C1711637601/index.html"> Enero 31 2007 </a> &nbsp; &nbsp;  <a href="../../C1702306285/index.html"> Febrero 01 2008 </a> &nbsp; &nbsp;  <a href="../../C2053979368/index.html"> Febrero 08 2009 </a> &nbsp; &nbsp;  <a href="../../C1172321991/index.html"> Febrero 09 2008 </a> &nbsp; &nbsp;  <a href="../../C126975937/index.html"> Febrero 12 2009 </a> &nbsp; &nbsp;  <a href="../../C187746348/index.html"> Febrero 14 2008 </a> &nbsp; &nbsp;  <a href="../../C10479553/index.html"> Febrero 16 2009 </a> &nbsp; &nbsp;  <a href="../../C1624577335/index.html"> Febrero 21 2009 </a> &nbsp; &nbsp;  <a href="../../C1004579410/index.html"> Febrero 22 2008 </a> &nbsp; &nbsp;  <a href="../../C1656462758/index.html"> Febrero 26 2008 </a> &nbsp; &nbsp;  <a href="../../C212922253/index.html"> Julio 03 2009 </a> &nbsp; &nbsp;  <a href="../../C1881221688/index.html"> Julio 07 2009 </a> &nbsp; &nbsp;  <a href="../../C1075632517/index.html"> Julio 21 2005 </a> &nbsp; &nbsp;  <a href="../../C1810816775/index.html"> Julio 28 2009 </a> &nbsp; &nbsp;  <a href="../../C1576566175/index.html"> Junio 05 2007 </a> &nbsp; &nbsp;  <a href="../../C1253573218/index.html"> junio 05 2008 </a> &nbsp; &nbsp;  <a href="../../C674688158/index.html"> Junio 05 2009 </a> &nbsp; &nbsp;  <a href="../../C489394444/index.html"> junio 16 2008 </a> &nbsp; &nbsp;  <a href="../../C2049468284/index.html"> Junio 16 2009 </a> &nbsp; &nbsp;  <a href="../../C28111200/index.html"> Junio 17 2009 </a> &nbsp; &nbsp;  <a href="../../C276729914/index.html"> Junio 19 2008 </a> &nbsp; &nbsp;  <a href="../../C726273582/index.html"> Junio 24 2008 </a> &nbsp; &nbsp;  <a href="../../C1704726908/index.html"> Junio 29 2009 </a> &nbsp; &nbsp;  <a href="../../C909087259/index.html"> Marzo 03 2009 </a> &nbsp; &nbsp;  <a href="../../C1199109312/index.html"> Marzo 08 2009 </a> &nbsp; &nbsp;  <a href="../../C1948860855/index.html"> Marzo 11 2009 </a> &nbsp; &nbsp;  <a href="../../C1506180861/index.html"> Marzo 13 2008 </a> &nbsp; &nbsp;  <a href="../../C992193242/index.html"> Marzo 17 2008 </a> &nbsp; &nbsp;  <a href="../../C1575150996/index.html"> Marzo 22 2007 </a> &nbsp; &nbsp;  <a href="../../C141965677/index.html"> Marzo 31 2008 </a> &nbsp; &nbsp;  <a href="../../C1828912986/index.html"> Mayo 06 2008 </a> &nbsp; &nbsp;  <a href="../../C1374750161/index.html"> Mayo 12 2008 </a> &nbsp; &nbsp;  <a href="../../C897570137/index.html"> Mayo 16 2008 </a> &nbsp; &nbsp;  <a href="../../C2126962984/index.html"> Mayo 21 2006 </a> &nbsp; &nbsp;  <a href="../../C1891058256/index.html"> Mayo 21 2008 </a> &nbsp; &nbsp;  <a href="../../C253306328/index.html"> Mayo 27 2007 </a> &nbsp; &nbsp;  <a href="../../C1606847260/index.html"> Noviembre 03 2008 </a> &nbsp; &nbsp;  <a href="../../C1837134154/index.html"> Noviembre 07 2008 </a> &nbsp; &nbsp;  <a href="../../C1462933681/index.html"> Noviembre 08 2007 </a> &nbsp; &nbsp;  <a href="../../C12842123/index.html"> Noviembre 09 2009 </a> &nbsp; &nbsp;  <a href="../../C577541657/index.html"> Noviembre 12 2007 </a> &nbsp; &nbsp;  <a href="../../C351264401/index.html"> Noviembre 14 2007 </a> &nbsp; &nbsp;  <a href="../../C1362994797/index.html"> Noviembre 28 2006 </a> &nbsp; &nbsp;  <a href="../../C696194110/index.html"> Noviembre 28 2008 </a> &nbsp; &nbsp;  <a href="../../C2142761500/index.html"> Noviembre 30 2007 </a> &nbsp; &nbsp;  <a href="../../C1837443113/index.html"> Octubre 02 2007 </a> &nbsp; &nbsp;  <a href="../../C1524140684/index.html"> Octubre 02 2009 </a> &nbsp; &nbsp;  <a href="../../C1252725207/index.html"> Octubre 06 2006 </a> &nbsp; &nbsp;  <a href="../../C302536974/index.html"> Octubre 06 2007 </a> &nbsp; &nbsp;  <a href="../../C1306234206/index.html"> Octubre 21 2007 </a> &nbsp; &nbsp;  <a href="../../C1702179280/index.html"> Octubre 29 2006 </a> &nbsp; &nbsp;  <a href="../../C1578704959/index.html"> Septiembre 01  2009 </a> &nbsp; &nbsp;  <a href="../../C2043608177/index.html"> Septiembre 01 2008 </a> &nbsp; &nbsp;  <a href="../../C282445581/index.html"> Septiembre 04 2008 </a> &nbsp; &nbsp;  <a href="../../C37685682/index.html"> Septiembre 05 2009 </a> &nbsp; &nbsp;  <a href="../../C275148649/index.html"> Septiembre 1 2009 </a> &nbsp; &nbsp;  <a href="../../C157472673/index.html"> Septiembre 12 2009 </a> &nbsp; &nbsp; ';
    document.write(horizontalCategories);
}

function getArchiveCategories() {
    var categories = '<a href="C716622022/index.html">Abril 05 2008</a> <br /><a href="C953798309/index.html">Abril 10 2008</a> <br /><a href="C1206392002/index.html">Abril 15 2009</a> <br /><a href="C1134667560/index.html">Abril 21 2009</a> <br /><a href="C728499275/index.html">Abril 27 2008</a> <br /><a href="C9072617/index.html">Abril 30 2007</a> <br /><a href="C1006558065/index.html">Abril 30 2008</a> <br /><a href="C167044444/index.html">Agosto 19, 2009</a> <br /><a href="C131062164/index.html">Agosto 21 2005</a> <br /><a href="C1842251579/index.html">Agosto 25, 2009</a> <br /><a href="C701133590/index.html">Agosto 27 2009</a> <br /><a href="C1406807676/index.html">Diciembre  06 2007</a> <br /><a href="C1910971742/index.html">Diciembre 10 2007</a> <br /><a href="C1066504829/index.html">Diciembre 11 2008</a> <br /><a href="C80054398/index.html">Diciembre 15 2008</a> <br /><a href="C1696024019/index.html">Diciembre 22 2007</a> <br /><a href="C103785141/index.html">Diciembre 24 2008</a> <br /><a href="C2037613811/index.html">Diciembre 31 2006</a> <br /><a href="C1860591585/index.html">Enero 11 2007</a> <br /><a href="C213265317/index.html">Enero 14 2007</a> <br /><a href="C399270732/index.html">Enero 25 2008</a> <br /><a href="C1711637601/index.html">Enero 31 2007</a> <br /><a href="C1702306285/index.html">Febrero 01 2008</a> <br /><a href="C2053979368/index.html">Febrero 08 2009</a> <br /><a href="C1172321991/index.html">Febrero 09 2008</a> <br /><a href="C126975937/index.html">Febrero 12 2009</a> <br /><a href="C187746348/index.html">Febrero 14 2008</a> <br /><a href="C10479553/index.html">Febrero 16 2009</a> <br /><a href="C1624577335/index.html">Febrero 21 2009</a> <br /><a href="C1004579410/index.html">Febrero 22 2008</a> <br /><a href="C1656462758/index.html">Febrero 26 2008</a> <br /><a href="C212922253/index.html">Julio 03 2009</a> <br /><a href="C1881221688/index.html">Julio 07 2009</a> <br /><a href="C1075632517/index.html">Julio 21 2005</a> <br /><a href="C1810816775/index.html">Julio 28 2009</a> <br /><a href="C1576566175/index.html">Junio 05 2007</a> <br /><a href="C1253573218/index.html">junio 05 2008</a> <br /><a href="C674688158/index.html">Junio 05 2009</a> <br /><a href="C489394444/index.html">junio 16 2008</a> <br /><a href="C2049468284/index.html">Junio 16 2009</a> <br /><a href="C28111200/index.html">Junio 17 2009</a> <br /><a href="C276729914/index.html">Junio 19 2008</a> <br /><a href="C726273582/index.html">Junio 24 2008</a> <br /><a href="C1704726908/index.html">Junio 29 2009</a> <br /><a href="C909087259/index.html">Marzo 03 2009</a> <br /><a href="C1199109312/index.html">Marzo 08 2009</a> <br /><a href="C1948860855/index.html">Marzo 11 2009</a> <br /><a href="C1506180861/index.html">Marzo 13 2008</a> <br /><a href="C992193242/index.html">Marzo 17 2008</a> <br /><a href="C1575150996/index.html">Marzo 22 2007</a> <br /><a href="C141965677/index.html">Marzo 31 2008</a> <br /><a href="C1828912986/index.html">Mayo 06 2008</a> <br /><a href="C1374750161/index.html">Mayo 12 2008</a> <br /><a href="C897570137/index.html">Mayo 16 2008</a> <br /><a href="C2126962984/index.html">Mayo 21 2006</a> <br /><a href="C1891058256/index.html">Mayo 21 2008</a> <br /><a href="C253306328/index.html">Mayo 27 2007</a> <br /><a href="C1606847260/index.html">Noviembre 03 2008</a> <br /><a href="C1837134154/index.html">Noviembre 07 2008</a> <br /><a href="C1462933681/index.html">Noviembre 08 2007</a> <br /><a href="C12842123/index.html">Noviembre 09 2009</a> <br /><a href="C577541657/index.html">Noviembre 12 2007</a> <br /><a href="C351264401/index.html">Noviembre 14 2007</a> <br /><a href="C1362994797/index.html">Noviembre 28 2006</a> <br /><a href="C696194110/index.html">Noviembre 28 2008</a> <br /><a href="C2142761500/index.html">Noviembre 30 2007</a> <br /><a href="C1837443113/index.html">Octubre 02 2007</a> <br /><a href="C1524140684/index.html">Octubre 02 2009</a> <br /><a href="C1252725207/index.html">Octubre 06 2006</a> <br /><a href="C302536974/index.html">Octubre 06 2007</a> <br /><a href="C1306234206/index.html">Octubre 21 2007</a> <br /><a href="C1702179280/index.html">Octubre 29 2006</a> <br /><a href="C1578704959/index.html">Septiembre 01  2009</a> <br /><a href="C2043608177/index.html">Septiembre 01 2008</a> <br /><a href="C282445581/index.html">Septiembre 04 2008</a> <br /><a href="C37685682/index.html">Septiembre 05 2009</a> <br /><a href="C275148649/index.html">Septiembre 1 2009</a> <br /><a href="C157472673/index.html">Septiembre 12 2009</a> <br />';
    document.write(categories); 
}

function getArchiveHorizontalCategories() {
    var horizontalCategories = '<a href="C716622022/index.html">Abril 05 2008</a> &nbsp; &nbsp;<a href="C953798309/index.html">Abril 10 2008</a> &nbsp; &nbsp;<a href="C1206392002/index.html">Abril 15 2009</a> &nbsp; &nbsp;<a href="C1134667560/index.html">Abril 21 2009</a> &nbsp; &nbsp;<a href="C728499275/index.html">Abril 27 2008</a> &nbsp; &nbsp;<a href="C9072617/index.html">Abril 30 2007</a> &nbsp; &nbsp;<a href="C1006558065/index.html">Abril 30 2008</a> &nbsp; &nbsp;<a href="C167044444/index.html">Agosto 19, 2009</a> &nbsp; &nbsp;<a href="C131062164/index.html">Agosto 21 2005</a> &nbsp; &nbsp;<a href="C1842251579/index.html">Agosto 25, 2009</a> &nbsp; &nbsp;<a href="C701133590/index.html">Agosto 27 2009</a> &nbsp; &nbsp;<a href="C1406807676/index.html">Diciembre  06 2007</a> &nbsp; &nbsp;<a href="C1910971742/index.html">Diciembre 10 2007</a> &nbsp; &nbsp;<a href="C1066504829/index.html">Diciembre 11 2008</a> &nbsp; &nbsp;<a href="C80054398/index.html">Diciembre 15 2008</a> &nbsp; &nbsp;<a href="C1696024019/index.html">Diciembre 22 2007</a> &nbsp; &nbsp;<a href="C103785141/index.html">Diciembre 24 2008</a> &nbsp; &nbsp;<a href="C2037613811/index.html">Diciembre 31 2006</a> &nbsp; &nbsp;<a href="C1860591585/index.html">Enero 11 2007</a> &nbsp; &nbsp;<a href="C213265317/index.html">Enero 14 2007</a> &nbsp; &nbsp;<a href="C399270732/index.html">Enero 25 2008</a> &nbsp; &nbsp;<a href="C1711637601/index.html">Enero 31 2007</a> &nbsp; &nbsp;<a href="C1702306285/index.html">Febrero 01 2008</a> &nbsp; &nbsp;<a href="C2053979368/index.html">Febrero 08 2009</a> &nbsp; &nbsp;<a href="C1172321991/index.html">Febrero 09 2008</a> &nbsp; &nbsp;<a href="C126975937/index.html">Febrero 12 2009</a> &nbsp; &nbsp;<a href="C187746348/index.html">Febrero 14 2008</a> &nbsp; &nbsp;<a href="C10479553/index.html">Febrero 16 2009</a> &nbsp; &nbsp;<a href="C1624577335/index.html">Febrero 21 2009</a> &nbsp; &nbsp;<a href="C1004579410/index.html">Febrero 22 2008</a> &nbsp; &nbsp;<a href="C1656462758/index.html">Febrero 26 2008</a> &nbsp; &nbsp;<a href="C212922253/index.html">Julio 03 2009</a> &nbsp; &nbsp;<a href="C1881221688/index.html">Julio 07 2009</a> &nbsp; &nbsp;<a href="C1075632517/index.html">Julio 21 2005</a> &nbsp; &nbsp;<a href="C1810816775/index.html">Julio 28 2009</a> &nbsp; &nbsp;<a href="C1576566175/index.html">Junio 05 2007</a> &nbsp; &nbsp;<a href="C1253573218/index.html">junio 05 2008</a> &nbsp; &nbsp;<a href="C674688158/index.html">Junio 05 2009</a> &nbsp; &nbsp;<a href="C489394444/index.html">junio 16 2008</a> &nbsp; &nbsp;<a href="C2049468284/index.html">Junio 16 2009</a> &nbsp; &nbsp;<a href="C28111200/index.html">Junio 17 2009</a> &nbsp; &nbsp;<a href="C276729914/index.html">Junio 19 2008</a> &nbsp; &nbsp;<a href="C726273582/index.html">Junio 24 2008</a> &nbsp; &nbsp;<a href="C1704726908/index.html">Junio 29 2009</a> &nbsp; &nbsp;<a href="C909087259/index.html">Marzo 03 2009</a> &nbsp; &nbsp;<a href="C1199109312/index.html">Marzo 08 2009</a> &nbsp; &nbsp;<a href="C1948860855/index.html">Marzo 11 2009</a> &nbsp; &nbsp;<a href="C1506180861/index.html">Marzo 13 2008</a> &nbsp; &nbsp;<a href="C992193242/index.html">Marzo 17 2008</a> &nbsp; &nbsp;<a href="C1575150996/index.html">Marzo 22 2007</a> &nbsp; &nbsp;<a href="C141965677/index.html">Marzo 31 2008</a> &nbsp; &nbsp;<a href="C1828912986/index.html">Mayo 06 2008</a> &nbsp; &nbsp;<a href="C1374750161/index.html">Mayo 12 2008</a> &nbsp; &nbsp;<a href="C897570137/index.html">Mayo 16 2008</a> &nbsp; &nbsp;<a href="C2126962984/index.html">Mayo 21 2006</a> &nbsp; &nbsp;<a href="C1891058256/index.html">Mayo 21 2008</a> &nbsp; &nbsp;<a href="C253306328/index.html">Mayo 27 2007</a> &nbsp; &nbsp;<a href="C1606847260/index.html">Noviembre 03 2008</a> &nbsp; &nbsp;<a href="C1837134154/index.html">Noviembre 07 2008</a> &nbsp; &nbsp;<a href="C1462933681/index.html">Noviembre 08 2007</a> &nbsp; &nbsp;<a href="C12842123/index.html">Noviembre 09 2009</a> &nbsp; &nbsp;<a href="C577541657/index.html">Noviembre 12 2007</a> &nbsp; &nbsp;<a href="C351264401/index.html">Noviembre 14 2007</a> &nbsp; &nbsp;<a href="C1362994797/index.html">Noviembre 28 2006</a> &nbsp; &nbsp;<a href="C696194110/index.html">Noviembre 28 2008</a> &nbsp; &nbsp;<a href="C2142761500/index.html">Noviembre 30 2007</a> &nbsp; &nbsp;<a href="C1837443113/index.html">Octubre 02 2007</a> &nbsp; &nbsp;<a href="C1524140684/index.html">Octubre 02 2009</a> &nbsp; &nbsp;<a href="C1252725207/index.html">Octubre 06 2006</a> &nbsp; &nbsp;<a href="C302536974/index.html">Octubre 06 2007</a> &nbsp; &nbsp;<a href="C1306234206/index.html">Octubre 21 2007</a> &nbsp; &nbsp;<a href="C1702179280/index.html">Octubre 29 2006</a> &nbsp; &nbsp;<a href="C1578704959/index.html">Septiembre 01  2009</a> &nbsp; &nbsp;<a href="C2043608177/index.html">Septiembre 01 2008</a> &nbsp; &nbsp;<a href="C282445581/index.html">Septiembre 04 2008</a> &nbsp; &nbsp;<a href="C37685682/index.html">Septiembre 05 2009</a> &nbsp; &nbsp;<a href="C275148649/index.html">Septiembre 1 2009</a> &nbsp; &nbsp;<a href="C157472673/index.html">Septiembre 12 2009</a> &nbsp; &nbsp;';
    document.write(horizontalCategories);
}

function getYearCategories() {
    var categories = '<a href="../C716622022/index.html">Abril 05 2008</a> <br /><a href="../C953798309/index.html">Abril 10 2008</a> <br /><a href="../C1206392002/index.html">Abril 15 2009</a> <br /><a href="../C1134667560/index.html">Abril 21 2009</a> <br /><a href="../C728499275/index.html">Abril 27 2008</a> <br /><a href="../C9072617/index.html">Abril 30 2007</a> <br /><a href="../C1006558065/index.html">Abril 30 2008</a> <br /><a href="../C167044444/index.html">Agosto 19, 2009</a> <br /><a href="../C131062164/index.html">Agosto 21 2005</a> <br /><a href="../C1842251579/index.html">Agosto 25, 2009</a> <br /><a href="../C701133590/index.html">Agosto 27 2009</a> <br /><a href="../C1406807676/index.html">Diciembre  06 2007</a> <br /><a href="../C1910971742/index.html">Diciembre 10 2007</a> <br /><a href="../C1066504829/index.html">Diciembre 11 2008</a> <br /><a href="../C80054398/index.html">Diciembre 15 2008</a> <br /><a href="../C1696024019/index.html">Diciembre 22 2007</a> <br /><a href="../C103785141/index.html">Diciembre 24 2008</a> <br /><a href="../C2037613811/index.html">Diciembre 31 2006</a> <br /><a href="../C1860591585/index.html">Enero 11 2007</a> <br /><a href="../C213265317/index.html">Enero 14 2007</a> <br /><a href="../C399270732/index.html">Enero 25 2008</a> <br /><a href="../C1711637601/index.html">Enero 31 2007</a> <br /><a href="../C1702306285/index.html">Febrero 01 2008</a> <br /><a href="../C2053979368/index.html">Febrero 08 2009</a> <br /><a href="../C1172321991/index.html">Febrero 09 2008</a> <br /><a href="../C126975937/index.html">Febrero 12 2009</a> <br /><a href="../C187746348/index.html">Febrero 14 2008</a> <br /><a href="../C10479553/index.html">Febrero 16 2009</a> <br /><a href="../C1624577335/index.html">Febrero 21 2009</a> <br /><a href="../C1004579410/index.html">Febrero 22 2008</a> <br /><a href="../C1656462758/index.html">Febrero 26 2008</a> <br /><a href="../C212922253/index.html">Julio 03 2009</a> <br /><a href="../C1881221688/index.html">Julio 07 2009</a> <br /><a href="../C1075632517/index.html">Julio 21 2005</a> <br /><a href="../C1810816775/index.html">Julio 28 2009</a> <br /><a href="../C1576566175/index.html">Junio 05 2007</a> <br /><a href="../C1253573218/index.html">junio 05 2008</a> <br /><a href="../C674688158/index.html">Junio 05 2009</a> <br /><a href="../C489394444/index.html">junio 16 2008</a> <br /><a href="../C2049468284/index.html">Junio 16 2009</a> <br /><a href="../C28111200/index.html">Junio 17 2009</a> <br /><a href="../C276729914/index.html">Junio 19 2008</a> <br /><a href="../C726273582/index.html">Junio 24 2008</a> <br /><a href="../C1704726908/index.html">Junio 29 2009</a> <br /><a href="../C909087259/index.html">Marzo 03 2009</a> <br /><a href="../C1199109312/index.html">Marzo 08 2009</a> <br /><a href="../C1948860855/index.html">Marzo 11 2009</a> <br /><a href="../C1506180861/index.html">Marzo 13 2008</a> <br /><a href="../C992193242/index.html">Marzo 17 2008</a> <br /><a href="../C1575150996/index.html">Marzo 22 2007</a> <br /><a href="../C141965677/index.html">Marzo 31 2008</a> <br /><a href="../C1828912986/index.html">Mayo 06 2008</a> <br /><a href="../C1374750161/index.html">Mayo 12 2008</a> <br /><a href="../C897570137/index.html">Mayo 16 2008</a> <br /><a href="../C2126962984/index.html">Mayo 21 2006</a> <br /><a href="../C1891058256/index.html">Mayo 21 2008</a> <br /><a href="../C253306328/index.html">Mayo 27 2007</a> <br /><a href="../C1606847260/index.html">Noviembre 03 2008</a> <br /><a href="../C1837134154/index.html">Noviembre 07 2008</a> <br /><a href="../C1462933681/index.html">Noviembre 08 2007</a> <br /><a href="../C12842123/index.html">Noviembre 09 2009</a> <br /><a href="../C577541657/index.html">Noviembre 12 2007</a> <br /><a href="../C351264401/index.html">Noviembre 14 2007</a> <br /><a href="../C1362994797/index.html">Noviembre 28 2006</a> <br /><a href="../C696194110/index.html">Noviembre 28 2008</a> <br /><a href="../C2142761500/index.html">Noviembre 30 2007</a> <br /><a href="../C1837443113/index.html">Octubre 02 2007</a> <br /><a href="../C1524140684/index.html">Octubre 02 2009</a> <br /><a href="../C1252725207/index.html">Octubre 06 2006</a> <br /><a href="../C302536974/index.html">Octubre 06 2007</a> <br /><a href="../C1306234206/index.html">Octubre 21 2007</a> <br /><a href="../C1702179280/index.html">Octubre 29 2006</a> <br /><a href="../C1578704959/index.html">Septiembre 01  2009</a> <br /><a href="../C2043608177/index.html">Septiembre 01 2008</a> <br /><a href="../C282445581/index.html">Septiembre 04 2008</a> <br /><a href="../C37685682/index.html">Septiembre 05 2009</a> <br /><a href="../C275148649/index.html">Septiembre 1 2009</a> <br /><a href="../C157472673/index.html">Septiembre 12 2009</a> <br />';
    document.write(categories); 
}

function getYearHorizontalCategories() {
    var horizontalCategories = '<a href="../C716622022/index.html">Abril 05 2008</a> &nbsp; &nbsp;<a href="../C953798309/index.html">Abril 10 2008</a> &nbsp; &nbsp;<a href="../C1206392002/index.html">Abril 15 2009</a> &nbsp; &nbsp;<a href="../C1134667560/index.html">Abril 21 2009</a> &nbsp; &nbsp;<a href="../C728499275/index.html">Abril 27 2008</a> &nbsp; &nbsp;<a href="../C9072617/index.html">Abril 30 2007</a> &nbsp; &nbsp;<a href="../C1006558065/index.html">Abril 30 2008</a> &nbsp; &nbsp;<a href="../C167044444/index.html">Agosto 19, 2009</a> &nbsp; &nbsp;<a href="../C131062164/index.html">Agosto 21 2005</a> &nbsp; &nbsp;<a href="../C1842251579/index.html">Agosto 25, 2009</a> &nbsp; &nbsp;<a href="../C701133590/index.html">Agosto 27 2009</a> &nbsp; &nbsp;<a href="../C1406807676/index.html">Diciembre  06 2007</a> &nbsp; &nbsp;<a href="../C1910971742/index.html">Diciembre 10 2007</a> &nbsp; &nbsp;<a href="../C1066504829/index.html">Diciembre 11 2008</a> &nbsp; &nbsp;<a href="../C80054398/index.html">Diciembre 15 2008</a> &nbsp; &nbsp;<a href="../C1696024019/index.html">Diciembre 22 2007</a> &nbsp; &nbsp;<a href="../C103785141/index.html">Diciembre 24 2008</a> &nbsp; &nbsp;<a href="../C2037613811/index.html">Diciembre 31 2006</a> &nbsp; &nbsp;<a href="../C1860591585/index.html">Enero 11 2007</a> &nbsp; &nbsp;<a href="../C213265317/index.html">Enero 14 2007</a> &nbsp; &nbsp;<a href="../C399270732/index.html">Enero 25 2008</a> &nbsp; &nbsp;<a href="../C1711637601/index.html">Enero 31 2007</a> &nbsp; &nbsp;<a href="../C1702306285/index.html">Febrero 01 2008</a> &nbsp; &nbsp;<a href="../C2053979368/index.html">Febrero 08 2009</a> &nbsp; &nbsp;<a href="../C1172321991/index.html">Febrero 09 2008</a> &nbsp; &nbsp;<a href="../C126975937/index.html">Febrero 12 2009</a> &nbsp; &nbsp;<a href="../C187746348/index.html">Febrero 14 2008</a> &nbsp; &nbsp;<a href="../C10479553/index.html">Febrero 16 2009</a> &nbsp; &nbsp;<a href="../C1624577335/index.html">Febrero 21 2009</a> &nbsp; &nbsp;<a href="../C1004579410/index.html">Febrero 22 2008</a> &nbsp; &nbsp;<a href="../C1656462758/index.html">Febrero 26 2008</a> &nbsp; &nbsp;<a href="../C212922253/index.html">Julio 03 2009</a> &nbsp; &nbsp;<a href="../C1881221688/index.html">Julio 07 2009</a> &nbsp; &nbsp;<a href="../C1075632517/index.html">Julio 21 2005</a> &nbsp; &nbsp;<a href="../C1810816775/index.html">Julio 28 2009</a> &nbsp; &nbsp;<a href="../C1576566175/index.html">Junio 05 2007</a> &nbsp; &nbsp;<a href="../C1253573218/index.html">junio 05 2008</a> &nbsp; &nbsp;<a href="../C674688158/index.html">Junio 05 2009</a> &nbsp; &nbsp;<a href="../C489394444/index.html">junio 16 2008</a> &nbsp; &nbsp;<a href="../C2049468284/index.html">Junio 16 2009</a> &nbsp; &nbsp;<a href="../C28111200/index.html">Junio 17 2009</a> &nbsp; &nbsp;<a href="../C276729914/index.html">Junio 19 2008</a> &nbsp; &nbsp;<a href="../C726273582/index.html">Junio 24 2008</a> &nbsp; &nbsp;<a href="../C1704726908/index.html">Junio 29 2009</a> &nbsp; &nbsp;<a href="../C909087259/index.html">Marzo 03 2009</a> &nbsp; &nbsp;<a href="../C1199109312/index.html">Marzo 08 2009</a> &nbsp; &nbsp;<a href="../C1948860855/index.html">Marzo 11 2009</a> &nbsp; &nbsp;<a href="../C1506180861/index.html">Marzo 13 2008</a> &nbsp; &nbsp;<a href="../C992193242/index.html">Marzo 17 2008</a> &nbsp; &nbsp;<a href="../C1575150996/index.html">Marzo 22 2007</a> &nbsp; &nbsp;<a href="../C141965677/index.html">Marzo 31 2008</a> &nbsp; &nbsp;<a href="../C1828912986/index.html">Mayo 06 2008</a> &nbsp; &nbsp;<a href="../C1374750161/index.html">Mayo 12 2008</a> &nbsp; &nbsp;<a href="../C897570137/index.html">Mayo 16 2008</a> &nbsp; &nbsp;<a href="../C2126962984/index.html">Mayo 21 2006</a> &nbsp; &nbsp;<a href="../C1891058256/index.html">Mayo 21 2008</a> &nbsp; &nbsp;<a href="../C253306328/index.html">Mayo 27 2007</a> &nbsp; &nbsp;<a href="../C1606847260/index.html">Noviembre 03 2008</a> &nbsp; &nbsp;<a href="../C1837134154/index.html">Noviembre 07 2008</a> &nbsp; &nbsp;<a href="../C1462933681/index.html">Noviembre 08 2007</a> &nbsp; &nbsp;<a href="../C12842123/index.html">Noviembre 09 2009</a> &nbsp; &nbsp;<a href="../C577541657/index.html">Noviembre 12 2007</a> &nbsp; &nbsp;<a href="../C351264401/index.html">Noviembre 14 2007</a> &nbsp; &nbsp;<a href="../C1362994797/index.html">Noviembre 28 2006</a> &nbsp; &nbsp;<a href="../C696194110/index.html">Noviembre 28 2008</a> &nbsp; &nbsp;<a href="../C2142761500/index.html">Noviembre 30 2007</a> &nbsp; &nbsp;<a href="../C1837443113/index.html">Octubre 02 2007</a> &nbsp; &nbsp;<a href="../C1524140684/index.html">Octubre 02 2009</a> &nbsp; &nbsp;<a href="../C1252725207/index.html">Octubre 06 2006</a> &nbsp; &nbsp;<a href="../C302536974/index.html">Octubre 06 2007</a> &nbsp; &nbsp;<a href="../C1306234206/index.html">Octubre 21 2007</a> &nbsp; &nbsp;<a href="../C1702179280/index.html">Octubre 29 2006</a> &nbsp; &nbsp;<a href="../C1578704959/index.html">Septiembre 01  2009</a> &nbsp; &nbsp;<a href="../C2043608177/index.html">Septiembre 01 2008</a> &nbsp; &nbsp;<a href="../C282445581/index.html">Septiembre 04 2008</a> &nbsp; &nbsp;<a href="../C37685682/index.html">Septiembre 05 2009</a> &nbsp; &nbsp;<a href="../C275148649/index.html">Septiembre 1 2009</a> &nbsp; &nbsp;<a href="../C157472673/index.html">Septiembre 12 2009</a> &nbsp; &nbsp;';
    document.write(horizontalCategories);
}

function getDayCategories() {
    var categories = '<a href="../../../C716622022/index.html">Abril 05 2008</a> <br /><a href="../../../C953798309/index.html">Abril 10 2008</a> <br /><a href="../../../C1206392002/index.html">Abril 15 2009</a> <br /><a href="../../../C1134667560/index.html">Abril 21 2009</a> <br /><a href="../../../C728499275/index.html">Abril 27 2008</a> <br /><a href="../../../C9072617/index.html">Abril 30 2007</a> <br /><a href="../../../C1006558065/index.html">Abril 30 2008</a> <br /><a href="../../../C167044444/index.html">Agosto 19, 2009</a> <br /><a href="../../../C131062164/index.html">Agosto 21 2005</a> <br /><a href="../../../C1842251579/index.html">Agosto 25, 2009</a> <br /><a href="../../../C701133590/index.html">Agosto 27 2009</a> <br /><a href="../../../C1406807676/index.html">Diciembre  06 2007</a> <br /><a href="../../../C1910971742/index.html">Diciembre 10 2007</a> <br /><a href="../../../C1066504829/index.html">Diciembre 11 2008</a> <br /><a href="../../../C80054398/index.html">Diciembre 15 2008</a> <br /><a href="../../../C1696024019/index.html">Diciembre 22 2007</a> <br /><a href="../../../C103785141/index.html">Diciembre 24 2008</a> <br /><a href="../../../C2037613811/index.html">Diciembre 31 2006</a> <br /><a href="../../../C1860591585/index.html">Enero 11 2007</a> <br /><a href="../../../C213265317/index.html">Enero 14 2007</a> <br /><a href="../../../C399270732/index.html">Enero 25 2008</a> <br /><a href="../../../C1711637601/index.html">Enero 31 2007</a> <br /><a href="../../../C1702306285/index.html">Febrero 01 2008</a> <br /><a href="../../../C2053979368/index.html">Febrero 08 2009</a> <br /><a href="../../../C1172321991/index.html">Febrero 09 2008</a> <br /><a href="../../../C126975937/index.html">Febrero 12 2009</a> <br /><a href="../../../C187746348/index.html">Febrero 14 2008</a> <br /><a href="../../../C10479553/index.html">Febrero 16 2009</a> <br /><a href="../../../C1624577335/index.html">Febrero 21 2009</a> <br /><a href="../../../C1004579410/index.html">Febrero 22 2008</a> <br /><a href="../../../C1656462758/index.html">Febrero 26 2008</a> <br /><a href="../../../C212922253/index.html">Julio 03 2009</a> <br /><a href="../../../C1881221688/index.html">Julio 07 2009</a> <br /><a href="../../../C1075632517/index.html">Julio 21 2005</a> <br /><a href="../../../C1810816775/index.html">Julio 28 2009</a> <br /><a href="../../../C1576566175/index.html">Junio 05 2007</a> <br /><a href="../../../C1253573218/index.html">junio 05 2008</a> <br /><a href="../../../C674688158/index.html">Junio 05 2009</a> <br /><a href="../../../C489394444/index.html">junio 16 2008</a> <br /><a href="../../../C2049468284/index.html">Junio 16 2009</a> <br /><a href="../../../C28111200/index.html">Junio 17 2009</a> <br /><a href="../../../C276729914/index.html">Junio 19 2008</a> <br /><a href="../../../C726273582/index.html">Junio 24 2008</a> <br /><a href="../../../C1704726908/index.html">Junio 29 2009</a> <br /><a href="../../../C909087259/index.html">Marzo 03 2009</a> <br /><a href="../../../C1199109312/index.html">Marzo 08 2009</a> <br /><a href="../../../C1948860855/index.html">Marzo 11 2009</a> <br /><a href="../../../C1506180861/index.html">Marzo 13 2008</a> <br /><a href="../../../C992193242/index.html">Marzo 17 2008</a> <br /><a href="../../../C1575150996/index.html">Marzo 22 2007</a> <br /><a href="../../../C141965677/index.html">Marzo 31 2008</a> <br /><a href="../../../C1828912986/index.html">Mayo 06 2008</a> <br /><a href="../../../C1374750161/index.html">Mayo 12 2008</a> <br /><a href="../../../C897570137/index.html">Mayo 16 2008</a> <br /><a href="../../../C2126962984/index.html">Mayo 21 2006</a> <br /><a href="../../../C1891058256/index.html">Mayo 21 2008</a> <br /><a href="../../../C253306328/index.html">Mayo 27 2007</a> <br /><a href="../../../C1606847260/index.html">Noviembre 03 2008</a> <br /><a href="../../../C1837134154/index.html">Noviembre 07 2008</a> <br /><a href="../../../C1462933681/index.html">Noviembre 08 2007</a> <br /><a href="../../../C12842123/index.html">Noviembre 09 2009</a> <br /><a href="../../../C577541657/index.html">Noviembre 12 2007</a> <br /><a href="../../../C351264401/index.html">Noviembre 14 2007</a> <br /><a href="../../../C1362994797/index.html">Noviembre 28 2006</a> <br /><a href="../../../C696194110/index.html">Noviembre 28 2008</a> <br /><a href="../../../C2142761500/index.html">Noviembre 30 2007</a> <br /><a href="../../../C1837443113/index.html">Octubre 02 2007</a> <br /><a href="../../../C1524140684/index.html">Octubre 02 2009</a> <br /><a href="../../../C1252725207/index.html">Octubre 06 2006</a> <br /><a href="../../../C302536974/index.html">Octubre 06 2007</a> <br /><a href="../../../C1306234206/index.html">Octubre 21 2007</a> <br /><a href="../../../C1702179280/index.html">Octubre 29 2006</a> <br /><a href="../../../C1578704959/index.html">Septiembre 01  2009</a> <br /><a href="../../../C2043608177/index.html">Septiembre 01 2008</a> <br /><a href="../../../C282445581/index.html">Septiembre 04 2008</a> <br /><a href="../../../C37685682/index.html">Septiembre 05 2009</a> <br /><a href="../../../C275148649/index.html">Septiembre 1 2009</a> <br /><a href="../../../C157472673/index.html">Septiembre 12 2009</a> <br />';
    document.write(categories); 
}

function getDayHorizontalCategories() {
    var horizontalCategories = '<a href="../../../C716622022/index.html">Abril 05 2008</a> &nbsp; &nbsp;<a href="../../../C953798309/index.html">Abril 10 2008</a> &nbsp; &nbsp;<a href="../../../C1206392002/index.html">Abril 15 2009</a> &nbsp; &nbsp;<a href="../../../C1134667560/index.html">Abril 21 2009</a> &nbsp; &nbsp;<a href="../../../C728499275/index.html">Abril 27 2008</a> &nbsp; &nbsp;<a href="../../../C9072617/index.html">Abril 30 2007</a> &nbsp; &nbsp;<a href="../../../C1006558065/index.html">Abril 30 2008</a> &nbsp; &nbsp;<a href="../../../C167044444/index.html">Agosto 19, 2009</a> &nbsp; &nbsp;<a href="../../../C131062164/index.html">Agosto 21 2005</a> &nbsp; &nbsp;<a href="../../../C1842251579/index.html">Agosto 25, 2009</a> &nbsp; &nbsp;<a href="../../../C701133590/index.html">Agosto 27 2009</a> &nbsp; &nbsp;<a href="../../../C1406807676/index.html">Diciembre  06 2007</a> &nbsp; &nbsp;<a href="../../../C1910971742/index.html">Diciembre 10 2007</a> &nbsp; &nbsp;<a href="../../../C1066504829/index.html">Diciembre 11 2008</a> &nbsp; &nbsp;<a href="../../../C80054398/index.html">Diciembre 15 2008</a> &nbsp; &nbsp;<a href="../../../C1696024019/index.html">Diciembre 22 2007</a> &nbsp; &nbsp;<a href="../../../C103785141/index.html">Diciembre 24 2008</a> &nbsp; &nbsp;<a href="../../../C2037613811/index.html">Diciembre 31 2006</a> &nbsp; &nbsp;<a href="../../../C1860591585/index.html">Enero 11 2007</a> &nbsp; &nbsp;<a href="../../../C213265317/index.html">Enero 14 2007</a> &nbsp; &nbsp;<a href="../../../C399270732/index.html">Enero 25 2008</a> &nbsp; &nbsp;<a href="../../../C1711637601/index.html">Enero 31 2007</a> &nbsp; &nbsp;<a href="../../../C1702306285/index.html">Febrero 01 2008</a> &nbsp; &nbsp;<a href="../../../C2053979368/index.html">Febrero 08 2009</a> &nbsp; &nbsp;<a href="../../../C1172321991/index.html">Febrero 09 2008</a> &nbsp; &nbsp;<a href="../../../C126975937/index.html">Febrero 12 2009</a> &nbsp; &nbsp;<a href="../../../C187746348/index.html">Febrero 14 2008</a> &nbsp; &nbsp;<a href="../../../C10479553/index.html">Febrero 16 2009</a> &nbsp; &nbsp;<a href="../../../C1624577335/index.html">Febrero 21 2009</a> &nbsp; &nbsp;<a href="../../../C1004579410/index.html">Febrero 22 2008</a> &nbsp; &nbsp;<a href="../../../C1656462758/index.html">Febrero 26 2008</a> &nbsp; &nbsp;<a href="../../../C212922253/index.html">Julio 03 2009</a> &nbsp; &nbsp;<a href="../../../C1881221688/index.html">Julio 07 2009</a> &nbsp; &nbsp;<a href="../../../C1075632517/index.html">Julio 21 2005</a> &nbsp; &nbsp;<a href="../../../C1810816775/index.html">Julio 28 2009</a> &nbsp; &nbsp;<a href="../../../C1576566175/index.html">Junio 05 2007</a> &nbsp; &nbsp;<a href="../../../C1253573218/index.html">junio 05 2008</a> &nbsp; &nbsp;<a href="../../../C674688158/index.html">Junio 05 2009</a> &nbsp; &nbsp;<a href="../../../C489394444/index.html">junio 16 2008</a> &nbsp; &nbsp;<a href="../../../C2049468284/index.html">Junio 16 2009</a> &nbsp; &nbsp;<a href="../../../C28111200/index.html">Junio 17 2009</a> &nbsp; &nbsp;<a href="../../../C276729914/index.html">Junio 19 2008</a> &nbsp; &nbsp;<a href="../../../C726273582/index.html">Junio 24 2008</a> &nbsp; &nbsp;<a href="../../../C1704726908/index.html">Junio 29 2009</a> &nbsp; &nbsp;<a href="../../../C909087259/index.html">Marzo 03 2009</a> &nbsp; &nbsp;<a href="../../../C1199109312/index.html">Marzo 08 2009</a> &nbsp; &nbsp;<a href="../../../C1948860855/index.html">Marzo 11 2009</a> &nbsp; &nbsp;<a href="../../../C1506180861/index.html">Marzo 13 2008</a> &nbsp; &nbsp;<a href="../../../C992193242/index.html">Marzo 17 2008</a> &nbsp; &nbsp;<a href="../../../C1575150996/index.html">Marzo 22 2007</a> &nbsp; &nbsp;<a href="../../../C141965677/index.html">Marzo 31 2008</a> &nbsp; &nbsp;<a href="../../../C1828912986/index.html">Mayo 06 2008</a> &nbsp; &nbsp;<a href="../../../C1374750161/index.html">Mayo 12 2008</a> &nbsp; &nbsp;<a href="../../../C897570137/index.html">Mayo 16 2008</a> &nbsp; &nbsp;<a href="../../../C2126962984/index.html">Mayo 21 2006</a> &nbsp; &nbsp;<a href="../../../C1891058256/index.html">Mayo 21 2008</a> &nbsp; &nbsp;<a href="../../../C253306328/index.html">Mayo 27 2007</a> &nbsp; &nbsp;<a href="../../../C1606847260/index.html">Noviembre 03 2008</a> &nbsp; &nbsp;<a href="../../../C1837134154/index.html">Noviembre 07 2008</a> &nbsp; &nbsp;<a href="../../../C1462933681/index.html">Noviembre 08 2007</a> &nbsp; &nbsp;<a href="../../../C12842123/index.html">Noviembre 09 2009</a> &nbsp; &nbsp;<a href="../../../C577541657/index.html">Noviembre 12 2007</a> &nbsp; &nbsp;<a href="../../../C351264401/index.html">Noviembre 14 2007</a> &nbsp; &nbsp;<a href="../../../C1362994797/index.html">Noviembre 28 2006</a> &nbsp; &nbsp;<a href="../../../C696194110/index.html">Noviembre 28 2008</a> &nbsp; &nbsp;<a href="../../../C2142761500/index.html">Noviembre 30 2007</a> &nbsp; &nbsp;<a href="../../../C1837443113/index.html">Octubre 02 2007</a> &nbsp; &nbsp;<a href="../../../C1524140684/index.html">Octubre 02 2009</a> &nbsp; &nbsp;<a href="../../../C1252725207/index.html">Octubre 06 2006</a> &nbsp; &nbsp;<a href="../../../C302536974/index.html">Octubre 06 2007</a> &nbsp; &nbsp;<a href="../../../C1306234206/index.html">Octubre 21 2007</a> &nbsp; &nbsp;<a href="../../../C1702179280/index.html">Octubre 29 2006</a> &nbsp; &nbsp;<a href="../../../C1578704959/index.html">Septiembre 01  2009</a> &nbsp; &nbsp;<a href="../../../C2043608177/index.html">Septiembre 01 2008</a> &nbsp; &nbsp;<a href="../../../C282445581/index.html">Septiembre 04 2008</a> &nbsp; &nbsp;<a href="../../../C37685682/index.html">Septiembre 05 2009</a> &nbsp; &nbsp;<a href="../../../C275148649/index.html">Septiembre 1 2009</a> &nbsp; &nbsp;<a href="../../../C157472673/index.html">Septiembre 12 2009</a> &nbsp; &nbsp;';
    document.write(horizontalCategories);
}

function getUsername() {
    var username = 'JUAN BEAT';
    document.write(username);
}

function getFeedbackLink(entryTitle) {
    var encodedEmail = '&#106;&#117;&#097;&#110;&#098;&#101;&#097;&#116;&#095;&#102;&#097;&#110;&#122;&#105;&#110;&#101;&#064;&#104;&#111;&#116;&#109;&#097;&#105;&#108;&#046;&#099;&#111;&#109;';
    
    if(encodedEmail.length > 0) {
        document.write("<a href=\"mailto:" + encodedEmail + "?Subject=Re: " + entryTitle + "\"> Feedback </a> &nbsp;");
    } else {
        document.write("");
    }
}