function getAktionen(user, seite, hitsperpage, aktion, id)
{
  var link = '/ajax/aktionen.php?t=' + Math.random() + '&user=' + user + '&seite=' + seite + '&perpage=' + hitsperpage;
  if (aktion && id)
  {
    link = link + '&' + aktion + '=' + id;
    if (aktion == 'addcomment')
    {
      link = link + '&comment=' + document.getElementById('akcomment' + id).value;
      document.getElementById('akcomment' + id).value = '';
      $('#addcomment' + id).hide();
    }
  }
  getAJAX(link, '', 'aktionen');
}



function addAktionKommentar(user, beitrag, seite)
{
  getAJAX('/ajax/aktionen.php?t=' + Math.random() + '&beitrag=' + beitrag + '&kommentar=' + $('#gbkommentar' + beitrag).val() + '&user=' + user + '&seite=' + seite, '', 'gaestebuch');
}