function addClub(i, n, l) {
	ajax = getAjax();
	ajax.open("GET", VirtualRoot + "/fragments/ajax/addClubMember.php?id="+i, false);
	ajax.send(null);
	if (facebookLoggedIn) {
		FB.Connect.showFeedDialog(146171655164, {'event': n, 'location': l }, null, null, null, FB.RequireConnect.promptConnect, function(ok) {
			if (ok) {
				window.location = window.location;
			}
		},"Engage wants to publish that you are a member of this club to your profile");
	} else {
		window.location = window.location;
	}
	
}
