Modal Dialog Missing in IE8

Modal Dialog Missing in IE8

Hi!

I'm having a problem with IE8 not displaying a modal dialog. The background overlay get's placed, but the dialog is no where to be seen. Even the ESC key works to make the background close.
  1. //Setup Modal Popup
    $("#modalEmail").dialog({
    autoOpen: false,
    height: 'auto',
    width: 550,
    modal: true,
    resizable: false,
    buttons: { "Send Message": function () { if (validateForm() == true) { sendEmail(); } } }
    });







Other instances of the modal dialog seem to be working fine.

I've double checked my CSS, and it's display and visibility settings are correct.

Does anyone have any ideas?

Thanks!

-Eric