You've kindly made sure that both of these point to your website, but obviously your cookies only work if you always go to one or the other.
I'm cookied on "http://www.vbulletin.org" but that means if I visit "http://vbulletin.org", the system doesn't recognise me. Which is a nuisance.
You can fix this by putting right at the beginning of all your pages a bit of PHP that basically says...
PHP Code:
if($HTTP_HOST=="vbulletin.org") {
header("Location: [url]http://www.vbulletin.org[/url]".$REQUEST_URI);
exit; }
That'll then mean you can use the shorter version in every e-mail you send too, if you like.