function ajaxReqClickCounter( id )
{
	var timestamp = new Date();
	timestamp = timestamp.getTime();
    var reqURL = "db/go.php?indid="+id+"&x="+timestamp;

	var req = null;
    try	{ req = new XMLHttpRequest(); }

    catch (ms)
    {
        try	{ req = new ActiveXObject("Msxml2.XMLHTTP"); }
        catch (nonms)
        {
            try	{ req = new ActiveXObject("Microsoft.XMLHTTP"); }
            catch (failed) { req = null; }
        }
    }

	if (req == null) { alert("Error creating request object!"); }

	req.open("GET", reqURL, true);
	req.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
	req.send(null);

}