function SoftelvdmPopup2Create(title, urlToExternalFile, width, height) {
    (function($) {
        var dlg = $("#divSoftelvdmPopup2");
        if (dlg.length == 0)
            $("body").append('<div id="divSoftelvdmPopup2"></div>');
    
        $.ui.dialog.defaults.bgiframe = true;
        $("#divSoftelvdmPopup2").load(urlToExternalFile).dialog({
                'title': title,
                modal: true,
                autoOpen: true,
                'height': height,
                'width': width,
                draggable: false,
	            buttons: {
		            OK: function() {
			            $(this).dialog('close');
		            }
	            },
	            close: function(event, ui) { $(this).dialog('destroy'); }
            });
    })(jQuery); 
}

