*/
public Element createElementNS(AbstractDocument document,
String namespaceURI,
String qualifiedName) {
if (namespaceURI == null) {
return new GenericElement(qualifiedName.intern(), document);
}
if (namespaceURI.equals(SVG_NAMESPACE_URI)) {
String name = DOMUtilities.getLocalName(qualifiedName);
ElementFactory ef = (ElementFactory)factories.get(name);
if (ef == null) {