It could really help if you could post some of your code. It sounds like the popup you're getting is attempting to give users the option to login but isn't being passed the correct details to do so.
So as a starting point, it's important when implementing the JS SDK that you initialise your code correctly. StackOverflow is preventing me from posting too many links so for this one, go to the Facebook Developers home page, click Documentation, SDK's and Tools and then Javascript SDK. That page will tell you exactly how to initialise the JS SDK.
Once you've done that, ensure your page has the correct Open Graph Protocol tags and html declaration: http://developers.facebook.com/docs/opengraph/
It should then be as simple as adding the correct social plugin code to your page:
<fb:like href="yourdomain.com" send="true" width="450" show_faces="true" font=""></fb:like>
Facebook will help you configure the various available settings for the Like button here: http://developers.facebook.com/docs/reference/plugins/like/
Enter your domain, configure the rest and when you submit the data, Facebook will give you the code you need. WARNING: if you've initialised the JS SDK as mentioned above, the only part of the code you will need is the fb:like tag - the rest of the code Facebook give you assumes you have not initialised the JS SDK.