function delFriend(id)
{
  function myReady(r)
  {
    if (r) alert(r);
    Xget('./xml/lijst.php?page=1&max=25', 'reacontent', function(){});
  }
  if (confirm("Dit profiel verwijderen uit je vriendenlijst?"))
  {
    Xpost('/p/xml/delfriend.php', 'friend_id=' + id, myReady, null);
  }
}

function swapFriends(l)
{
  l = document.getElementById('button');

  if (l.innerHTML == 'online')
  {
    l.innerHTML = 'alle';
    Xget('./xml/lijst.php?page=1&online=1', 'reacontent', function(){});
  }
  else
  {
    l.innerHTML = 'online';
    Xget('./xml/lijst.php?page=1', 'reacontent', function(){});
  }
}

