// External (X)HTML-Link
var textNewWindow = "(Externer Link)";

function titleAdjustment(linkObject) {
	if (linkObject.getAttribute) {
		textAlt = linkObject.getAttribute("title");
		if (textAlt && textAlt.indexOf(textNewWindow) == -1) {
			linkObject.setAttribute("title", textAlt + " " + textNewWindow);
		}
	}
}
