<!--

var lf1;

function pathway_run()
{
  lf1.naechster_schritt();
  setTimeout("pathway_run()", 125);
}

function pathway_start( text )
{
  if( lf1 ||
      ( text.length < 1 ) ) {
    return;
  }
  lf1 = new make_laufschrift("pathway",
			     text,
			     80,
			     true,
			     true,
			     " +++ ",
			     "#000000",
			     "#ffffff");
  setTimeout("pathway_run()", 125);
} // -->
