Index: /FCKeditor/trunk/_whatsnew.html
===================================================================
--- /FCKeditor/trunk/_whatsnew.html	(revision 2220)
+++ /FCKeditor/trunk/_whatsnew.html	(revision 2221)
@@ -45,4 +45,6 @@
 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2234">#2234</a>] Added the
 			ability to create, modify and remove Div containers.</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>
 	<p>
Index: /FCKeditor/trunk/editor/_source/classes/fckcontextmenu.js
===================================================================
--- /FCKeditor/trunk/editor/_source/classes/fckcontextmenu.js	(revision 2220)
+++ /FCKeditor/trunk/editor/_source/classes/fckcontextmenu.js	(revision 2221)
@@ -91,4 +91,7 @@
 function FCKContextMenu_Document_OnContextMenu( e )
 {
+	if ( FCKConfig.BrowserContextMenu )
+		return true ;
+
 	var el = e.target ;
 
@@ -115,4 +118,7 @@
 	if( !e || e.button != 2 )
 		return false ;
+
+	if ( FCKConfig.BrowserContextMenu )
+		return true ;
 
 	var el = e.target ;
@@ -147,4 +153,7 @@
 function FCKContextMenu_Document_OnMouseUp( e )
 {
+	if ( FCKConfig.BrowserContextMenu )
+		return true ;
+
 	var overrideButton = FCKContextMenu_OverrideButton ;
 
@@ -166,5 +175,5 @@
 function FCKContextMenu_AttachedElement_OnContextMenu( ev, fckContextMenu, el )
 {
-	if ( fckContextMenu.CtrlDisable && ( ev.ctrlKey || ev.metaKey ) )
+	if ( ( fckContextMenu.CtrlDisable && ( ev.ctrlKey || ev.metaKey ) ) || FCKConfig.BrowserContextMenu )
 		return true ;
 
Index: /FCKeditor/trunk/fckconfig.js
===================================================================
--- /FCKeditor/trunk/fckconfig.js	(revision 2220)
+++ /FCKeditor/trunk/fckconfig.js	(revision 2221)
@@ -148,4 +148,5 @@
 FCKConfig.ContextMenu = ['Generic','Link','Anchor','Image','Flash','Select','Textarea','Checkbox','Radio','TextField','HiddenField','ImageButton','Button','BulletedList','NumberedList','Table','Form','DivContainer'] ;
 FCKConfig.BrowserContextMenuOnCtrl = false ;
+FCKConfig.BrowserContextMenu = false ;
 
 FCKConfig.EnableMoreFontColors = true ;
