public bool CoordinatorExists(string coordinatorName)
        {
            try
            {
                EventPanel.SelectTab("Tasks/Coordinators");

                IDictionary <string, string> rowValues = new Dictionary <string, string>();
                rowValues.Add("Coordinator", coordinatorName);
                return(EventPanel.SectionDatalistRowExists(rowValues, "Coordinators"));
            }
            catch (Exception ex)
            {
                throw new Exception("Error: Could not add a coordinator for an event. " + ex.Message);
            }
        }