var max=0;
function textlist()
{
max=textlist.arguments.length;
for (i=0; i<max; i++)
this[i]=textlist.arguments[i];
}

tl=new textlist 
(
"Landentwicklung im Einwanderungsland USA",
"Naturschutzprojekt: Tropenwald in Brasilien",
"Indien: keine Krise! Hotelprojekt staatl. gefördert",
"Land und Milchwirtschaft als Inflationsschutz",
"Einzelhandel: Verkauf-vor-Ankauf-Prinzip"
);

var x=0; pos=0; var l=tl[0].length;  

function textticker()
{
document.form1.textfeld.value=tl[x].substring(0,pos)+"_";
if(pos++==l)
{
pos=3;
setTimeout("textticker()",1000);
x++;
if(x==max)
x=0;
l=tl[x].length;
} else 
setTimeout("textticker()",54);
}
