protected void btnCreateGroup_Click(object sender, EventArgs e)
        {
            Account account = (Account)Session["ACCOUNT"];

            if (gm.CreateGroup(new Group("a", tbxName.Text, account)))
            {
                Response.Redirect("/index.aspx");
            }
        }