	function track(org_id, conversion, cd_revenue, cd_product_id, cd_customer_id){
		conversion = conversion||0;
		cd_revenue = cd_revenue||0;
		cd_product_id = cd_product_id||0;
		cd_customer_id = cd_customer_id||0;
		var D = document;
		D.write('<img src="https://www.aimpromote.com/remote/ap_track.php',
		'?referer='+ escape(D.referrer),
		'&agent='+(navigator.appName),
		'&uri='+escape(window.location.href),
		'&org_id='+org_id,
		'&conversion='+conversion,
		'&cd_revenue='+cd_revenue,
		'&cd_product_id='+cd_product_id,
		'&cd_customer_id='+cd_customer_id,
		'" width=1 height=1 border="0">');
	}