function noticias() {
document.write("<br><font face=Tahoma><center><b>Noticias atrasadas:</b></center><ul>");
fecha_noticia("2003 - Marzo","index.htm",3);
fecha_noticia("2003 - Febrero","index.2003.02.htm",2);
fecha_noticia("2003 - Enero","index.2003.01.htm",2);
fecha_noticia("2002 - Octubre","index.2002.10.htm",1);
fecha_noticia("2002 - Septiembre","index.2002.09.htm",6);
fecha_noticia("2002 - Abril","index.2002.04.htm",2);
fecha_noticia("2002 - Enero","index.2002.01.htm",1);
fecha_noticia("2001 - Diciembre","index.2001.12.htm",3);
fecha_noticia("2001 - Noviembre","index.2001.11.htm",3);
document.write("</ul></font>");
}

function fecha_noticia(mes,url,numero) {
document.write("<li><a href=\""+url+"\">"+mes+" ("+numero+" mensajes)</a>");
}