function recordAnalytics() {
	$.ajax({
		type: "GET",
		url: "recordAnalytics.php?isOrder=0",
		success: function(response){}
	});
	
}
function recordOrderDetails(amount) {
	$.ajax({
		type: "GET",
		url: "recordAnalytics.php?isOrder=1&orderAmount="+amount,
		success: function(response){}
	});
	
}