diff --git a/createDocs.sh b/createDocs.sh
deleted file mode 100755
index 24b310f472a129999b7d31afcfbc1812e08bef6d..0000000000000000000000000000000000000000
--- a/createDocs.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-
-java -Djava.awt.headless=true -classpath "tools/jars/stylebook-1.0-b2.jar:tools/jars/xalan.jar:tools/jars/xerces.jar" org.apache.stylebook.StyleBook "targetDirectory=doc/html" doc/xerces-c_book.xml doc/style
diff --git a/createdocs.bat b/createdocs.bat
deleted file mode 100644
index 480feb6e05e4c594114f66dd670aa468ca7ed7a0..0000000000000000000000000000000000000000
--- a/createdocs.bat
+++ /dev/null
@@ -1 +0,0 @@
-java -classpath "tools/jars/stylebook-1.0-b2.jar;tools/jars/xalan.jar;tools/jars/xerces.jar" org.apache.stylebook.StyleBook "targetDirectory=doc/html" doc/xerces-c_book.xml doc/style
diff --git a/doc/build-misc.xml b/doc/build-misc.xml
index a2e4db4203ee30a085d1e23003f9cc01cf5a22a7..acf0398a1a87b76b832cba7704f69a2bb35faf70 100644
--- a/doc/build-misc.xml
+++ b/doc/build-misc.xml
@@ -180,12 +180,12 @@ rpmbuild -ta &XercesC3SrcInstallDir;.tar.gz (rpm 4.1 and later; ships with RedHa
         <p>Before proceeding, copy the contents of the &XercesC3ToolsInstallDir;
            distribution into your <code>$XERCESCROOT</code>. Then invoke
            a terminal or a command window and setup PATH to include the
-           JDK 1.2.2 bin directory. Next, cd to the <code>$XERCESCROOT</code>
-           source root directory, and enter:</p>
+           JDK 1.2.2 bin directory. Next, cd to the <code>$XERCESCROOT/tools</code>
+           directory, and enter:</p>
 
 <source>
-createDocs.bat (Windows)
-./createDocs.sh (UNIX)
+createdocs.bat (Windows)
+./createdocs.sh (UNIX)
 </source>
 
         <p>This should generate the .html files in the 'doc/html' directory.</p>
diff --git a/doc/faq-build.xml b/doc/faq-build.xml
index 16e76a02d106559dd70a665df58a6f82b884a5da..58d08697d0df0b926c880d69c90e8bd103f47c44 100644
--- a/doc/faq-build.xml
+++ b/doc/faq-build.xml
@@ -395,8 +395,8 @@ catch (const XMLException&amp; toCatch) {
         should copy its contents into your <code>&XercesC3SrcInstallDir;</code>
         directory.</p>
 
-     <p>To regenerate the documentation, go to &XercesC3SrcInstallDir;
-        and start <code>createDocs.sh</code> (for Unix) or
+     <p>To regenerate the documentation, go to the &XercesC3SrcInstallDir;/tools
+        directory and start <code>createdocs.sh</code> (for Unix) or
         <code>createdocs.bat</code> (for Windows). The result can be
         found in directory <code>&XercesC3SrcInstallDir;/doc/html</code>.</p>
 
diff --git a/tools/createdocs.bat b/tools/createdocs.bat
new file mode 100644
index 0000000000000000000000000000000000000000..23bc9897b869a33cf0577544021b0f53227ff515
--- /dev/null
+++ b/tools/createdocs.bat
@@ -0,0 +1 @@
+java -classpath "jars/stylebook-1.0-b2.jar;jars/xalan.jar;jars/xerces.jar" org.apache.stylebook.StyleBook "targetDirectory=../doc/html" ../doc/xerces-c_book.xml ../doc/style
diff --git a/tools/createdocs.sh b/tools/createdocs.sh
new file mode 100755
index 0000000000000000000000000000000000000000..0acae20ed1981320d3c86b2a51f053e69a0fe16f
--- /dev/null
+++ b/tools/createdocs.sh
@@ -0,0 +1,2 @@
+#!/bin/sh
+java -Djava.awt.headless=true -classpath "jars/stylebook-1.0-b2.jar:jars/xalan.jar:jars/xerces.jar" org.apache.stylebook.StyleBook "targetDirectory=../doc/html" ../doc/xerces-c_book.xml ../doc/style