"http://www.w3.org/XML/1998/namespace", "en-US");
Element root = doc.getRootElement();
root.addAttribute(en);
root.addAttribute(xmlen);
Attribute version = root.getAttribute("version");
if (version != null) root.removeAttribute(version);
Element body = root.getFirstChildElement("body", "http://www.w3.org/1999/xhtml");
Element frameset = root.getFirstChildElement("frameset", "http://www.w3.org/1999/xhtml");
if (frameset != null && body != null) {
root.removeChild(body);
}