//
// Lazor Software Utilities Unit
// (C) 1999 Lazor Software. All Rights Unknown...
//
// Unauthorized distribution and copying is prohibited.... unless you ask me.
//
var NewsText  = "                                           "+
                "*Oct 25, 00*  I've updated a lot of the JavaScript with a new animation unit I created. "+
                "I hope everything works right! Let me know...";
var MsgPos    = 0;
var javastart = false;

function SendNews()
{
  msg = NewsText.substring(MsgPos,NewsText.length)+
        NewsText.substring(0,MsgPos-1);
  window.status = msg;
  MsgPos++;
  if (MsgPos > NewsText.length) MsgPos = 0;
  return true;
}
function Update()
{
  if (javastart)
  {
    SendNews();
    setTimeout("Update()",200);
  }
}
function StartJava()
{
  javastart = true;
  Update();
}
function StopJava()
{
  javastart = false;
  MsgPos = 0;
  window.status = "";
}
function ChangeJava()
{
  if (javastart) StopJava();
  else StartJava();
}
