dd.setTitle("Web Root Location Dialog");
dd.open();
Object[] selection = dd.getResult();
if (selection != null && selection.length > 0) {
Path path = (Path) selection[0];
final String pp = path.toOSString();
if (pp != null) {
String pp1 = pp.substring(prLoc.length(), pp.length());
if (pp1.startsWith(File.separator)) {
pp1 = pp1.substring(1, pp1.length());
}