Index: /FCKeditor/trunk/_test/automated/tests/fckdomrange.html
===================================================================
--- /FCKeditor/trunk/_test/automated/tests/fckdomrange.html	(revision 72)
+++ /FCKeditor/trunk/_test/automated/tests/fckdomrange.html	(revision 73)
@@ -3,10 +3,9 @@
 <head>
 	<title>FCKDomRange - Tests for JsUnit</title>
+	<script src="../../../editor/_source/fckscriptloader.js" type="text/javascript"></script>
 	<script type="text/javascript" src="tests.js"></script>
 	<script type="text/javascript" src="../_jsunit/app/jsUnitCore.js"></script>
-	<script src="../../../editor/_source/fckscriptloader.js" type="text/javascript"></script>
 	<script type="text/javascript">
 
-FCKScriptLoader._FCKeditorPath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('_test')) ;
 FCKScriptLoader.Load( 'FCKDomRange' ) ;
 
Index: /FCKeditor/trunk/_test/automated/tests/fcktools.html
===================================================================
--- /FCKeditor/trunk/_test/automated/tests/fcktools.html	(revision 72)
+++ /FCKeditor/trunk/_test/automated/tests/fcktools.html	(revision 73)
@@ -3,10 +3,9 @@
 <head>
 	<title>FCKTools - Tests for JsUnit</title>
+	<script src="../../../editor/_source/fckscriptloader.js" type="text/javascript"></script>
 	<script type="text/javascript" src="tests.js"></script>
 	<script type="text/javascript" src="../_jsunit/app/jsUnitCore.js"></script>
-	<script src="../../../editor/_source/fckscriptloader.js" type="text/javascript"></script>
 	<script type="text/javascript">
 
-FCKScriptLoader._FCKeditorPath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('_test')) ;
 FCKScriptLoader.Load( 'FCKTools' ) ;
 
Index: /FCKeditor/trunk/_test/automated/tests/fckw3crange.html
===================================================================
--- /FCKeditor/trunk/_test/automated/tests/fckw3crange.html	(revision 72)
+++ /FCKeditor/trunk/_test/automated/tests/fckw3crange.html	(revision 73)
@@ -3,10 +3,9 @@
 <head>
 	<title>FCKW3CRange - Tests for JsUnit</title>
+	<script src="../../../editor/_source/fckscriptloader.js" type="text/javascript"></script>
 	<script type="text/javascript" src="tests.js"></script>
 	<script type="text/javascript" src="../_jsunit/app/jsUnitCore.js"></script>
-	<script src="../../../editor/_source/fckscriptloader.js" type="text/javascript"></script>
 	<script type="text/javascript">
 
-FCKScriptLoader._FCKeditorPath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('_test')) ;
 FCKScriptLoader.Load( 'FCKW3CRange' ) ;
 
Index: /FCKeditor/trunk/_test/automated/tests/tests.js
===================================================================
--- /FCKeditor/trunk/_test/automated/tests/tests.js	(revision 72)
+++ /FCKeditor/trunk/_test/automated/tests/tests.js	(revision 73)
@@ -1,4 +1,7 @@
 ﻿if ( window == window.top )
 	window.location = '../_jsunit/testRunner.html?testpage=' + document.location.pathname ;
+
+if ( typeof FCKScriptLoader != 'undefined' )
+	FCKScriptLoader.FCKeditorPath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('_test')) ;
 
 function GetTestInnerHtml( element )
Index: /FCKeditor/trunk/_test/manual/fckdomrange/test1.html
===================================================================
--- /FCKeditor/trunk/_test/manual/fckdomrange/test1.html	(revision 72)
+++ /FCKeditor/trunk/_test/manual/fckdomrange/test1.html	(revision 73)
@@ -8,5 +8,5 @@
 var FCK = new Object() ;
 
-FCKScriptLoader._FCKeditorPath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('_test')) ;
+FCKScriptLoader.FCKeditorPath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('_test')) ;
 FCKScriptLoader.Load( 'FCKDomRange' ) ;
 FCKScriptLoader.Load( 'FCKDebug' ) ;
Index: /FCKeditor/trunk/editor/_source/fckscriptloader.js
===================================================================
--- /FCKeditor/trunk/editor/_source/fckscriptloader.js	(revision 72)
+++ /FCKeditor/trunk/editor/_source/fckscriptloader.js	(revision 73)
@@ -12,6 +12,5 @@
 
 var FCKScriptLoader = new Object() ;
-FCKScriptLoader._FCKeditorPath = '/fckeditor/' ;
-FCKScriptLoader._FCKeditorPath = '/V2/' ;			// @Packager.RemoveLine 
+FCKScriptLoader.FCKeditorPath = '/fckeditor/' ;
 
 FCKScriptLoader._Scripts = new Object() ;
@@ -57,5 +56,5 @@
 FCKScriptLoader._LoadScript = function( scriptPathFromSource )
 {
-	document.write( '<script type="text/javascript" src="' + this._FCKeditorPath + 'editor/_source/' + scriptPathFromSource + '" onerror="alert(\'Error loading \' + scriptPathFromSource);"><\/script>' ) ;
+	document.write( '<script type="text/javascript" src="' + this.FCKeditorPath + 'editor/_source/' + scriptPathFromSource + '" onerror="alert(\'Error loading \' + scriptPathFromSource);"><\/script>' ) ;
 }
 
