Index: _whatsnew.html
===================================================================
--- _whatsnew.html	(revision 2039)
+++ _whatsnew.html	(working copy)
@@ -112,6 +112,8 @@
 			properly wrap the text.</li> 
 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2239">#2239</a>] The Samplepostdata.php has been
 			changed from "&lt;?=" to "&lt;? echo".</li> 
+		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2252">#2252</a>] It's now possible to enable the
+			browsers default menu using the configuration file (FCKConfig.BrowserContextMenu option).</li> 
 	</ul>
 	<h3>
 		Version 2.6</h3>
Index: editor/_source/internals/fck_gecko.js
===================================================================
--- editor/_source/internals/fck_gecko.js	(revision 2039)
+++ editor/_source/internals/fck_gecko.js	(working copy)
@@ -267,8 +267,11 @@
 	}
 
 	// Reset the context menu.
+	if (FCKConfig.BrowserContextMenu == false)
+	{
 	FCK.ContextMenu._InnerContextMenu.SetMouseClickWindow( FCK.EditorWindow ) ;
 	FCK.ContextMenu._InnerContextMenu.AttachToElement( FCK.EditorDocument ) ;
+	}
 }
 
 FCK.MakeEditable = function()
Index: editor/_source/internals/fck_ie.js
===================================================================
--- editor/_source/internals/fck_ie.js	(revision 2039)
+++ editor/_source/internals/fck_ie.js	(working copy)
@@ -130,7 +130,8 @@
 	this.EditorDocument.body.attachEvent( 'ondrop', Doc_OnDrop ) ;
 
 	// Reset the context menu.
-	FCK.ContextMenu._InnerContextMenu.AttachToElement( FCK.EditorDocument.body ) ;
+	if (FCKConfig.BrowserContextMenu == false)
+		FCK.ContextMenu._InnerContextMenu.AttachToElement( FCK.EditorDocument.body ) ;
 
 	this.EditorDocument.attachEvent("onkeydown", FCK._KeyDownListener ) ;
 
Index: editor/fckeditor.html
===================================================================
--- editor/fckeditor.html	(revision 2039)
+++ editor/fckeditor.html	(working copy)
@@ -261,7 +261,8 @@
 	<script type="text/javascript">
 
 // Initialize the editing area context menu.
-FCK_ContextMenu_Init() ;
+if (FCKConfig.BrowserContextMenu == false)
+	FCK_ContextMenu_Init() ;
 
 FCKPlugins.Load() ;
 
Index: fckconfig.js
===================================================================
--- fckconfig.js	(revision 2039)
+++ fckconfig.js	(working copy)
@@ -144,6 +144,7 @@
 
 FCKConfig.ContextMenu = ['Generic','Link','Anchor','Image','Flash','Select','Textarea','Checkbox','Radio','TextField','HiddenField','ImageButton','Button','BulletedList','NumberedList','Table','Form'] ;
 FCKConfig.BrowserContextMenuOnCtrl = false ;
+FCKConfig.BrowserContextMenu = false;
 
 FCKConfig.EnableMoreFontColors = true ;
 FCKConfig.FontColors = '000000,993300,333300,003300,003366,000080,333399,333333,800000,FF6600,808000,808080,008080,0000FF,666699,808080,FF0000,FF9900,99CC00,339966,33CCCC,3366FF,800080,999999,FF00FF,FFCC00,FFFF00,00FF00,00FFFF,00CCFF,993366,C0C0C0,FF99CC,FFCC99,FFFF99,CCFFCC,CCFFFF,99CCFF,CC99FF,FFFFFF' ;
