function rteInsertHTML(nodeValue) {
		window.opener.document.getElementById(rteName).contentWindow.document.execCommand("createlink", false, nodeValue);
		if (window.getSelection)
		{
			var selected_obj = window.opener.document.getElementById(rteName).contentWindow.window.getSelection().focusNode;
		}
		else if (document.getSelection)
		{
			var selected_obj = window.opener.document.getElementById(rteName).contentWindow.document.getSelection().focusNode;
		}
		else if (document.selection)
		{
			var selected_obj = window.opener.document.getElementById(rteName).contentWindow.document.selection.createRange().parentElement();
		}
		var current_tag = selected_obj;
		var previous_tagName = selected_obj.tagName;
		while(previous_tagName != "HTML"){
			if (previous_tagName == "A") {
				current_tag.href =  "asfunction:goNode,"+nodeValue;
				break;
			}
				current_tag = current_tag.parentNode;
				previous_tagName = current_tag.tagName;
		}
	window.close();
}
