function noticia(link,title,autor)
{
this.link = link;
this.title = title;
this.autor = autor;
}
var a_noticias = new Array(
new noticia("http://elpais.com/tag/fecha/ultimahora/","Consulta las últimas noticias de elpais.com","El País")
);
