function noticia(link,title,autor,pubdate)
{
 this.link = link;
 this.title = title;
 this.autor = autor;
 this.pubdate = pubdate;
}
var titSeccion = "Seccion al minuto";
var enlaceTit = "www.superdeporte.es";
var nombrePer = "Superdeporte";
var a_noticias = new Array(
new noticia("http://www.superdeporte.es/valencia/2010/03/13/valencia-cf-defensa-cogida-pinzas/89379.html","Otra defensa cogida con pinzas","Superdeporte","2010-03-13T09:57:33Z")
,new noticia("http://www.superdeporte.es/valencia/2010/03/13/valencia-cf-jaume-part-confirma-deja-agrupacio-penyes/89391.html","Jaume Part confirma que deja la Agrupació de Penyes","Superdeporte","2010-03-13T10:29:27Z")
,new noticia("http://www.superdeporte.es/baloncesto/2010/03/13/baloncesto-power-electronics-quiere-darle-puntilla-madrid/89381.html","El Power Electronics quiere darle la puntilla al Madrid","Superdeporte","2010-03-12T23:38:39Z")
,new noticia("http://www.superdeporte.es/opiniones/2010/03/13/opiniones-santos-inocentes-levante/89390.html","Los Santos Inocentes del Levante","Superdeporte","2010-03-12T23:35:05Z")
,new noticia("http://www.superdeporte.es/carlos-bosch/2010/03/13/carlos-bosch-perro-leon130310/89389.html","Un perro o un león13/03/10","Superdeporte","2010-03-12T23:32:07Z")
,new noticia("http://www.superdeporte.es/opiniones/2010/03/13/opiniones-centrales-paraiso/89388.html","Sin centrales no hay paraíso","Superdeporte","2010-03-12T23:25:32Z")
,new noticia("http://www.superdeporte.es/joan-carles-marti/2010/03/13/joan-carles-marti-lyon130310/89387.html","La lió el Lyon13/03/10","Superdeporte","2010-03-12T23:23:19Z")
,new noticia("http://www.superdeporte.es/polideportivo/2010/03/13/polideportivo-anabel-medina-despide-primeras-cambio/89385.html","Anabel Medina se despide a las primeras de cambio","Superdeporte","2010-03-12T23:17:05Z")
,new noticia("http://www.superdeporte.es/valencia/2010/03/13/valencia-cf-michel-vuelve-afinar-punteria-filial/89383.html","Míchel vuelve para afinar la puntería del filial","Superdeporte","2010-03-12T23:02:32Z")
,new noticia("http://www.superdeporte.es/futbol/2010/03/13/futbol-sorprendente-derrota-inter-catania/89377.html","Sorprendente derrota del Inter en Catania","Superdeporte","2010-03-12T22:01:02Z")
,new noticia("http://www.superdeporte.es/futbol/2010/03/13/futbol-fallece-joven-partido-futbol/89375.html","Fallece un joven de 15 años en un partido de fútbol","Superdeporte","2010-03-12T21:49:44Z")
,new noticia("http://www.superdeporte.es/futbol/2010/03/13/futbol-muro-nastic/89373.html","Un muro contra el Nàstic","Superdeporte","2010-03-13T01:30:00Z")
,new noticia("http://www.superdeporte.es/baloncesto/2010/03/13/baloncesto-nuevo-paseo-casares/89371.html","Nuevo paseo del Ros Casares","Superdeporte","2010-03-12T21:39:03Z")
,new noticia("http://www.superdeporte.es/valencia/2010/03/13/valencia-cf-veteranos-primer-aviso-barcelona/89369.html","Los veteranos dan el primer aviso al Barcelona","Superdeporte","2010-03-12T20:23:19Z")
,new noticia("http://www.superdeporte.es/valencia/2010/03/13/valencia-cf-supero-eliminatoria/89367.html","El VCF sólo superó una vez la eliminatoria con un 1-1 en la ida","Superdeporte","2010-03-12T19:38:28Z")
,new noticia("http://www.superdeporte.es/valencia/2010/03/13/valencia-cf-busca-recuperar-suerte-perdida-bara/89365.html","El VCF busca recuperar la suerte perdida en Can Barça","Superdeporte","2010-03-12T19:28:58Z")
,new noticia("http://www.superdeporte.es/futbol/2010/03/13/futbol-benitez-favorito-relevar-pellegrini-banquillo-blanco/89363.html","Benítez, favorito para relevar a Pellegrini en el banquillo blanco","Superdeporte","2010-03-12T19:03:37Z")
,new noticia("http://www.superdeporte.es/polideportivo/2010/03/13/polideportivo-contador-atacar-corredores/89361.html","Contador: &quot;Sé que me van a atacar varios corredores&quot;","Superdeporte","2010-03-12T18:55:33Z")
,new noticia("http://www.superdeporte.es/formula1/2010/03/13/formula-1-volver-regla/89359.html","Podría volver la regla del 107","Superdeporte","2010-03-12T18:34:56Z")
,new noticia("http://www.superdeporte.es/valencia/2010/03/13/valencia-cf-marquez-villa-valencia-peligroso/89357.html","Márquez: &quot;Sin Villa, el Valencia no es tan peligroso&quot;","Superdeporte","2010-03-12T17:59:20Z")
);
function imprimirNoticias(numNoticias){
numNots = numNoticias;
var capa = document.getElementById("widgetRenr_" + idDiv + "");
html = "<h2><a href='http://" + enlaceTit + "'>" + nombrePer + " | " + titSeccion + "</a></h2>";
html += "<div>";
for (var i= 0; i<a_noticias.length && i<numNoticias; i++){
html += "<div class='widgetRenr_noticia_" + idDiv + "'>";
html += "<a target='_blank' href='" + a_noticias[i].link + "'>" + a_noticias[i].title + "</a>";
html += "</div>";}
html += "</div>";
capa.innerHTML = html;
resizeme();}
