Index: /FCKeditor/trunk/_whatsnew.html
===================================================================
--- /FCKeditor/trunk/_whatsnew.html	(revision 2399)
+++ /FCKeditor/trunk/_whatsnew.html	(revision 2400)
@@ -61,4 +61,6 @@
 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1982">#1982</a>] Submenus in IE7
 			now are shown properly.</li>
+		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2496">#2496</a>] Using the Paste
+			dialogs in IE might insert the content at the start of the editor.</li>
 	</ul>
 	<p>
Index: /FCKeditor/trunk/editor/dialog/fck_paste.html
===================================================================
--- /FCKeditor/trunk/editor/dialog/fck_paste.html	(revision 2399)
+++ /FCKeditor/trunk/editor/dialog/fck_paste.html	(revision 2400)
@@ -88,4 +88,5 @@
 	{
 		document.getElementById('txtData').style.display = '' ;
+		SelectField( 'txtData' ) ;
 	}
 
Index: /FCKeditor/trunk/editor/fckdialog.html
===================================================================
--- /FCKeditor/trunk/editor/fckdialog.html	(revision 2399)
+++ /FCKeditor/trunk/editor/fckdialog.html	(revision 2400)
@@ -410,4 +410,9 @@
 	EnsureSelection : function()
 	{
+		// Move the focus to the Cancel button so even if the dialog contains a 
+		// contentEditable element the selection is properly restored in the editor #2496
+		window.focus() ;
+		$( 'btnCancel' ).focus() ;
+
 		FCK.Selection.Restore() ;
 	},
