function displayEditorialForId(id, do_title, destination){
	$.post("ajax_editorial_display_for_id.php", {id:id, do_title:do_title}, function(data){
		$(destination).html(data);
	});
}

function displayEditorialForReferenceCode(ref, do_title, destination){
	$.post("ajax_editorial_display_for_reference_code.php", {ref:ref, do_title:do_title}, function(data){
		$(destination).html(data);
	});
}

