<!-- Ticker Tape in Java Script .. Heavily Modified by Bill Welliver
//-- Original concept by Cameron Gregory cameron@corona.att.com
var tickertapeform
tt_speed=200
tt_len=18
tt_space="                                                                                                    "
tt_tid = 0;
tt_message="."
tt_c= -tt_len;
function move() {
  cend=Math.min(tt_c+tt_len,tt_message.length)
  if (tt_c <0)
    cstart=0;
  else
    cstart=tt_c;
  if (tt_c < 0)
    tt_f.scroll.value=tt_space.substring(0,-tt_c) + tt_message.substring(cstart,cend)
  else
    tt_f.scroll.value=tt_message.substring(cstart,cend)
  tt_c = tt_c +1;
  if (tt_c == tt_message.length ) tt_c = -tt_len;
  tt_tid=window.setTimeout("move()",tt_speed);
}
function tt_start(x) {
  tt_f=x
  tt_tid=window.setTimeout("move()",tt_speed);
}
function tt_cleartid() {
  window.clearTimeout(tt_tid);
}
function ticker(m)
{
tt_message=m
tt_len=20
tt_speed=200
document.write('<p style="word-spacing: 0; line-height: 100%; margin-top: 0; margin-bottom: 0"><FORM name=tickertapeform><input name=scroll size=18></FORM></p>');
tt_start(document.tickertapeform);
}
