protected void Page_Load(object sender, EventArgs e)
        {
            // Ensure that we have at least one company available
            CompanyManager.EnsureCompanyExists(CurrentUser);

            // Only show the brands column if there is more than one brand in the system
            EntityDataGrid.Columns[1].Visible = (BrandManager.IsMultipleBrandMode);
        }