var scrollspeed   = 1;

var scrollTimerID = null;

var pauseTimerID  = null;



function initialize() {

    

  marqueeHeight     = document.all ? parent.document.all.scroller.height : parent.document.getElementById("scroller").getAttribute("height");

  dataObj           = document.all ? document.all.datacontainer : document.getElementById("datacontainer");

  dataObj.style.top = 5;

  theLength         = dataObj.offsetHeight

    

  scrollFrame();

}



function scrollFrame() {



  dataObj.style.top = parseInt(dataObj.style.top) - scrollspeed;



  if (parseInt(dataObj.style.top) < theLength * (-1)) {

    dataObj.style.top = 5;

  }

            

  scrollTimerID = setTimeout("scrollFrame()", 65);

}



window.onload=initialize;
