var max=0;
function textlist(){
max=textlist.arguments.length;
for (i=0; i<max; i++)
this[i]=textlist.arguments[i];}
tl=new textlist
(
"      Everything on this web site is Free of charge...",
"       Last up-date made Sunday 10th Mar 2002...",
"        Whats New...   Whats New...   Whats New...",
"   One program added to the Download section...",
"           Ten Year Calendar by Gary Warren...",
"   New links added to Links and Resources section..",
"      SCL2000 can now be download from 14 sites..",
"    Check out the Applets section for Free applets..",
"     Need Help?   Drop me a line, if I can help I will... "
)
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=0;
setTimeout("textticker()",2000);
x++;
if(x==max)
x=0;
l=tl[x].length;
}else
setTimeout("textticker()",50);}
//setTimeout("textticker()",1000)