function confirmBox(message) {
	message = message || "Are you sure want to do?";
	return confirm(message);
}

function archiveFamily(familyId) {
	$.post('archiveForm.php', {'familyId' : familyId}, function (Data) {
			$("#archivePopup").html(Data);		
		}
	);
}
