/* Events to execute when the "Email Configuration" tab is clicked */
 private void emailConfigurationToolStripMenuItem_Click(object sender, EventArgs e)
 {
     /* Create a new instance of EmailConfigration and show it */
     ConfigWindow = new EmailConfiguration();
     ConfigWindow.Show();
 }