If you want to prevent google to provide duplicate content from you, you can easily force www for your domains by simply using a small rewrite rule for the htaccess.
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www.your_domain.com$
RewriteRule ^(.*)$ http://www.your_domain.com/$1 [R=301]
Cheers
Alexander
