/**
 *  AJAX - Javascript - Bibliothek
 *  ------------------------------
 *   
 *  function sag_mal_was( wasDenn ) {
 *    var anfrage = new Ajax.Request(
 *      'ajax.php?ajax_call='+wasDenn,
 *      {
 *        method : 'get',
 *        onSuccess : function(transport) {
 *          var antwort = transport.responseText || "Leider keine Antwort erhalten";
 *          alert("Ajax Ergebnis: " + antwort);
 *        }
 *      }
 *    );
 *    return ;
 *  }  
*/ 

function addWerbebannerKlick( bannerId ) {
  var anfrage = new Ajax.Request (
    'ajax.php?ajax_call=addWerbebannerKlick&bannerId=' + bannerId,
    {
      method : 'get'
    }
  );
} // end

function produktgruppen_auswahl( produktKategorie ) {
  var anfrage = new Ajax.Request(
    'ajax.php?ajax_call=produktgruppen&katId=' + produktKategorie,
    {
      method : 'get',
      onSuccess : function(transport) {
        var html = transport.responseText;
        document.getElementById("produktfilter_gruppe").innerHTML = html;
      }
    }
  );
  return ;
} // end
