SimpleAttributeSet sasAttr = new SimpleAttributeSet();
if(htmlTag.toString().equals(HTML.Tag.A.toString()))
{
if(!htmlAttribs.containsKey("href"))
{
UserInputAnchorDialog uidInput = new UserInputAnchorDialog(parentEkit, Translatrix.getTranslationString("AnchorDialogTitle"), true, currentAnchor);
String newAnchor = uidInput.getInputText();
uidInput.dispose();
if(newAnchor != null)
{
htmlAttribs2.put("href", newAnchor);
}
else