<!-- begin// global variables

var max=0;

function textlist()

{

        max=textlist.arguments.length;

        for (i=0; i<max; i++)

                this[i]=textlist.arguments[i];

}



tl=new textlist

(

          "           Trash in den Mai!        "

           , "     Trashtones live am 30.April 2006, 21:30 Uhr  "

          , " Wuppertal-Ölbergfest"

          , " Bühne Gegenseitiger Hilfeverein Brunnenstr. "

);



var x=0; pos=0;

var l=tl[0].length;

var maxlength=74;



function textticker() 

{        

        if (pos > maxlength) 

                  {

                          document.form1.textfeld.value=tl[x].substring(pos-maxlength+1,pos);

                  } else

                document.form1.textfeld.value=tl[x].substring(0,pos);



        if(pos++==l)

        {

                pos=0;

                setTimeout("textticker()",2500);

                x++;

                if(x==max)

                        x=0;

                l=tl[x].length;

        } else

                setTimeout("textticker()",130);



}



// end -->









