﻿function OpenForm(divName, useWidth, useHeight, modalBox)
{
    $(divName).modal({
        containerCss: {
        backgroundColor: "#e7661b",
        //backgroundColor: "#fff",
            height: useHeight,
            padding: 2,
            width: useWidth
        },
        //overlayClose: true,
        overlayClose: (modalBox == null ? true : modalBox),
        appendTo: 'body',
        onClose: function(dialog) { $.modal.close(); }
    });
}
