Quick Dialog UI Resizable Question

Quick Dialog UI Resizable Question


First Here is my info and working Dialog call:
jQuery ver 1.3.1
jQuery UI ver 1.5.3
$("#dialog").dialog({
height: 140,
modal: true,
overlay: {
opacity: 0.5,
background: "black"
},
buttons: {
"Cancel": function() {
$(this).dialog("close");
},
"Save": function() {
saveData();
}
},
resizable: false,
closeOnEscape: false,
width: 400,
draggable: false
});
Question:
I have resizable set to false, while I cannot resize the box, the
cursor change at the corner and borders still occur (from default to
se-resize, e-resize, ... etc), and I cannot seem to turn them off
using CSS, any suggestions?
Thank you for your time.
Duane