What type of accent marks are you looking for. SQL_Latin1_General_CP1_CI_AS supports quite a lot of accented characters like ç,ê,è,ë,ï etc.
You can create a simple list of all the characters contained in your collation by running this script:
DECLARE @num int
SET @num = 65
WHILE @num < 256
BEGIN
SELECT @num,char(@num)
SET @num = @num +1
END
Hope this helps
Markus
[font="Verdana"]Markus Bohse[/font]