function expandComment ( commentID )
{
  var comment = document.getElementById( commentID );

  if ( comment.style.display == "block" )
  {
    comment.style.display = "none";
  }
  else
  {
    comment.style.display = "block";
  }
}

