function getFav() {
  advAJAX.get({
    url: "/index.php?o=favoriten/getfromtop",
    onInitialization : function() {
      showLayer('boxFavoriten');
    },
    onSuccess : function(obj) {
      document.getElementById('boxFavoriten').innerHTML = obj.responseText ;
    }
  });
}


