function moveText(id,y)
{
  var elm = document.getElementById(id);

  if (elm)
  {
    elm.style.top  = y + 'px';
  }
}
