function show_hide_div(id)
{
  var obj=document.getElementById(id);
  if(obj==null) return false;
  if(obj.style.display=='block')
  {
    obj.style.display='none';
  }
  else
  {
    obj.style.display='block';
  }
}

function scrollStop(id)
{
   document.getElementById(id).stop();
}
function scrollStart(id)
{
   document.getElementById(id).start();
}
