<!--
var tickerLength = 180;
var running = false;
var tickerID;
var delay = 100;
var pointer = 0;
var message = " BANHCAFE anuncia el lanzamiento de su nuevo Website!    •    Pregunte por nuestro Financiamiento para MICROEMPRESAS    •    ";

function tickerTape() {
	var i, len;
	var mesg = message;
	len = (tickerLength / mesg.length) + 1;
	for (i=0; i<=len; i++)
		mesg += " "+mesg;
	document.tickerWindow.tickerTape.value = 
		mesg.substring(pointer, pointer + tickerLength);
	if(pointer++ == tickerLength/2)
		pointer=0;
	tickerID = setTimeout ("tickerTape()", delay);
}

function resetMessage (txt) {
	message = txt;
	if (running) {
		stopTape ();
		startTape ();
	}
}

function stopTape () {
	if (running) {
		clearTimeout (tickerID);
		running = false;
		}
}

function startTape () {
	if (!running) {
		tickerTape ();
		running = true;
		}
}
//-->
