// JavaScript Document
function doTrack(that)
{
	try
	{
		var vars = 'href='+escape(that.href);
		//alert(that.href);
		new Ajax.Request("/inc/ajax_track_click.php", 
		{ 
			method: 'post', 
			postBody: vars,
			onComplete: null 
		});
		
		setTimeout('document.location = "' + that.href + '"', 100);
		//var gwoTracker=_gat._getTracker("UA-XXXXXXX-X");
		//gwoTracker._trackPageview("/YYYYYYYYYY/goal");
		//setTimeout('document.location = "' + that.href + '"', 100)
	}catch(err){}
}