/**
         * Enable delay functionality for the notification box
         **/
        private void enableDelayNotification()
        {
            Form3 form3 = (Form3)Application.OpenForms["Form3"];

            form3.Invoke((MethodInvoker) delegate()
            {
                form3.enableDelayNotification();
            });
        }