Code
String docURL = "http://nz.php.net/manual-lookup.php?pattern=";
String command = "open";
String selection = textArea.getSelectedText();
if (selection != "") {
String docSearch = docURL + selection;
Runtime.getRuntime().exec(new String[] {command, docSearch });
}
