function assignThanks(msgId , name){ var ajaxVar = new ajaxVars(); ajaxVar.vars['action'] = "runFunction"; ajaxVar.vars['func'] = "showDataList"; ajaxVar.vars['name'] = name; ajaxVar.vars['msgId'] = msgId; ajaxVar.vars['incModule'] = "profile"; ajaxVar.session = 0; ajaxVar.gotoFunction = 'returnThanksList'; ajaxVar.AjaxPostSQL(); } function returnThanksList(dataStr){ talert(dataStr, 700, 500); } function addToFriendsList(username,addedBy,addedfriendId){ var ajaxVar = new ajaxVars(); ajaxVar.vars['action'] = "runFunction"; ajaxVar.vars['func'] = "addFriend"; ajaxVar.vars['name'] = username; ajaxVar.vars['userId'] = addedBy; ajaxVar.vars['friendId'] = addedfriendId; ajaxVar.vars['incModule'] = "profile"; ajaxVar.session = 0; ajaxVar.gotoFunction = 'returnFriendList'; ajaxVar.AjaxPostSQL(); } function returnFriendList(content){ //talert(content, 400, 50); // hide the link to button on the profile page var linkDivObj = document.getElementById('linktoDiv'); var sayTnkDivObj = document.getElementById('saythanksDiv'); if (linkDivObj){ linkDivObj.className = ''; linkDivObj.innerHTML = content; //linkDivObj.className = 'hiddenObj'; //linkDivObj.innerHTML = 'This member is now in your Linked Members tab.'; } if (sayTnkDivObj){ sayTnkDivObj.className = ''; } } /* show stats */ function showStats(userId){ var ajaxVar = new ajaxVars(); ajaxVar.vars['action'] = "runFunction"; ajaxVar.vars['func'] = "thanksStats"; ajaxVar.vars['userId'] = userId; ajaxVar.vars['incModule'] = "profile"; ajaxVar.session = 0; ajaxVar.gotoFunction = 'returnStatsResults'; ajaxVar.AjaxPostSQL(); } function returnStatsResults(dataStr){ talert(dataStr, 320, 243); }