protected bool nameExists(string name)
 {
     if (Manufacturer.GetManufacturerByName(name) != null)
     {
         lblSuccess.Visible = false;
         lblWarning.Visible = true;
         lblError.Visible   = false;
         return(true);
     }
     return(false);
 }