
	var root = '{$config.base}{$config.dir}';
	var a = document.getElementsByTagName("a");

	for(i=0; i<a.length; i++)
		if(a[i].id != '')
		{
			a[i].onclick = count_link;
		}

	function count_link()
	{
		i = new Image();
		h = Math.random();

		i.src= root + 'click-count.php?id='+this.id+'&amp;h='+h;

		return true;
	}
