// JavaScript Document
      var max=0;
      function textlist()
      {
      max=textlist.arguments.length;
      for (i=0; i<max; i++)
      this[i]=textlist.arguments[i];
      }
      tl=new textlist
      ( 
       "IBP MARCH",
	   "Words and Music:",    
       "Justice Magdangal M. De Leon",
	   "first stanza I",
       "IBP, the lawyers of the land",
	   "Our noble missions unite us",
       "IBP, we dedicate our lives",
       "Justice and fairness to triumph",
       "Rule of law, our guiding light",
       "For truth and freedom, we will fight",
       "As our people build their destiny",
       "We will find our place in history",
	   "Serve the country, hail the IBP.",
       "second stanza II",
       "Integrated Bar of the Philippines",
       "Sentinel of law and democracy",
       "Marching on in unity",
       "Mabuhay!",
       "(Repeat I)"


      );
      var x=0; pos=0;
      var l=tl[0].length;
      function textticker()
      {
        document.tickform.tickfield.value=tl[x].substring(0,pos)+"_";
        if(pos++==l) { pos=0; setTimeout("textticker()",3000); x++;
        if(x==max) x=0; l=tl[x].length; } else
        setTimeout("textticker()",70);
      }