function noticia(link,title,autor,pubdate)
{
 this.link = link;
 this.title = title;
 this.autor = autor;
 this.pubdate = pubdate;
}
var titSeccion = "Valencia";
var enlaceTit = "www.levante-emv.com";
var nombrePer = "Levante-EMV";
var a_noticias = new Array(
new noticia("http://www.levante-emv.com/valencia/2012/02/11/profugo-emarsa-saco-millon-traves-malta-enviarlo-firma/880385.html?utm_source=rss","El prófugo de Emarsa sacó un millón a través de Malta para enviarlo a una firma de EE UU","Levante-EMV","Sat, 11 Feb 2012 04:30:00 GMT")
,new noticia("http://www.levante-emv.com/valencia/2012/02/11/saguntopadre-urbano-organiza-calle-feria-casas-regionales/880396.html?utm_source=rss","Sagunto-Padre Urbano organiza en la calle una feria de casas regionales","Levante-EMV","Sat, 11 Feb 2012 04:30:00 GMT")
,new noticia("http://www.levante-emv.com/valencia/2012/02/11/vecinos-ayuntamiento-pactan-silencio-negocian-instalacion-toldo-virgen/880474.html?utm_source=rss","Vecinos y ayuntamiento pactan silencio mientras negocian la instalación del toldo de la Virgen","Levante-EMV","Fri, 10 Feb 2012 23:00:04 GMT")
,new noticia("http://www.levante-emv.com/valencia/2012/02/11/salud-elite/880364.html?utm_source=rss","Salud para la élite... pero para todos","Levante-EMV","Sat, 11 Feb 2012 04:30:00 GMT")
,new noticia("http://www.levante-emv.com/valencia/2012/02/11/empiezan-fiestas-campanar/880397.html?utm_source=rss","Empiezan las fiestas de Campanar","Levante-EMV","Sat, 11 Feb 2012 04:30:00 GMT")
,new noticia("http://www.levante-emv.com/valencia/2012/02/11/protesta-vuelta-campanar-podra-ocupar-aceras/880476.html?utm_source=rss","La protesta por la vuelta de la Fe a Campanar sólo podrá ocupar las aceras","Levante-EMV","Fri, 10 Feb 2012 23:12:03 GMT")
,new noticia("http://www.levante-emv.com/valencia/2012/02/11/trabajadores-limpieza-manifiestan-recortes/880473.html?utm_source=rss","Trabajadores de la limpieza de FCC se manifiestan contra los recortes","Levante-EMV","Fri, 10 Feb 2012 23:00:03 GMT")
,new noticia("http://www.levante-emv.com/valencia/2012/02/11/paradis-paraules-finestra-observar-lepoca-islamica-valencia/879149.html?utm_source=rss","&quot;?El Paradís de les paraules? és una finestra per observar l?època islàmica a València&quot;","Levante-EMV","Tue, 07 Feb 2012 00:23:32 GMT")
,new noticia("http://www.levante-emv.com/valencia/2012/02/11/csif-denuncia-delegacion-gobierno-ocupa-sede-inadecuada/880475.html?utm_source=rss","CSIF denuncia que la Delegación del Gobierno ocupa una sede inadecuada","Levante-EMV","Fri, 10 Feb 2012 23:00:01 GMT")
,new noticia("http://www.levante-emv.com/valencia/2012/02/11/gigante-fuera-curioso/878668.html?utm_source=rss","Gigante por fuera, curioso por dentro","Levante-EMV","Sat, 11 Feb 2012 18:04:27 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();}


