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/polideportivo/2012/02/04/felix-sentimos-comodos/152506.html?utm_source=rss","Félix: &quot;Nos sentimos cómodos&quot;","Superdeporte","Sat, 04 Feb 2012 11:36:41 GMT")
,new noticia("http://www.superdeporte.es/levante/2012/02/04/stuani-sera-honor-volver-pisar-ciutat/152502.html?utm_source=rss","Stuani: &quot;Será un honor volver a pisar el Ciutat&quot;","Superdeporte","Sat, 04 Feb 2012 11:03:43 GMT")
,new noticia("http://www.superdeporte.es/valencia/2012/02/04/atletico-madrid-gana-valencia-indoor/152498.html?utm_source=rss","El Atlético de Madrid gana al Valencia en el Indoor","Superdeporte","Sat, 04 Feb 2012 10:54:06 GMT")
,new noticia("http://www.superdeporte.es/valencia/2012/02/04/ilusion-contagiosa-bara/152496.html?utm_source=rss","Ilusión contagiosa para Can Barça","Superdeporte","Sat, 04 Feb 2012 10:50:01 GMT")
,new noticia("http://www.superdeporte.es/valencia/2012/02/04/dilema-tino-costa/152494.html?utm_source=rss","El dilema de Tino Costa","Superdeporte","Sat, 04 Feb 2012 00:10:07 GMT")
,new noticia("http://www.superdeporte.es/ros-casares/2012/02/04/mann-filter-racha-pone-prueba/152492.html?utm_source=rss","Un Mann Filter en racha pone a prueba al Ros","Superdeporte","Fri, 03 Feb 2012 23:50:08 GMT")
,new noticia("http://www.superdeporte.es/valencia-basket/2012/02/04/perasovic-mima-rafa/152490.html?utm_source=rss","­Perasovic mima a Rafa","Superdeporte","Fri, 03 Feb 2012 23:47:02 GMT")
,new noticia("http://www.superdeporte.es/futbol/2012/02/04/alcoyano-alerta-quedarse-pajarito/152486.html?utm_source=rss","El Alcoyano, alerta para no quedarse como un 'pajarito'","Superdeporte","Fri, 03 Feb 2012 23:42:15 GMT")
,new noticia("http://www.superdeporte.es/levante/2012/02/04/amigos-comun/152482.html?utm_source=rss","Dos amigos y un fin común","Superdeporte","Fri, 03 Feb 2012 23:25:00 GMT")
,new noticia("http://www.superdeporte.es/valencia/2012/02/04/guaita-necesita-infiltrado/152478.html?utm_source=rss","Guaita ya no necesita ser infiltrado","Superdeporte","Fri, 03 Feb 2012 23:16:34 GMT")
,new noticia("http://www.superdeporte.es/valencia/2012/02/04/copa/152480.html?utm_source=rss","El Rey de la Copa","Superdeporte","Fri, 03 Feb 2012 23:19:18 GMT")
);
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();}

