﻿function TrackLink( url, path )
{
	//Get the XMLHttp object
	var ajax = null;
	try
	{
		ajax = new XMLHttpRequest();
	}
	catch (e)
	{
		try
		{
			ajax = new ActiveXObject("Msxml2.XMLHTTP");
		}
		catch (e)
		{
			try
			{
				ajax = new ActiveXObject("Microsoft.XMLHTTP");
			}
			catch (e)
			{
				return false;
			}
		}
	}

	//Make a GET request to the specified url	
	ajax.open( "GET", url + "?Path=" + escape(path) + "sid=" + Math.random(), true );
	ajax.send( null );
}


