Index: /CKEditor/trunk/CHANGES.html
===================================================================
--- /CKEditor/trunk/CHANGES.html	(revision 3795)
+++ /CKEditor/trunk/CHANGES.html	(revision 3796)
@@ -1,3 +1,3 @@
-﻿﻿﻿<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+﻿﻿﻿﻿<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <!--
 Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
@@ -86,4 +86,5 @@
 		<li><a href="http://dev.fckeditor.net/ticket/3812">#3812</a> : Fixed an issue in which the editor
 			may show up empty or uneditable in IE7, 8 and Firefox 3.</li>
+		<li><a href="http://dev.fckeditor.net/ticket/3825">#3825</a> : Fixed JS error when opening spellingcheck.</li>
 	</ul>
 	<h3>
Index: /CKEditor/trunk/_source/plugins/wsc/dialogs/tmpFrameset.html
===================================================================
--- /CKEditor/trunk/_source/plugins/wsc/dialogs/tmpFrameset.html	(revision 3795)
+++ /CKEditor/trunk/_source/plugins/wsc/dialogs/tmpFrameset.html	(revision 3796)
@@ -25,17 +25,17 @@
 function tryLoad()
 {
-	var opener = window.parent;
+	opener = window.parent;
 
-    // get access to global parameters
-    var oParams = window.opener.oldFramesetPageParams ;
+	// get access to global parameters
+	var oParams = window.opener.oldFramesetPageParams;
 
-    // make frameset rows string prepare
-    var sFramesetRows = ( parseInt( oParams.firstframeh, 10 ) || '30') + ",*," + ( parseInt( oParams.thirdframeh, 10 ) || '150' ) + ',0' ;
-    document.getElementById( 'itFrameset' ).rows = sFramesetRows ;
+	// make frameset rows string prepare
+	var sFramesetRows = ( parseInt( oParams.firstframeh, 10 ) || '30') + ",*," + ( parseInt( oParams.thirdframeh, 10 ) || '150' ) + ',0' ;
+	document.getElementById( 'itFrameset' ).rows = sFramesetRows ;
 
-    // dynamic including init frames and crossdomain transport code
-    // from config sproxy_js_frameset url
-    var addScriptUrl = oParams.sproxy_js_frameset ;
-    doLoadScript( addScriptUrl ) ;
+	// dynamic including init frames and crossdomain transport code
+	// from config sproxy_js_frameset url
+	var addScriptUrl = oParams.sproxy_js_frameset ;
+	doLoadScript( addScriptUrl ) ;
 }
 
