// JavaScript Document
/* Please do not delete these credit lines, but all the others you can change. This is a small script which does open a box with a message
in it. Easily put in this script in your <body> section.That's all what you have to do. Now every visitor who visits your page sees that box.
If you have some questions contact me at mayestro@2xs.de */
// 1999 by Christian Maier 1999   http://www.beste-links.de.cx
<!-- begin
var max=0;
function textlist()
{
	max=textlist.arguments.length; for (i=0; i<max; i++) this[i]=textlist.arguments[i];
}

tl=new textlist
(
 	"See new Contact Details in the Contacts tab.",
	"Payout level now 90%.",
	"Bar Date 29 September 2004, which has now passed."
);

var x=0; pos=0;
var l=tl[0].length;
function textticker()
{
	document.tickform.tickfield.value=tl[x].substring(0,pos)+"_";
	if(pos++==l)
{
pos=0;
setTimeout("textticker()",5000);
x++;
if(x==max)
	x=0;
	l=tl[x].length;
} else
	setTimeout("textticker()",50);
}
// end -->
<!--
	document.write('<FORM NAME="tickform">');
	document.write('- BFMIC News: - <INPUT TYPE="TEXT" NAME="tickfield" SIZE="300" STYLE="font-family: verdana; font-size: 11px; color: #000000; border: none" >');
	textticker();
//-->

