This is the create statement from one of the indexes:-
USE [Reference]
GO
/****** Object: Index [idx_origin_CallType] Script Date: 12/13/2012 13:16:54 ******/
CREATE NONCLUSTERED INDEX [idx_origin_CallType] ON [dbo].[ref_CASOriginsToServices]
(
[Origin] ASC,
[CallType] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
GO
The other one was exactly identical except for the name of the index.