//
// Shows a news bar
// by Oscar Toledo Gutiérrez
// © Copyright 2000-2003 Familia Toledo
// All Rights Reserved.
// http://www.geocities.com/biyubi/
// http://www.biyubi.com/
// biyubi@yahoo.com
//
// Creation: May/01/2000.
// Revision: Aug/25/2000.
// Revision: Dec/15/2000.
//
var e = "                                                  "
      + "                                                  "
      + "                                                  "
      + "                                                  ";
var p = -80;
// News Sep/28/2001
var n = "BUILD YOUR PROGRAMS WITH HIGH-LEVEL LANGUAGES: A "
      + "programmer is only as good as its tools. Fenix C version 2 "
      + "is an development environment, compiler and assembler that "
      + "takes your ideas and bring them to the reality, it has new "
      + "tools that easies the development of projects with "
      + "thousands of source lines, modularization, resource creation, "
      + "source code indexing, etc. Another original design from the "
      + "Toledo Family. "

function cn()
{
  var c = (p < 0 ? e.substring(0, -p) : "") + n.substring(p);
  if (c.length < 90)
    c += e.substring(0, 60) + n;
  document.no.a.value = c;
  if (++p >= n.length)
    p = -60;
}

