      var max=0;
      function textlist()
      {
      max=textlist.arguments.length;
      for (i=0; i<max; i++)
      this[i]=textlist.arguments[i];
      }
      tl=new textlist
      ( 
       "Maximize your Profits!",  
       "Most Current Cost Data!",
       "Fast and Accurate!"

      );
      
      var y=0; pos=0;      
      var l=tl[0].length;
      
      function textticker()
      {
        document.tickform.tickfield.value=tl[y].substring(0,pos)+" ";
        if(pos++==l) { 
            pos=0; 
            setTimeout("textticker()",1000); 
            y++;
            if(y==max) y=0; l=tl[y].length; 
        }else
            setTimeout("textticker()",50);
      }
