  moveControls();
  CONTROL;

function moveControls()       
  {
  objBody = document.body;  
  
  if ( document.all )
    {
    CONTROL = document.all('controls');
    }
  else
    {
    CONTROL = document.getElementById('controls');
    }
  
  if (CONTROL) 
    {
      CONTROL.style.left = 10;
      CONTROL.style.top = objBody.scrollTop + 5;
    }  
   setTimeout("moveControls()",10);
}

  