//added to original code
<!--- hide script from old browsers
function WinOpen() 
   {
   alert('\nPage will load to full screen.\n\nUse View/Document Source from menu bar to view source.\n\nClose new window to return to this page. ');
   window.open("js-bann1.htm","DisplayWindow","menubar=yes");
   window.open("js-bann1.htm","DisplayWindow","menubar=yes");   // double for Macs
   }
//cease hiding-->

// Declare all Local Variables Here
Size = 50; 
Pos=50;
Speed=.75;
Message="Stop Cyber Crime Before It Starts...  USA Today: Education May Head Off Young Hackers..  Teen Hackers Jailed...  Youth Faces Prison...  9 Year-Old Hacker Arrested...  Expert: It's Cyber War...  FBI Web Site Attacked..  White House Web Site Vandalized..  House Speaker's Web Site Hit..  Pentagon Security at Risk..  Yahoo, AOL, CNN, Amazon, eBay Hit Hard...  Teen Dropout Key Suspect...  Government, Business Clash Over Cyber Crime..  Hackers Seize Military Satellite...  Software Co. Sues Cyber-Pirates...  Vast Online Credit Card Theft Revealed...  Cyber Vandals Manhunt Continues..  Schools Easy Targets For Hackers..  China Sentences Hacker to Death...  'Zombie Computers' used in Hack-Attack...  Expert: Wake Up Call for Web...  8TH GRADER BUSTED in INTERNET BANKING SCAM";

//-----------------------
function Update() 
   {
   Spaces = "";
   for (count=0; count<Pos; count++) 
      {
      Spaces+= " ";
      }
   if (Pos < 1) 
      {
      document.PANEL.Bar.value = Message.substring(Math.abs(Pos), Message.length);
      if (Pos+Message.length < 1)
         {Pos = Size;}
      } 
   else 
      {document.PANEL.Bar.value = Spaces + Message;}
   Pos-=Speed;
   setTimeout('Update();', 15);
   }

//-----------------------