The only thing I can see that might cause you problems is that both include files Dim the same variable "adoCon". What error(s) are you getting?
A couple of other comments about the way you're doing things:
1. you shouldn't use the Access ODBC driver in ASP, you should use the Jet OLEDB driver instead (see here
http://www.able-consulting.com/ADO_Conn.htm for connection string examples)
2. why do you do SELECT * for both recordsets when you only need 1 or 2 fields out of each table? It's more efficient to only select the fields you are going to use.
hth
Phil