function infoscroll(seed,looped)
{
  var text0  = "                                                                                                                  ";
  var text1  = "Silica-hydride.com has been serving the Internet Since 1997";
  var text2  = "Over 100 Million Capsules of Silica Hydride Consumed Worldwide!";
  var text3  = "A free radical's mission in life is to steal a negative ion from a healthy cell. Protect your body from free damage with Microhydrin.";  
  var text4  = "Even more mind boggling";
  var text5  = "Silica Hydride: 10,000 Times more Antioxidant Power Than Fresh Squeezed Orange Juice "
  var msg=text1+text0+text5+text0+text2+text0+text3+text0+text4;
  var putout = " ";
  var c   = 1;

  if (looped > 10) 
  {  window.status="Have You Had Your Hydrogen Today?";  }
  else if (seed > 100) 
  {
     seed--;
     var cmd="infoscroll(" + seed + "," + looped + ")";
     timerTwo=window.setTimeout(cmd,100);
  }
  else if (seed <= 100 && seed > 0) 
  {
    for (c=0 ; c < seed ; c++) 
    {  putout+=" ";  }
    putout+=msg.substring(0,100-seed);	
    seed--;
    var cmd="infoscroll(" + seed + "," + looped + ")";
    window.status=putout;
    timerTwo=window.setTimeout(cmd,100);
  }
  else if (seed <= 0) 
  {
    if (-seed < msg.length) 
    {
      putout+=msg.substring(-seed,msg.length);
      seed--;
      var cmd="infoscroll(" + seed + "," + looped + ")";
      window.status=putout;
      timerTwo=window.setTimeout(cmd,100); // 100
    }
    else 
    {
      window.status=" ";
      looped += 1;
      var cmd = "infoscroll(100," + looped + ")";
      timerTwo=window.setTimeout(cmd,75); // 75
    }
  }
}
// -->

<!--
infoscroll(100,1)
// -->