var max=0;
function textlist()
{max=textlist.arguments.length;
for (i=0; i<max; i++)
this[i]=textlist.arguments[i];}
tl=new textlist
(" Wir sind auf der Interboot in Friedrichshafen.            ",
" Vom 18. - 26. September              ",
" Halle A 3 - Stand 100 / 8              ",
" Wir freuen uns auf Ihren Besuch !             "
);
var pos=0;
var x=0;
var l=tl[x].length;
function textticker()
{document.forms[0].textfeld.value=tl[x].substring(0,pos)+"_";
if(pos++==l)
{pos=0;
setTimeout("textticker()",1500);
x++;
if(x==max)
x=0;
l=tl[x].length;
} else
setTimeout("textticker()",150);
}

textticker();