Inheritance: System.Windows.Forms.Form
		private void ManuallyAssessCheckBox_CheckChanged(object sender, EventArgs e)
		{
			if (((CheckBox)sender).Checked) {
				StatusText.Text = "Initialising assessments plugin";

				if (AWBForm.TheSession.Editor.IsActive)
                    AWBForm.Stop(Constants.conAWBPluginName);

				if (blnShowManualAssessmentsInstructions) {
					AssessmentsInstructionsDialog dialog = new AssessmentsInstructionsDialog();

					blnShowManualAssessmentsInstructions = dialog.ShowDialog() != DialogResult.Yes;
				}

				AssessmentsObject = new Assessments(PluginSettings);

				DefaultStatusText();
			} else {
				AssessmentsObject.Dispose();
				AssessmentsObject = null;
			}
		}