//Indica aquí, en pixels, el ancho de tu marquesina
var textowidth=1024
//Indica aquí, en pixels, el alto de tu marquesina
var textoheight=19
//Indica aquí la velocidad de recorrido del texto
var textospeed=3
//Escribe el mensaje que debe aparecer (con sus correspondientes enlaces, si los hay)
var textocontents=textobanner

if (document.all)
	document.write('<marquee scrollAmount='+textospeed+' style="width:'+textowidth+'" class="textoIndicadores">'+textocontents+'</marquee>')

function regenerate() {
	window.location.reload()
}

function regenerate2() {

	if (document.layers) {
		setTimeout("window.onresize=regenerate",450)
		inicializamarquesina()
	}

}

function inicializamarquesina(){

	document.cmarquee01.document.cmarquee02.document.write('<nobr>'+textocontents+'</nobr>')
	document.cmarquee01.document.cmarquee02.document.close()

	thelength=document.cmarquee01.document.cmarquee02.document.width

	scroll_itt()

}

function scroll_itt() {

	if (document.cmarquee01.document.cmarquee02.left>=thelength*(-1)) {
		document.cmarquee01.document.cmarquee02.left-=textospeed
		setTimeout("scroll_itt()",100)
	}
	else {
		document.cmarquee01.document.cmarquee02.left=textowidth
		scroll_itt()
	}

}

//window.onload=regenerate2
regenerate2
