/// <summary>
        /// Event Handler which executes Opening up a
        /// new relation form
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void addRelationButton_Click(object sender, EventArgs e)
        {
            AddRelationForm newRelation = new AddRelationForm();

            newRelation.ShowDialog();

            // Refresh the list of Relations added to the master list
            RefreshRelationsDataGrid();
        }
        /// <summary>
        /// Event Handler which executes Opening up a 
        /// new relation form
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void addRelationButton_Click(object sender, EventArgs e)
        {

           AddRelationForm newRelation = new AddRelationForm();
            newRelation.ShowDialog();

            // Refresh the list of Relations added to the master list
            RefreshRelationsDataGrid();
        }