function commitSearchEngineTracking(order)
{
	var csetHost = 'www.123tijdschrift.nl';
	var csetConversion = 480;
	var csetAmount = order.leadvergoeding;
	var csetDate = new Date();
	var csetImage = new Image();

	var csetCounterUrl = 'http://www.searchenginetracking.nl/pageview.ashx?host=' + escape(csetHost);
	
	if(document.location!=null && document.location.protocol!=null && document.location.protocol == "https:") {
		csetCounterUrl = 'https://www.searchenginetracking.nl/pageview.ashx?host=' + escape(csetHost);
	}
	csetCounterUrl += document.location!=null?'&url=' + escape(document.location):'';
	csetCounterUrl += document.referrer!=null?'&referrer=' + escape(document.referrer):'';
	
	if (typeof csetConversion != "undefined" && csetConversion != null) {
		csetCounterUrl += '&conversion=' + csetConversion;
	}
	
	if (typeof csetCategory != "undefined" && csetCategory != null && csetCategory != "") {
		csetCounterUrl += '&category=' + escape(csetCategory.replace(' ', '%20'));
	}
	
	if (typeof csetQuantity != "undefined" && csetQuantity != null && csetQuantity != 0) {
		csetCounterUrl += '&quantity=' + csetQuantity;
	}
	
	if (typeof csetAmount != "undefined" && csetAmount != null && csetAmount != 0) {
		csetCounterUrl += '&amount=' + csetAmount;
	}
	
	csetCounterUrl += "&time=" + csetDate.getTime();
	csetImage.src = csetCounterUrl;
}

