function recordClicks(id)
{
	var object = new Ajax.Request('../functions/update-clicks.php?id=' + id + '&cache=' + Math.random(), 
	{
		method:'get',
		onSuccess: function(callback) 
		{
		}
	});
}
