function deleteConfirm(section) {
	if (confirm("Are you sure you want to delete the selected " + section + " info?\nThis operation cannot be undone.")) {
		return true;
		}
	else {
		return false;
		}
}