Dialog won't open on click when "autoOpen : false"

Dialog won't open on click when "autoOpen : false"

I have a dialog that works great when autoOpen = true, but when I set it equal to false, I can't open the dialog on the click of a specific button.

Firefox Firebug doesn't show anything on the error console. Am I missing something obvious?  Thanks

  1.  $(document).ready(function () {
  2.             $("#div_Detail").dialog({
  3.                 autoOpen: false,                
  4.                 buttons: {
  5.                     Ok: function () {
  6.                         $(this).dialog("close");
  7.                     }
  8.                 }
  9.             });

  10.             $("#lbSelect").click(function () {
  11.                 $("#div_Detail").dialog("open");
  12.                 return false;
  13.             });
  14.         });