function addSyndicationTracker(clickName,e,brandId)
{
	e.onclickShareThis = e.onclick;
	e.syndicationTrackerType = clickName;
	e.brandID = brandId;
	e.orig_click = e.onclick;
	e.onclick = function(e) {
		sendSyndicationTrackerRequest(this.brandID, "host", this.syndicationTrackerType, "");
		this.orig_click(e);
	}
}


function sendSyndicationTrackerResponse(req){
}

function sendSyndicationTrackerRequest(brandId,target,clickName,referrer) {
	var params = 'b=' + brandId + '&t=' + target + '&c=' + clickName + '&r=' + referrer + '&mt=syndication';
	AjaxRequest("/services/Tracker.aspx", sendSyndicationTrackerResponse, "post", params);
}

