
news = new Array;
news[0] = '<br><br><p align=center><b><a href="http://www.edilportale.com/news/2009/09/normativa/piano-casa-pubblicata-la-legge-del-lazio_16228_15.html" target=_blank class="sec">11/09/09: Piano Casa regione LAZIO</a></b></p>';
news[1] = '<br><br><p align=center><b><a href="http://www.governo.it/GovernoInforma/Dossier/passaporto_formativo_edilizia/"  target=_blank class="sec">22/09/09: “Passaporto” formativo per gli edili</a></b></p>';
news[2] = '<br><br><p align=center><b><a href="http://www.edilportale.com/news/2010/06/risparmio-energetico/case-certificate-dai-notai-una-guida-all-acquisto_19128_27.html"  target=_blank class="sec">13/06/2010: Case certificate </a></b></p>';
news[3] = '<br><br><p align=center><b><a href="http://www.frosinonefiere.it/online/"  target=_blank class="sec">18/06/2010: EdilFiera Ciociaria 2010 </a></b></p>';

box_attuale = 0;
 ejs_box2_html_flag = 0;
 
 function ejs_box2_go()
 	{
 	if(document.getElementById)
 		{
 		ejs_box2_char = 1;
 		ejs_box2_affich(box_attuale)
 		box_attuale++;
 		if(box_attuale >= news.length)
 			box_attuale = 0;
 		}		
 	}
 
 function ejs_box2_affich(lactual)
 	{
 	var pix = news[lactual].charAt(ejs_box2_char);
 	if(pix == "<")
 		ejs_box2_html_flag = 1;
 	if(pix == ">")
 		ejs_box2_html_flag = 0;
 	var texte = news[lactual].substring(0,ejs_box2_char);
 	document.getElementById("area").innerHTML = texte;
 	if(ejs_box2_char <news[lactual].length)
 		{
 		ejs_box2_char++;
 		if(ejs_box2_html_flag == 1)	
 			ejs_box2_affich(lactual);
 		else
 			setTimeout("ejs_box2_affich("+lactual+")",30)
 		}
 	else
 		setTimeout("ejs_box2_go()",2000)
 	}
 
 window.onload = ejs_box2_go;
