I don't know if you want a to load a different webpage, or just a small prompt they can hit just "Ok" and it closes.
If its the latter, you can just insert this code inside your <body> tag
Code:
onbeforeunload="alert('Goodbye, please come again!');" If you want an actual popup window replace the whole alert() funciton in he code above with somelike like the window.open() function in the post above mine.
Do note, this is going to annoy the hell out of frequent visitors to your site. When people close out of your site they probably won't want to be bothered with another window that opens up (or a simple prompt for that matter). Just something to think about.
Hope that helps