A dialog is a floating window that contains a title bar and a content area. The dialog window can be moved, resized and closed with the 'x' icon by default.
If the content length exceeds the maximum height, a scrollbar will automatically appear.
A bottom button bar and semi-transparent modal overlay layer are common options that can be added.
Placing the following server tag into your document
<juice:dialog .../>
will initialize a dialog instance and will auto-open the dialog by default. If you want to reuse a dialog, the easiest way is to disable the "auto-open"
option with:
<juice:dialog AutoOpen="false" .../>
The dialog can then be triggered by javascript as such:
$(foo).dialog('open')