function sendGift(iGiftID){if(iGVisitorID>0){var sGTitle=$('#gtitle'+iGiftID).val();$.post(site_url+'m/gifts/give/'+iGViewingProfileID,{gift_action:'give',gift_id:iGiftID,gift_profile_id:iGViewingProfileID,gift_title:sGTitle,mode:'json'},function(sData){sMessage=sData.message;iResult=sData.result;if(iResult==1){$('.sending_res_cont').html(sMessage);setTimeout("window.location.href = iGViewingProfileUrl;",3000)}else{$('.sending_res_cont').html(sMessage)}},'json')}};function deleteGift(iGiftID){if(iGVisitorID>0){$.post('m/gifts/gift_delete/',{gift_action:'delete',gift_id:iGiftID,mode:'json'},function(sData){sMessage=sData.message;iResult=sData.result;if(iResult==1){$('.gift_unit#'+iGiftID).fadeOut("slow")}},'json')}};function sendPoints(){if(iGVisitorID>0&&iGVisitorID!=iGViewingProfileID){var iAmount=$('#pass_points_form #amount').val();$.post(site_url+'m/gifts/give/'+iGViewingProfileID+'/points/',{gift_action:'give_points',p_profile_id:iGViewingProfileID,p_amount:iAmount,mode:'json'},function(sData){sMessage=sData.message;iResult=sData.result;if(iResult==1){$('.sending_res_cont').html(sMessage);setTimeout("window.location.href = iGViewingProfileUrl;",3000)}else{$('.sending_res_cont').html(sMessage)}},'json')}};
