//var max=0;
var max0101=tl.length;


function textlist() {
	max=textlist.arguments.length;
	for (i=0; i<max; i++)
		this[i]=textlist.arguments[i];
}

var x0101 = 0; pos0101 = 0;
var l0101 = tl[0].length;


function textticker() {
	document.tickform.tickfield.value = tl[x0101].substring(0, pos0101) + "_";
	if(pos0101++ == l0101) {
		pos0101 = 0; 
		setTimeout("textticker()", 2000); 
		if(++x0101 == max0101) x0101 = 0; 
		l0101 = tl[x0101].length;
	} else
		setTimeout("textticker()", 50);
}

document.write("<form name=tickform>\n");
document.write("<textarea name=tickfield rows=" + rows + " cols=" + cols + " style='background-color:" + bg + "; color:" + fg + "; cursor: default; font-family: Arial; font-size: 12px' wrap=virtual>The news will appear here when the page has finished loading.</textarea>\n");
document.write("</form>\n");

textticker();
