prevent re-creating of dialog boxes

prevent re-creating of dialog boxes


I'm calling a page via Ajax and in this page I'm creating needed
dialog box with this code.
$("#dialog").dialog({
autoOpen: false,
zIndex: 20
});
But when I re-call this page again, it re-creates dialog box again.
How can I check if dialog box is created and prevent re-creation?
Thanks for your helps...