function setMarqueeStop(xobj)
{
  xobj.scrollAmount = 0;
  xobj.style.backgroundColor = 'yellow';
/*
  xobj.style.color = 'blue';
  xobj.style.backgroundColor = 'transparent';
  xobj.style.textDecoration = 'underline';
  xobj.style.cursor = 'hand';
 */
}

function setMarqueeSlide(xobj)
{
  xobj.scrollAmount = 1;
  xobj.style.backgroundColor = 'transparent';
/*
  xobj.style.color = 'red';
  xobj.style.backgroundColor = 'yellow';
  xobj.style.textDecoration = 'none';
  xobj.style.cursor = 'auto';
 */
}
