You need to use .htaccess to redirect your members from either
www.Yoursite.com or yoursite.com. It not only is a SEO issue to have the same page with different urls like that, but its also a cookie and login issue like you mentioned.
Code:
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^yoursite\.com
RewriteRule ^(.*)$ http://www.yoursite.com/$1 [R=permanent,L]
In a .htaccess file should do the trick for you.