var elem = null;
function Scroll(pos,width)
{
  window.status=width;
  if ((pos*-1)>=width)
    pos=width;
  else
    pos -= 2;
  elem.style.left=String(pos)+"px";
  
  window.setTimeout("Scroll("+pos+","+width+")",100);
}
function startScroller(element)
{
  elem=document.getElementById(element);
  pos=0;
  width=elem.offsetWidth;
  if (width!=0)
  {
    Scroll(pos,width);
  }
}
