A quick hack is to do this ...
"SELECT * INTO <new table> FROM <old table>"
this will create an identical copy of the old table. Then use this ...
"DROP TABLE <old table>"
... and you have what you want.
I'm sure there's a better way to do this. If you were using SQL Server you could use sp_rename, not sure if Access does the stored procedure thing though.
Regards,
Patrick