Nice JS code to add to your theme when using modal frames is this one. Closes window when you click outside the frame.
/* close the modal box when the user clicks outside its bounds */
$('.ui-widget-overlay').live('click', function(e){
Drupal.modalFrame.close();
});