public static void Display()
		{
			if (singleton == null)
				singleton = new RegExHelpDialog();
			singleton.Show();
			singleton.Focus();
		}
		protected override void OnClosed(System.EventArgs e)
		{
			base.OnClosed(e);
			singleton = null;
		}