} else if (tag.equalsIgnoreCase("textarea")) { // $NON-NLS-1$
try {
url.addEncodedArgument(getAttributeValue(nodeAtts, "name"), // $NON-NLS-1$
tempNode.getFirstChild().getNodeValue());
} catch (NullPointerException e) {
url.addArgument(getAttributeValue(nodeAtts, "name"), ""); // $NON-NLS-1$
}
} else if (tag.equalsIgnoreCase("select")) { // $NON-NLS-1$
selectName = getAttributeValue(nodeAtts, "name"); // $NON-NLS-1$
} else if (tag.equalsIgnoreCase("option")) { // $NON-NLS-1$
String value = getAttributeValue(nodeAtts, "value"); // $NON-NLS-1$