	var marqueewidth=170;
	var marqueeheight=140 - (20 * 3);
	if (marqueeheight == 140)
		marqueeheight = 120;
	var speed=1;
	var marqueecontents='<table border="0" width="100%"><tr><td class="portletContent">' + 
	'<B><font color="#FF0000">I concerti sono momentaneamente sospesi</font></B><br>' +
	'</td></tr></table>' ;
	
	var j = 0;
	for (j = 0; j < 100 ; j++)
	{
	 marqueecontents = marqueecontents.replace("|","\'")
	}
	
	if (document.all)
		document.write('<marquee direction="up" BEHAVIOR="scroll" scrollAmount='+speed+' style="width:'+marqueewidth+';height:'+marqueeheight+'">'+marqueecontents+'</marquee>');
	else
	{
		document.write('<div style="overflow:hidden; height:' + marqueeheight + '; width:159;" name="cmarquee01" id="cmarquee01">');
		document.write('<div id="sctext" name="sctext" style="position:relative;">' + marqueecontents + '</div>');
		document.write('</div>');
	}
