void configTheme() {
String classname = ((LookAndFeelObj)mLfComboBox.getSelectedItem()).getLFClassName();
if (classname.startsWith("com.jgoodies")) {
JGoodiesLNFSettings settings = new JGoodiesLNFSettings((JDialog) UiUtilities.getBestDialogParent(mSettingsPn));
UiUtilities.centerAndShow(settings);
} else if(classname.startsWith("com.l2fprod.gui.plaf.skin.SkinLookAndFeel")) {
SkinLNFSettings settings = new SkinLNFSettings((JDialog) UiUtilities.getBestDialogParent(mSettingsPn));
UiUtilities.centerAndShow(settings);
}