  //
  function addFavoriteRecipe(recordNum) {
    var url = "?ajaxAddFavoriteRecipe=" + recordNum;
    $.get(url, function(html){
      if (html) { alert(html); }
      else      { alert("Recipe Added"); }
    });

    return false;
  }

  //
  function addFriend(recordNum) {
    var url = "?ajaxAddFriend=" + recordNum;
    $.get(url, function(html){
      if (html) { alert(html); }
      else      { alert("You are now following this foodie."); }
    });

    return false;
  }

