<!-- Script to have Scout Law scroll across the bottom of the page.>
  function stMessageObj(p,d) {   
   this.msg = MESSAGE  
   this.out = " "  
   this.pos = POSITION   
   this.delay = DELAY  
   this.i     = 0 
   this.reset = clrMsg
  }
  function clrMsg() {  
   this.pos = POSITION
  }
  var POSITION = 110
  var DELAY    = 85
  var M1       = " A Scout is Trustworthy....Loyal....Helpful....Friendly...." 
  var M2       = "Courteous....Kind.....Obedient....Cheerful...."
  var M3       = "Thrifty....Brave....Clean....and Reverent  "
  var M4       = "       As an American I will do my best to be clean in my outdoor manners....."
  var M5       = "be careful with fire .... be considerate in the outdoors...."
  var M6       = "be conservation-minded........"
  var M7       =M1
  var M8       =M2
  var M9       =M3
  var MESSAGE  = M1+M2+M3+M4+M5+M6
  var line = new stMessageObj()
  function hpgmsg() {
   for (line.i = 0; line.i < line.pos; line.i++) 
     {line.out += " "  }    
   if (!(line.pos < 0)) 
     {line.out += line.msg;}      
   else 
           line.out = line.msg.substring(-line.pos,line.msg.length)
           window.status = line.out
           line.out = " "     
           line.pos--  
  if (line.pos < -(line.msg.length)) {
  return;
  }    
  setTimeout ('hpgmsg()',line.delay)}


