One way is from a query analyzer window: sp_help <tableName> Gives you a lot of info about the table including foreign Keys and tables referenced by foreign keys. (relationships are defined by foreign keys)
You can also try selecting from INFORMATION_SCHEMA.TABLE_CONSTRAINTS and INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS, these give you the same info as sp_help but in a different format.