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.regio7.cat";
var nombrePer = "Regió 7";
var a_noticias = new Array(
new noticia("http://www.regio7.cat/portada/2012/02/04/psoe-decideix-aquest-dissabte-chacon-rubalcaba/187545.html?utm_source=rss","El PSOE decideix aquest dissabte entre Chacón i Rubalcaba","Regió 7","Sat, 04 Feb 2012 10:13:07 GMT")
,new noticia("http://www.regio7.cat/portada/2012/02/04/catalunya-gelida/187544.html?utm_source=rss","Catalunya gèlida","Regió 7","Sat, 04 Feb 2012 10:08:35 GMT")
,new noticia("http://www.regio7.cat/economia/2012/02/04/catalunyabanc-prepara-seva-venda-generalitat-demana-proteccio-lobra-social/187530.html?utm_source=rss","CatalunyaBanc es prepara per a la seva venda i la Generalitat demana protecció per a l?obra social","Regió 7","Sat, 04 Feb 2012 03:45:00 GMT")
,new noticia("http://www.regio7.cat/esports/2012/02/04/manresa-necessita-triomf-balsamic-vilassar/187467.html?utm_source=rss","El Manresa necessita un triomf balsàmic a Vilassar","Regió 7","Sat, 04 Feb 2012 09:56:44 GMT")
,new noticia("http://www.regio7.cat/cultures/2012/02/04/propaganda-publica-directe-versaris-asstrio-gravat-lstroika/187457.html?utm_source=rss","Propaganda publica el directe d'At Versaris i Asstrio gravat a l'Stroika","Regió 7","Sat, 04 Feb 2012 09:11:30 GMT")
,new noticia("http://www.regio7.cat/bages/2012/02/04/entitats-voluntaris-permet-continuitat-carnaval-sallent/187449.html?utm_source=rss","Entitats i voluntaris permet la continuïtat del Carnaval de Sallent","Regió 7","Sat, 04 Feb 2012 10:53:41 GMT")
,new noticia("http://www.regio7.cat/fet-divers/2012/02/04/atropellat-tractor-esparreguera/187440.html?utm_source=rss","Mor atropellat per un tractor a Esparreguera","Regió 7","Fri, 03 Feb 2012 16:58:39 GMT")
,new noticia("http://www.regio7.cat/economia/2012/02/04/decimes-sobre-lobjectiu-deficit/187438.html?utm_source=rss","Sis dècimes per sobre de l'objectiu del dèficit","Regió 7","Fri, 03 Feb 2012 15:34:47 GMT")
,new noticia("http://www.regio7.cat/economia/2012/02/04/mascolell-demana-protegeixi-lactuacio-lobra-social-catalunyacaixa/187434.html?utm_source=rss","Mas-Colell demana que es protegeixi l'actuació de l'obra social de CatalunyaCaixa","Regió 7","Fri, 03 Feb 2012 14:25:39 GMT")
,new noticia("http://www.regio7.cat/manresa/2012/02/04/manresa-mantindra-activat-nevades-setmana/187432.html?utm_source=rss","Manresa mantindrà activat el pla de nevades tot el cap de setmana","Regió 7","Fri, 03 Feb 2012 13:26:04 GMT")
,new noticia("http://www.regio7.cat/esports/2012/02/04/micah-downs-talent-jugar-playoff/187426.html?utm_source=rss","Micah Downs: «Tenim talent per jugar els play-off»","Regió 7","Fri, 03 Feb 2012 08:08:05 GMT")
,new noticia("http://www.regio7.cat/solsones/2012/02/04/lobra-carrer-vinyet-sajorna-lespera-pressupost/187365.html?utm_source=rss","L'obra del carrer del Vinyet s'ajorna a l'espera del pressupost","Regió 7","Fri, 03 Feb 2012 07:43:59 GMT")
,new noticia("http://www.regio7.cat/cerdanya-alt-urgell/2012/02/04/puigcerda-banc-temps-cobrir-necessitats-socials/187360.html?utm_source=rss","Puigcerdà fa un banc del temps per a cobrir necessitats socials","Regió 7","Fri, 03 Feb 2012 07:43:31 GMT")
,new noticia("http://www.regio7.cat/bages/2012/02/04/generalitat-pagar-bages-milions-dobres-fetes/187355.html?utm_source=rss","La Generalitat té per pagar al Bages 432 milions d'obres ja fetes","Regió 7","Fri, 03 Feb 2012 07:42:25 GMT")
,new noticia("http://www.regio7.cat/manresa/2012/02/04/llegenda-llum-cuarto-mileno/187400.html?utm_source=rss","La llegenda de la Llum, a Cuarto Mileno","Regió 7","Fri, 03 Feb 2012 17:00:01 GMT")
,new noticia("http://www.regio7.cat/bergueda/2012/02/04/consell-oferira-informacio-turistica-hores/187359.html?utm_source=rss","El Consell oferirà informació turística les 24 hores del dia","Regió 7","Fri, 03 Feb 2012 07:44:21 GMT")
,new noticia("http://www.regio7.cat/anoia-baix-llobregat/2012/02/04/manifestacio-lanoia-contra-retallades-ensenyament/187367.html?utm_source=rss","Manifestació a l'Anoia contra les retallades en ensenyament","Regió 7","Fri, 03 Feb 2012 07:36:01 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();}

