<!--
   var bw=top.br;
   var speed=50 
   var loop, timer
   var limit = 20;
   var limitCount = 0;
   var distance = 2;
   var direction = 'D';
//   var direction = 'L';
   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.scrollWidth = bw.ns4?this.css.document.width : this.el.offsetWidth;
       this.clipHeight=bw.ns4?this.css.clip.height:this.el.offsetHeight;
       this.up=MoveAreaUp;this.down=MoveAreaDown; 
       this.left=MoveAreaLeft;this.right=MoveAreaRight;
       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 MoveAreaLeft(move)
   { 
      if(this.x > distance)
      { 
         this.MoveArea(this.x - distance, 0);
         TimerID = setTimeout(this.obj + ".left(" + distance + ")", speed);
      } 
      else 
      {
         direction='R';
         TimerID = setTimeout('PerformScroll()', 4000);
      }
   } 
   
   function MoveAreaRight(move)
   {
      if(this.x < this.scrollWidth)
      { 
         this.MoveArea(this.x + distance, 0) 
         if(loop)
         {
            TimerID = setTimeout(this.obj + ".right(" + distance + ")", speed);
         }
      }
      else
      {
         direction = 'L';
         nIx++;
         if (nIx > (nDivCount-1))
            nIx=0;
         TimerID = setTimeout('PerformScroll()', 100);
      }
   } 

   function MoveAreaDown(move)
   { 
      if(this.y > -this.scrollHeight)
      { 
         this.MoveArea(0, this.y - distance) 
         TimerID = setTimeout(this.obj + ".down(" + distance + ")", speed);
      }
      else
      {
         direction='U';
         nIx++;
         if (nIx > (nDivCount-1)) 
            nIx = 0;
         TimerID = setTimeout('PerformScroll()', 100);
      }
   } 
   
   function MoveAreaUp(move)
   { 
      if(this.y < distance)
      { 
         this.MoveArea(0, this.y + distance) 
         if(loop)
         {
            TimerID = setTimeout(this.obj+".up(" + distance + ")", speed);
         }
      }
      else
      {
         direction = 'D';
         TimerID = setTimeout('PerformScroll()', 4000);
      }
   } 

   function PerformScroll()
   { 
      if(initialised)
      { 
         loop=true; 
         if (direction == 'D') 
         {
            objScroller[nIx].down(7);
         }
         else if (direction == 'U') 
         {
            objScroller[nIx].up(7);
         }
         else if (direction == 'L') 
         {
            objScroller[nIx].left(7);
         }
         else if (direction == 'R') 
         {
            objScroller[nIx].right(7);
         }
      } 
   } 

   function CeaseScroll()
   { 
       loop = false;
       if(TimerID)
         clearTimeout(TimerID);
   } 
   
   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].MoveArea(objScroller[i].scrollWidth, 0);
            		objScroller[i].css.visibility = 'visible';
      			 }
	   
       			objContainer.css.visibility = 'visible';
//alert('Container height: '+objContainer.clipHeight+'\nScroll height: '+objScroller.scrollHeight);
       			initialised = true; 
       			loop = true; 
       			TimerID = window.setTimeout('PerformScroll()', 1000);
	  
   } 
-->
