function register_activity(type, the_id, agent_id)
{
	// make call to store this activity
	new Ajax.Request
	(
		'/lib/stats.php', 
		{ 
			method:'post',
			parameters:
			{
				type: type,
				id: the_id,
				agent_id: agent_id
			}
		}
	);
}