Index: fckeditor.afp
===================================================================
--- fckeditor.afp	(revision 1498)
+++ fckeditor.afp	(working copy)
@@ -62,7 +62,7 @@
 
 		HtmlValue = THIS.cValue		&& HTMLSPECIALCHARS()
 
-		html = [<div>]
+		html = []
 		IF THIS.IsCompatible()
 			lcLink = THIS.BasePath+[editor/fckeditor.html?InstanceName=]+THIS.cInstanceName
 
@@ -94,8 +94,6 @@
 			html = html + [<textarea name="]+THIS.cInstanceName +[" rows="4" cols="40" style="width: ]+WidthCSS+[ height: ]+HeightCSS+[">]+HtmlValue+[</textarea>]
 		ENDIF
 
-		html = html + [</div>]
-
 		RETURN (html)
 	ENDFUNC
 
Index: fckeditor.asp
===================================================================
--- fckeditor.asp	(revision 1498)
+++ fckeditor.asp	(working copy)
@@ -131,7 +131,7 @@
 
 		End If
 
-		CreateHtml = "<div>" & html & "</div>"
+		CreateHtml = html 
 
 	End Function
 
Index: fckeditor.cfc
===================================================================
--- fckeditor.cfc	(revision 1498)
+++ fckeditor.cfc	(working copy)
@@ -122,9 +122,7 @@
 	</cfscript>
 
 	<cfscript>
-	result = result & "<div>" & chr(13) & chr(10);
 	result = result & "<textarea name=""#this.instanceName#"" rows=""4"" cols=""40"" style=""WIDTH: #this.width#; HEIGHT: #this.height#"">#HTMLEditFormat(this.value)#</textarea>" & chr(13) & chr(10);
-	result = result & "</div>" & chr(13) & chr(10);
 	</cfscript>
 	<cfreturn result />
 </cffunction>
@@ -153,11 +151,9 @@
 	</cfscript>
 
 	<cfscript>
-	result = result & "<div>" & chr(13) & chr(10);
 	result = result & "<input type=""hidden"" id=""#this.instanceName#"" name=""#this.instanceName#"" value=""#HTMLEditFormat(this.value)#"" style=""display:none"" />" & chr(13) & chr(10);
 	result = result & "<input type=""hidden"" id=""#this.instanceName#___Config"" value=""#GetConfigFieldString()#"" style=""display:none"" />" & chr(13) & chr(10);
 	result = result & "<iframe id=""#this.instanceName#___Frame"" src=""#sURL#"" width=""#this.width#"" height=""#this.height#"" frameborder=""0"" scrolling=""no""></iframe>" & chr(13) & chr(10);
-	result = result & "</div>" & chr(13) & chr(10);
 	</cfscript>
 	<cfreturn result />
 </cffunction>
Index: fckeditor.cfm
===================================================================
--- fckeditor.cfm	(revision 1498)
+++ fckeditor.cfm	(working copy)
@@ -130,11 +130,9 @@
 	</cfscript>
 
 	<cfoutput>
-	<div>
 	<input type="hidden" id="#attributes.instanceName#" name="#attributes.instanceName#" value="#HTMLEditFormat(attributes.value)#" style="display:none" />
 	<input type="hidden" id="#attributes.instanceName#___Config" value="#sConfig#" style="display:none" />
 	<iframe id="#attributes.instanceName#___Frame" src="#sURL#" width="#attributes.width#" height="#attributes.height#" frameborder="0" scrolling="no"></iframe>
-	</div>
 	</cfoutput>
 
 <cfelse>
@@ -153,9 +151,7 @@
 
 	<!--- Fixed Bug ##1075166. hk@lwd.de 20041206 --->
 	<cfoutput>
-	<div>
 	<textarea name="#attributes.instanceName#" rows="4" cols="40" style="WIDTH: #attributes.width#; HEIGHT: #attributes.height#">#HTMLEditFormat(attributes.value)#</textarea>
-	</div>
 	</cfoutput>
 
 </cfif>
Index: fckeditor.js
===================================================================
--- fckeditor.js	(revision 1498)
+++ fckeditor.js	(working copy)
@@ -76,7 +76,7 @@
 		return '' ;
 	}
 
-	var sHtml = '<div>' ;
+	var sHtml = '' ;
 
 	if ( !this.CheckBrowser || this._IsCompatibleBrowser() )
 	{
@@ -91,8 +91,6 @@
 		sHtml += '<textarea name="' + this.InstanceName + '" rows="4" cols="40" style="width:' + sWidth + ';height:' + sHeight + '">' + this._HTMLEncode( this.Value ) + '<\/textarea>' ;
 	}
 
-	sHtml += '</div>' ;
-
 	return sHtml ;
 }
 
Index: fckeditor.lasso
===================================================================
--- fckeditor.lasso	(revision 1498)
+++ fckeditor.lasso	(working copy)
@@ -64,17 +64,13 @@
 		define_tag('create');
 			if(self->isCompatibleBrowser);
 				local('out' = '
-					<div>
 						<input type="hidden" id="' + self->instancename + '" name="' + self->instancename + '" value="' + encode_html(self->initialvalue) + '" style="display:none" />
 						' + self->parseConfig + '
 						<iframe id="' + self->instancename + '___Frame" src="' + self->basepath + 'editor/fckeditor.html?InstanceName=' + self->instancename + '&Toolbar=' + self->toolbarset + '" width="' + self->width + '" height="' + self->height + '" frameborder="0" scrolling="no"></iframe>
-					</div>
 				');
 			else;
 				local('out' = '
-					<div>
 						<textarea name="' + self->instancename + '" rows="4" cols="40" style="width: ' + self->width + '; height: ' + self->height + '">' + encode_html(self->initialvalue) + '</textarea>
-					</div>
 				');
 			/if;
 			return(@#out);
Index: fckeditor.pl
===================================================================
--- fckeditor.pl	(revision 1498)
+++ fckeditor.pl	(working copy)
@@ -63,7 +63,7 @@
 {
 
 	$HtmlValue = &specialchar_cnv($Value);
-	$Html = '<div>' ;
+	$Html = '' ;
 	if(&IsCompatible()) {
 		$Link = $BasePath . "editor/fckeditor.html?InstanceName=$InstanceName";
 		if($ToolbarSet ne '') {
@@ -93,7 +93,6 @@
 		}
 		$Html .= "<textarea name=\"$InstanceName\" rows=\"4\" cols=\"40\" style=\"width: $WidthCSS; height: $HeightCSS\">$HtmlValue</textarea>";
 	}
-	$Html .= '</div>';
 	return($Html);
 }
 
Index: fckeditor.py
===================================================================
--- fckeditor.py	(revision 1498)
+++ fckeditor.py	(working copy)
@@ -57,7 +57,7 @@
 
 	def CreateHtml(self):
 		HtmlValue = escape(self.Value)
-		Html = "<div>"
+		Html = ""
 
 		if (self.IsCompatible()):
 			File = "fckeditor.html"
@@ -105,7 +105,6 @@
 					HeightCSS,
 					HtmlValue
 					)
-		Html += "</div>"
 		return Html
 
 	def IsCompatible(self):
Index: fckeditor_php4.php
===================================================================
--- fckeditor_php4.php	(revision 1498)
+++ fckeditor_php4.php	(working copy)
@@ -57,7 +57,7 @@
 	{
 		$HtmlValue = htmlspecialchars( $this->Value ) ;
 
-		$Html = '<div>' ;
+		$Html = '' ;
 		
 		if ( !isset( $_GET ) ) {
 			global $HTTP_GET_VARS ;
@@ -100,8 +100,6 @@
 			$Html .= "<textarea name=\"{$this->InstanceName}\" rows=\"4\" cols=\"40\" style=\"width: {$WidthCSS}; height: {$HeightCSS}\">{$HtmlValue}</textarea>" ;
 		}
 
-		$Html .= '</div>' ;
-
 		return $Html ;
 	}
 
Index: fckeditor_php5.php
===================================================================
--- fckeditor_php5.php	(revision 1498)
+++ fckeditor_php5.php	(working copy)
@@ -57,7 +57,7 @@
 	{
 		$HtmlValue = htmlspecialchars( $this->Value ) ;
 
-		$Html = '<div>' ;
+		$Html = '' ;
 
 		if ( $this->IsCompatible() )
 		{
@@ -95,8 +95,6 @@
 			$Html .= "<textarea name=\"{$this->InstanceName}\" rows=\"4\" cols=\"40\" style=\"width: {$WidthCSS}; height: {$HeightCSS}\">{$HtmlValue}</textarea>" ;
 		}
 
-		$Html .= '</div>' ;
-
 		return $Html ;
 	}
 
