{
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