Index: /FCKeditor/branches/versions/2.4.x/editor/_source/internals/fck.js
===================================================================
--- /FCKeditor/branches/versions/2.4.x/editor/_source/internals/fck.js	(revision 104)
+++ /FCKeditor/branches/versions/2.4.x/editor/_source/internals/fck.js	(revision 105)
@@ -13,10 +13,12 @@
 	Status		: FCK_STATUS_NOTLOADED,
 	EditMode	: FCK_EDITMODE_WYSIWYG,
-	
+	Toolbar		: null,
+	HasFocus	: false,
+
 	GetLinkedFieldValue : function()
 	{
 		return this.LinkedField.value ;
 	},
-	
+
 	GetParentForm : function()
 	{
@@ -24,10 +26,6 @@
 	} ,
 
-//	Events	: new FCKEvents( FCK ),   how to pass a reference to self here? "this" passes the window
-
-	Toolbar	: null,
-	HasFocus : false,
-
-	// IsDirty implementation 
+	// # START : IsDirty implementation 
+	
 	StartupValue : '',
 
@@ -42,5 +40,6 @@
 			this.StartupValue = this.EditorDocument.body.innerHTML ;
 	},
-	// end of IsDirty 
+
+	// # END : IsDirty implementation 
 
 	StartEditor : function()
@@ -295,10 +294,4 @@
 				html = html.replace( FCKRegexLib.EmCloser, '<\/i>' ) ;
 			}
-	//		else if ( FCKBrowserInfo.IsIE )
-	//		{
-	//			// IE doesn't support <abbr> and it breaks it. Let's protect it.
-	//			html = html.replace( FCKRegexLib.AbbrOpener, '<FCK:abbr$1' ) ;
-	//			html = html.replace( FCKRegexLib.AbbrCloser, '<\/FCK:abbr>' ) ;
-	//		}
 
 			var sHtml = '' ;
@@ -327,13 +320,13 @@
 				sHtml += '<link href="' + FCKConfig.FullBasePath + 'css/fck_internal.css' + '" rel="stylesheet" type="text/css" _fcktemp="true" />' ;
 
-				// Attention: do not change it before testing it well (sample07)!		: @Packager.RemoveLine
-				// This is tricky... if the head ends with <meta ... content type>,		: @Packager.RemoveLine
-				// Firefox will break. But, it works if we include the temporary		: @Packager.RemoveLine
-				// links as the last elements in the HEAD.								: @Packager.RemoveLine
+				// Attention: do not change it before testing it well (sample07)!
+				// This is tricky... if the head ends with <meta ... content type>,
+				// Firefox will break. But, it works if we include the temporary
+				// links as the last elements in the HEAD.
 				sHtml = html.replace( FCKRegexLib.HeadCloser, sHtml + '$&' ) ;
 
 				// Insert the base tag (FCKConfig.BaseHref), if not exists in the source.
-				// The base must be the first tag in the HEAD, to get relative			: @Packager.RemoveLine
-				// links on styles, for example.										: @Packager.RemoveLine
+				// The base must be the first tag in the HEAD, to get relative
+				// links on styles, for example.
 				if ( FCK.TempBaseTag.length > 0 && !FCKRegexLib.HasBaseTag.test( html ) )
 					sHtml = sHtml.replace( FCKRegexLib.HeadOpener, '$&' + FCK.TempBaseTag ) ;
