function ajaxCall(obj,uID){
	//Ajax call to CFC
	
	$.ajax(
	{
		type: "POST",
		url: "/_/system/apps/procedures/connect.cfm",
		data: "uID="+ uID,
		success: function(html)
		{
			if(html==1)
			{
				obj.value='remove';
			}
			else{
				obj.value='add';
			}
		}
	});
}
