function popperDisp(id, display)
{
  var obj = document.getElementById(id);
  if (obj)
  {
    obj.style.display = display;
  }
}
