function fnManageComboTracking(productId){
	actionUrl = '/tracking.php?product='+productId+'&ajax=1';
	jQuery.ajax({
		type: "POST",
		url: actionUrl,
		cache:  false,
		success:function(data){
			window.location = "/Combo-Packs.html";
			//alert("Record Inserted Sucessfully");
		}
	});
}
