
function getHelpTextForDisposalType(type) {

	if (type == 'GENERAL') {
		return '<strong>General Disposal Authority</strong> A continuing disposal authority valid for up to 10 years covering common records.';
	} else {
		if (type == 'ADHOC_TRANSFER_OR_DESTRUCTION') {
			return '<strong>Ad-hoc transfer or destruction</strong> A disposal authority authorising the transfer or destruction valid for up to five years and applied to specific existing public records no longer required.';
		}
		else if (type == 'SCHEDULE_TRANSFER_OR_DESTRUCTION') {
			return '<strong>Schedule transfer or destruction</strong> A continuing disposal authority authorising the transfer or destruction valid for up to 10 years and covering specific series or classes of public records still being created.';
		}
		else if (type == 'TRANSFER_TO_OTHER_OFFICE') {
			return '<strong>Transfer to another public office</strong> Ownership of records is transferred from one public office to another, in a situation where this is not accompanied by the transfer of a function.';
		}

		else if (type == 'ALTERATION') {
			return '<strong>Alteration</strong> The Chief Archivist may allow for the deletion of information from the contents of a public record.';
		}

		else if (type == 'ESTRAYS') {
			return '<strong>Estray</strong> A public record neither in the custody of the Chief Archivist, nor otherwise legally disposed of.';
		}

		else if (type == 'SALE') {
			return '<strong>Sale</strong> In rare cases, the Chief Archivist may grant permission to sell a public record.';
		}

		else if (type == 'PRIVATE_DEPOSIT') {
			return '<strong>Private Deposit</strong> A transfer of records to Archives New Zealand that were created by a private individual or organisation, e.g. politicians&rsquo; private papers.';
		}

		else if (type == 'DELEGATED') {
			return '<strong>Delegated</strong> Under the former Archives Act 1957, the Chief Archivist could delegate the authority to transfer records.';
		}
		else if (type == 'PRESCRIBED_RECORDS') {
			return '<strong>Prescribed</strong> A record that is not a public record, public archive or protected record, but that the Minister for Archives New Zealand declares to be one as their continued preservation. Access and use by the public has been recommended by the Chief Archivist.';
		}
	}
}