<!--
var scObj1 = new scrollObject("scObj1", "nameScroll", 120, 60, "transparent", "up", 15, 15, 25, 0, "scrollClass");
scObj1.block[0] = "Gerald O Davis Jr<br>John Compton<br>Homer Steel";
scObj1.block[1] = "Gerald Tibbit<br>James Ward<br>James Wood";
scObj1.block[2] = "Robert Adams<br>John Albert<br>Robert Barajas";
scObj1.block[3] = "William Baxter<br>Walter Bean<br>James Beville";
scObj1.block[4] = "James Bolick<br>William Windrich<br>Dorsie Booker";
scObj1.block[5] = "BJohn Bravo<br>William Burke<br>Leon Reese";
scObj1.block[6] = "John Blankenberg<br>Larry Cimino<br>Russell MCNulty";
scObj1.block[7] = "Edward Jones<br>John Koop<br>Louis Kraus";
scObj1.block[8] = "George Pence<br>Ray Pope<br>Hugh Redmon";
scObj1.block[9] = "Huil Sparks<br>Charles Taylor<br>Donald Morris";
scObj1.block[10] = "Reubin Fields<br>Joe Ashby<br>Ray Bowers";
scObj1.block[11] = "Warren Bowling<br>Elwood Crews Jr<br>William Dean";
scObj1.block[12] = "Ray Fairchild<br>William Harris Jr<br>Roper Henry";
scObj1.block[13] = "Allan Hoaglard<br>Charles Jarrett Jr<br>Buford Dale";
scObj1.block[14] = "Dearl Hemphill Jr<br>Rudy Love Jr<br>James Puckett";
scObj1.block[15] = "Anthony Virgadamo<br>Henry Weems Jr<br>Jerome Wentworth";
scObj1.block[16] = "Enriques Olivas<br>Fred Seydel<br>Richard Thompson";
scObj1.block[17] = "Robert Adams<br>Henry Albert<br>Robert Barajas";
scObj1.block[18] = "Bill Baxter<br>Walter Bean<br>James Beville";
scObj1.block[19] = "James Bolick<br>Dorsie Booker<br>John Bravo";
scObj1.block[20] = "William Burke<br>Ernest Caldwell<br>Richard Campos";
scObj1.block[21] = "Lonnie Cassle<br>Claude Castaing<br>Bobby Joe Chandler";
scObj1.block[22] = "Leroy Copitsky<br>John Correa<br>Walter Cowles";
scObj1.block[23] = "Glen Roy Cramer<br>Richard Cruz<br>John William Diemer";
scObj1.block[24] = "Michael Dolan<br>Conrad Dorn<br>William Epps";
scObj1.block[25] = "Warren Faubel<br>Paul Faulconer<br>Ted Fellis";
scObj1.block[26] = "Walter Fife<br>Robert Finnegan<br>Rogue I Flores";



function scrollObject(objName, main, width, height, bkgcol, direct, deccel, begin, speed, pause, classname) {
  this.objName = objName;
  this.main = main;
  this.one = main + "Block1";
  this.two = main + "Block2";
  this.block = new Array();
  this.blockup = 1;
  this.divup = 1;
  this.height = height;
  this.width = width;
  this.bkgcol = bkgcol;
  this.direct = direct;
  this.deccel = Math.max(deccel, 1);
  this.begin = Math.max(Math.min(begin, (direct == "up" || direct == "down") ? height : width), 1);
  this.speed = speed;
  this.pause = pause;
  this.slide = ((direct == "up" || direct == "down") ? height : width) / this.begin;
  this.table = "<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\"><tr><td class=\"" + classname + "\" style=\"width:" + width + "px;height:" + height + "px;\">";
  this.scroll = scroll;
  this.scrollLoop = scrollLoop;
}

function scroll() {if (!document.getElementById) return false;
  document.getElementById(this.main).innerHTML = "<div id=\"" + this.one + "\"></div><div id=\"" + this.two + "\"></div>";
  var divList = [document.getElementById(this.main), document.getElementById(this.one), document.getElementById(this.two)];
  for (var i = 0; i <= 2; i++) {
    if (i > 0) {
      divList[i].style.position = "absolute";
      if (this.direct == "up" || this.direct == "down") {
        divList[i].style.left = "0px";
        divList[i].style.top = (i == 1) ? "0px" : ((this.direct == "up") ? "" : "-") + this.height + "px";
      } else {
        divList[i].style.left = (i == 1) ? "0px" : ((this.direct == "left") ? "" : "-") + this.width + "px";
        divList[i].style.top = "0px";
      } divList[i].innerHTML = this.table + this.block[i - 1] + "</td></tr></table>";
    } else {
      divList[i].style.position = "relative";
      divList[i].style.background = this.bkgcol;
    }
    divList[i].style.width = this.width + "px";
    divList[i].style.height = this.height + "px";
    divList[i].style.overflow = "hidden";
  } setTimeout(this.objName + ".scrollLoop();", this.pause);
}

function scrollLoop() {
  var divList = [document.getElementById(this.main), document.getElementById(this.one), document.getElementById(this.two)];
  this.slide = Math.max(this.slide / this.deccel, 1);
  var slideInc = (this.direct == "up" || this.direct == "left") ? -parseInt(this.slide) : parseInt(this.slide);
  if ((this.direct == "up" && Math.max(parseInt(divList[1].style.top) + slideInc, parseInt(divList[2].style.top) + slideInc) <= 0) ||
      (this.direct == "down" && Math.min(parseInt(divList[1].style.top) + slideInc, parseInt(divList[2].style.top) + slideInc) >= 0) ||
      (this.direct == "left" && Math.max(parseInt(divList[1].style.left) + slideInc, parseInt(divList[2].style.left) + slideInc) <= 0) ||
      (this.direct == "right" && Math.min(parseInt(divList[1].style.left) + slideInc, parseInt(divList[2].style.left) + slideInc) >= 0)) {
    this.slide = ((this.direct == "up" || this.direct == "down") ? this.height : this.width) / this.begin;
    if (++this.blockup >= this.block.length) this.blockup = 0;
    this.divup = (this.divup == 1) ? 2 : 1;
    if (this.direct == "up" || this.direct == "down") {
      divList[3 - this.divup].style.top = ((this.direct == "down") ? "-" : "") + this.height + "px";
      divList[this.divup].style.top = "0px";
    } else {
      divList[3 - this.divup].style.left = ((this.direct == "right") ? "-" : "") + this.width + "px";
      divList[this.divup].style.left = "0px";
    } divList[3 - this.divup].innerHTML = this.table + this.block[this.blockup] + "</td></tr></table>";
    setTimeout(this.objName + ".scrollLoop();", this.pause);
  } else {
    for (var j = 1; j <= 2; j++) {
      if (this.direct == "up" || this.direct == "down") {
        divList[j].style.top = (parseInt(divList[j].style.top) + slideInc) + "px";
      } else divList[j].style.left = (parseInt(divList[j].style.left) + slideInc) + "px";
    } setTimeout(this.objName + ".scrollLoop();", this.speed);
  }
}
//-->
