Index: /FCKeditor/trunk/_whatsnew.html
===================================================================
--- /FCKeditor/trunk/_whatsnew.html	(revision 14)
+++ /FCKeditor/trunk/_whatsnew.html	(revision 15)
@@ -52,4 +52,7 @@
 			the inner folder for each type (file, image, flash and media) are all lower-cased
 			too.</li>
+		<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1456343&group_id=75348&atid=543655">SF
+			PATCH-1456343</a>] New sample file showing how to dinamically exchange a textarea and an instance of FCKeditor. 
+			Thanks to Finn Hakansson</li>
 	</ul>
 	<p>
@@ -113,5 +116,5 @@
 			BUG-1599545</a>] HTML entities are now processed on attribute values too.</li>
 		<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1598517&group_id=75348">SF
-			BUG-1598517</a>] Meta tags are now protected from execution during editing (avoinding
+			BUG-1598517</a>] Meta tags are now protected from execution during editing (avoiding
 			the "redirect" meta to be activated).</li>
 		<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1415601&group_id=75348">SF
@@ -124,4 +127,9 @@
 			both browsers.</li>
 		<li>Small interface fixes to the about box.</li>
+		<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1604576&group_id=75348&atid=543655">SF
+			PATCH-1604576</a>] [<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1604301&group_id=75348">SF
+			BUG-1604301</a>] Link creation failed in Firefox 3 alpha. Thanks to Arpad Borsos</li>
+		<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1577247&group_id=75348&atid=543653">SF
+			BUG-1577247</a>] Unneeded call to captureEvents and releaseEvents.</li>
 	</ul>
 	<h3>
Index: /FCKeditor/trunk/editor/_source/internals/fck_2_gecko.js
===================================================================
--- /FCKeditor/trunk/editor/_source/internals/fck_2_gecko.js	(revision 14)
+++ /FCKeditor/trunk/editor/_source/internals/fck_2_gecko.js	(revision 15)
@@ -161,5 +161,5 @@
 
 		// Retrieve the just created link using XPath.
-		var oLink = document.evaluate("//a[@href='" + sTempUrl + "']", this.EditorDocument.body, null, 9, null).singleNodeValue ;
+		var oLink = this.EditorDocument.evaluate("//a[@href='" + sTempUrl + "']", this.EditorDocument.body, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue ;
 		
 		if ( oLink )
Index: /FCKeditor/trunk/editor/_source/internals/fckdialog_gecko.js
===================================================================
--- /FCKeditor/trunk/editor/_source/internals/fckdialog_gecko.js	(revision 14)
+++ /FCKeditor/trunk/editor/_source/internals/fckdialog_gecko.js	(revision 15)
@@ -51,5 +51,4 @@
 	try
 	{
-		window.top.captureEvents( Event.CLICK | Event.MOUSEDOWN | Event.MOUSEUP | Event.FOCUS ) ;
 		window.top.parent.addEventListener( 'mousedown', this.CheckFocus, true ) ;
 		window.top.parent.addEventListener( 'mouseup', this.CheckFocus, true ) ;
@@ -77,5 +76,4 @@
 		try
 		{
-			window.top.releaseEvents(Event.CLICK | Event.MOUSEDOWN | Event.MOUSEUP | Event.FOCUS) ;
 			window.top.parent.removeEventListener( 'onmousedown', FCKDialog.CheckFocus, true ) ;
 			window.top.parent.removeEventListener( 'mouseup', FCKDialog.CheckFocus, true ) ;
