$(function() {
    $("#modal").dialog({
        bgiframe: true,
        modal: true,
        width: 390,
        resizable: false,
        autoOpen: true,
        buttons: {
            OK: function() {
                $(this).dialog('close');
            }
        }
    });
    $('input:text').setMask();
});

