column 44 is the gid field--that is the one that sets user-level permissions (i.e., username jbrooks has access levels 3, 9, and e, so the db entry is 39e)...
here is a brief detail of the db fields you will/may need (I just left out some of our internal stuff you won't need):
col1 = id int(4) autonumber record id
col3 = LastName varchar(30) Last Name
col4 = FirstName varchar(30) FIrst Name
col5 = MI varchar(1) middle initial
col16 = username varchar(8) user login
col37 = password varchar(40) MD5 hash of password
col38 creation_date smalldatetime date of account creation
col39 current_login_date smalldatetime current login date/time
col40 last_login_date smalldatetime previous login date/time
col41 last_change smalldatetime last password change
col42 current_IP varchar(15) current IP
col43 string varchar(50) MD5 'secret' to verify cookie
col44 gid varchar(36) group id for per-page-permisions, integer 0-9, alpha a-z
whew Think I'll add that to the file so I don't have to write it again
Let me know if you need anymore help, and when you do get it working, please post it and send me a link!