function linkCount(lienId)
{
  new Ajax.Request(
    'ajax/liens.php',
    {
      method: 'get',
      parameters: {id: lienId},
      onSuccess: function() { return true; },
      onFailure: function() { return false; }
    }
  );
}