diff --git a/Scripts/Functions/Help/Texinfo/texinfo_createStructureChapters.sh b/Scripts/Functions/Help/Texinfo/texinfo_createStructureChapters.sh
new file mode 100755
index 0000000..c11e686
--- /dev/null
+++ b/Scripts/Functions/Help/Texinfo/texinfo_createStructureChapters.sh
@@ -0,0 +1,60 @@
+#!/bin/bash
+#
+# texinfo_createStructureChapters.sh -- This function initiates the
+# chapter documentation structure of a manual, using the current
+# language and template files as reference.
+#
+# Copyright (C) 2009, 2010, 2011 The CentOS Artwork SIG
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or (at
+# your option) any later version.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+#
+# ----------------------------------------------------------------------
+# $Id$
+# ----------------------------------------------------------------------
+
+function texinfo_createStructureChapters {
+
+    # Define list of chapter templates files used to build the
+    # documentation manual. Do not include the `Directories' directory
+    # here. It is used to build chapters based on value passed though
+    # `--chapter' option passed in the command-line.
+    local FILE=''
+    local FILES=$(cli_getFilesList ${MANUAL_TEMPLATE_L10N} \
+        --pattern='chapter(-menu|-nodes)?\.texinfo' --mindepth='2' \
+        | grep -v '/Directories/')
+
+    # Loop through chapter structures and create them inside the
+    # manual.
+    for FILE in $FILES;do
+
+        # Redefine chapter directory based on template files.
+        MANUAL_CHAPTER_NAME=$(basename $(dirname ${FILE}))
+
+        # Verify texinfo templates used as based to build the chapter.
+        # Be sure they are inside the working copy of CentOS Artwork
+        # Repository (-w) and under version control (-n), too.
+        cli_checkFiles ${FILE} -wn
+
+        # Verify chapter's directory. If it doesn't exist, create it.
+        if [[ ! -d ${MANUAL_BASEDIR}/${MANUAL_CHAPTER_NAME} ]];then
+            svn mkdir ${MANUAL_BASEDIR}/${MANUAL_CHAPTER_NAME} --quiet
+        fi
+
+        # Copy template files into chapter's directory.
+        svn cp ${FILE} ${MANUAL_BASEDIR}/${MANUAL_CHAPTER_NAME} --quiet
+
+    done
+
+}