This can be a browser behavior not jQuery plugin issue. Have you tried removing the focus programmatically after you open the popup.
$('#lnkAddReservation').click(function () {
dlg.dialog('open');
// you may want to change the selector below
$('input,textarea,select').blur();
return false;
});
Haven't tested that but should work ok.