function track2(c,i)
{
	$.ajax({
		type: "GET",
		url: "tracking.php",
		cache: false,
		data: "c="+c+"&i="+i,
		success: function(msg){
			alert(msg);
		}
	});
}

//function track(c,i)
//{
//	$.get('tracking.php?c='+c+'&i='+i, function(data) {
//		alert(data);
//	});
//}

function track(c,i)
{
var xhReq = new XMLHttpRequest();
xhReq.open("GET", "http://www.youstyle.nl/tracking.php?c="+c+"&i="+i, false);
xhReq.send(null);
//var serverResponse = xhReq.responseText;
//alert(serverResponse); // Shows "15"
}