internal static string GetNewArchiveDocumentDatabaseName(Model.Common.ArchiveCommonDataClassesDataContext dc)
        {
            Njit.Sql.DataAccess da        = new Njit.Sql.DataAccess(dc.Connection, dc.Transaction);
            string[]            databases = dc.GetDatabaseList();
            int    index = 1;
            string name  = "ArchiveDocument" + index.ToString();

            do
            {
                if (databases.Contains(name))
                {
                    index++;
                    name = "ArchiveDocument" + index.ToString();
                }
                else
                {
                    break;
                }
            }while (true);
            return(name);
        }