Hi,
Try the following functions:
select serverproperty('collation') --to get your server's collation
SELECT *
FROM ::fn_helpcollations() -- might also be useful. it returns all of the collations with a description.
Once you have your server's collation you can derive the collation you want for your new database and then when you use the CREATE DATABASE statement specifiy the collation with the COLLATE option.
Hope that helps