If you are using a version of SQL Server above 2000 you should get in the habit of using the system views in SYS. So instead of sysobjects you should use sys.object (sys.system_objects for system objects or sys.all_objects for system and user objects). But since you are working with an index in particular, why not use the more specific sys.indexes as George suggested?
Good luck.
MCP SQL Server 2000, MCTS SQL Server 2005, MCTS SQL Server 2008 (DBD, DBA)