* Note that there should be an entry in the templates Vector for
* each entry in the properties Vector.
*/
public void showEditorWindow(String title, String property, String template) {
JDialog jd = (JDialog)getEditorFactory().createEditorWindow(title, property, template);
jd.pack();
applyNewWindowLocation(jd);
jd.setVisible(true);
/*
JInternalFrame jif = (JInternalFrame)getEditorFactory().createEditorWindow(title, property, template);
getMessagePanel().add(jif);