<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">function recordAccountAnalytics(RecordType,AccountID)
{
	jQuery.ajax({
		type: "POST",
		url: "/functions/accountanlytics.php",
		data: { RecordType: RecordType,
				AccountID: AccountID
			  },
		success: function(msg) {
			// console.log(msg);
		}
	});
}

function recordAdAnalytics(RecordType,AdID)
{
	jQuery.ajax({
		type: "POST",
		url: "/functions/adanalytics.php",
		data: { RecordType: RecordType,
				AdID: AdID
			  },
		success: function(msg) {
			console.log(msg);
		}
	});
}

function recordPageAnalytics(RecordType,PageID)
{
	jQuery.ajax({
		type: "POST",
		url: "/functions/pageanalytics.php",
		data: { RecordType: RecordType,
				PageID: PageID
			  },
		success: function(msg) {
			// console.log(msg);
		}
	});
}
</pre></body></html>