Index: /FCKeditor/trunk/editor/_source/internals/fck_gecko.js
===================================================================
--- /FCKeditor/trunk/editor/_source/internals/fck_gecko.js	(revision 589)
+++ /FCKeditor/trunk/editor/_source/internals/fck_gecko.js	(revision 590)
@@ -37,20 +37,4 @@
 	{
 		FCK.Events.FireEvent( "OnSelectionChange" ) ;
-	}
-
-	//allow the table handler to handle mouse messages for dynamic table sizing
-	this._ExecMouseDown = function(e)
-	{
-		FCK.Events.FireEvent( "OnMouseDown",e ) ;
-	}
-
-	this._ExecMouseMove = function(e)
-	{
-		FCK.Events.FireEvent( "OnMouseMove",e ) ;
-	}
-
-	this._ExecMouseUp = function(e)
-	{
-		FCK.Events.FireEvent( "OnMouseUp",e ) ;
 	}
 
@@ -99,10 +83,4 @@
 	this.EditorDocument.addEventListener( 'keydown', this._KeyDownListener, false ) ;
 
-	
-	//Hooks for table sizing
-	this.EditorDocument.addEventListener( 'mousedown', this._ExecMouseDown, true ) ;
-	this.EditorDocument.addEventListener( 'mouseup', this._ExecMouseUp, true ) ;
-	this.EditorDocument.addEventListener( 'mousemove', this._ExecMouseMove, true ) ;
-
 	// Hooks for data object drops
 	if ( FCKBrowserInfo.IsGecko )
Index: /FCKeditor/trunk/editor/_source/internals/fck_ie.js
===================================================================
--- /FCKeditor/trunk/editor/_source/internals/fck_ie.js	(revision 589)
+++ /FCKeditor/trunk/editor/_source/internals/fck_ie.js	(revision 590)
@@ -70,15 +70,4 @@
 		FCK.EditorWindow.event.returnValue	= false ;
 	}
-	FCK.Events.FireEvent( "OnMouseUp",FCK.EditorWindow.event) ;
-}
-
-function Doc_OnMouseDown()
-{
-	FCK.Events.FireEvent( "OnMouseDown",FCK.EditorWindow.event ) ;
-}
-
-function Doc_OnMouseMove()
-{
-	FCK.Events.FireEvent( "OnMouseMove",FCK.EditorWindow.event) ;
 }
 
@@ -144,8 +133,4 @@
 	this.EditorDocument.attachEvent("ondblclick", Doc_OnDblClick ) ;
 	
-	//additions for table sizing
-	this.EditorDocument.attachEvent( 'onmousedown', Doc_OnMouseDown ) ;
-	this.EditorDocument.attachEvent( 'onmousemove', Doc_OnMouseMove ) ;
-
 	// Catch cursor selection changes.
 	this.EditorDocument.attachEvent("onselectionchange", Doc_OnSelectionChange ) ;
