speed=100
len=150
space="                                                                                                                                                                               "
tid = 0;
message="Brought to you by Development Crew"
c= -len;

function move() {
  cend=Math.min(c+len,message.length)
  if (c <0)
    cstart=0
  else
    cstart=c
  if (c < 0)
    window.status = space.substring(0,-c) + message.substring(cstart,cend)
  else
    window.status = message.substring(cstart,cend)
  c = c +1;
  if (c == message.length ) c = -len;
  tid=window.setTimeout("move()",speed);
}
 
function start() {
  tid=window.setTimeout("move()",speed);
}
 
// for some reason on some pages this crashes netscape
function statusticker(m,s)
{
message=m
speed=s
start();
}
function disableselect(e){
return false
}

function reEnable(){
return true
}

//if IE4+
document.onselectstart=new Function ("return false")

//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}

// for some reason on some pages this crashes netscape
function statusticker(m)
{
message=m
speed=1
start();
}
