<!--
   var bw=top.br;
   var speed=50 
   var loop, timer
   var limit = 20;
   var limitCount = 0;
   var distance = 5;
   var direction = 'U';
   var nIx=0;
   var initialised; 
   var objScroller = new Array(nDivCount);


   function ConstructObject(obj,nest)
   { 
       nest=(!nest) ? '':'document.'+nest+'.' 
       this.el=bw.dom?document.getElementById(obj):bw.ie4?document.all[obj]:bw.ns4?eval(nest+'document.'+obj):0; 
       this.css=bw.dom?document.getElementById(obj).style:bw.ie4?document.all[obj].style:bw.ns4?eval(nest+'document.'+obj):0; 
       this.scrollHeight=bw.ns4?this.css.document.height:this.el.offsetHeight 
       this.clipHeight=bw.ns4?this.css.clip.height:this.el.offsetHeight 
       this.up=MoveAreaUp;this.down=MoveAreaDown; 
       this.MoveArea=MoveArea; this.x; this.y; 
       this.obj = obj + "Object" 
       eval(this.obj + "=this") 
       return this 
   } 
   
   function MoveArea(x,y)
   { 
       this.x=x;this.y=y 
       this.css.left=this.x 
       this.css.top=this.y 
   } 
   
   function MoveAreaDown(move)
   { 
      if(this.y>-this.scrollHeight){ 
       this.MoveArea(0,this.y-distance) 
         setTimeout(this.obj+".down("+distance+")",speed);
      } else {    
         direction='U';
         nIx++;
         if (nIx>(nDivCount-1)) nIx=0;
         setTimeout('PerformScroll()',100);
      }
   } 
   
   function MoveAreaUp(move)
   { 
      if(this.y<0){ 
       this.MoveArea(0,this.y+distance) 
       if(loop) {
            setTimeout(this.obj+".up("+distance+")",speed);
         }
      } else {
         direction='D';
         setTimeout('PerformScroll()',4000);
      }
   } 

   function PerformScroll()
   { 
      if(initialised){ 
         loop=true; 
         if (direction=='D') {
            objScroller[nIx].down(7);
         } else {
            objScroller[nIx].up(7);
         }
      } 
   } 

   function CeaseScroll()
   { 
       loop=false 
       if(timer) clearTimeout(timer) 
   } 
   
   function InitialiseScrollableArea()
   { 
       objContainer=new ConstructObject('divNewsContainer');
       for (var i=0;i<objScroller.length;i++) {
            objScroller[i]=new ConstructObject('divNewsContent'+i,'divContainer');
            objScroller[i].MoveArea(0,-objScroller[i].scrollHeight);
            objScroller[i].css.visibility='visible';
       }
         objContainer.css.visibility='visible';
       //alert('Container height: '+objContainer.clipHeight+'\nScroll height: '+objScroller.scrollHeight);
       initialised=true; 
         loop=true; 
       window.setTimeout('PerformScroll()',1000);
   } 
-->
