[Gnucash-changes] PDF generation

Neil Williams codehelp at cvs.gnucash.org
Mon Mar 21 06:19:20 EST 2005


Log Message:
-----------
PDF generation

Modified Files:
--------------
    gnucash-docs:
        ChangeLog
        HACKING
        NEWS
        README
    gnucash-docs/help/C:
        Makefile.am
        gnucash-help.xml

Added Files:
-----------
    gnucash-docs/guide/C:
        gnucash-guide.sgml
    gnucash-docs/help/C:
        custom.xml
        gettingstarted.xml
        gnucash-help.sgml
        intro.xml
        usage.xml

Revision Data
-------------
Index: ChangeLog
===================================================================
RCS file: /home/cvs/cvsroot/gnucash-docs/ChangeLog,v
retrieving revision 1.68
retrieving revision 1.69
diff -LChangeLog -LChangeLog -u -r1.68 -r1.69
--- ChangeLog
+++ ChangeLog
@@ -1,3 +1,23 @@
+2005-03-21  Neil Williams <linux at codehelp.co.uk>
+	* guide/C/gnucash-guide.sgml: New file in SGML
+	to link existing XML to PDF generation.
+	* help/C/custom.xml: 
+	* help/C/gettingstarted.xml:
+	* help/C/intro.xml:
+	* help/C/usage.xml:
+	New files containing content from
+	gnucash-help.xml to reduce duplication.
+	* elp/C/gnucash-help.xml: Removing content now placed
+	in individual files.
+	* help/C/gnucash-help.sgml: New file in SGML to link
+	existing XML to PDF generation.
+	* help/C/Makefile.am: Added new files to make.
+	* README: Advice added on using XSL and SGML tools to generate
+         alternative output formats.
+	* HACKING: Advice added on maintaining PDF generation
+	functionality.
+	* NEWS: Added PDF tips
+
 2005-02-26  Neil Williams <linux at codehelp.co.uk>
 	* guide/C/ch_oview.xml: Corrected listitem syntax
 	* xsl/admonitions.xsl:
Index: NEWS
===================================================================
RCS file: /home/cvs/cvsroot/gnucash-docs/NEWS,v
retrieving revision 1.12
retrieving revision 1.13
diff -LNEWS -LNEWS -u -r1.12 -r1.13
--- NEWS
+++ NEWS
@@ -1,6 +1,11 @@
 Version History
 ---------------
 
+ 1.8.5  - 9  Mar 2005
+         o Tweaked to allow SGML tools to generate PDF output.
+         o Advice added on using XSL and SGML tools to generate
+           alternative output formats.
+
  1.8.5  - 11 Dec 2004
  	 o general-customization.xsl patch from Johan Buret
 	 o David Harrison's updates to ch_dep.xml
Index: HACKING
===================================================================
RCS file: /home/cvs/cvsroot/gnucash-docs/HACKING,v
retrieving revision 1.2
retrieving revision 1.3
diff -LHACKING -LHACKING -u -r1.2 -r1.3
--- HACKING
+++ HACKING
@@ -53,8 +53,43 @@
 refer to when writing. This still has a lot of useful information in it
 which hasn't been transferred to the new docs.
 
-NOTE: The id used in the <article> and <sect1> tag is important as it defines
+NOTE: The id used in the <chapter> and <sect1> tags are important as they define
 the name used when the html pages are generated. Please be careful with these.
 
+<chapter> and <sect1> tags are also used to create the sidebar index in yelp
+and are an important bonus to ease-of-use of the final documentation.
+
 Chris Lyttle
 6th Dec 2002
+
+--------------------
+
+SGML tweaks;
+
+There are a couple of common tweaks in the XML files to allow SGML tools to
+operate - for PDF generation. The tweaks are minor but common (and to those
+familiar with XML a touch bizarre / annoying). If necessary, I can add a
+Perl script to do the syntax changes automatically, but for now these are
+the changes:
+
+1. Avoid using the XML empty tag, specify the closing tag.
+	e.g. <para></para> instead of </para />
+2. Avoid a newline after <entry> tags.
+	e.g. <entry><para> instead of <entry>\n<para>
+3. Avoid underscores in id attribute values.
+	e.g. id="getting-started" instead of id="getting_started"
+5. Use <chapter> and <sect1>.
+
+These are minor and don't affect the normal XML content in any way.
+(OK, the loss of < /> adds some extra characters.) However, the problem
+with these is the sheer number of tags that use the pre-tweaked syntax.
+SGML tools can deal with small numbers of these errors (commonly <200),
+so this is an advisory. If you're editing the XML, please consider this
+advice and make my life a little easier when it comes to PDF's.
+
+Thanks.
+
+Neil Williams
+<linux at codehelp.co.uk>
+9th March 2005.
+
Index: README
===================================================================
RCS file: /home/cvs/cvsroot/gnucash-docs/README,v
retrieving revision 1.7
retrieving revision 1.8
diff -LREADME -LREADME -u -r1.7 -r1.8
--- README
+++ README
@@ -28,11 +28,107 @@
 distribution. You still need, however, a working docbook-xsl setup to
 build and install these docs.
 
+Other Formats
+#############
+
+GnuCash-docs uses DocBook to create the HTML content during the make.
+You can output to alternative formats using external tools.
+
+DocBook comes in two flavours - xml and sgml. GnuCash uses the xml.
+
+If you use external tools to render HTML, remember to bring the images
+from figures/ along with the final HTML. The browser will expect to find
+the figures/ directory directly beneath the HTML directory:
+~/gnucash-docs/html/
+~/gnucash-docs/html/figures/
+
+		================================
+
+XML/XSL-based tools:
+--------------------
+
+If you have xmlto installed, this can be used to convert to other formats
+but problems have been experienced with PDF generation. If you output
+an XML-FO format using xmlto, you could use FOP to convert to PDF - this
+step requires Java. See man xmlto for more information.
+
+Formats available with xmlto include:
+dvi  fo  html  htmlhelp  html-nochunks  javahelp  man  
+pdf  ps  txt   xhtml     xhtml-nochunks
+
+The problems with pdf apply equally to dvi AND ps output. Each gives a
+long error output ending with: ! Emergency stop.
+
+manpage output only works if manpages are outlined in the XML. 
+There are no manpages in gnucash-docs.
+
+xmlto uses xsltproc - the same tool and the same stylesheets as the main
+make and install.
+
+Examples:
+--------
+To convert the GnuCash Tutorial and Concepts Guide DocBook XML document 
+to HTML and store the resulting HTML files in a separate directory use:
+
+cd guide/C/
+xmlto -o html-dir html gnucash-guide.xml
+
+(html-dir/ will be created if it does not already exist.)
+
+To convert the GnuCash Help Manual DocBook XML document to a single 
+HTML file in the current directory use:
+cd help/C/
+xmlto html-nochunks gnucash-help.xml
+
+		==============================
+
+SGML-based tools:
+----------------
+
+If you have docbook-utils installed, you can convert this documentation
+into other formats like PDF, DVI, TXT, texi, RTF. docbook-utils is SGML
+based and so a SGML header file is provided. The content files are still
+XML based - this doesn't cause problems for conversion to HTML but to
+generate PDF's validity errors need to be suppressed. 
+
+Use -e no-valid to suppress SGML validity errors.
+
+Currently, there are also problems incorporating the images into the 
+PDF versions. However, unlike the XML/XSL tools, docbook-utils will 
+generate a valid PDF, albeit without images.
+
+Note that the docs are designed for XML/XSL. Allowing them to function
+with SGML tools requires a few syntax tweaks. You may get errors reported
+but as long as the majority of the tweaks are in place, the conversion
+will succeed. Syntax errors are not suppressed with '-e -no-valid',
+only validity errors (like _ instead of - in id attributes).
+
+Examples:
+---------
+Convert the GnuCash guide to a single HTML file:
+cd guide/C/
+docbook2html -e no-valid -u gnucash-guide.sgml
+cd help/C/
+docbook2html -u gnucash-help.sgml
+
+Convert the GnuCash guide into a PDF:
+cd guide/C/
+docbook2pdf -e no-valid gnucash-guide.sgml
+
+Convert the GnuCash Help Manual into DVI:
+cd help/C/
+docbook2dvi -e no-valid gnucash-help.sgml
+
+One workaround for the images is to convert to a single HTML file and
+use Print to PDF File from your web browser. Bear in mind that the single
+HTML file is v.large and each PDF, without images, goes to over 100 pages.
+
+
 Known Problems
 ##############
 
-Please send feedback to gnucash-devel at gnucash.org for any difficulties
-, hints or suggestions with the docs. There are a few known problems.
+Please send feedback to gnucash-devel at gnucash.org for any difficulties, 
+hints or suggestions with the docs. There are a few known problems.
 
 - Help documentation missing documentation for multi-currency support,
   Business module and OFX import. Menu description incomplete.
@@ -46,3 +142,7 @@
 Thanks
 Chris Lyttle
 <chris at wilddev.net>
+
+Neil Williams
+<linux at codehelp.co.uk>
+
--- /dev/null
+++ guide/C/gnucash-guide.sgml
@@ -0,0 +1,234 @@
+<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook V4.1//EN"
+ "http://www.oasis-open.org/docbook/xml/4.1/docbookx.dtd" [
+<!ENTITY chapter1 SYSTEM "ch_oview.xml">
+<!ENTITY chapter2 SYSTEM "ch_basics.xml">
+<!ENTITY chapter3 SYSTEM "ch_accts.xml">
+<!ENTITY chapter4 SYSTEM "ch_txns.xml">
+<!ENTITY chapter5 SYSTEM "ch_cbook.xml">
+<!ENTITY chapter6 SYSTEM "ch_cc.xml">
+<!ENTITY chapter7 SYSTEM "ch_loans.xml">
+<!ENTITY chapter8 SYSTEM "ch_invest.xml">
+<!ENTITY chapter9 SYSTEM "ch_capgain.xml">
+<!ENTITY chapter10 SYSTEM "ch_currency.xml">
+<!ENTITY chapter11 SYSTEM "ch_dep.xml">
+<!ENTITY chapter12 SYSTEM "ch_bus_ar.xml">
+<!ENTITY chapter13 SYSTEM "ch_bus_ap.xml">
+<!ENTITY chapter14 SYSTEM "ch_bus_pay.xml">
+<!ENTITY appendixa SYSTEM "appendixa.xml">
+<!ENTITY appendixb SYSTEM "appendixb.xml">
+<!ENTITY appendixc SYSTEM "appendixc.xml">
+<!ENTITY legal SYSTEM "legal.xml">
+<!ENTITY GFDL SYSTEM "fdl-appendix.xml">
+<!ENTITY manrevision "1.8.4">
+<!ENTITY date "11th April 2004">
+<!ENTITY app "GnuCash">
+]>
+<!--
+      (Do not remove this comment block.)
+  Template Maintained by the GNOME Documentation Project:
+	  http://developer.gnome.org/projects/gdp
+  Template version: 2.0 beta
+  Template last modified Feb 12, 2002
+
+-->
+<!--
+      (Do not remove this comment block.)
+  Version: 1.8.4
+  Last modified: April 11th, 2004
+  Maintainers:
+               Chris Lyttle   <chris at wilddev.net)
+  Translators:
+               (translators put your name and email here)
+-->
+<book label="index">
+<!-- please do not change the id; for translations, change lang to -->
+<!-- appropriate code -->
+ <bookinfo>
+  <title>&app; Tutorial and Concepts Guide</title>
+  <edition>V&manrevision;</edition>
+
+  <copyright>
+   <year>2003-2004</year>
+   <holder>Jon Lapham</holder>
+  </copyright>
+
+  <copyright>
+   <year>2002</year>
+   <holder>Chris Lyttle</holder>
+  </copyright>
+
+  <copyright>
+   <year>2001</year>
+   <holder>Carol Champagne and Chris Lyttle</holder>
+  </copyright>
+
+ <!-- translators: uncomment this:
+
+  <copyright>
+   <year>2000</year>
+   <holder>ME-THE-TRANSLATOR (Latin translation)</holder>
+  </copyright>
+
+   -->
+
+    <publisher>
+       <publishername> GnuCash Documentation Team </publishername>
+    </publisher>
+
+    &legal;
+
+  <authorgroup>
+
+    <author>
+     <firstname>Carol</firstname>
+     <surname>Champagne</surname>
+     <authorblurb>
+      <para>
+       <email>carol at io.com</email>
+      </para>
+     </authorblurb>
+    </author>
+
+    <author>
+     <firstname>Chris</firstname>
+     <surname>Lyttle</surname>
+     <affiliation>
+          <orgname>GnuCash Documentation Team</orgname>
+          <address> <email>chris at wilddev.net</email> </address>
+     </affiliation>
+    </author>
+
+    <author>
+     <firstname>Jon</firstname>
+     <surname>Lapham</surname>
+     <affiliation>
+          <orgname>GnuCash Documentation Team</orgname>
+          <address> <email>lapham at extracta.com.br</email> </address>
+     </affiliation>
+    </author>
+
+<!-- This is appropriate place for other contributors: translators,
+      maintainers,  etc. Commented out by default.
+       <othercredit role="translator">
+        <firstname>Latin</firstname>
+        <surname>Translator 1</surname>
+        <affiliation>
+          <orgname>Latin Translation Team</orgname>
+          <address> <email>translator at gnome.org</email> </address>
+        </affiliation>
+        <contrib>Latin translation</contrib>
+      </othercredit>
+-->
+
+  </authorgroup>
+
+  <revhistory>
+      <revision>
+        <revnumber>&app; Tutorial and Concepts Guide V&manrevision;</revnumber>
+        <date>&date;</date>
+        <revdescription>
+          <para role="author">Jon Lapham
+            <email>lapham at extracta.com.br</email>
+          </para>
+          <para role="publisher">GnuCash Documentation Team</para>
+        </revdescription>
+      </revision>
+      <revision>
+        <revnumber>GnuCash Tutorial and Concepts Guide V1.8.3</revnumber>
+        <date>Aug 2003</date>
+        <revdescription>
+          <para role="author">Jon Lapham
+            <email>lapham at extracta.com.br</email>
+          </para>
+          <para role="publisher">GnuCash Documentation Team</para>
+        </revdescription>
+      </revision>
+      <revision>
+        <revnumber>GnuCash Tutorial and Concepts Guide V1.8.2</revnumber>
+        <date>Aug 2003</date>
+        <revdescription>
+          <para role="author">Jon Lapham
+            <email>lapham at extracta.com.br</email>
+          </para>
+          <para role="publisher">GnuCash Documentation Team</para>
+        </revdescription>
+      </revision>
+      <revision>
+        <revnumber>GnuCash Tutorial and Concepts Guide V1.8.1</revnumber>
+        <date>May 2003</date>
+        <revdescription>
+          <para role="author">Chris Lyttle
+            <email>chris at wilddev.net</email>
+          </para>
+          <para role="publisher">GnuCash Documentation Team</para>
+        </revdescription>
+      </revision>
+      <revision>
+        <revnumber>GnuCash Tutorial and Concepts Guide V1.8.0</revnumber>
+        <date>Jan 2003</date>
+        <revdescription>
+          <para role="author">Chris Lyttle
+            <email>chris at wilddev.net</email>
+          </para>
+          <para role="publisher">GnuCash Documentation Team</para>
+        </revdescription>
+      </revision>
+      <revision>
+        <revnumber>GnuCash User Guide V1.6.5</revnumber>
+        <date>June 2002</date>
+        <revdescription>
+          <para role="author">Chris Lyttle
+            <email>chris at wilddev.net</email>
+          </para>
+          <para role="publisher">GnuCash Documentation Team</para>
+        </revdescription>
+      </revision>
+      <revision>
+        <revnumber>GnuCash User Guide V1.6.0</revnumber>
+        <date>October 2001</date>
+        <revdescription>
+          <para role="author">Carol Champagne
+            <email>carol at io.com</email>
+          </para>
+          <para role="publisher">GnuCash Documentation Team</para>
+        </revdescription>
+      </revision>
+    </revhistory>
+
+  <releaseinfo>
+   This Guide contains a tutorial for using GnuCash and describes the concepts
+   behind GnuCash.
+  </releaseinfo>
+  <legalnotice>
+    <title>Feedback</title>
+      <para>To report a bug or make a suggestion regarding this package or
+        this manual, follow the directions at the
+        <ulink url="http://bugzilla.gnome.org"
+          >GNOME Bug Tracking System</ulink>.
+      </para>
+<!-- Translators may also add here feedback address for translations -->
+  </legalnotice>
+
+</bookinfo>
+
+&chapter1;
+&chapter2;
+&chapter3;
+&chapter4;
+&chapter5;
+&chapter6;
+&chapter7;
+&chapter8;
+&chapter9;
+&chapter10;
+&chapter11;
+&chapter12;
+&chapter13;
+&chapter14;
+&appendixa;
+&appendixb;
+&appendixc;
+
+&GFDL;
+
+</book>
--- /dev/null
+++ help/C/usage.xml
@@ -0,0 +1,3742 @@
+<!--
+      (Do not remove this comment block.)
+  Version: 1.8.4
+  Last modified: February 28th 2005
+  Maintainers:
+               Chris Lyttle <chris at wilddev.net>
+               Neil Williams <linux at codehelp.co.uk>
+
+Note: For PDF generation using SGML, <entry> should
+not be followed by a newline. (?)(Don't ask!). :-(
+
+  Author:
+  		Jon Lapham <lapham at extracta.com.br>
+  Originally written by Carol Champagne.
+  Translators:
+               (translators put your name and email here)
+-->
+  <chapter id="usage">
+    <title>Usage</title>
+    <sect1 id="windows">
+      <title>GnuCash Windows</title>
+      <para></para>
+      <para>GnuCash windows display the accounts and tools you use to access your financial data. This section gives you an overview of the different windows you will see in GnuCash.</para>
+      <sect2 id="account-tree">
+        <title>Account Tree Window</title>
+        <para></para>
+        <para>This window provides an overview of all your accounts and a summary of their balances. It groups the accounts into types based on standard accounting practice. Access to commonly used windows and account tools is through this window.</para>
+        <para></para>
+        <para>To reopen the Account Tree if you have closed it or to open an additional Account Tree go to File -&gt; New Account Tree. This will open the account tree in the existing window</para>
+        <para></para>
+        <para>To open a new window with an Account Tree go to File -&gt; Open in a New Window. Figure ? shows an Account Tree Window.</para>
+        <para></para>
+        <para></para>
+        <para>Table 2 describes the components of the Account Tree Window.</para>
+        <para></para>
+        <table frame="topbot" id="Table2">
+    <title></title>
+          <tgroup cols="2">
+            <thead>
+              <row>
+                <entry><para>Component</para></entry>
+                <entry><para>Description</para></entry>
+              </row>
+            </thead>
+            <tbody>
+              <row>
+                <entry><para>Menubar</para></entry>
+                <entry><para>Contains the Menus used in the Account Tree Window
+                </para></entry>
+              </row>
+              <row>
+                <entry><para>Tool Bar</para></entry>
+                <entry><para>Contains buttons used to access common Account
+                Tree tasks</para></entry>
+              </row>
+              <row>
+                <entry><para>Summary Bar</para></entry>
+                <entry><para>Contains Summary of Financial Data</para></entry>
+              </row>
+              <row>
+                <entry><para>Account Tree </para></entry>
+                <entry><para>Contains the Chart of Accounts</para></entry>
+              </row>
+              <row>
+                <entry><para>Status Bar</para></entry>
+                <entry><para>Contains a short description of Menu items
+                and a progress bar</para></entry>
+              </row>
+            </tbody>
+          </tgroup>
+        </table>
+        <para></para>
+        <sect3 id="tree-menus">
+          <title>Menus</title>
+          <para></para>
+          <para>The following tables describe the menus in the Account Tree Window.</para>
+          <para></para>
+          <para>Table 3: File Menu - Access to file and account operations and printing.</para>
+          <para></para>
+          <table frame="topbot" id="Table3">
+    <title></title>
+            <tgroup cols="2">
+              <thead>
+                <row>
+                  <entry><para>Menu Item</para></entry>
+                  <entry><para>Description</para></entry>
+                </row>
+              </thead>
+              <tbody>
+                <row>
+                  <entry><para>New File</para></entry>
+                  <entry><para>Starts the New Account Hierarchy Setup Druid and creates a new file</para></entry>
+                </row>
+                <row>
+                  <entry><para>New Account...</para></entry>
+                  <entry><para>Creates a New Account and opens account properties</para></entry>
+                </row>
+                <row>
+                  <entry><para>New Account Tree </para></entry>
+                  <entry><para>Opens a new instance of the Account Tree view</para></entry>
+                </row>
+                <row>
+                  <entry><para>Open...</para></entry>
+                  <entry><para>Opens a different GnuCash file. Menu shortcut F3</para></entry>
+                </row>
+                <row>
+                  <entry><para>Open Account </para></entry>
+                  <entry><para>When an account is selected in the Account Tree opens the register for that account. Menu Shortcut Ctrl-O</para></entry>
+                </row>
+                <row>
+                  <entry><para>Open Sub-Accounts</para></entry>
+                  <entry><para>When an account is selected in the Account Tree opens a General Ledger register for that account and all subaccounts</para></entry>
+                </row>
+                <row>
+                  <entry><para>Open in a New Window</para></entry>
+                  <entry><para>Opens a new Account Tree Window using the current account tree or report.</para></entry>
+                </row>
+                <row>
+                  <entry><para>Open Recent</para></entry>
+                  <entry><para>Opens one of a list of the four most recently opened account files</para></entry>
+                </row>
+                <row>
+                  <entry><para>Save</para></entry>
+                  <entry><para>Saves the currently open file. Menu shortcut Ctrl-S</para></entry>
+                </row>
+                <row>
+                  <entry><para>Save As...</para></entry>
+                  <entry><para>Saves the currently opened file with a different name</para></entry>
+                </row>
+                <row>
+                  <entry><para>Import -&gt; Import QIF File</para></entry>
+                  <entry><para>Starts the Import QIF Files druid to import files from other financial programs.</para></entry>
+                </row>
+                <row>
+                  <entry><para>Export -&gt; Export Accounts</para></entry>
+                  <entry><para>Exports your account hierarchy to a new file. Does not export data.</para></entry>
+                </row>
+                <row>
+                  <entry><para>Print</para></entry>
+                  <entry><para>Prints reports</para></entry>
+                </row>
+                <row>
+                  <entry><para>Properties</para></entry>
+                  <entry><para>Sets options for this file.</para></entry>
+                </row>
+                <row>
+                  <entry><para>Close</para></entry>
+                  <entry><para>Closes the current open account tree or report. Menu shortcut Ctrl-W</para></entry>
+                </row>
+                <row>
+                  <entry><para>Exit</para></entry>
+                  <entry><para>Exits GnuCash. Menu shortcut Ctrl-Q</para></entry>
+                </row>
+              </tbody>
+            </tgroup>
+          </table>
+          <para></para>
+          <para>Table 4: Edit Menu - Access to file and account editing operations and preferences.</para>
+          <para></para>
+          <table frame="topbot" id="Table4">
+    <title></title>
+            <tgroup cols="2">
+              <thead>
+                <row>
+                  <entry><para>Menu Item</para></entry>
+                  <entry><para>Description</para></entry>
+                </row>
+              </thead>
+              <tbody>
+                <row>
+                  <entry><para>Cut</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Copy</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Paste</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Edit Account</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Delete Account</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Preferences...</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Style Sheets...</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Tax Options</para></entry>
+                  <entry><para></para></entry>
+                </row>
+              </tbody>
+            </tgroup>
+          </table>
+          <para></para>
+          <para>Table 5: View Menu - Changes Account Tree Window view.</para>
+          <para></para>
+          <table frame="topbot" id="Table5">
+    <title></title>
+            <tgroup cols="2">
+              <thead>
+                <row>
+                  <entry><para>Menu Item</para></entry>
+                  <entry><para>Description</para></entry>
+                </row>
+              </thead>
+              <tbody>
+                <row>
+                  <entry><para>Refresh</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Toolbar</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Summary Bar</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Status Bar</para></entry>
+                  <entry><para></para></entry>
+                </row>
+              </tbody>
+            </tgroup>
+          </table>
+          <para></para>
+          <para>Table 6: Actions Menu - Setup scheduled transactions, repair accounts, perform stock splits,transfer and reconcile transactions.</para>
+          <para></para>
+          <table frame="topbot" id="Table6">
+    <title></title>
+            <tgroup cols="2">
+              <thead>
+                <row>
+                  <entry><para>Menu Item</para></entry>
+                  <entry><para>Description</para></entry>
+                </row>
+              </thead>
+              <tbody>
+                <row>
+                  <entry><para>Scheduled Transactions -&gt; Scheduled Transaction Editor</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Scheduled Transactions -&gt;Since Last Run...</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Scheduled Transactions -&gt; Mortgage &amp; Loan Repayment Setup</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Transfer...</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Reconcile...</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Stock Split...</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Check &amp; Repair -&gt; Check &amp; Repair Account</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Check &amp; Repair -&gt; Check &amp; Repair Subaccounts</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Check &amp; Repair -&gt; Check &amp; Repair All</para></entry>
+                  <entry><para></para></entry>
+                </row>
+              </tbody>
+            </tgroup>
+          </table>
+          <para></para>
+          <para>Table 7: Business Menu - Access small business features of GnuCash.</para>
+          <para></para>
+          <table frame="topbot" id="Table7">
+    <title></title>
+            <tgroup cols="2">
+              <thead>
+                <row>
+                  <entry><para>Menu Item</para></entry>
+                  <entry><para>Description</para></entry>
+                </row>
+              </thead>
+              <tbody>
+                <row>
+                  <entry><para>Customers -&gt; New Customer</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Customers -&gt; Find Customer</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Customers -&gt; New Invoice</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Customers -&gt; Find Invoice</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Customers -&gt; New Job</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Customers -&gt; Find Job</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Customers -&gt; Process Payment</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Vendors -&gt; New Vendor</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Vendors -&gt; Find Vendor</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Vendors -&gt; New Bill</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Vendors -&gt; Find Bill</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Vendors -&gt; New Job</para></entry>
+                  <entry><para></para></entry> </row>
+                <row>
+                  <entry><para>Vendors -&gt; Find Job</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Vendors -&gt; Process Payment</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Tax Tables</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Billing Terms</para></entry>
+                  <entry><para></para></entry>
+                </row>
+              </tbody>
+            </tgroup>
+          </table>
+          <para></para>
+          <para>Table 8: Reports Menu - Access GnuCash Reports and Charts.</para>
+          <para></para>
+          <table frame="topbot" id="Table8">
+    <title></title>
+            <tgroup cols="2">
+              <thead>
+                <row>
+                  <entry><para>Menu Item</para></entry>
+                  <entry><para>Description</para></entry>
+                </row>
+              </thead>
+              <tbody>
+                <row>
+                  <entry><para>Account Summary</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Tax Report &amp; TXF Export</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Transaction Report</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Sample &amp; Custom -&gt; Welcome Sample Report</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Sample &amp; Custom -&gt; Custom Multicolumn Report</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Sample &amp; Custom -&gt; Custom Web Report</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Sample &amp; Custom -&gt; Sample Report With Examples</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Assets &amp; Liabilities -&gt; Advanced Portfolio</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Assets &amp; Liabilities -&gt; Asset Barchart</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Assets &amp; Liabilities -&gt; Asset Piechart</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Assets &amp; Liabilities -&gt; Average Balance</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Assets &amp; Liabilities -&gt; Balance Sheet</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Assets &amp; Liabilities -&gt; Investment Portfolio</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Assets &amp; Liabilities -&gt; Liability Barchart</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Assets &amp; Liabilities -&gt; Liability Piechart</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Assets &amp; Liabilities -&gt; Net Worth Barchart</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Assets &amp; Liabilities -&gt; Price Scatterplot</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Income &amp; Expense -&gt; Expense Barchart</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Income &amp; Expense -&gt; Expense Piechart</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Income &amp; Expense -&gt; Income &amp; Expense Chart</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Income &amp; Expense -&gt; Income Barchart</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Income &amp; Expense -&gt; Income Piechart</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Income &amp; Expense -&gt; Profit &amp; Loss</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Business Reports -&gt; Customer Report</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Business Reports -&gt; Payable Aging</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Business Reports -&gt; Printable Invoice</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Business Reports -&gt; Receivable Aging</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Business Reports -&gt; Vendor Report</para></entry>
+                  <entry><para></para></entry>
+                </row>
+              </tbody>
+            </tgroup>
+          </table>
+          <para></para>
+          <para>Table 9: Tools Menu - Access to miscellaneous tools and editors</para>
+          <para></para>
+          <table frame="topbot" id="Table9">
+    <title></title>
+            <tgroup cols="2">
+              <thead>
+                <row>
+                  <entry><para>Menu Item</para></entry>
+                  <entry><para>Description</para></entry>
+                </row>
+              </thead>
+              <tbody>
+                <row>
+                  <entry><para>General Ledger</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Price Editor</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Commodity Editor</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Financial Calculator</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Find Transactions</para></entry>
+                  <entry><para></para></entry>
+                </row>
+              </tbody>
+            </tgroup>
+          </table>
+          <para></para>
+          <para>Table 10: Help Menu - Access to this help and the GnuCash Tutorial and Concepts Guide.</para>
+          <para></para>
+          <table frame="topbot" id="Table10">
+    <title></title>
+            <tgroup cols="2">
+              <thead>
+                <row>
+                  <entry><para>Menu Item</para></entry>
+                  <entry><para>Description</para></entry>
+                </row>
+              </thead>
+              <tbody>
+                <row>
+                  <entry><para>GnuCash Tutorial &amp; Concepts Guide</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Tips Of The Day</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Help</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>About...</para></entry>
+                  <entry><para></para></entry>
+                </row>
+              </tbody>
+            </tgroup>
+          </table>
+          <para></para>
+        </sect3>
+        <sect3 id="tree-toolbar">
+          <title>Tool Bar Buttons</title>
+          <para></para>
+          <para>The Account Tree Window has a tool bar to access quickly some common functions used with accounts. The Tool Bar can be hidden or shown by selecting the Toolbar item on the View menu.</para>
+          <para></para>
+          <para>Table 11: Account Tree Window Tool Bar</para>
+          <para></para>
+          <table frame="topbot" id="Table11">
+    <title></title>
+            <tgroup cols="2">
+              <thead>
+                <row>
+                  <entry><para>Tool Bar Button</para></entry>
+                  <entry><para>Description</para></entry>
+                </row>
+              </thead>
+              <tbody>
+                <row>
+                  <entry><para>Save</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Close</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Open</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Edit</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Options</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>New</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Delete</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Exit</para></entry>
+                  <entry><para></para></entry>
+                </row>
+              </tbody>
+            </tgroup>
+          </table>
+          <para></para>
+        </sect3>
+        <sect3 id="tree-summary">
+          <title>Summary Bar</title>
+          <para></para>
+          <para>The Summary Bar displays your Net Assets and Profits at a glance. The Summary Bar can be hidden or shown by selecting the Summary Bar item on the View menu.</para>
+        </sect3>
+        <sect3 id="tree-main">
+          <title>Account Tree</title>
+          <para></para>
+          <para>The Account Tree displays the list of your accounts in hierarchical format. This enables you to organize your accounts by account type. </para>
+          <para></para>
+          <para>The boxed plus shape beside the account name is used to open and close the account tree. When you click on the box the plus sign changes into a minus sign to indicate that the tree is opened. You will then see directly below the account name a line leading to either the sub account or another box. This shows you the linked lower level of the account tree. </para>
+          <para></para>
+          <para>The default display for the Account Tree Window is in Notebook mode. This is indicated by the tab on the left side of the Account Tree Window. Other tabs will appear below this one when you open reports and more Account Trees. </para>
+        </sect3>
+        <sect3 id="tree-status">
+          <title>Status Bar</title>
+          <para></para>
+          <para>The Status Bar displays tooltips for the menus that give more
+	    explanation to a menu item. It also shows a progress bar when
+	    opening or saving a GnuCash data file. The Status Bar can be hidden or shown by selecting the Status Bar item on the View menu.</para>
+        </sect3>
+      </sect2>
+      <sect2 id="account-register">
+        <title>Account Register Window</title>
+        <para></para>
+        <para>This window is used to enter and edit your account data. It also provides tools for scheduling future transactions, finding and reporting on transactions and printing checks.</para>
+        <para></para>
+        <para>To open the Account Register Window for an account, select the account in the Account Tree then go to File -&gt; Open Account or press Ctrl-O. This will open a new window with the Account Register. Pressing the Open button on the Tool Bar in the Account Tree Window or the Jump button in the Account Register Window are alternate methods.</para>
+        <para></para>
+        <para>Figure ? shows an Account Register Window.</para>
+        <para></para>
+        <para></para>
+        <para>Table 12 describes the components of the Account Register Window.</para>
+        <para></para>
+        <table frame="topbot" id="Table14">
+    <title></title>
+          <tgroup cols="2">
+            <thead>
+              <row>
+                <entry><para>Component</para></entry>
+                <entry><para>Description</para></entry>
+              </row>
+            </thead>
+            <tbody>
+              <row>
+                <entry><para>Menubar</para></entry>
+                <entry><para>Contains the Menus used in the Account Register Window</para></entry>
+              </row>
+              <row>
+                <entry><para>Tool Bar</para></entry>
+                <entry><para>Contains buttons used to access common Account Register tasks</para></entry>
+              </row>
+              <row>
+                <entry><para>Summary Bar</para></entry>
+                <entry><para>Contains Summary of Financial Data</para></entry>
+              </row>
+              <row>
+                <entry><para>List of Transactions</para></entry>
+                <entry><para>Area where transactions are entered and edited.</para></entry>
+              </row>
+              <row>
+                <entry><para>Status Bar</para></entry>
+                <entry><para>Contains a short description of the different list of transactions areas.</para></entry>
+              </row>
+            </tbody>
+          </tgroup>
+        </table>
+        <para></para>
+        <sect3 id="reg-menus">
+          <title>Menus</title>
+          <para></para>
+          <para>The following tables describe the menus in the Account Register Window.</para>
+          <para></para>
+          <para>Table 13: File Menu - Access to file and account operations and printing.</para>
+          <para></para>
+          <table frame="topbot" id="Table15">
+    <title></title>
+            <tgroup cols="2">
+              <thead>
+                <row>
+                  <entry><para>Menu Item</para></entry>
+                  <entry><para>Description</para></entry>
+                </row>
+              </thead>
+              <tbody>
+                <row>
+                  <entry><para>New Account</para></entry>
+                  <entry><para>Creates a New Account and opens account properties</para></entry>
+                </row>
+                <row>
+                  <entry><para>Save</para></entry>
+                  <entry><para>Saves the currently open file. Menu shortcut Ctrl-S</para></entry>
+                </row>
+                <row>
+                  <entry><para>Save As...</para></entry>
+                  <entry><para>Saves the currently opened file with a different name</para></entry>
+                </row>
+                <row>
+                  <entry><para>Print</para></entry>
+                  <entry><para>Prints the Account Report</para></entry>
+                </row>
+                <row>
+                  <entry><para>Print Check</para></entry>
+                  <entry><para>Prints the selected check</para></entry>
+                </row>
+                <row>
+                  <entry><para>Close</para></entry>
+                  <entry><para>Closes the current open account tree or report. Menu shortcut Ctrl-W</para></entry>
+                </row>
+                <row>
+                  <entry><para>Exit</para></entry>
+                  <entry><para>Exits GnuCash. Menu shortcut Ctrl-Q</para></entry>
+                </row>
+              </tbody>
+            </tgroup>
+          </table>
+          <para></para>
+          <para>Table 14: Edit Menu - Access to account and transaction editing operations and finding transactions.</para>
+          <para></para>
+          <table frame="topbot" id="Table16">
+    <title></title>
+            <tgroup cols="2">
+              <thead>
+                <row>
+                  <entry><para>Menu Item</para></entry>
+                  <entry><para>Description</para></entry>
+                </row>
+              </thead>
+              <tbody>
+                <row>
+                  <entry><para>Cut</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Copy</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Paste</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Edit Account</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Cut Transaction</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Copy Transaction</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Paste Transaction</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Find...</para></entry>
+                  <entry><para></para></entry>
+                </row>
+              </tbody>
+            </tgroup>
+          </table>
+          <para></para>
+          <para>Table 15: View Menu - Changes Account Register Window view.</para>
+          <para></para>
+          <table frame="topbot" id="Table17">
+    <title></title>
+            <tgroup cols="2">
+              <thead>
+                <row>
+                  <entry><para>Menu Item</para></entry>
+                  <entry><para>Description</para></entry>
+                </row>
+              </thead>
+              <tbody>
+                <row>
+                  <entry><para>Toolbar</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Summary Bar</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Status Bar</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Date Range -&gt; Show All</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Date Range -&gt; Set Range</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Sort Order -&gt; Standard</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Sort Order -&gt; Date</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Sort Order -&gt; Date of Entry</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Sort Order -&gt; Statement Date</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Sort Order -&gt; Number</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Sort Order -&gt; Amount</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Sort Order -&gt; Memo</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Sort Order -&gt; Description</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Style -&gt; Basic Ledger</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Style -&gt; Auto-Split Ledger</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Style -&gt; Transaction Journal</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Style -&gt; Double Line</para></entry>
+                  <entry><para></para></entry>
+                </row>
+              </tbody>
+            </tgroup>
+          </table>
+          <para></para>
+          <para>Table 16: Actions Menu - Enter, delete, split and duplicate transactions. Setup scheduled transactions, repair accounts, perform stock splits,transfer and reconcile transactions.</para>
+          <para></para>
+          <table frame="topbot" id="Table18">
+    <title></title>
+            <tgroup cols="2">
+              <thead>
+                <row>
+                  <entry><para>Menu Item</para></entry>
+                  <entry><para>Description</para></entry>
+                </row>
+              </thead>
+              <tbody>
+                <row>
+                  <entry><para>Transfer...</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Reconcile...</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Stock Split...</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Enter</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Cancel</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Delete</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Blank</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Duplicate Transaction...</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Split Transaction</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Schedule...</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Jump</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Check &amp; Repair -&gt; All Transactions</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Check &amp; Repair -&gt; This Transaction</para></entry>
+                  <entry><para></para></entry>
+                </row>
+              </tbody>
+            </tgroup>
+          </table>
+          <para></para>
+          <para>Table 17: Reports Menu - Access GnuCash Reports and Charts.</para>
+          <para></para>
+          <table frame="topbot" id="Table20">
+    <title></title>
+            <tgroup cols="2">
+              <thead>
+                <row>
+                  <entry><para>Menu Item</para></entry>
+                  <entry><para>Description</para></entry>
+                </row>
+              </thead>
+              <tbody>
+                <row>
+                  <entry><para>Account Report</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Transaction Report</para></entry>
+                  <entry><para></para></entry>
+                </row>
+              </tbody>
+            </tgroup>
+          </table>
+          <para></para>
+          <para>Table 18: Tools Menu - Access to miscellaneous tools and editors</para>
+          <para></para>
+          <table frame="topbot" id="Table21">
+    <title></title>
+            <tgroup cols="2">
+              <thead>
+                <row>
+                  <entry><para>Menu Item</para></entry>
+                  <entry><para>Description</para></entry>
+                </row>
+              </thead>
+              <tbody>
+                <row>
+                  <entry><para>General Ledger</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Price Editor</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Commodity Editor</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Financial Calculator</para></entry>
+                  <entry><para></para></entry>
+                </row>
+              </tbody>
+            </tgroup>
+          </table>
+          <para></para>
+          <para>Table 19: Help Menu - Access to this help and the GnuCash Tutorial and Concepts Guide.</para>
+          <para></para>
+          <table frame="topbot" id="Table22">
+    <title></title>
+            <tgroup cols="2">
+              <thead>
+                <row>
+                  <entry><para>Menu Item</para></entry>
+                  <entry><para>Description</para></entry>
+                </row>
+              </thead>
+              <tbody>
+                <row>
+                  <entry><para>GnuCash Tutorial &amp; Concepts Guide</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Tips Of The Day</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Help</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>About...</para></entry>
+                  <entry><para></para></entry>
+                </row>
+              </tbody>
+            </tgroup>
+          </table>
+          <para></para>
+        </sect3>
+        <sect3 id="reg-toolbar">
+          <title>Tool Bar Buttons</title>
+          <para></para>
+          <para>The Account Register Window has a tool bar to access quickly some common functions used with the list of transactions. The Tool Bar can be hidden or shown by selecting the Toolbar item on the View menu.</para>
+          <para></para>
+          <para>Table 20: Account Register Window Tool Bar</para>
+          <para></para>
+          <table frame="topbot" id="Table12">
+    <title></title>
+            <tgroup cols="2">
+              <thead>
+                <row>
+                  <entry><para>Tool Bar Button</para></entry>
+                  <entry><para>Description</para></entry>
+                </row>
+              </thead>
+              <tbody>
+                <row>
+                  <entry><para>Close</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Enter</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Cancel</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Delete</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Duplicate</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Schedule</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Split</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Blank</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Jump</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Transfer</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Find</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Report</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Print</para></entry>
+                  <entry><para></para></entry>
+                </row>
+              </tbody>
+            </tgroup>
+          </table>
+          <para></para>
+        </sect3>
+        <sect3 id="reg-summary">
+          <title>Summary Bar</title>
+          <para></para>
+          <para>The Summary Bar displays balances appropriate for the opened account type at a glance. Usually accounts display today's account balance, any balance for future dates, a balance for cleared items and a reconciled balance. Stock accounts, however, display shares totals and their value. The Summary Bar can be hidden or shown by selecting the Summary Bar item on the View menu.</para>
+        </sect3>
+        <sect3 id="reg-main">
+          <title>List of Transactions</title>
+          <para></para>
+          <para>The List of Transactions displays transactions you have entered and a running balance. It also provides a blank transaction to enter new transactions. The column headings vary according to what type of account you have opened. Common headings are Date, Description, Transfer and Balance.</para>
+          <para></para>
+          <para>The View menu can be used to alter the appearance of the List of Transactions. Possible changes are limiting the number of transactions shown, using a different sort order and changing the style to more easily see transactions. The split button also provides quick access to view all the parts of a transaction.</para>
+        </sect3>
+        <sect3 id="reg-status">
+          <title>Status Bar</title>
+          <para></para>
+          <para>The Status Bar displays a short description when different fields are selected in the list of transactions. The Status Bar can be hidden or shown by selecting the Status Bar item on the View menu.</para>
+        </sect3>
+        <sect3 id="reg-gl">
+          <title>General Ledger</title>
+          <para></para>
+          <para>The General Ledger is an advanced register used to enter transactions without needing to open individual accounts. The General Ledger shows the transaction entries for all accounts on one register.</para>
+          <para></para>
+          <para>Entering transactions in the General Ledger is more complicated than entering them in the individual account registers. The advantage is the General Ledger provides a more comprehensive view of the transactions you have entered in all your accounts.</para>
+          <para></para>
+          <para>The General Ledger defaults to showing only the previous month of transactions. This is changeable by using the Date Range on the View menu.</para>
+        </sect3>
+      </sect2>
+      <sect2 id="report-win">
+        <title>Report Window</title>
+        <para></para>
+        <para>This window is shown whenever a report or chart is selected from the Reports menu. It provides a web browser type display with clickable links to account data.</para>
+        <para></para>
+        <para>At this time all the functions of the report window are accessed through Tool Bar buttons.</para>
+        <sect3 id="report-toolbar">
+          <title>Tool Bar Buttons</title>
+          <para></para>
+          <para>The Report Window has a tool bar to access quickly the functions used with reports. The Tool Bar can be hidden or shown by selecting the Toolbar item on the View menu.</para>
+          <para></para>
+          <para>Table 21: Report Window Tool Bar</para>
+          <para></para>
+          <table frame="topbot" id="Table13">
+    <title></title>
+            <tgroup cols="2">
+              <thead>
+                <row>
+                  <entry><para>Tool Bar Button</para></entry>
+                  <entry><para>Description</para></entry>
+                </row>
+              </thead>
+              <tbody>
+                <row>
+                  <entry><para>Save</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Close</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Back</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Forward</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Reload</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Stop</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Export</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Options</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Print</para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Exit</para></entry>
+                  <entry><para></para></entry>
+                </row>
+              </tbody>
+            </tgroup>
+          </table>
+          <para></para>
+        </sect3>
+        <sect3 id="report-main">
+          <title>Report</title>
+          <para></para>
+          <para>This is where the report or chart you have selected is shown. The properties of this window are editable in two ways. Selecting the Options button on the toolbar lets you edit what the report is showing and which accounts the information is drawn from. Selecting Edit -&gt; Style Sheets... lets you select the properties of the web page that displays your report.</para>
+          <para></para>
+          <para>The report is able to act like a web browser if your report contains links to external web pages. The toolbar buttons allow you to move back and forward through web pages. It will also open account information in the register window when you click on links contained in the report.</para>
+          <para></para>
+          <para>You can also save your report to a file and print the report through the toolbar buttons.</para>
+        </sect3>
+      </sect2>
+      <sect2 id="tool-win">
+        <title>Tool Windows</title>
+        <para></para>
+        <para>There are several specialized Tool Windows used in GnuCash. These windows provide additional functions to the basic account register.</para>
+        <para></para>
+        <para>To access the Scheduled Transaction Editor go to Actions -&gt; Scheduled Transactions -&gt; Scheduled Transaction Editor. To access the Reconcile Window go to Actions -&gt; Reconcile... (menu shortcut Ctrl-R). The other Tools are accessed by going to the Tools menu.</para>
+        <sect3 id="tool-sched">
+          <title>Scheduled Transaction Editor</title>
+          <para></para>
+          <para>The Scheduled Transaction Editor is used to create and edit transactions that are to be added to the register in an automated way. This is combined with the Since Last Run druid to review and enter the transactions.</para>
+          <para></para>
+          <sect4 id="sched-win">
+            <title>Scheduled Transactions Window</title>
+            <para></para>
+            <para>The top pane of the Scheduled Transaction Window contains the list of scheduled transactions that are currently setup. This window lists the Name of the transaction, the Frequency that the transaction is entered and the next time the transaction will be entered.</para>
+            <para></para>
+            <para>The right side of this window contains three buttons to create and edit scheduled transactions. New and Edit opens the Edit Scheduled Transaction dialog. Delete removes the selected scheduled transaction.</para>
+            <para></para>
+            <para>Below the list of scheduled transactions is the Upcoming calendar. This mini calendar lists the dates that the scheduled transactions occur so it is easy to see when the transaction next occurs. Clicking on a date in the calendar brings up a list of scheduled transactions for that date. Moving the mouse over other dates changes to the list of transactions on those dates. Clicking once more on the calendar removes the transaction list.</para>
+          </sect4>
+          <sect4 id="sched-edit">
+            <title>Edit Scheduled Transaction Window</title>
+            <para></para>
+            <para>The Edit Scheduled Transaction Window is divided into a Name area, Options pane, End pane, Recurrance Frequency pane, mini calendar and Template Transaction pane.</para>
+            <para></para>
+            <para>The Options pane contains checkboxes to set if the transaction is automatically created and how many days in advance the transaction is created or a reminder posted.</para>
+            <para></para>
+            <para>The End pane contains selections to set for how long the transaction is entered and the number of </para>
+            <para></para>
+            <para>The Recurrance Frequency pane contains selections to set how often the transaction is scheduled to be added and on what dates this occurs.</para>
+            <para></para>
+            <para>The mini calendar provides a visual indication of what transactions are already scheduled.</para>
+            <para></para>
+            <para>The Template Transaction pane allows you to setup the transaction as you would like it to be entered into the register.</para>
+            <para></para>
+            <para>These options are described in more detail in the To Schedule Transactions section of </para>
+          </sect4>
+        </sect3>
+        <sect3 id="tool-reconcile">
+          <title>Reconcile Window</title>
+          <para></para>
+          <para>The Reconcile Window is used to reconcile bank statements to GnuCash accounts. It provides access to various GnuCash functions to make it easy to enter and update account information during the reconciliation.</para>
+          <para></para>
+          <para>The Reconcile Window is accessed in the Account Tree Window by going to Actions -&gt; Reconcile... (menu shortcut Ctrl-R). In the Account Register Window it is accessed by going to Actions -&gt; Reconcile...</para>
+          <para></para>
+          <para>Figure ? shows an Reconcile Window.</para>
+          <para></para>
+          <para></para>
+          <para>Table 22 describes the components of the Reconcile Window.</para>
+          <para></para>
+          <table frame="topbot" id="Table26">
+    <title></title>
+            <tgroup cols="2">
+              <thead>
+                <row>
+                  <entry><para>Component</para></entry>
+                  <entry><para>Description</para></entry>
+                </row>
+              </thead>
+              <tbody>
+                <row>
+                  <entry><para>Menubar</para></entry>
+                  <entry><para>Contains the Menus used in the Reconcile Window.</para></entry>
+                </row>
+                <row>
+                  <entry><para>Tool Bar</para></entry>
+                  <entry><para>Contains buttons used to access common Reconcile Window tasks.</para></entry>
+                </row>
+                <row>
+                  <entry><para>Funds In</para></entry>
+                  <entry><para>Contains a list of funds deposited in the account.</para></entry>
+                </row>
+                <row>
+                  <entry><para>Funds Out</para></entry>
+                  <entry><para>Contains a list of funds withdrawn from the account.</para></entry>
+                </row>
+                <row>
+                  <entry><para>Balance Pane</para></entry>
+                  <entry><para>Contains a list of balances to use in reconciling.</para></entry>
+                </row>
+              </tbody>
+            </tgroup>
+          </table>
+          <para></para>
+          <sect4 id="rec-menus">
+            <title>Menus</title>
+            <para></para>
+            <para>The following tables describe menus in the Reconcile Window.</para>
+            <para></para>
+            <para>Table 23: Reconcile Menu - Access to Reconcile Information and finishing or postponing.</para>
+            <para></para>
+            <table frame="topbot" id="Table27">
+    <title></title>
+              <tgroup cols="2">
+                <thead>
+                  <row>
+                    <entry><para>Menu Item</para></entry>
+                    <entry><para>Description</para></entry>
+                  </row>
+                </thead>
+                <tbody>
+                  <row>
+                    <entry><para>Reconcile Information</para></entry>
+                    <entry><para></para></entry>
+                  </row>
+                  <row>
+                    <entry><para>Finish</para></entry>
+                    <entry><para></para></entry>
+                  </row>
+                  <row>
+                    <entry><para>Postpone</para></entry>
+                    <entry><para></para></entry>
+                  </row>
+                  <row>
+                    <entry><para>Cancel</para></entry>
+                    <entry><para></para></entry>
+                  </row>
+                </tbody>
+              </tgroup>
+            </table>
+            <para></para>
+            <para>Table 24: Account Menu - Access to account operations.</para>
+            <para></para>
+            <table frame="topbot" id="Table28">
+    <title></title>
+              <tgroup cols="2">
+                <thead>
+                  <row>
+                    <entry><para>Menu Item</para></entry>
+                    <entry><para>Description</para></entry>
+                  </row>
+                </thead>
+                <tbody>
+                  <row>
+                    <entry><para>Open Account</para></entry>
+                    <entry><para></para></entry>
+                  </row>
+                  <row>
+                    <entry><para>Edit Account</para></entry>
+                    <entry><para></para></entry>
+                  </row>
+                  <row>
+                    <entry><para>Transfer...</para></entry>
+                    <entry><para></para></entry>
+                  </row>
+                  <row>
+                    <entry><para>Check </para></entry>
+                    <entry><para></para></entry>
+                  </row>
+                </tbody>
+              </tgroup>
+            </table>
+            <para></para>
+            <para>Table 25: Transaction Menu - Access to transaction editing operations.</para>
+            <para></para>
+            <table frame="topbot" id="Table29">
+    <title></title>
+              <tgroup cols="2">
+                <thead>
+                  <row>
+                    <entry><para>Menu Item</para></entry>
+                    <entry><para>Description</para></entry>
+                  </row>
+                </thead>
+                <tbody>
+                  <row>
+                    <entry><para>New</para></entry>
+                    <entry><para></para></entry>
+                  </row>
+                  <row>
+                    <entry><para>Edit</para></entry>
+                    <entry><para></para></entry>
+                  </row>
+                  <row>
+                    <entry><para>Delete</para></entry>
+                    <entry><para></para></entry>
+                  </row>
+                </tbody>
+              </tgroup>
+            </table>
+            <para></para>
+            <para>Table 26: Help Menu - Access to help.</para>
+            <para></para>
+            <table frame="topbot" id="Table30">
+    <title></title>
+              <tgroup cols="2">
+                <thead>
+                  <row>
+                    <entry><para>Menu Item</para></entry>
+                    <entry><para>Description</para></entry>
+                  </row>
+                </thead>
+                <tbody>
+                  <row>
+                    <entry><para>Help</para></entry>
+                    <entry><para></para></entry>
+                  </row>
+                </tbody>
+              </tgroup>
+            </table>
+            <para></para>
+          </sect4>
+          <sect4 id="rec-toolbar">
+            <title>Tool Bar Buttons</title>
+            <para></para>
+            <para>The Reconcile Window has a tool bar to access quickly some common functions used with reconciliation.</para>
+            <para></para>
+            <para>Table 27: Reconcile Window Tool Bar</para>
+            <para></para>
+            <table frame="topbot" id="Table31">
+    <title></title>
+              <tgroup cols="2">
+                <thead>
+                  <row>
+                    <entry><para>Tool Bar Button</para></entry>
+                    <entry><para>Description</para></entry>
+                  </row>
+                </thead>
+                <tbody>
+                  <row>
+                    <entry><para>New</para></entry>
+                    <entry><para></para></entry>
+                  </row>
+                  <row>
+                    <entry><para>Edit</para></entry>
+                    <entry><para></para></entry>
+                  </row>
+                  <row>
+                    <entry><para>Delete</para></entry>
+                    <entry><para></para></entry>
+                  </row>
+                  <row>
+                    <entry><para>Open</para></entry>
+                    <entry><para></para></entry>
+                  </row>
+                  <row>
+                    <entry><para>Finish</para></entry>
+                    <entry><para></para></entry>
+                  </row>
+                </tbody>
+              </tgroup>
+            </table>
+            <para></para>
+          </sect4>
+          <sect4 id="rec-main">
+            <title>Reconciling Window</title>
+            <para></para>
+            <para>The Funds In pane shows all unreconciled deposits to the account.</para>
+            <para></para>
+            <itemizedlist>
+              <listitem>
+                <para>Date: The date of the unreconciled transaction.</para>
+              </listitem>
+              <listitem>
+                <para>Num: The number of the unreconciled transaction.</para>
+              </listitem>
+              <listitem>
+                <para>Description: The Description of the unreconciled transaction.</para>
+              </listitem>
+              <listitem>
+                <para>Amount: The Amount of the unreconciled transaction.</para>
+              </listitem>
+              <listitem>
+                <para>R: Shows a green tick if the transaction will be reconciled when done.</para>
+              </listitem>
+            </itemizedlist>
+            <para></para>
+            <para>The Funds Out pane shows all unreconciled expenses from the account.</para>
+            <para></para>
+            <itemizedlist>
+              <listitem>
+                <para>Date: The date of the unreconciled transaction.</para>
+              </listitem>
+              <listitem>
+                <para>Num: The number of the unreconciled transaction.</para>
+              </listitem>
+              <listitem>
+                <para>Description: The Description of the unreconciled transaction.</para>
+              </listitem>
+              <listitem>
+                <para>Amount: The Amount of the unreconciled transaction.</para>
+              </listitem>
+              <listitem>
+                <para>R: Shows a green tick if the transaction will be reconciled when done.</para>
+              </listitem>
+            </itemizedlist>
+            <para></para>
+            <para>The Balance pane shows the balances used in reconciliation.</para>
+            <para></para>
+            <itemizedlist>
+              <listitem>
+                <para>Starting Balance: The balance at the end of the last reconciliation.</para>
+              </listitem>
+              <listitem>
+                <para>Ending Balance: The balance entered from the statement.</para>
+              </listitem>
+              <listitem>
+                <para>Reconciled Balance: The balance of selected transactions.</para>
+              </listitem>
+              <listitem>
+                <para>Difference: The difference between the Reconciled and Ending Balances.</para>
+              </listitem>
+            </itemizedlist>
+            <para></para>
+          </sect4>
+        </sect3>
+        <sect3 id="tool-price">
+          <title>Price Editor</title>
+          <para></para>
+          <para>The Price Editor is used to track the value of currency, mutual fund and stock type accounts. It provides a unified interface to updating the values of these commodities and is able to update manually or through online quotes.</para>
+          <para></para>
+          <para>Each entry in the editor shows a record of a commodity price:</para>
+          <para></para>
+          <itemizedlist>
+            <listitem>
+              <para>
+                <emphasis>Commodity: </emphasis>The commodity being priced.
+              </para>
+            </listitem>
+            <listitem>
+              <para>
+                <emphasis>Currency: </emphasis>The currency the price is recorded in.
+              </para>
+            </listitem>
+            <listitem>
+              <para>
+                <emphasis>Date: </emphasis>The date the price was recorded.
+              </para>
+            </listitem>
+            <listitem>
+              <para>
+                <emphasis>Source: </emphasis>The source of the commodities price quote. Typically, this will be either "user:price-editor", indicating you entered it directly, or "Finance::Quote", indicating that it was retrieved from an online source by the Finance::Quote module.
+              </para>
+            </listitem>
+            <listitem>
+              <para>
+                <emphasis>Type: </emphasis>There are several different types of stock price quotes.
+              </para>
+            </listitem>
+            <listitem>
+              <para>
+                <emphasis>Bid: </emphasis>Indicates what a specialist dealer is prepared to pay for a stock.
+              </para>
+            </listitem>
+            <listitem>
+              <para>
+                <emphasis>Ask: </emphasis>Indicates at what price the dealers are prepared to sell a stock.
+              </para>
+            </listitem>
+            <listitem>
+              <para>
+                <emphasis>Last: </emphasis>Indicate the price at which the last trade in that stock/security occurred at. This is the price most commonly quoted in the media.
+              </para>
+            </listitem>
+            <listitem>
+              <para>
+                <emphasis>Net Asset Value: </emphasis>Are typically used for mutual funds. They are calculated on the net value of the fund's assets.
+              </para>
+            </listitem>
+            <listitem>
+              <para>
+                <emphasis>Unknown: </emphasis>Use this if the type of price quoted is not known.
+              </para>
+            </listitem>
+            <listitem>
+              <para>
+                <emphasis>Price: </emphasis>The actual price of the commodity.
+              </para>
+            </listitem>
+          </itemizedlist>
+          <para></para>
+          <para>To add a new price, click on Add, and enter the details of the price into the dialog box. To edit an existing price, select the price in the price list, click the Edit button, and edit the figures.</para>
+          <para></para>
+          <para>To remove just one price, select the price and click the Remove button. If you want to remove all prices older than a certain time, click on the Remove Old... button and enter the details in the dialog box.</para>
+          <para></para>
+          <para>To support online quotations for a particular stock or mutual fund account, you must first enable online price quoting and select a price source. This is described in detail in the To Create a New Account section of Setting up And Editing Accounts. Once online quotes are enabled, you can update prices for your stocks and mutual funds by clicking the Get Quotes button.</para>
+        </sect3>
+        <sect3 id="tool-commodity">
+          <title>Commodity Editor</title>
+          <para></para>
+          <para>The Commodity Editor is used to create and edit commodities that are used by mutual fund and stock type accounts. It also shows the details of National Currencies that are used by GnuCash.</para>
+          <para></para>
+          <para>Each entry in the editor shows the details used by the commodity:</para>
+          <para></para>
+          <itemizedlist>
+            <listitem>
+              <para>Type: Indicates for stocks the exchange on which a stock is traded. For mutual funds use the FUND type. If your commodity is not of one of these types, you can create a new type by typing it in the box. For national currencies the type is ISO4217. ISO-4217 is an international standard which defines unique three-letter symbols for each currency. National currencies are not user editable.</para>
+            </listitem>
+            <listitem>
+              <para>Symbol: Indicates the symbol or abbreviation for the commodity. This is usually the ticker symbol (for stocks) or other unique abbreviation for the commodity. If the commodity is traded on any public exchange, it is important to use the same identifier used on that exchange. For national currencies the symbol is the ISO-4217 currency code.</para>
+            </listitem>
+            <listitem>
+              <para>Name: The full name of the commodity is a recognizable name such as "US Dollars" or "IBM Common Stock".</para>
+            </listitem>
+            <listitem>
+              <para>Code: This is any numeric or alphanumeric code that is used to identify the commodity. The CUSIP code is a unique identifying numeric string that is associated with every stock, bond or mutual fund, and most kinds of tradable options, futures and commodities. This code is not required.</para>
+            </listitem>
+            <listitem>
+              <para>Fraction: This is the smallest tradable unit of the commodity, expressed as a fraction of a single nominal unit. This unit is used by GnuCash accounts as the default fraction for trades in the commodity.</para>
+            </listitem>
+          </itemizedlist>
+          <para></para>
+          <para>To add a new commodity, click on Add, and enter the details of the commodity into the New Currency/Security dialog box. To edit an existing commodity, select the commodity from the Commodities list, click the Edit button, and edit the New Currency/Security dialog box. To remove a commodity, select the commodity and click the Remove button. </para>
+          <para></para>
+          <para>To show the details for National Currencies click the Show National Currencies checkbox.</para>
+        </sect3>
+        <sect3 id="tool-calc">
+          <title>Financial Calculator</title>
+          <para></para>
+          <para>The Financial Calculator is used to calculate compound interest. It provides a way of entering four of the five parameters of a compound interest calculation and then calculating the remaining figure.</para>
+          <para></para>
+          <para>The calculator is split into two panes. The left pane has five fields with a Calculate button and a Clear button. The Calculate button is used to select the figure to calculate. The Clear button is used to clear any amount in the field.</para>
+          <para></para>
+          <itemizedlist>
+            <listitem>
+              <para>Payment Periods: This field is used to select the number of payments you wish to use in the calculation.</para>
+            </listitem>
+            <listitem>
+              <para>Interest Rate: This field is used for the interest rate percentage.</para>
+            </listitem>
+            <listitem>
+              <para>Present Value: This field usually contains the amount you have borrowed. It is the base amount you wish to compound.</para>
+            </listitem>
+            <listitem>
+              <para>Periodic Payment: This field contains the amount that is the payment for the period selected (ie monthly, weekly, etc). If it is for repaying a loan it should be a negative number.</para>
+            </listitem>
+            <listitem>
+              <para>Future Value: This field contains the final value at the end of the periods above. If we are repaying a loan in full it would be '0'.</para>
+            </listitem>
+          </itemizedlist>
+          <para></para>
+          <para>The right pane contains buttons to select what sort of payments and compounding is used for the left pane calculations.</para>
+          <para></para>
+          <itemizedlist>
+            <listitem>
+              <para>Compounding: This button allows you to select the interval used if the Discrete Compounding button is selected.</para>
+            </listitem>
+            <listitem>
+              <para>Payments: This button allows you to select the interval used for the Payment Periods field.</para>
+            </listitem>
+            <listitem>
+              <para>End of Period Payments: Use this button if the payment is at the end of the period.</para>
+            </listitem>
+            <listitem>
+              <para>Beginning of Period Payments: Use this button if the payment is at the beginning of the period.</para>
+            </listitem>
+            <listitem>
+              <para>Discrete Compounding: This button is used where interest is charged at a discrete interval defined by the Compounding button above.</para>
+            </listitem>
+            <listitem>
+              <para>Continuous Compounding: This button is used when the interest is charged continuously.</para>
+            </listitem>
+            <listitem>
+              <para>Payment Total: This field shows the total amount paid.</para>
+            </listitem>
+          </itemizedlist>
+          <para></para>
+          <para>Examples of using the Financial Calculator are given in the Tutorial and Concepts Guide.</para>
+        </sect3>
+        <sect3 id="tool-find">
+          <title>Find Transactions</title>
+          <para></para>
+          <para>Find Transactions is used to search for transactions in GnuCash and display the results in a register window. The title bar of the Find Transactions dialog contains 'Search For...' and the first line of the dialog has 'Split Search'. In other search dialogs used in GnuCash the first line contains a different description but the same basic layout.</para>
+          <para></para>
+          <para>To open the Find Transactions dialog in the Account Tree Window go to the Tools menu and select Find Transactions or type menu shortcut Ctrl-F. To open the Find Transactions dialog in the Account Register Window go to the Edit menu and select Find... or type menu shortcut F6.</para>
+          <para></para>
+          <para>There are two panes in the search dialog. The top pane contains the Search Criteria buttons and the bottom pane contains the Type of Search selection. </para>
+          <para></para>
+          <para>There are two buttons in the top of the Search Criteria pane. The left button allows you to add another criteria row to search for multiple criteria. The existing criteria row needs to be completed before adding a new row. The right button is used to Search for items where all criteria are met or Search for items where any criteria are met. The all criteria are met search requires all of the criteria rows to have at least one match. The any criteria are met search requires only one of the criteria rows to be matched.</para>
+          <para></para>
+          <para>The criteria row is used to combine different criteria buttons. The following table describes the possible button combinations (regex means regular expression search);</para>
+          <para></para>
+          <para>Table 28: Search criteria buttons.</para>
+          <para></para>
+          <table frame="topbot" id="Table19">
+    <title></title>
+            <tgroup cols="8">
+              <thead>
+                <row>
+                  <entry><para>Button 1</para></entry>
+                  <entry><para>Button2</para></entry>
+                  <entry><para>Button3</para></entry>
+                  <entry><para>Button4</para></entry>
+                  <entry><para>Button5</para></entry>
+                  <entry><para>Button 6</para></entry>
+                  <entry><para>Button 7</para></entry>
+                  <entry><para>Button 8</para></entry>
+                </row>
+              </thead>
+              <tbody>
+                <row>
+                  <entry><para>Description</para></entry>
+                  <entry><para>contains</para></entry>
+                  <entry><para>Criteria entry field</para></entry>
+                  <entry><para>Is entry Case Insensitive?</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Description</para></entry>
+                  <entry><para>does not contain</para></entry>
+                  <entry><para>Criteria entry field</para></entry>
+                  <entry><para>Is entry Case Insensitive?</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Description</para></entry>
+                  <entry><para>matches regex</para></entry>
+                  <entry><para>Criteria entry field</para></entry>
+                  <entry><para>Is entry Case Insensitive?</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Description</para></entry>
+                  <entry><para>does not match regex</para></entry>
+                  <entry><para>Criteria entry field</para></entry>
+                  <entry><para>Is entry Case Insensitive?</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Memo</para></entry>
+                  <entry><para>contains</para></entry>
+                  <entry><para>Criteria entry field</para></entry>
+                  <entry><para>Is entry Case Insensitive?</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Memo</para></entry>
+                  <entry><para>does not contain</para></entry>
+                  <entry><para>Criteria entry field</para></entry>
+                  <entry><para>Is entry Case Insensitive?</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Memo</para></entry>
+                  <entry><para>matches regex</para></entry>
+                  <entry><para>Criteria entry field</para></entry>
+                  <entry><para>Is entry Case Insensitive?</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Memo</para></entry>
+                  <entry><para>does not match regex</para></entry>
+                  <entry><para>Criteria entry field</para></entry>
+                  <entry><para>Is entry Case Insensitive?</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Number</para></entry>
+                  <entry><para>contains</para></entry>
+                  <entry><para>Criteria entry field</para></entry>
+                  <entry><para>Is entry Case Insensitive?</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Number</para></entry>
+                  <entry><para>does not contain</para></entry>
+                  <entry><para>Criteria entry field</para></entry>
+                  <entry><para>Is entry Case Insensitive?</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Number</para></entry>
+                  <entry><para>matches regex</para></entry>
+                  <entry><para>Criteria entry field</para></entry>
+                  <entry><para>Is entry Case Insensitive?</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Number</para></entry>
+                  <entry><para>does not match regex</para></entry>
+                  <entry><para>Criteria entry field</para></entry>
+                  <entry><para>Is entry Case Insensitive?</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Action</para></entry>
+                  <entry><para>contains</para></entry>
+                  <entry><para>Criteria entry field</para></entry>
+                  <entry><para>Is entry Case Insensitive?</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Action</para></entry>
+                  <entry><para>does not contain</para></entry>
+                  <entry><para>Criteria entry field</para></entry>
+                  <entry><para>Is entry Case Insensitive?</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Action</para></entry>
+                  <entry><para>matches regex</para></entry>
+                  <entry><para>Criteria entry field</para></entry>
+                  <entry><para>Is entry Case Insensitive?</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Action</para></entry>
+                  <entry><para>does not match regex</para></entry>
+                  <entry><para>Criteria entry field</para></entry>
+                  <entry><para>Is entry Case Insensitive?</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Date Posted</para></entry>
+                  <entry><para>is before</para></entry>
+                  <entry><para>Date selection field</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Date Posted</para></entry>
+                  <entry><para>is before or on</para></entry>
+                  <entry><para>Date selection field</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Date Posted</para></entry>
+                  <entry><para>is on</para></entry>
+                  <entry><para>Date selection field</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Date Posted</para></entry>
+                  <entry><para>is not on</para></entry>
+                  <entry><para>Date selection field</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Date Posted</para></entry>
+                  <entry><para>is after</para></entry>
+                  <entry><para>Date selection field</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Date Posted</para></entry>
+                  <entry><para>is on or after</para></entry>
+                  <entry><para>Date selection field</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Value</para></entry>
+                  <entry><para>has credits or debits</para></entry>
+                  <entry><para>less than</para></entry>
+                  <entry><para>Amount entry field</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Value</para></entry>
+                  <entry><para>has credits or debits</para></entry>
+                  <entry><para>less than or equal to</para></entry>
+                  <entry><para>Amount entry field</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Value</para></entry>
+                  <entry><para>has credits or debits</para></entry>
+                  <entry><para>equal to</para></entry>
+                  <entry><para>Amount entry field</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Value</para></entry>
+                  <entry><para>has credits or debits</para></entry>
+                  <entry><para>not equal to</para></entry>
+                  <entry><para>Amount entry field</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Value</para></entry>
+                  <entry><para>has credits or debits</para></entry>
+                  <entry><para>greater than</para></entry>
+                  <entry><para>Amount entry field</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Value</para></entry>
+                  <entry><para>has credits or debits</para></entry>
+                  <entry><para>greater than or equal to</para></entry>
+                  <entry><para>Amount entry field</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Value</para></entry>
+                  <entry><para>has credits</para></entry>
+                  <entry><para>less than</para></entry>
+                  <entry><para>Amount entry field</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Value</para></entry>
+                  <entry><para>has credits</para></entry>
+                  <entry><para>less than or equal to</para></entry>
+                  <entry><para>Amount entry field</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Value</para></entry>
+                  <entry><para>has credits</para></entry>
+                  <entry><para>equal to</para></entry>
+                  <entry><para>Amount entry field</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Value</para></entry>
+                  <entry><para>has credits</para></entry>
+                  <entry><para>not equal to</para></entry>
+                  <entry><para>Amount entry field</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Value</para></entry>
+                  <entry><para>has credits</para></entry>
+                  <entry><para>greater than</para></entry>
+                  <entry><para>Amount entry field</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Value</para></entry>
+                  <entry><para>has credits</para></entry>
+                  <entry><para>greater than or equal to</para></entry>
+                  <entry><para>Amount entry field</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Value</para></entry>
+                  <entry><para>has debits</para></entry>
+                  <entry><para>less than</para></entry>
+                  <entry><para>Amount entry field</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Value</para></entry>
+                  <entry><para>has debits</para></entry>
+                  <entry><para>less than or equal to</para></entry>
+                  <entry><para>Amount entry field</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Value</para></entry>
+                  <entry><para>has debits</para></entry>
+                  <entry><para>equal to</para></entry>
+                  <entry><para>Amount entry field</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Value</para></entry>
+                  <entry><para>has debits</para></entry>
+                  <entry><para>not equal to</para></entry>
+                  <entry><para>Amount entry field</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Value</para></entry>
+                  <entry><para>has debits</para></entry>
+                  <entry><para>greater than</para></entry>
+                  <entry><para>Amount entry field</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Value</para></entry>
+                  <entry><para>has debits</para></entry>
+                  <entry><para>greater than or equal to</para></entry>
+                  <entry><para>Amount entry field</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Shares</para></entry>
+                  <entry><para>less than</para></entry>
+                  <entry><para>Amount entry field</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Shares</para></entry>
+                  <entry><para>less than or equal to</para></entry>
+                  <entry><para>Amount entry field</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Shares</para></entry>
+                  <entry><para>equal to</para></entry>
+                  <entry><para>Amount entry field</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Shares</para></entry>
+                  <entry><para>not equal to</para></entry>
+                  <entry><para>Amount entry field</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Shares</para></entry>
+                  <entry><para>greater than</para></entry>
+                  <entry><para>Amount entry field</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Shares</para></entry>
+                  <entry><para>greater than or equal to</para></entry>
+                  <entry><para>Amount entry field</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Share Price</para></entry>
+                  <entry><para>less than</para></entry>
+                  <entry><para>Amount entry field</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Share Price</para></entry>
+                  <entry><para>less than or equal to</para></entry>
+                  <entry><para>Amount entry field</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Share Price</para></entry>
+                  <entry><para>equal to</para></entry>
+                  <entry><para>Amount entry field</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Share Price</para></entry>
+                  <entry><para>not equal to</para></entry>
+                  <entry><para>Amount entry field</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Share Price</para></entry>
+                  <entry><para>greater than</para></entry>
+                  <entry><para>Amount entry field</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Share Price</para></entry>
+                  <entry><para>greater than or equal to</para></entry>
+                  <entry><para>Amount entry field</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Reconcile</para></entry>
+                  <entry><para>is</para></entry>
+                  <entry><para>Not Cleared</para></entry>
+                  <entry><para>Cleared</para></entry>
+                  <entry><para>Reconciled</para></entry>
+                  <entry><para>Frozen</para></entry>
+                  <entry><para>Voided</para></entry>
+                  <entry><para>Remove row</para></entry>
+                </row>
+                <row>
+                  <entry><para>Reconcile</para></entry>
+                  <entry><para>is not</para></entry>
+                  <entry><para>Not Cleared</para></entry>
+                  <entry><para>Cleared</para></entry>
+                  <entry><para>Reconciled</para></entry>
+                  <entry><para>Frozen</para></entry>
+                  <entry><para>Voided</para></entry>
+                  <entry><para>Remove row</para></entry>
+                </row>
+                <row>
+                  <entry><para>Balanced</para></entry>
+                  <entry><para>is</para></entry>
+                  <entry><para>set true</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Balanced</para></entry>
+                  <entry><para>is not</para></entry>
+                  <entry><para>set true</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Account</para></entry>
+                  <entry><para>matches any account</para></entry>
+                  <entry><para>Choose Accounts</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>Account</para></entry>
+                  <entry><para>matches no account</para></entry>
+                  <entry><para>Choose Accounts</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+                <row>
+                  <entry><para>All Accounts</para></entry>
+                  <entry><para>matches all account</para></entry>
+                  <entry><para>Choose Accounts</para></entry>
+                  <entry><para>Remove row</para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                  <entry><para></para></entry>
+                </row>
+              </tbody>
+            </tgroup>
+          </table>
+          <para></para>
+          <para>The Account button performs a search where the accounts selected in the Choose Accounts dialog will both be searched individually for results. This means that a match in any of the selected accounts will either be displayed (matches any account) or discarded (matches no account).</para>
+          <para></para>
+          <para>The All Accounts button performs a search where accounts selected in the Choose Accounts dialog will only return results that match in both accounts.</para>
+          <para></para>
+          <para>There are four selections in the Type of Search pane. When a new search is started only the New Search button is selectable. The other buttons become selectable only when the Search Results register window is visible.</para>
+          <para></para>
+          <itemizedlist>
+            <listitem>
+              <para>New Search: Perform a new transaction search</para>
+            </listitem>
+            <listitem>
+              <para>Refine current search: Search within the results of the previous search.</para>
+            </listitem>
+            <listitem>
+              <para>Add results to current search: Search based on the first set of criteria or the new criteria.</para>
+            </listitem>
+            <listitem>
+              <para>Delete results from current search: Discard any results that match the previous search results.</para>
+            </listitem>
+          </itemizedlist>
+        </sect3>
+      </sect2>
+      <sect2 id="help-win">
+        <title>Help Window</title>
+        <para></para>
+        <para>The GnuCash Help Window is used to display web page versions of these help documents that are installed with GnuCash. It also has a searchable database of help terms and the ability to load web pages directly from the Internet.</para>
+        <para></para>
+        <para>This window is accessed by going to the Help menu and selecting either the Tutorial and Concepts Guide or the Help.</para>
+        <para></para>
+        <para>The Help Window has a toolbar for navigation. The toolbar is described below;</para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>Back: Used to navigate to pages previously viewed.</para>
+          </listitem>
+          <listitem>
+            <para>Forward: Used to navigate to pages previously viewed.</para>
+          </listitem>
+          <listitem>
+            <para>Reload: Used to refresh the current page.</para>
+          </listitem>
+          <listitem>
+            <para>Open: Used to open a web page from a different location to the standard help.</para>
+          </listitem>
+          <listitem>
+            <para>Stop: Used to halt loading a web page.</para>
+          </listitem>
+          <listitem>
+            <para>Print: Used to print the currently viewed page.</para>
+          </listitem>
+          <listitem>
+            <para>Close: Used to close the help window.</para>
+          </listitem>
+        </itemizedlist>
+        <para></para>
+        <para>The right side of the Help Window displays the currently opened web page. The left side of the Help Window contains the help Topics list tab and the Search tab. Selecting one of the help topics will load that page on the right side. The topics list also contains a link to the GnuCash bug reporting webpage at http://bugzilla.gnome.org.</para>
+        <para></para>
+        <para>The Search tab is used to search the help for documents containing terms you specify. Enter the term to search for in the Search Term field then click the Search button to get a list of pages containing that term. Selecting a link in the Search Results pane will load the web page.</para>
+      </sect2>
+    </sect1>
+    <sect1 id="setup-accounts">
+      <title>Setting Up And Editing Accounts</title>
+      <para></para>
+      <para>This section describes the process of setting up GnuCash Accounts. In GnuCash an Account is used as the basic tool to organize the recording of where money comes from and goes to. GnuCash also extends the concept of real world accounts such as a bank account or loan account to grouping income and expense accounts. This allows to to quickly see where you spent your money and what your major income and expenses are. GnuCash sets Account Types (as described in the next section) to help in organizing and grouping accounts. Account Types can be used to create a Chart of Accounts.</para>
+      <sect2 id="acct-types">
+        <title>Types of GnuCash Accounts</title>
+        <para></para>
+        <para>GnuCash supports a number of different account types. It is recommended to choose an appropriate account type based on the list of account types described below.</para>
+        <para></para>
+        <para>Table 29: Types of GnuCash Accounts.</para>
+        <para></para>
+        <table frame="topbot" id="Table23">
+    <title></title>
+          <tgroup cols="2">
+            <thead>
+              <row>
+                <entry><para>Account Type</para></entry>
+                <entry><para>Description</para></entry>
+              </row>
+            </thead>
+            <tbody>
+              <row>
+                <entry><para>Accounts Payable</para></entry>
+                <entry><para>Accounts Payable are used by businesses to record amounts that must be paid. Example: The business has bought something, but the business has not paid the bill until later. [Note: Previous versions of this help defined A/P and A/R the other way round.]</para></entry>
+              </row>
+              <row>
+                <entry><para>Accounts Receivable</para></entry>
+                <entry><para>Accounts Receivable records amounts for which money
+				has not yet been received. Example: A business has sold something and
+				issued a bill, but the client has not payed until later.
+				[Note: Previous versions of this help defined A/P and A/R the other way
+				round.]</para></entry>
+              </row>
+              <row>
+                <entry><para>Asset</para></entry>
+                <entry><para>Asset accounts are used for tracking things that are of
+		    value and can be used or sold to pay debts. (Normally a
+		    placeholder account)</para></entry>
+              </row>
+              <row>
+                <entry><para>Bank</para></entry>
+                <entry><para>The Bank account type denotes savings or checking accounts held at a bank or other financial institution. Some of these accounts may bear interest. This is also the appropriate account type for check (debit) cards, which directly withdraw payments from a checking account. </para></entry>
+              </row>
+              <row>
+                <entry><para>Cash</para></entry>
+                <entry><para>The Cash account type is used to denote the cash that you store in your wallet, shoe box, piggyback, or mattress.</para></entry>
+              </row>
+              <row>
+                <entry><para>Credit Card</para></entry>
+                <entry><para>The Credit Card account type is used to denote credit card accounts, both for cards that allow floating lines of credit (e.g. VISA, MasterCard, or Discover) and with cards that do not permit continuing balances (e.g. American Express) </para></entry>
+              </row>
+              <row>
+                <entry><para>Currency</para></entry>
+                <entry><para>Currency Accounts are used for trading currencies.</para></entry>
+              </row>
+              <row>
+                <entry><para>Equity</para></entry>
+                <entry><para>Equity accounts are used to store the opening balances when you first start using GnuCash or start a new accounting period.</para></entry>
+              </row>
+              <row>
+                <entry><para>Expense</para></entry>
+                <entry><para>Any expense such as food, clothing, taxes, etc. This type is called a category in Quicken.</para></entry>
+              </row>
+              <row>
+                <entry><para>Income</para></entry>
+                <entry><para>Any income received from sources such as salary, interest, dividends, etc. This type is called a category in Quicken.</para></entry>
+              </row>
+              <row>
+                <entry><para>Liability</para></entry>
+                <entry><para>Liability accounts are used for tracking debts or financial obligations. (Normally a placeholder account)</para></entry>
+              </row>
+              <row>
+                <entry><para>Mutual Fund</para></entry>
+                <entry><para>A professionally managed portfolio of stocks and bonds or other investments divided up into shares.</para></entry>
+              </row>
+              <row>
+                <entry><para>Stock</para></entry>
+                <entry><para>A share of ownership in a corporation, which entitles its owner to all the risks and rewards that go with it.</para></entry>
+              </row>
+            </tbody>
+          </tgroup>
+        </table>
+        <para></para>
+        <para>The New Account Hierarchy Setup druid described in the first section of this help is a convenient way of setting up a set of accounts to use as a framework of account types.</para>
+        <para></para>
+        <para>When new accounts are created the available choices of account types are grayed out according to what type the parent account is. The following list contains the possible choices.</para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>Accounts Payable: All accounts except Equity, Expense and Income can be child accounts.</para>
+          </listitem>
+          <listitem>
+            <para>Accounts Receivable: All accounts except Equity, Expense and Income can be child accounts.</para>
+          </listitem>
+          <listitem>
+            <para>Asset: All accounts except Equity, Expense and Income can be child accounts.</para>
+          </listitem>
+          <listitem>
+            <para>Bank: All accounts except Equity, Expense and Income can be child accounts.</para>
+          </listitem>
+          <listitem>
+            <para>Cash: All accounts except Equity, Expense and Income can be child accounts.</para>
+          </listitem>
+          <listitem>
+            <para>Credit Card: All accounts except Equity, Expense and Income can be child accounts.</para>
+          </listitem>
+          <listitem>
+            <para>Currency: All accounts except Equity, Expense and Income can be child accounts.</para>
+          </listitem>
+          <listitem>
+            <para>Equity: Only Equity accounts can be child accounts.</para>
+          </listitem>
+          <listitem>
+            <para>Expense: Only Expense or Income accounts can be child accounts.</para>
+          </listitem>
+          <listitem>
+            <para>Income: Only Expense or Income accounts can be child accounts.</para>
+          </listitem>
+          <listitem>
+            <para>Liability: All accounts except Equity, Expense and Income can be child accounts.</para>
+          </listitem>
+          <listitem>
+            <para>Mutual Fund: All accounts except Equity, Expense and Income can be child accounts.</para>
+          </listitem>
+          <listitem>
+            <para>Stock: All accounts except Equity, Expense and Income can be child accounts.</para>
+          </listitem>
+        </itemizedlist>
+        <para></para>
+      </sect2>
+      <sect2 id="chart-create">
+        <title>To Create a Chart of Accounts</title>
+        <para></para>
+        <para>The Chart of Accounts is like a table of contents for your finances. The best way to conceptualize a chart of accounts is as a tree. The main branches represent entire categories or groups, while the leaves of the tree denote individual bank accounts or expense categories. When a summary report is requested, typically only the main branches are shown in the report, rather than the individual accounts. For example, a chart of accounts might look like the following:
+	&chartacctseg;
+	</para>
+        <para></para>
+        <para>Note that accounts not only have names; they have codes, to order the accounts. When a report is generated, the sort order is determined by the numbering. It's customary to have the leaf accounts end in non-zero digits, while parent nodes have increasing numbers of zeros. </para>
+        <para></para>
+        <para>GnuCash does not prevent duplicate numbering, although we would encourage you to avoid this. Account codes are treated as numbers in base-36, thus, if you run out of numbers, you can use the letters, a through z.</para>
+        <para></para>
+        <para>A sample chart of accounts is shown below. Each account is of a given account type. This example is a combination of some typical business and personal accounts.
+	&chartofaccts;
+	</para>
+        <para></para>
+      </sect2>
+      <sect2 id="acct-create">
+        <title>To Create a New Account</title>
+        <para></para>
+        <para>The New Account properties dialog consists of two tabs, the General Information tab and the Opening Balance tab. This dialog can be accessed by going to File -&gt; New Account... or by clicking the New toolbar icon in the Account Tree Window.</para>
+        <para></para>
+        <para>Creating a New Account involves planning in advance several details that are used in the New Account dialog. </para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>What type of account is needed .</para>
+          </listitem>
+          <listitem>
+            <para>Where it fits in the structure of the Chart of Accounts.</para>
+          </listitem>
+          <listitem>
+            <para>If there is an Opening Balance.</para>
+          </listitem>
+          <listitem>
+            <para>If there is a Commodity needed for the account.</para>
+          </listitem>
+          <listitem>
+            <para>If online updating of the commodity price is needed.</para>
+          </listitem>
+        </itemizedlist>
+        <para></para>
+        <para>These details are described below.</para>
+        <sect3 id="gen-info">
+          <title>General Information</title>
+          <para></para>
+          <para>The General Information tab is used to access the basic information about the account. It provides a way of connecting the account to stock information if it is one of the currency, mutual fund or stock account types. It can also be flagged as a Tax Related or Placeholder account.</para>
+          <para></para>
+          <para>There are five panes in this tab. Below the panes are checkboxes to mark the account as Tax Related and a Placeholder account. The Tax Related checkbox means that this account has been flagged to be included in Tax Exports. This flag should only be set for Income and Expense type accounts. The Placeholder checkbox means this account is not used for transaction data. This checkbox is used to enable a hierarchy or chart of accounts to be setup.</para>
+          <para></para>
+          <para>The top pane contains the Account Information.</para>
+          <para></para>
+          <itemizedlist>
+            <listitem>
+              <para>Account Information: Enter a name for the account such as First Bank Checking.</para>
+            </listitem>
+            <listitem>
+              <para>Description: This is an optional description for the account.</para>
+            </listitem>
+            <listitem>
+              <para>Commodity: For most accounts this should be the default, USD (US Dollar) or your local currency symbol. If this account is for a foreign currency then use the Select... button to choose a different currency in the Select currency/security dialog. Use the Select... button to choose a security if this is a mutual fund or stock account.</para>
+            </listitem>
+            <listitem>
+              <para>Select currency/security: To select a different currency click the Currency/security: drop down list and choose the currency symbol you need. To create a security for mutual fund and stock accounts select the New... button to bring up the New Currency/Security dialog. After the security is created select the Type:(usually the exchange the security is traded on) and the name in the Currency/security: drop down list.</para>
+            </listitem>
+            <listitem>
+              <para>New Currency/Security: The options here are described in detail in the Commodity Editor section. Fill in a name, symbol and type.</para>
+            </listitem>
+            <listitem>
+              <para>Account Code: Enter an optional number code as described in the To Create a Chart of Accounts section.</para>
+            </listitem>
+          </itemizedlist>
+          <para></para>
+          <para>The next pane contains a list of Account Types. Select a type from the descriptions in the Types of GnuCash Accounts section.</para>
+          <para></para>
+          <para>The next pane contains an account tree to choose a Parent Account. To create a new account tree select New top level account. If the parent account is a certain type, then several of the choices in Account Type become  out. For example if the Parent Account is Assets then Equity, Expense and Income become  This is to help maintain a proper account structure for the Chart of Accounts.</para>
+          <para></para>
+          <para>The next pane is the Price Quote Source pane. </para>
+          <para></para>
+          <itemizedlist>
+            <listitem>
+              <para>Get Online Quotes: This checkbox is only enabled when currency, mutual fund or stock account types are selected. It is used to enable this account to have quotes downloaded from an online source.</para>
+            </listitem>
+            <listitem>
+              <para>The source for price quotes: Select a quote source from the pull-down menu. Currently supported quote sources include Yahoo, Yahoo Europe, Fidelity Investments, T. Rowe Price, the Vanguard Group, the Australian Stock Exchange (ASX) and TIAA-CREF. Note that Yahoo will provide price quotes for many mutual funds including Fidelity, T.Rowe Price and Vanguard, and that the quoted prices at Yahoo should be identical to those that may be found at the source sites. If you choose Yahoo Europe, you should append the market code for the security, such as PA for Paris, BE for Berlin, etc. Example: 12150.PA (a Peugeot security in the Paris market). Tables 30 and 31 below lists codes for various markets.</para>
+            </listitem>
+            <listitem>
+              <para>Timezone for these quotes: Select the timezone for the source of the online quotes you are receiving. For example, Yahoo normally quotes Eastern timezone, so choose America/New York if you use that quote source.</para>
+            </listitem>
+          </itemizedlist>
+          <para></para>
+          <para>Note: The set of steps needed to properly enable online quote updating with the Price Editor are;</para>
+          <para></para>
+          <orderedlist>
+            <listitem>
+              <para>Create the mutual fund or stock with either the Commodity Editor or the New Currency/Security dialog described above.</para>
+            </listitem>
+            <listitem>
+              <para>Create the Account for the mutual fund or stock with it listed in the Commodity field.</para>
+            </listitem>
+            <listitem>
+              <para>Select Online Quotes, the source for price quotes and Timezone.</para>
+            </listitem>
+            <listitem>
+              <para>Run the perl script 'update-finance-quote' as the root user to install the Finance::Quote package.</para>
+            </listitem>
+            <listitem>
+              <para>Add a commodity to the Price Editor as described in the Price Editor section of Tool Windows.</para>
+            </listitem>
+            <listitem>
+              <para>Select Get Quotes in the Price Editor.</para>
+            </listitem>
+          </orderedlist>
+          <para></para>
+          <para>If you wish to update price quotes from the command line, you can do so by the following command;</para>
+          <para></para>
+          <para>gnucash --add-price-quotes &lt;gnucash-file-name&gt;</para>
+          <para></para>
+          <para>Table 30 Code List for European Markets</para>
+          <para></para>
+          <table frame="topbot" id="Table24">
+    <title></title>
+            <tgroup cols="2">
+              <thead>
+                <row>
+                  <entry><para>Code</para></entry>
+                  <entry><para>Market</para></entry>
+                </row>
+              </thead>
+              <tbody>
+                <row>
+                  <entry><para>BC</para></entry>
+                  <entry><para>Barcelona</para></entry>
+                </row>
+                <row>
+                  <entry><para>BE</para></entry>
+                  <entry><para>Berlin</para></entry>
+                </row>
+                <row>
+                  <entry><para>BI</para></entry>
+                  <entry><para>Bilbao</para></entry>
+                </row>
+                <row>
+                  <entry><para>BR</para></entry>
+                  <entry><para>Brême</para></entry>
+                </row>
+                <row>
+                  <entry><para>CO</para></entry>
+                  <entry><para>Copenhagen</para></entry>
+                </row>
+                <row>
+                  <entry><para>D</para></entry>
+                  <entry><para>Dusseldorf</para></entry>
+                </row>
+                <row>
+                  <entry><para>F</para></entry>
+                  <entry><para>Frankfurt</para></entry>
+                </row>
+                <row>
+                  <entry><para>FX</para></entry>
+                  <entry><para>Xetra</para></entry>
+                </row>
+                <row>
+                  <entry><para>H</para></entry>
+                  <entry><para>Hamburg</para></entry>
+                </row>
+                <row>
+                  <entry><para>HA</para></entry>
+                  <entry><para>Hanover</para></entry>
+                </row>
+                <row>
+                  <entry><para>L</para></entry>
+                  <entry><para>London</para></entry>
+                </row>
+                <row>
+                  <entry><para>MA</para></entry>
+                  <entry><para>Madrid</para></entry>
+                </row>
+                <row>
+                  <entry><para>MC</para></entry>
+                  <entry><para>Madrid (M.C.)</para></entry>
+                </row>
+                <row>
+                  <entry><para>MI</para></entry>
+                  <entry><para>Milan</para></entry>
+                </row>
+                <row>
+                  <entry><para>MU</para></entry>
+                  <entry><para>Munich</para></entry>
+                </row>
+                <row>
+                  <entry><para>O</para></entry>
+                  <entry><para>Oslo</para></entry>
+                </row>
+                <row>
+                  <entry><para>PA</para></entry>
+                  <entry><para>Paris</para></entry>
+                </row>
+                <row>
+                  <entry><para>ST</para></entry>
+                  <entry><para>Stockholm</para></entry>
+                </row>
+                <row>
+                  <entry><para>SG</para></entry>
+                  <entry><para>Stuttgart</para></entry>
+                </row>
+                <row>
+                  <entry><para>VA</para></entry>
+                  <entry><para>Valence</para></entry>
+                </row>
+              </tbody>
+            </tgroup>
+          </table>
+          <para></para>
+          <para>Table 31: Pseudo-symbols that can be used for TIAA-CREF quotes</para>
+          <para></para>
+          <table frame="topbot" id="Table25">
+    <title></title>
+            <tgroup cols="2">
+              <thead>
+                <row>
+                  <entry><para>Name</para></entry>
+                  <entry><para>Pseudo-symbol</para></entry>
+                </row>
+              </thead>
+              <tbody>
+                <row>
+                  <entry><para>Bond Market</para></entry>
+                  <entry><para>CREFbond</para></entry>
+                </row>
+                <row>
+                  <entry><para>Equity Index</para></entry>
+                  <entry><para>CREFequi</para></entry>
+                </row>
+                <row>
+                  <entry><para>Global Equities</para></entry>
+                  <entry><para>CREFglob</para></entry>
+                </row>
+                <row>
+                  <entry><para>Growth</para></entry>
+                  <entry><para>CREFgrow</para></entry>
+                </row>
+                <row>
+                  <entry><para>Inflation-Linked Bond</para></entry>
+                  <entry><para>CREFinfb</para></entry>
+                </row>
+                <row>
+                  <entry><para>Money Market</para></entry>
+                  <entry><para>CREFmony</para></entry>
+                </row>
+                <row>
+                  <entry><para>Social Choice</para></entry>
+                  <entry><para>CREFsoci</para></entry>
+                </row>
+                <row>
+                  <entry><para>Stock</para></entry>
+                  <entry><para>CREFstok</para></entry>
+                </row>
+                <row>
+                  <entry><para>Teachers PA Select Stock</para></entry>
+                  <entry><para>TIAAsele</para></entry>
+                </row>
+                <row>
+                  <entry><para>Teachers PA Stock Index</para></entry>
+                  <entry><para>TIAAsndx</para></entry>
+                </row>
+                <row>
+                  <entry><para>TIAA Real Estate</para></entry>
+                  <entry><para>TIAAreal</para></entry>
+                </row>
+              </tbody>
+            </tgroup>
+          </table>
+          <para></para>
+          <para>The last pane is the Notes pane. This is used for any additional notes about the account.</para>
+          <para></para>
+        </sect3>
+        <sect3 id="open-balance">
+          <title>Opening Balance</title>
+          <para></para>
+          <para>The Opening Balance tab is visible only when creating a new account. It is used to record the beginning balance for an account. This allows it to be used for two different scenarios. If using GnuCash for the first time to record transactions, it can be used as a beginning balance. If the accounts in use are closed at the end of a period and new accounts are created, it is used to close and carry balances forward.</para>
+          <para></para>
+          <para>There are three panes in this tab. The top pane contains the Balance Information.</para>
+          <para></para>
+          <itemizedlist>
+            <listitem>
+              <para>Balance: Enter here the balance to start the account with.</para>
+            </listitem>
+            <listitem>
+              <para>Date: Choose here the date the opening balance should be recorded.</para>
+            </listitem>
+          </itemizedlist>
+          <para></para>
+          <para>The next pane is the Transfer Type pane.</para>
+          <para></para>
+          <itemizedlist>
+            <listitem>
+              <para>Use Opening Balances Equity account: This transfers the opening balance for the account from a standard Equity account called Opening Balances.</para>
+            </listitem>
+            <listitem>
+              <para>Select Transfer Account: This enables the pane below so a different account can be used to transfer the opening balance.</para>
+            </listitem>
+          </itemizedlist>
+          <para></para>
+          <para>The last pane is the Transfer Account pane. Select the account to use for opening balances from the list of accounts in this pane.</para>
+        </sect3>
+      </sect2>
+      <sect2 id="acct-edit">
+        <title>To Edit an Account</title>
+        <para></para>
+        <para>The Edit Account dialog consists of just the General Information tab. This tab has the same information that was described in To Create a New Account. To access the Edit Account dialog go to Edit -&gt; Edit Account (menu shortcut Ctrl-E) or click the Edit toolbar icon in the Account Tree Window.</para>
+      </sect2>
+      <sect2 id="chart-edit">
+        <title>To Edit a Chart of Accounts</title>
+        <para></para>
+        <para>Editing the Chart of Accounts is done within the Parent Account pane of the Edit Account dialog. It is possible to move an account to any part of the Chart of Account. It is recommended to keep accounts generally under the related types of accounts as described in the Types of GnuCash Accounts section. This helps to preserve the Chart of Accounts structure.</para>
+        <para></para>
+        <para>To move the selected account to a different parent account just select the account in the Parent Account pane. If New top level account is selected then the account will be move to the top level.</para>
+      </sect2>
+      <sect2 id="acct-delete">
+        <title>To Delete an Account</title>
+        <para></para>
+        <para>Deleting an Account means removing all transaction information and information about this account from the file. This cannot be undone. You will be prompted to  that you wish to remove the account. If the account still contains transaction information you will be warned that this account contains transactions.</para>
+        <para></para>
+        <para>A side effect of removing an account that contains transactions is that you will end up with unbalanced accounts. This will be indicated in the account by a grey checkbox next to the debit and credit amounts. You can repair automatically these unbalanced accounts by using the Actions -&gt; Check &amp; Repair menu. This will automatically assign the unbalanced amounts to a new account named Imbalance.</para>
+      </sect2>
+      <sect2 id="acct-jump">
+        <title>To Jump to another Account</title>
+        <para></para>
+        <para>When using the Account Register Window it is frequently useful to be able to view an account and also the transfer account at the same time. GnuCash allows you to do this quickly by using 'Jump'. This is available on the toolbar and in the Actions menu in the Account Register Window. </para>
+        <para></para>
+        <para>Select the transaction in the Account Register Window and click jump to open the transfer Account Register Window. If the transaction is split between more than one transfer account then you will need to show all the split transfer accounts first and select the transfer account to jump to.</para>
+      </sect2>
+      <sect2 id="acct-reconcile">
+        <title>To Reconcile an Account to a Statement</title>
+        <para></para>
+        <para>Reconciliation of Accounts in GnuCash with statements from a bank or other institution is a way of double checking the balance of your accounts. It also is useful to track uncleared checks and other outstanding transactions. </para>
+        <para></para>
+        <para>The Summary Bar at the top of the Account Register Window indicates the amounts of Cleared and Reconciled transactions. Online account information can be used to mark which transaction the bank has processed by changing the R (reconciliation) column in the register from n (new) to c (cleared). The bank statement is then used with the Reconcile Window to reconcile the account which changes the R field to y (reconciled).</para>
+        <para></para>
+        <para>The Reconcile Window is accessed in the Account Tree Window by going to Actions -&gt; Reconcile... (menu shortcut Ctrl-R). In the Account Register Window it is accessed by going to Actions -&gt; Reconcile...</para>
+        <para></para>
+        <sect3 id="rec-info">
+          <title>Reconcile Information</title>
+          <para></para>
+          <para>The Reconcile Information dialog is used to indicate the date the statement ends on and what the starting and ending balance of the statement is. The Include Subaccounts checkbox is used if two or more accounts are used to track a single bank account. The Enter Interest Payment button is used to add a transfer to the accounts for an interest payment. If selected a dialog will be displayed to add the payment to the account.</para>
+          <para></para>
+          <para>There are three panes in the Interest Payment dialog. At the bottom is a button called No Auto Interest Payments for this Account which will cancel the dialog. The top pane contains the Payment Information.</para>
+          <para></para>
+          <itemizedlist>
+            <listitem>
+              <para>Amount: Enter the amount of the interest payment.</para>
+            </listitem>
+            <listitem>
+              <para>Date: Select the date for the interest payment.</para>
+            </listitem>
+            <listitem>
+              <para>Num: Enter a number for the transaction (optional).</para>
+            </listitem>
+            <listitem>
+              <para>Description: Enter an informational description for the transaction.</para>
+            </listitem>
+            <listitem>
+              <para>Memo: Enter a note about the transaction (optional).</para>
+            </listitem>
+          </itemizedlist>
+          <para></para>
+          <para>The next pane contains a list of accounts for the Payment From account. If the payment is for a credit or loan account then usually this would be from an Expense account. If the payment is for a checking or savings account then usually this would be from an Income account. The Show Income/Expense checkbox shows or hides the Income and Expense accounts.</para>
+          <para></para>
+          <para>The next pane contains the Reconcile Account. This shows the account that the interest payment will be transferred to or from.</para>
+        </sect3>
+        <sect3 id="rec-win">
+          <title>Reconcile Window</title>
+          <para></para>
+          <para>The parts of the Reconcile Window are described in the Tool Windows section of GnuCash Windows. This window is used to open the account and to add transaction information to the account in order to reconcile the account to the bank statement.</para>
+          <para></para>
+          <para>The set of unreconciled transactions in the Funds In and Funds Out panes can be changed by using the menus and toolbar to access the account and transaction information. If you wish to postpone the reconciliation until later use the Reconcile -&gt; Postpone menu item (menu shortcut Ctrl-P).</para>
+          <para></para>
+          <para>Select each unreconciled transaction matching a statement transaction so a green tick appears in the R column. The Balance pane changes to reflect each selected transaction until the Ending Balance equals the Reconciled Balance and the Difference is zero. Once this is done select the Finish button or Finish on the Reconcile menu (menu shortcut Ctrl-F) to finish the reconcile process.</para>
+        </sect3>
+      </sect2>
+      <sect2 id="stock-split">
+        <title>To Perform a Stock Split</title>
+        <para></para>
+        <para>Stock splits commonly occur when a company decides its stock price is to expensive for individual investors to buy the stock. Splits have the effect of lowering the price of a single share while keeping the value of shares owned by investors who have already purchased shares.</para>
+        <para></para>
+        <sect3 id="stock-split-druid">
+          <title>Stock Split Druid</title>
+          <para></para>
+          <para>GnuCash uses the Stock Split druid to record stock splits. This provides a way of entering the details of the stock split and also any change in stock price or cash disbursement as a result of the stock split.</para>
+          <para></para>
+          <para>The Stock Split druid is accessed by going to Actions -&gt; Stock Split...</para>
+          <para></para>
+          <para>The Stock Split druid opens with a screen that briefly describes what this druid does. The three buttons at the very bottom of the screen will not change while using the druid.</para>
+          <para></para>
+          <itemizedlist>
+            <listitem>
+              <para>The Cancel button is used to exit the druid and cancel entering the stock split information. Any selections you have made in this druid up to this point will be lost.</para>
+            </listitem>
+            <listitem>
+              <para>The Back button will bring up the previous screen so you can change a selection made on that screen.</para>
+            </listitem>
+            <listitem>
+              <para>The Forward button will bring up the next screen so you can continue though the druid.</para>
+            </listitem>
+          </itemizedlist>
+          <para></para>
+          <para>The next screen allows you to select a Stock Account. Select an account from the list to record a stock split or merger.</para>
+          <para></para>
+          <itemizedlist>
+            <listitem>
+              <para>Account: Lists the GnuCash account name for the stock.</para>
+            </listitem>
+            <listitem>
+              <para>Symbol: The stock symbol for the stock associated with this account.</para>
+            </listitem>
+            <listitem>
+              <para>Shares: The amount of shares that have been purchased in the account.</para>
+            </listitem>
+          </itemizedlist>
+          <para></para>
+          <para>The next screen lets you set the Stock Split Details. The top part of the screen contains details used in creating the stock split transaction. </para>
+          <para></para>
+          <itemizedlist>
+            <listitem>
+              <para>Date: Choose the date of the stock split.</para>
+            </listitem>
+            <listitem>
+              <para>Share Distribution: Enter the amount of shares gained from the stock split. For a stock merger enter a negative number.</para>
+            </listitem>
+            <listitem>
+              <para>Description: Enter a description or leave as the default.</para>
+            </listitem>
+          </itemizedlist>
+          <para></para>
+          <para>The bottom part of the screen contains details used to record a price for the split (optional).</para>
+          <para></para>
+          <itemizedlist>
+            <listitem>
+              <para>New Price: Enter the price of the shares on the day of the stock split.</para>
+            </listitem>
+            <listitem>
+              <para>Currency: Choose the currency of the shares.</para>
+            </listitem>
+          </itemizedlist>
+          <para></para>
+          <para>The next screen lets you enter a transaction for a cash disbursement (Cash In Lieu) as a result of the stock split (optional).</para>
+          <para></para>
+          <itemizedlist>
+            <listitem>
+              <para>Cash Amount: Enter the amount of the Cash disbursement.</para>
+            </listitem>
+            <listitem>
+              <para>Memo: Enter a memo or leave as the default.</para>
+            </listitem>
+            <listitem>
+              <para>Income Account: Choose an Income Account for the disbursement.</para>
+            </listitem>
+            <listitem>
+              <para>Asset Account: Choose an Asset Account for the disbursement.</para>
+            </listitem>
+          </itemizedlist>
+          <para></para>
+          <para>The last screen gives you a list of three choices to finish the druid.</para>
+          <para></para>
+          <itemizedlist>
+            <listitem>
+              <para>The Cancel button is used to exit the druid and cancel creating the Stock Split transactions.. Any selections you have made in this druid up to this point will be lost.</para>
+            </listitem>
+            <listitem>
+              <para>The Back button will bring up the previous screen so you can change a selection made on that screen.</para>
+            </listitem>
+            <listitem>
+              <para>The Finish button creates the transactions for the Stock Split.</para>
+            </listitem>
+          </itemizedlist>
+          <para></para>
+          <para>You should now have successfully entered the Stock Split or Merger.</para>
+        </sect3>
+      </sect2>
+    </sect1>
+    <sect1 id="transactions">
+      <title>Using The Register To Record Transactions</title>
+      <para></para>
+      <para>GnuCash uses accounts as a way of grouping or organizing the recording of transactions. Transactions are entered into the Account Register Window. This section describes the tools GnuCash has to help enter transactions quickly into the register. </para>
+      <para></para>
+      <para>A  represents the movement of money from one account to another account. Whenever you spend or receive money, or transfer money between accounts, that is a transaction. In GnuCash transactions always involve at least two accounts.</para>
+      <para></para>
+      <sect2 id="reg-views">
+        <title>Changing the Register View</title>
+        <para></para>
+        <para>GnuCash has several options to change the way the register looks so transactions can be seen more clearly. The default style is the Basic Ledger. This presents a single line view of transactions to allow the most concise view with all the relevant details.</para>
+        <para></para>
+        <para>The default view or style can be changed by going to View -&gt; Style. When the window closes the style will revert to the Basic Ledger style. To make this change permanent change the style in the Preferences in the Register section.</para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>Basic Ledger: The default one line per transaction style. Splits are shown as a summary.</para>
+          </listitem>
+          <listitem>
+            <para>Auto-Split Ledger: This style will automatically expand the splits in any transaction selected.</para>
+          </listitem>
+          <listitem>
+            <para>Transaction Journal: This style expands all transactions so the complete transaction can be seen.</para>
+          </listitem>
+          <listitem>
+            <para>Double Line: This checkbox changes any of the above styles so that an additional line for notes about the transaction is added.</para>
+          </listitem>
+        </itemizedlist>
+        <para></para>
+        <para>The two other options to change the view of the register is to restrict the Date Range and change the Sort Order. These are both accessible from the View menu.</para>
+      </sect2>
+      <sect2 id="trans-enter">
+        <title>To Enter a Transaction</title>
+        <para></para>
+        <para>When the Account Register Window for an account is opened the list of transactions for that account is shown. This window has the name of the account on its title bar. The menus contain several functions that alter the display of transactions. The toolbar also contains several functions that are used often when entering transactions. These are described in the Account Register Window section of this help.</para>
+        <para></para>
+        <para>GnuCash has two methods available for entering transactions. Entering directly into the register window is the most common way of entering transactions. The Transfer Funds Window is the second method.</para>
+        <para></para>
+        <sect3 id="trans-reg-enter">
+          <title>Enter Directly in the Register Window</title>
+          <para></para>
+          <para>The register window will look slightly different depending on the style options you have chosen. The following describes entering transactions in the basic ledger style. The cursor is placed in the date field by default when the register window is opened.</para>
+          <para></para>
+          <orderedlist>
+            <listitem>
+              <para>Selecting the triangle icon on the right of the date field drops down a date selection dialog. Use the arrows to select the correct month and year for the transaction then select the date. Selecting the triangle icon once more will close the date selection dialog. It is also possible to type in the date or part of the date and let GnuCash fill the rest.</para>
+            </listitem>
+            <listitem>
+              <para>Press tab to move or select the Num field. Here you can enter a check or transaction number. Pressing '+' (plus) will automatically advance the number by one from the last transaction to have a number.</para>
+            </listitem>
+            <listitem>
+              <para>Press tab to move or select the Description field. This field is used to enter either a payee or other description for the transaction. It will automatically attempt to fill the payee name as you type.</para>
+            </listitem>
+            <listitem>
+              <para>At this stage two things will happen if tab is pressed. If GnuCash matches an existing transaction the cursor will jump to one of the amount fields, automatically filling in the transfer account. If there is no existing transaction GnuCash will move the cursor to the Transfer field. Selecting the Transfer field with the mouse instead of tabbing will not automatically fill the Transfer field.</para>
+            </listitem>
+            <listitem>
+              <para>When typing in the Transfer field GnuCash will also attempt to automatically match the account. It does this alphabetically, so typing 'Ex' will match the Expenses section of the account list. When the section is matched, it is possible to move to a child account by pressing ':' (colon). If after typing 'Ex' you press ':' then the cursor will move to the first child account in the list. Typing combinations of letters and ':' will allow movement down the tree of accounts quickly. The triangle icon on the right of the Transfer box can be used as an alternate way of selecting accounts.</para>
+            </listitem>
+            <listitem>
+              <para>The next field is used for reconciliation. This is described in the To Reconcile an Account to a Statement section above.</para>
+            </listitem>
+            <listitem>
+              <para>Press tab to move to the first of the amount fields. The name of the next two columns is different according to what type of account is opened. For example, Bank accounts show Deposit and Withdrawal here, Credit Card accounts show Payment and Charge, and Stock accounts show Shares, Price, Buy and Sell.</para>
+            </listitem>
+            <listitem>
+              <para>Enter an amount for the transaction in the correct field. Pressing the Enter key, selecting the Enter icon or going to Actions -&gt; Enter will finish the transaction. Selecting the Cancel icon or going to Actions -&gt; Cancel will erase the transaction.</para>
+            </listitem>
+            <listitem>
+              <para>Transactions with just one transfer account will show the name of that account in the Transfer field in completed transactions. </para>
+            </listitem>
+            <listitem>
+              <para>To move to the blank transaction at the bottom of the register, press the Blank toolbar icon or go to Actions -&gt; Blank</para>
+            </listitem>
+          </orderedlist>
+          <para></para>
+        </sect3>
+        <sect3 id="trans-win-enter">
+          <title>Enter in the Transfer Funds Window</title>
+          <para></para>
+          <para>The method described here uses the Transfer Funds Window to enter a single transaction. This is mainly used as a quick way to enter a single transaction without opening the account registers. To enter multiple transactions it is recommended to use the register directly.</para>
+          <para></para>
+          <orderedlist>
+            <listitem>
+              <para>Enter in the Transfer Information pane the Amount, Date and Description. The Num and Memo fields are optional.</para>
+            </listitem>
+            <listitem>
+              <para>Choose the Transfer From account. If this account is an income or expense account select the checkbox at the bottom of the Transfer From pane.</para>
+            </listitem>
+            <listitem>
+              <para>Choose the Transfer To account. If this account is an income or expense account select the checkbox at the bottom of the Transfer From pane.</para>
+            </listitem>
+            <listitem>
+              <para>If one of the accounts  above is a different currency from the other account the Currency Transfer pane will be enabled to add either an Exchange Rate or a To Amount.</para>
+            </listitem>
+            <listitem>
+              <para>Select OK to commit the transaction or Cancel to dismiss the dialog without entering the transaction.</para>
+            </listitem>
+          </orderedlist>
+          <para></para>
+        </sect3>
+      </sect2>
+      <sect2 id="trans-multi-enter">
+        <title>To Enter Multiple Split Transactions</title>
+        <para></para>
+        <para>The register window will look slightly different depending on the style options you have chosen. The following describes entering transactions with multiple splits in the basic ledger style. GnuCash describes the accounts that money is transferred to or from in the currently opened transaction a Split. The cursor is placed in the date field by default when the register window is opened.</para>
+        <para></para>
+        <orderedlist>
+          <listitem>
+            <para>Selecting the triangle icon on the right of the date field drops down a date selection dialog. Use the arrows to select the correct month and year for the transaction then select the date. Selecting the triangle icon once more will close the date selection dialog. It is also possible to type in the date or part of the date and let GnuCash fill the rest.</para>
+          </listitem>
+          <listitem>
+            <para>Press tab to move or select the Num field. Here you can enter a check or transaction number. Pressing '+' (plus) will automatically advance the number by one from the last transaction to have a number.</para>
+          </listitem>
+          <listitem>
+            <para>Press tab to move or select the Description field. This field is used to enter either a payee or other description for the transaction. It will automatically attempt to fill the payee name as you type.</para>
+          </listitem>
+          <listitem>
+            <para>At this stage two things will happen if tab is pressed. If GnuCash matches an existing transaction the cursor will jump to one of the amount fields, automatically filling in the transfer account. If there is no existing transaction GnuCash will move the cursor to the Transfer field. Selecting the Transfer field with the mouse instead of tabbing will not automatically fill the Transfer field.</para>
+          </listitem>
+          <listitem>
+            <para>When typing in the Transfer field GnuCash will also attempt to automatically match the account. It does this alphabetically, so typing 'Ex' will match the Expenses section of the account list. When the section is matched, it is possible to move to a child account by pressing ':' (colon). If after typing 'Ex' you press ':' then the cursor will move to the first child account in the list. Typing combinations of letters and ':' will allow movement down the tree of accounts quickly. The triangle icon on the right of the Transfer box can be used as an alternate way of selecting accounts.</para>
+          </listitem>
+          <listitem>
+            <para>The next field is used for reconciliation. This is described in the To Reconcile an Account to a Statement section above.</para>
+          </listitem>
+          <listitem>
+            <para>Press tab to move to the first of the amount fields. The name of the next two columns is different according to what type of account is opened. For example, Bank accounts show Deposit and Withdrawal here, Credit Card accounts show Payment and Charge, and Stock accounts show Shares, Price, Buy and Sell.</para>
+          </listitem>
+          <listitem>
+            <para>Enter the total amount for the transaction in the correct field. </para>
+          </listitem>
+          <listitem>
+            <para>To enter the additional splits, press the Split button on the toolbar or select Actions -&gt; Split Transaction. Transactions with more than one split show '--Split Transaction--' and the Split button will need to be used to show the details.</para>
+          </listitem>
+          <listitem>
+            <para>The display will expand, the titles of the amount columns will be renamed and the Transfer column name will be blank. The first line contains the description and the amount of the transaction. The second line contains the currently opened account name in the Account field and the amount of the transaction. The third line contains the transfer account name in the Account field. If the amount is not balanced GnuCash will indicate this by placing grey checkboxes in the amount columns with the unbalanced amount in a blank fourth row.</para>
+          </listitem>
+          <listitem>
+            <para>When one of the short lines is selected, the column titles will change. The very first and last (Date and Balance) columns will have blank titles. Num will change to Action, Description to Memo, the now blank Transfer column will change to Account. The last two amount columns will show the name described in step seven.</para>
+          </listitem>
+          <listitem>
+            <para>The Action and Memo columns are optional to fill out at this stage. Action is used to describe what kind of account transfer is involved. Memo is an additional description of the transfer.</para>
+          </listitem>
+          <listitem>
+            <para>Move to the missing amount field on the third line and fill in the amount. Pressing the Enter key, selecting the Enter icon or going to Actions -&gt; Enter will now move the cursor to the next line.</para>
+          </listitem>
+          <listitem>
+            <para>The Account column contains the list of transfer accounts. This column is the one that is used to add splits. The method described in step five can be used to select another account on a blank line. Add as many additional splits as needed.</para>
+          </listitem>
+          <listitem>
+            <para>When the transaction is balanced the grey checkboxes will disappear and the last blank line will not have an amount.</para>
+          </listitem>
+          <listitem>
+            <para>Pressing enter as described above past the blank line will jump to the next transaction. Selecting the next transaction will close the split or it can be manually closed by pressing the Split icon or selecting Actions -&gt; Split Transaction.</para>
+          </listitem>
+        </orderedlist>
+      </sect2>
+      <sect2 id="trans-currency-enter">
+        <title>To Enter Multiple Currency Transactions</title>
+        <para></para>
+        <para>Currently transfers between different currencies are only supported by using the Transfer Funds Window described above. It is necessary to use this dialog to add an exchange rate. </para>
+        <para></para>
+        <para>To setup an account as a different currency edit the account properties and change the Commodity field to the foreign currency. This account will now enable the Currency Transfer pane in the Transfer Funds Window.</para>
+      </sect2>
+      <sect2 id="trans-edit">
+        <title>To Edit a Transaction</title>
+        <para></para>
+        <para>Editing a transaction involves just selecting the part of the transaction that needs to be changed. Once the changes are made pressing the Enter key, selecting the Enter icon or going to Actions -&gt; Enter will now move the cursor to the next line or transaction.</para>
+        <para></para>
+        <para>To see a more detailed view of a transaction for editing, press the Split button on the toolbar or select Actions -&gt; Split Transaction.</para>
+      </sect2>
+      <sect2 id="trans-delete">
+        <title>To Delete a Transaction</title>
+        <para></para>
+        <para>If a transaction needs to be removed from the register, select the transaction and press either the Delete icon on the toolbar or go to Actions -&gt; Delete. Parts of a transaction can also be removed by pressing the Split button on the toolbar or selecting Actions -&gt; Split Transaction. The part of the transaction that needs to be deleted can be then selected for deletion.</para>
+      </sect2>
+      <sect2 id="trans-split-remove">
+        <title>To Remove Transaction Splits</title>
+        <para></para>
+        <para>Removing Transaction Splits involves erasing all splits except the one for the account that is opened. This is a useful way of reusing a previous transaction that has multiple splits that need to be changed. (Note this can be done without opening the split, but doing so makes the effect more visible)</para>
+        <para></para>
+        <orderedlist>
+          <listitem>
+            <para>Press the Split button on the toolbar or select Actions -&gt; Split Transaction to open the transaction.</para>
+          </listitem>
+          <listitem>
+            <para>Select Actions -&gt; Remove Transaction Splits.</para>
+          </listitem>
+          <listitem>
+            <para>All Accounts and their related details will be removed except for the currently opened account. </para>
+          </listitem>
+          <listitem>
+            <para>The amount is not balanced and GnuCash will indicate this by placing grey checkboxes in the amount columns with the unbalanced amount in the blank last row.</para>
+          </listitem>
+          <listitem>
+            <para>Edit the transaction to fill in the new details.</para>
+          </listitem>
+        </orderedlist>
+      </sect2>
+      <sect2 id="trans-copy">
+        <title>To Copy a Transaction</title>
+        <para></para>
+        <para>Copying Transactions is available from both the Edit menu and the Actions menu. The Edit menu has Cut Transaction, Copy Transaction and Paste Transaction which allows a whole transaction to be cut or copied and pasted to a new transaction line. This way of copying a transaction will use the date showing in the new transaction blank line.</para>
+        <para></para>
+        <para>The Actions menu also contains Duplicate Transaction... which unlike the previous method allows for choosing a different date.</para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>Select the transaction to duplicate.</para>
+          </listitem>
+          <listitem>
+            <para>Go to Actions -&gt; Duplicate Transaction...</para>
+          </listitem>
+          <listitem>
+            <para>A dialog called Duplicate Transaction will prompt for a new Date and Num for the transaction.</para>
+          </listitem>
+          <listitem>
+            <para>Press OK to add the transaction to the register.</para>
+          </listitem>
+        </itemizedlist>
+      </sect2>
+      <sect2 id="trans-sched">
+        <title>To Schedule Transactions</title>
+        <para></para>
+        <para>Scheduled Transactions provide the ability to have transactions automatically entered into the register at a specified time. The Scheduled Transaction Editor is used to create and edit transactions that are to be added to the register in an automated way. This is combined with the Since Last Run druid to review and enter the transactions. The Mortgage &amp; Loan Repayment druid is used to setup a scheduled transaction to repay a compounding interest loan.</para>
+        <para></para>
+        <para>The easiest way to setup a scheduled transaction is to use an existing transaction in an account register as a template. Select the account you wish to use as a template and then either select the Schedule icon on the toolbar of go to Actions -&gt; Schedule... This will bring up the Make Scheduled Transaction dialog.</para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>Name: Enter here a name to use for the scheduled transaction. This will be used in the Description file of the transaction.</para>
+          </listitem>
+          <listitem>
+            <para>Frequency: Choose the time period you want between scheduled entries. The dates that the transactions will be entered will show in the mini calendar pane to the right.</para>
+          </listitem>
+          <listitem>
+            <para>Start Date: Choose a date for the scheduled transaction to start.</para>
+          </listitem>
+          <listitem>
+            <para>Never End: This scheduled transaction has no finish date.</para>
+          </listitem>
+          <listitem>
+            <para>End Date: Choose a date for the scheduled transaction to end.</para>
+          </listitem>
+          <listitem>
+            <para>Number of Occurrences: Enter the number of times you wish the scheduled transaction to be added to the register.</para>
+          </listitem>
+        </itemizedlist>
+        <para></para>
+        <para>The Advanced... button brings up the Scheduled Transaction Editor's dialog to Edit the Scheduled Transaction. This is described in the next section.</para>
+        <para></para>
+        <sect3 id="trans-sched-editor">
+          <title>Scheduled Transaction Editor</title>
+          <para></para>
+          <para>The Scheduled Transaction Editor is used to access the list of scheduled transactions and edit or remove them. It also provides a calendar which lists upcoming scheduled transactions. Clicking on the calendar view and hovering over any date will pop up a small dialog that shows the transactions scheduled for that day. The yellow highlight in the calendar indicates which days have scheduled transactions. To dismiss the hover dialog click once more.</para>
+          <para></para>
+          <para>The Scheduled Transaction Editor is accessed by going to Actions -&gt; Scheduled Transactions -&gt; Scheduled Transaction Editor. Selecting a transaction from the list and pressing Edit or pressing New will bring up the Edit Scheduled Transaction dialog.</para>
+          <para></para>
+          <para>The Edit Scheduled Transaction dialog is described in the Tool Windows section of this help. This section will describe how to add a new transaction manually.</para>
+          <para></para>
+          <orderedlist>
+            <listitem>
+              <para>Enter a name for the scheduled transaction.</para>
+            </listitem>
+            <listitem>
+              <para>Choose a Frequency in the Recurrence Frequency pane.</para>
+            </listitem>
+            <listitem>
+              <para>Select the details in the bottom part of the Recurrence Frequency pane. The changes are highlighted in the calendar view below.</para>
+            </listitem>
+            <listitem>
+              <para>Select from the Options pane if the transaction is to be created automatically and/or the number of days in advance. Options for reminding in advance and when automatically created can also be selected. Creating automatically cannot use variables in splits.</para>
+            </listitem>
+            <listitem>
+              <para>Select the End options. This can either be No End, a specific End Date or a certain Number of </para>
+            </listitem>
+            <listitem>
+              <para>Enter the transaction in the Template Transaction. This should be similar to entering a transaction in the register.</para>
+            </listitem>
+          </orderedlist>
+        </sect3>
+        <sect3 id="trans-sched-slr">
+          <title>Since Last Run Druid</title>
+          <para></para>
+          <para>The Since Last Run druid is run automatically when GnuCash is started. It is used to enter into the register any transactions that are due to be automatically entered. The run on GnuCash start can be altered in the preferences. To run the Since Last Run druid manually go to Actions -&gt; Scheduled Transactions -&gt; Since Last Run...</para>
+          <para></para>
+          <para>The Since Last Run druid will automatically skip any screens that have no transactions. The following describes every possible screen the druid will show. The three buttons at the very bottom of the screen will not change while using the druid.</para>
+          <para></para>
+          <itemizedlist>
+            <listitem>
+              <para>The Cancel button is used to exit the druid and cancel entering the transactions. Any selections you have made in this druid up to this point will be lost.</para>
+            </listitem>
+            <listitem>
+              <para>The Back button will bring up the previous screen so you can change a selection made on that screen.</para>
+            </listitem>
+            <listitem>
+              <para>The Forward button will bring up the next screen so you can continue though the druid.</para>
+            </listitem>
+          </itemizedlist>
+          <para></para>
+          <para>The first screen shows Transaction Reminders page. This lists scheduled transactions that have been set to give a reminder a number of days in advance. The screen contains three columns. The first column contains the name of the scheduled transaction and the date it is due. The second column contains the Frequency of the scheduled transaction. The third column has the number of Days Away the transaction is due to be entered. To create any transactions in the list instead of just being reminded, select the date line. This will add it to the list of transactions on the To-Create Transaction Preparation page.</para>
+          <para></para>
+          <para>The next screen shows the Auto-Created Transactions Notification page. This lists scheduled transactions that have been set to be automatically created and notify when they are created. Each transaction is presented in a register view that shows the details of the splits in the transaction.</para>
+          <para></para>
+          <para>The next screen shows the To-Create Transaction Preparation page. This lists scheduled transactions that are due to be entered in the register. This screen is divided into three panes. The top left pane contains the list of transactions due to be automatically entered. The top right pane allows you to change the Disposition and has a read only view of the Variables used to create the transaction. The bottom pane contains a read only view of the transactions due to be entered.</para>
+          <para></para>
+          <para>The next screen shows the Created Transaction Review page. This screen displays the list of transactions about to be created and allows for final changes to be made. The list is presented in a register view that shows the details of the splits in the transaction. This is editable in the same way transactions are able to be edited in the register.</para>
+          <para></para>
+          <para>The last screen shows the Obsolete Scheduled Transactions page. This screen displays a list of scheduled transactions that are able to be deleted as the schedule is completed. Select the ones to be removed.</para>
+          <para></para>
+          <itemizedlist>
+            <listitem>
+              <para>The Cancel button is used to exit the druid and cancel creating the scheduled transactions. Any selections you have made in this druid up to this point will be lost.</para>
+            </listitem>
+            <listitem>
+              <para>The Back button will bring up the previous screen so you can change a selection made on that screen.</para>
+            </listitem>
+            <listitem>
+              <para>The Finish button creates the accounts you have selected.</para>
+            </listitem>
+          </itemizedlist>
+          <para></para>
+          <para>The Since Last Run druid has now added the scheduled transactions to the register.</para>
+        </sect3>
+        <sect3 id="trans-sched-loans">
+          <title>Mortgage &amp; Loan Repayment Druid</title>
+          <para></para>
+          <para>This druid creates a loan repayment scheduled transaction. When used to setup a scheduled transaction, the druid creates a variable formula so that the compounding interest is correctly calculated. To start this druid manually go to Actions -&gt; Scheduled Transactions -&gt; Mortgage and Loan Repayment... </para>
+          <para></para>
+          <para>The Mortgage and Loan Repayment druid opens with a screen that briefly describes what this druid does. The three buttons at the very bottom of the screen will not change while using the druid.</para>
+          <para></para>
+          <itemizedlist>
+            <listitem>
+              <para>The Cancel button is used to exit the druid and cancel creating the scheduled transaction. Any selections you have made in this druid up to this point will be lost.</para>
+            </listitem>
+            <listitem>
+              <para>The Back button will bring up the previous screen so you can change a selection made on that screen.</para>
+            </listitem>
+            <listitem>
+              <para>The Forward button will bring up the next screen so you can continue though the druid.</para>
+            </listitem>
+          </itemizedlist>
+          <para></para>
+          <para>The next screen allows you to enter the basic loan information. This is usually the information provided by the bank when loan and disclosure documents are given to the borrower. Here you can also setup an account that the scheduled transaction will use to enter the payment transaction.</para>
+          <para></para>
+          <itemizedlist>
+            <listitem>
+              <para>Loan Account: Choose an account for the loan payment transactions or use New... to setup a new account for the transactions.</para>
+            </listitem>
+            <listitem>
+              <para>Loan Amount: Enter the amount of the loan.</para>
+            </listitem>
+            <listitem>
+              <para>Interest Rate: Enter the loan interest rate.</para>
+            </listitem>
+            <listitem>
+              <para>Type: Choose the type of loan. If an adjustable rate is used the frequency screen is enabled.</para>
+            </listitem>
+            <listitem>
+              <para>Interest Rate Change Frequency: Choose the frequency for the rate change and the start date of the rate change.</para>
+            </listitem>
+            <listitem>
+              <para>Start Date: Choose the date the loan is starting on.</para>
+            </listitem>
+            <listitem>
+              <para>Length: Enter the length of the loan.</para>
+            </listitem>
+            <listitem>
+              <para>Months Remaining: This should be automatically calculated. Choose how many months are remaining on the loan.</para>
+            </listitem>
+          </itemizedlist>
+          <para></para>
+          <para>The next screen is used to set escrow, insurance and tax options for the loan. It is mainly used for mortgage payments. When each of the options here is set, this enables additional pages in the druid to setup those portions of the payments. All of the pages will be described here, even though some may not show if that option is not chosen.</para>
+          <para></para>
+          <itemizedlist>
+            <listitem>
+              <para>... utilize an escrow account for payments?: This selection enables the use of an account setup for tracking escrow payments. If the mortgage or loan uses an escrow account to pay taxes, insurance, etc then setup an account here.</para>
+            </listitem>
+            <listitem>
+              <para>... pay "Taxes"?: adds an additional page to setup a scheduled transaction to pay taxes.</para>
+            </listitem>
+            <listitem>
+              <para>... pay "Insurance"?: adds an additional page to setup a scheduled transaction to pay insurance payments.</para>
+            </listitem>
+            <listitem>
+              <para>... pay "PMI"?: adds an additional page to setup a scheduled transaction to pay PMI payments.</para>
+            </listitem>
+            <listitem>
+              <para>... pay "Other Expense"?: adds an additional page to setup a scheduled transaction to pay other expenses.</para>
+            </listitem>
+          </itemizedlist>
+          <para></para>
+          <para>The next screen is used to setup the details of the scheduled transaction for the Loan Repayment.</para>
+          <para></para>
+          <itemizedlist>
+            <listitem>
+              <para>Transaction Memo: The name entered here will be used as the name for the scheduled transaction, the description of the scheduled transaction and the memo.</para>
+            </listitem>
+            <listitem>
+              <para>Payment Amount: Shows the variable used to calculate the payment amount.</para>
+            </listitem>
+            <listitem>
+              <para>Payment From: Choose an account to pay the loan amount from.</para>
+            </listitem>
+            <listitem>
+              <para>Principal To: Choose an account to transfer the principal part of the loan to.</para>
+            </listitem>
+            <listitem>
+              <para>Interest To: Choose an account to transfer the interest part of the loan to.</para>
+            </listitem>
+            <listitem>
+              <para>Remainder to: Choose an account to transfer the rest of the payment amount to.</para>
+            </listitem>
+            <listitem>
+              <para>Repayment Frequency: Select the Frequency and start date for loan repayments.</para>
+            </listitem>
+          </itemizedlist>
+          <para></para>
+          <para>The next screen is used to setup the details of the scheduled transaction for the Tax payment.</para>
+          <para></para>
+          <itemizedlist>
+            <listitem>
+              <para>Transaction Memo: The name entered here will be used as the name for the scheduled transaction, the description of the scheduled transaction and the memo.</para>
+            </listitem>
+            <listitem>
+              <para>Amount: Enter the payment amount.</para>
+            </listitem>
+            <listitem>
+              <para>Payment From: Choose an account to pay the tax amount from.</para>
+            </listitem>
+            <listitem>
+              <para>Payment To: Choose an account to transfer the tax payment to.</para>
+            </listitem>
+            <listitem>
+              <para>Repayment Frequency: Select the Frequency and start date for tax payments.</para>
+            </listitem>
+          </itemizedlist>
+          <para></para>
+          <para>The next screen is used to setup the details of the scheduled transaction for the Insurance payment.</para>
+          <para></para>
+          <itemizedlist>
+            <listitem>
+              <para>Transaction Memo: The name entered here will be used as the name for the scheduled transaction, the description of the scheduled transaction and the memo.</para>
+            </listitem>
+            <listitem>
+              <para>Amount: Enter the payment amount.</para>
+            </listitem>
+            <listitem>
+              <para>Payment From: Choose an account to pay the insurance amount from.</para>
+            </listitem>
+            <listitem>
+              <para>Payment To: Choose an account to transfer the insurance payment to.</para>
+            </listitem>
+            <listitem>
+              <para>Repayment Frequency: Select the Frequency and start date for insurance payments.</para>
+            </listitem>
+          </itemizedlist>
+          <para></para>
+          <para>The next screen is used to setup the details of the scheduled transaction for the PMI payment.</para>
+          <para></para>
+          <itemizedlist>
+            <listitem>
+              <para>Transaction Memo: The name entered here will be used as the name for the scheduled transaction, the description of the scheduled transaction and the memo.</para>
+            </listitem>
+            <listitem>
+              <para>Amount: Enter the payment amount.</para>
+            </listitem>
+            <listitem>
+              <para>Payment From: Choose an account to pay the PMI amount from.</para>
+            </listitem>
+            <listitem>
+              <para>Payment To: Choose an account to transfer the PMI payment to.</para>
+            </listitem>
+            <listitem>
+              <para>Repayment Frequency: Select the Frequency and start date for PMI payments.</para>
+            </listitem>
+          </itemizedlist>
+          <para></para>
+          <para>The next screen is used to setup the details of the scheduled transaction for the Other Expense payment.</para>
+          <para></para>
+          <itemizedlist>
+            <listitem>
+              <para>Transaction Memo: The name entered here will be used as the name for the scheduled transaction, the description of the scheduled transaction and the memo.</para>
+            </listitem>
+            <listitem>
+              <para>Amount: Enter the payment amount.</para>
+            </listitem>
+            <listitem>
+              <para>Payment From: Choose an account to pay the other expense amount from.</para>
+            </listitem>
+            <listitem>
+              <para>Payment To: Choose an account to transfer the other expense payment to.</para>
+            </listitem>
+            <listitem>
+              <para>Repayment Frequency: Select the Frequency and start date for other expense payments.</para>
+            </listitem>
+          </itemizedlist>
+          <para></para>
+          <para>The last screen gives you a list of three choices to finish the druid.</para>
+          <para></para>
+          <itemizedlist>
+            <listitem>
+              <para>The Cancel button is used to exit the druid and cancel creating a new loan scheduled transaction. Any selections you have made in this druid up to this point will be lost.</para>
+            </listitem>
+            <listitem>
+              <para>The Back button will bring up the previous screen so you can change a selection made on that screen.</para>
+            </listitem>
+            <listitem>
+              <para>The Finish button creates the scheduled transaction.</para>
+            </listitem>
+          </itemizedlist>
+          <para></para>
+          <para>You should now have the Mortgage or Loan Repayment scheduled transaction setup.</para>
+          <para></para>
+        </sect3>
+      </sect2>
+      <sect2 id="print-check">
+        <title>To Print Checks</title>
+        <para></para>
+        <para>Checks are printed in GnuCash from the account register. GnuCash provides the ability to print to standard Quicken Checks (US Letter) or to make a custom check format. Check position and Date formats are also customizable.</para>
+        <para></para>
+        <para>To access the check printing feature in GnuCash, select the transaction to print a check for and go to File -&gt; Print Check. This will open the Print Check properties dialog.</para>
+        <para></para>
+        <para>The Print Check dialog has two tabs. The first tab, Options, is used to setup the most common options to print a check. The second tab, Custom format, is used to setup the position of various fields on the check. It is useful to print a test check to a plain piece of paper first and use that to make any adjustments needed.</para>
+        <para></para>
+        <para>The default selection in Options is for Quicken/Quickbooks (tm) US-Letter checks.</para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>Check format: Test with Quicken first then use custom if the position is incorrect.</para>
+          </listitem>
+          <listitem>
+            <para>Check position: This sets if the Top, Middle or Bottom check is printed. Custom is used if the position of the checks on the page is incorrect.</para>
+          </listitem>
+          <listitem>
+            <para>Date format: The default here is set in the Preferences International section. Choose a date format. This can also be adjusted by the Use of the Months: and Years: lines. Custom allows the date format to be set in the Format: box (%m means month, %d means day, %Y means year) A Sample of the format chosen is displayed below.</para>
+          </listitem>
+        </itemizedlist>
+        <para></para>
+        <para>The Custom check format contains two columns to enter in the X and Y co-ordinates of the field position on the check. Positions in the Custom Check Format entry area are specified with x = 0 at the left edge of the check with x increasing to the right, and y = 0 at the bottom edge of the check with y increasing as you travel up.</para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>Payee: </para>
+          </listitem>
+          <listitem>
+            <para>Date: </para>
+          </listitem>
+          <listitem>
+            <para>Amount (words): </para>
+          </listitem>
+          <listitem>
+            <para>Amount (numbers): </para>
+          </listitem>
+          <listitem>
+            <para>Memo: </para>
+          </listitem>
+          <listitem>
+            <para>Check position: </para>
+          </listitem>
+          <listitem>
+            <para>Date format: </para>
+          </listitem>
+          <listitem>
+            <para>Units: Set the unit to use for the above positions.</para>
+          </listitem>
+        </itemizedlist>
+        <para></para>
+        <para>Once OK is pressed on the Print Check dialog the Print GnuCash Document dialog is presented. Press OK to print the check.</para>
+        <para></para>
+      </sect2>
+    </sect1>
+    <sect1 id="reports">
+      <title>Using  Reports And Charts</title>
+      <para></para>
+      <para>Reports and Charts give GnuCash the ability to present an overview of financial data in various ways. This can range from a simple summary of account totals to an advanced portfolio view. This section will present an explanation of the main GnuCash reports and how to adjust them.</para>
+      <para></para>
+      <sect2 id="report-types">
+        <title>Types of Reports and Graphs</title>
+        <para></para>
+        <para>GnuCash has classified the main types of reports into four major classes. These are all available under the Reports menu. Note that barcharts can be moved by clicking on them and dragging the mouse, and piecharts can be "exploded" into individual segments.</para>
+        <para></para>
+        <sect3 id="report-general">
+          <title>General Reports</title>
+          <para></para>
+          <para>The General Reports includes the Tax Report and TXF Export, the Account Summary and the Transaction Reports and also the reports in the Sample &amp; Custom menu.</para>
+          <para></para>
+          <itemizedlist>
+            <listitem>
+              <para>Account Summary:</para>
+            </listitem>
+            <listitem>
+              <para>Tax Report and TXF Export: The tax report is used to export all tax related Income and Expenses to a TXF (Tax eXchange Format) file. This is in addition to the html format that all reports allow. The TXF file can be imported into tax filing programs such as TaxCut or TurboTax. (See Note 1)</para>
+            </listitem>
+            <listitem>
+              <para>Transaction Report:</para>
+            </listitem>
+            <listitem>
+              <para>Welcome Sample Report:</para>
+            </listitem>
+            <listitem>
+              <para>Custom Multicolumn Report: This report is used to place multiple reports into a single report window to examine a set of financial information at a glance.</para>
+            </listitem>
+            <listitem>
+              <para>Custom Web Report:</para>
+            </listitem>
+            <listitem>
+              <para>Sample Report with Examples:</para>
+            </listitem>
+          </itemizedlist>
+          <para></para>
+          <para>Note 1: For this to work, the user has to segregate taxable and non taxable income to different accounts, as well as deductible and non deductible expenses. The Tax Information dialog is used for this. To access the Tax Information dialog go to Edit -&gt; Tax Options. The user also must set the TXF category of each tax related account. The Tax Information dialog is described in the Setting Tax Options section.</para>
+          <para></para>
+        </sect3>
+        <sect3 id="report-assets">
+          <title>Assets &amp; Liabilities</title>
+          <para></para>
+          <para>The Assets &amp; Liabilities reports includes the Balance Sheet report, Investment reports and the Net Worth report.</para>
+          <para></para>
+          <itemizedlist>
+            <listitem>
+              <para>Advanced Portfolio:</para>
+            </listitem>
+            <listitem>
+              <para>Asset Barchart:</para>
+            </listitem>
+            <listitem>
+              <para>Asset Piechart:</para>
+            </listitem>
+            <listitem>
+              <para>Average Balance:</para>
+            </listitem>
+            <listitem>
+              <para>Balance Sheet: This report summarizes assets, liabilities, and equity. When properly maintained, assets should equal the sum of liabilities and equity. If that is not the case, there is some kind of internal imbalance in the accounts.</para>
+            </listitem>
+            <listitem>
+              <para>Investment Portfolio: This report summarizes the value of the stocks in the current portfolio.</para>
+            </listitem>
+            <listitem>
+              <para>Liability Barchart:</para>
+            </listitem>
+            <listitem>
+              <para>Liability Piechart:</para>
+            </listitem>
+            <listitem>
+              <para>Net Worth Barchart: Net worth is the difference between the value of assets or liabilities.</para>
+            </listitem>
+            <listitem>
+              <para>Price Scatterplot:</para>
+            </listitem>
+          </itemizedlist>
+        </sect3>
+        <sect3 id="report-income">
+          <title>Income &amp; Expense</title>
+          <para></para>
+          <para>The Income &amp; Expense reports includes the Cash Flow and Profit &amp; Loss reports.</para>
+          <para></para>
+          <itemizedlist>
+            <listitem>
+              <para>Cash Flow:</para>
+            </listitem>
+            <listitem>
+              <para>Expense Barchart:</para>
+            </listitem>
+            <listitem>
+              <para>Expense Piechart:</para>
+            </listitem>
+            <listitem>
+              <para>Income &amp; Expense Chart:</para>
+            </listitem>
+            <listitem>
+              <para>Income Barchart:</para>
+            </listitem>
+            <listitem>
+              <para>Income Piechart:</para>
+            </listitem>
+            <listitem>
+              <para>Profit &amp; Loss: This report summarizes sources of income and expenditure.</para>
+            </listitem>
+          </itemizedlist>
+          <para></para>
+        </sect3>
+        <sect3 id="report-biz">
+          <title>Business Reports</title>
+          <para></para>
+          <para>The Business Reports includes Customer and Vendor Reports and Printable Invoices as well as Aging reports.</para>
+          <para></para>
+          <itemizedlist>
+            <listitem>
+              <para>Customer Report:</para>
+            </listitem>
+            <listitem>
+              <para>Payable Aging:</para>
+            </listitem>
+            <listitem>
+              <para>Printable Invoice:</para>
+            </listitem>
+            <listitem>
+              <para>Receivable Aging:</para>
+            </listitem>
+            <listitem>
+              <para>Vendor Report:</para>
+            </listitem>
+          </itemizedlist>
+          <para></para>
+        </sect3>
+      </sect2>
+      <sect2 id="report-create">
+        <title>To Create Reports and Graphs</title>
+        <para></para>
+        <para>It is possible to write reports if the current ones are not suitable. To do this you will need to know Scheme (a LISP-like programming language), and it is an excellent idea to have a copy of the GnuCash source code available. </para>
+        <para>The reporting interface is documented in the source code
+	  file src/report/report-system/doc/report-html.txt. The file src/scm/report/hello-world.scm in the GnuCash source distribution provides a good example of how reports are developed.</para>
+        <para>It is also necessary to access data from the engine to get information for your report. This is performed by a set of Scheme wrapper functions that are documented in the file src/g-wrap/gnc.html. Examine some of the other reports in src/scm/report for an indication of how they are used.</para>
+        <para>At present, reports are produced by calling a HTML-generation API, which outputs a dialect of HTML and rendering this with a HTML widget. This has limitations, particularly when trying to align objects precisely, as might be necessary for printing onto pre-printed invoices for example.</para>
+      </sect2>
+      <sect2 id="report-custom">
+        <title>To Customize Reports and Graphs</title>
+        <para></para>
+        <para>GnuCash reports have many options for customization. To access report options choose the Options button on the toolbar.</para>
+        <para></para>
+        <para>Many reports share similar sorts of options. Some common ones include:</para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>Report Name: Set the title of the report. This is also used to print the report for later viewing.</para>
+          </listitem>
+          <listitem>
+            <para>Date Options: Reports typically specify either a single date, or a date range, for the report. Dates can be specified in two ways, either directly (using the date selector), or by selecting a relative date from the menu. Relative dates allow you to specify dates like "Beginning of this year" or "Today".</para>
+          </listitem>
+          <listitem>
+            <para>Step Size: This option is used on bar charts to determine the interval which each bar represents. Typical values are daily, weekly, monthly, and yearly.</para>
+          </listitem>
+          <listitem>
+            <para>Accounts: Select the appropriate accounts for the report. Note that in some reports only certain types of accounts can be selected. For example, an expense piechart only allows expense accounts to be selected. </para>
+          </listitem>
+          <listitem>
+            <para>Show Long Account Names: This option allows displaying either short account names (for example, Power) or long account names (for example, Utilities:Power).</para>
+          </listitem>
+          <listitem>
+            <para>Include Subaccounts?: Summary reports typically have an include all subaccounts option, which if selected ensures that all subaccounts are included if the parent account is.</para>
+          </listitem>
+          <listitem>
+            <para>Depth: This option allows the selection of how many levels the report displays subaccounts. If the subaccounts go deeper than selected, an overall value for all the subaccounts is calculated and included in a total. To make sure every account selected is individually displayed, select All.</para>
+          </listitem>
+          <listitem>
+            <para>Style Sheet: Select a Style Sheet. Style sheets control how reports are displayed. At the moment, there are two style sheets, "default" and "technicolor". You can customize each of these from the Edit -&gt; Style Sheets... menu item. This is described in the Changing Style Sheets section.</para>
+          </listitem>
+          <listitem>
+            <para>Plot Dimensions: There are width and height options for most graphs, which specify the displayed dimensions (in pixels).</para>
+          </listitem>
+          <listitem>
+            <para>Report Currency: Select the report currency. Generally, values will be converted to this currency for display.</para>
+          </listitem>
+          <listitem>
+            <para>Price Source: Select how stock and currency prices are calculated in this report. Choose between a weighted average of prices over all transactions, prices at current values, or prices at the time of the report date.</para>
+          </listitem>
+          <listitem>
+            <para>Totals: Charts display totals in the chart legend if this option is selected. </para>
+          </listitem>
+          <listitem>
+            <para>Maximum Slices: Controls the maximum number of slices displayed in a piechart - other accounts will be placed in a slice marked Other. </para>
+          </listitem>
+          <listitem>
+            <para>Maximum Bars: Controls the maximum number of bars displayed in a barchart.</para>
+          </listitem>
+          <listitem>
+            <para>Display Columns: Choose columns to show from the register.</para>
+          </listitem>
+        </itemizedlist>
+        <para></para>
+      </sect2>
+      <sect2 id="report-print">
+        <title>To Print or Export Reports and Graphs</title>
+        <para></para>
+        <para>GnuCash is able to print reports and to export the reports to web pages. The Print GnuCash Document dialog is accessed from the Print button on the toolbar or go to File -&gt; Print in the menu. To Export a report to a web page (HTML) select the Export button on the toolbar and type in a file name.</para>
+        <para></para>
+        <para>The Print GnuCash Document dialog is used to select which Printer to send the print job to or to print to a File. It also contains a Preview button to view the document before printing. Press Print to send the job to the selected printer or Cancel to dismiss the Print dialog.</para>
+        <para></para>
+        <para>Printing from an open register prints the Account Report, which is also called the Register Report. This lists transactions in the account with a total. Other reports print as viewed in the Report screen.</para>
+      </sect2>
+    </sect1>
+  </chapter>
--- /dev/null
+++ help/C/intro.xml
@@ -0,0 +1,20 @@
+<!--
+      (Do not remove this comment block.)
+  Version: 1.8.4
+  Last modified: February 28th 2005
+  Maintainers:
+               Chris Lyttle <chris at wilddev.net>
+               Neil Williams <linux at codehelp.co.uk>
+  Author:
+  		Jon Lapham <lapham at extracta.com.br>
+  Originally written by Carol Champagne.
+  Translators:
+               (translators put your name and email here)
+-->
+<chapter id="intro-to-gnucash">
+<title>Introduction to GnuCash</title>
+  <sect1 id="what-is-gnucash">
+    <title>What is GnuCash?</title>
+    <para>GnuCash is a personal and small business finance application. Its designed to be easy to use, yet powerful and flexible. GnuCash allows you to track your income and expenses, reconcile bank accounts, monitor stock portfolios and manage your small business finances. It is based on professional accounting principles to ensure balanced books and accurate reports.</para>
+  </sect1>
+</chapter>diff -pub '--ignore-matching-lines=\$\(Author\|Date\|Header\|Id\|Locker\|Name\|RCSfile\|Revision\|Source\|State\)[^$]*\$' /dev/null 'calvin/gnucash-docs/help/C/usage.xml'
--- /dev/null
+++ help/C/gettingstarted.xml
@@ -0,0 +1,566 @@
+<!--
+      (Do not remove this comment block.)
+  Version: 1.8.4
+  Last modified: February 28th 2005
+  Maintainers:
+               Chris Lyttle <chris at wilddev.net>
+               Neil Williams <linux at codehelp.co.uk>
+  Author:
+  		Jon Lapham <lapham at extracta.com.br>
+  Originally written by Carol Champagne.
+  Translators:
+               (translators put your name and email here)
+-->
+  <chapter id="getting-started">
+    <title>Getting Started</title>
+    <sect1 id="first-time">
+      <title>Running GnuCash for the first time</title>
+      <para></para>
+      <para>The very first time you run GnuCash you will be presented with the
+        <guilabel>Welcome to GnuCash! </guilabel>menu with three choices. The following table describes the contents of the menu.
+      </para>
+      <para></para>
+      <table frame="topbot" id="Table1">
+    <title></title>
+        <tgroup cols="2">
+          <tbody>
+            <row>
+              <entry><para>Menu Item</para></entry>
+              <entry><para>Description</para></entry>
+            </row>
+            <row>
+              <entry><para>
+                  <guibutton>Create a new set of accounts</guibutton>
+                </para></entry>
+              <entry><para>Runs the New Account Hierarchy Setup Druid.
+              </para></entry>
+            </row>
+            <row>
+              <entry><para>
+                  <guibutton>Import my QIF files</guibutton>
+                </para></entry>
+              <entry><para>Runs the Import QIF Files Druid.</para></entry>
+            </row>
+            <row>
+              <entry><para>
+                  <guibutton>Open the new user tutorial</guibutton>
+                </para></entry>
+              <entry><para>Opens the GnuCash Tutorial and Concepts Guide.
+              </para></entry>
+            </row>
+          </tbody>
+        </tgroup>
+      </table>
+      <para></para>
+      <para>This menu is intended for you to use to get quickly up and running. </para>
+      <para></para>
+      <itemizedlist>
+        <listitem>
+          <para>The
+            <guibutton>Cancel</guibutton> button is used to exit the dialog. It will then prompt you to uncheck the checkbox if you do not want to see the
+            <guilabel>Welcome to GnuCash!</guilabel> menu again. The default is to have the
+            <guilabel>Welcome to GnuCash!</guilabel> menu run again.
+          </para>
+        </listitem>
+        <listitem>
+          <para>The
+            <guibutton>OK </guibutton>button is used to confirm your selection.
+          </para>
+        </listitem>
+      </itemizedlist>
+      <para></para>
+      <para>You can either use a preset hierarchy of accounts, import Quicken files (QIF files) or view the GnuCash Tutorial and Concepts Guide. Each of these choices will be explained in more depth in the following sections.</para>
+      <para></para>
+      <itemizedlist>
+        <listitem>
+          <para>If you wish to have a basic set of accounts to add account transactions into choose
+            <guibutton>Create a new set of accounts.</guibutton>
+          </para>
+        </listitem>
+        <listitem>
+          <para>If you already have Quicken files (QIF files) from another financial application and wish to import them then choose
+            <guibutton>Import my QIF files.</guibutton>
+          </para>
+        </listitem>
+        <listitem>
+          <para>If you are a new to GnuCash and just want to be guided though setting up GnuCash then choose
+            <guibutton>Open the new user tutorial.</guibutton>
+          </para>
+        </listitem>
+      </itemizedlist>
+      <para></para>
+      <para>It is possible to run these items after you have made a choice here but this
+        <guilabel>Welcome to GnuCash!</guilabel> menu will not reappear. To try one of the other choices later, use the following sections to start the other items from the GnuCash menu.
+      </para>
+      <sect2 id="acct-hierarchy">
+        <title>New Account Hierarchy Setup</title>
+        <para></para>
+        <para>This druid helps you to create a set of GnuCash accounts. It will appear if you choose
+          <guibutton>Create a new set of accounts</guibutton> in the
+          <guilabel>Welcome to GnuCash! </guilabel>menu.
+        </para>
+        <para></para>
+        <para>To start this druid manually go to
+          <guimenu>File</guimenu> -&gt;
+          <guimenuitem>New File</guimenuitem>. This will create a new blank GnuCash file and then automatically start the
+          <guilabel>New Account Hierarchy Setup</guilabel> druid.
+        </para>
+        <para></para>
+        <para>The
+          <guilabel>New Account Hierarchy Setup</guilabel> druid opens with a screen that briefly describes what this druid does. The three buttons at the very bottom of the screen will not change while using the druid.
+        </para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>The
+              <guibutton>Cancel</guibutton> button is used to exit the druid and cancel creating a new set of accounts. Any selections you have made in this druid up to this point will be lost.
+            </para>
+          </listitem>
+          <listitem>
+            <para>The
+              <guibutton>Back</guibutton> button will bring up the previous screen so you can change a selection made on that screen.
+            </para>
+          </listitem>
+          <listitem>
+            <para>The
+              <guibutton>Forward</guibutton> button will bring up the next screen so you can continue though the druid.
+            </para>
+          </listitem>
+        </itemizedlist>
+        <para></para>
+        <para>The next screen allows you to select the default currency to use for your accounts. The
+          <guibutton>Select...</guibutton> button on this screen is used to access the list of currencies. The
+          <guibutton>Select... </guibutton>button brings up the
+          <guilabel>Select currency/security</guilabel> dialog.
+        </para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>The
+              <guilabel>Type: </guilabel>drop down list defaults to
+              <guibutton>CURRENCY</guibutton>. Other types are used for setting up commodities for stock related accounts.
+            </para>
+          </listitem>
+          <listitem>
+            <para>The
+              <guilabel>Currency or security:</guilabel> drop down list defaults to
+              <guibutton>USD (US Dollar)</guibutton>. If you wish your accounts to use a different default currency select one from the list.
+            </para>
+          </listitem>
+          <listitem>
+            <para>The
+              <guibutton>OK </guibutton>button is used to confirm your selection.
+            </para>
+          </listitem>
+          <listitem>
+            <para>The
+              <guibutton>New... </guibutton>button brings up the
+              <guilabel>New Currency or Security</guilabel> dialog. This is used for setting up commodities for stock related accounts.
+            </para>
+          </listitem>
+          <listitem>
+            <para>The
+              <guibutton>Cancel</guibutton> button is used to exit the dialog without using any changes you have made.
+            </para>
+          </listitem>
+        </itemizedlist>
+        <para></para>
+        <para>The next screen is used to choose a hierarchy of accounts to create. You will see a screen divided into three parts. </para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>The top part has a list of
+              <guilabel>Account Types and Descriptions </guilabel>for commonly used hierarchies of accounts. Select from this list the types of accounts you wish to use. You can select as many types of accounts as you wish.
+            </para>
+          </listitem>
+          <listitem>
+            <para>The left bottom part has a
+              <guilabel>Detailed Description</guilabel> of the account type you selected.
+            </para>
+          </listitem>
+          <listitem>
+            <para>The right bottom part has a list of the
+              <guilabel>Accounts</guilabel> that will be created from the selected account type.
+            </para>
+          </listitem>
+          <listitem>
+            <para>The
+              <guibutton>Select All</guibutton> button allows you to include all of the account types from the top part.
+            </para>
+          </listitem>
+          <listitem>
+            <para>The
+              <guibutton>Clear All </guibutton>button allows you to deselect all of the account types from the top part.
+            </para>
+          </listitem>
+        </itemizedlist>
+        <para></para>
+        <para>The next screen allows you to enter opening balances for your accounts and also select if the account is a placeholder account. Placeholder accounts are used to create a hierarchy of accounts and normally do not have transactions or opening balances. Equity accounts also do not have opening balances.</para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>The left side of the screen has a list of
+              <guilabel>Account Names</guilabel>. Select each account to enter a opening balance or to make it a placeholder account.
+            </para>
+          </listitem>
+          <listitem>
+            <para>The right side of the screen has a checkbox to make an account a
+              <guibutton>Placeholder</guibutton> and a box to add the
+              <guilabel>Opening Balance</guilabel> for the selected account.
+            </para>
+          </listitem>
+        </itemizedlist>
+        <para></para>
+        <para>The last screen gives you a list of three choices to finish the druid.</para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>The
+              <guibutton>Cancel</guibutton> button is used to exit the druid and cancel creating a new set of accounts. Any selections you have made in this druid up to this point will be lost.
+            </para>
+          </listitem>
+          <listitem>
+            <para>The
+              <guibutton>Back</guibutton> button will bring up the previous screen so you can change a selection made on that screen.
+            </para>
+          </listitem>
+          <listitem>
+            <para>The
+              <guibutton>Finish</guibutton> button creates the accounts you have selected.
+            </para>
+          </listitem>
+        </itemizedlist>
+        <para></para>
+        <para>You should now have a hierarchy of accounts in your main GnuCash account window.</para>
+      </sect2>
+      <sect2 id="import-qif">
+        <title>Import QIF Files</title>
+        <para></para>
+        <para>This Druid helps you import Quicken (QIF) files. It will appear if you choose
+          <guibutton>Import my QIF files</guibutton> in the
+          <guilabel>Welcome to GnuCash! </guilabel>menu.
+        </para>
+        <para></para>
+        <para>To start this druid manually go to
+          <guimenu>File</guimenu> -&gt;
+          <guimenu>Import</guimenu> -&gt;
+          <guimenuitem>Import QIF...</guimenuitem> or press Ctrl-I.
+        </para>
+        <para></para>
+        <para>The
+          <guilabel>Import QIF files</guilabel> druid opens with a screen that briefly describes what this druid does. The three buttons at the very bottom of the screen will not change while using the druid.
+        </para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>The
+              <guibutton>Cancel</guibutton> button is used to exit the druid and cancel importing Quicken file data. Any selections you have made in this druid up to this point will be lost.
+            </para>
+          </listitem>
+          <listitem>
+            <para>The
+              <guibutton>Back</guibutton> button will bring up the previous screen so you can change a selection made on that screen.
+            </para>
+          </listitem>
+          <listitem>
+            <para>The
+              <guibutton>Forward </guibutton>button will bring up the next screen so you can continue though the druid.
+            </para>
+          </listitem>
+        </itemizedlist>
+        <para></para>
+        <para>The next screen allows you to
+          <guilabel>Select a QIF file to load</guilabel>. The
+          <guibutton>Select...</guibutton> button on this screen is used to access the list of files. The
+          <guibutton>Select...</guibutton> button brings up the
+          <guilabel>Select QIF File</guilabel> dialog.
+        </para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>The
+              <guibutton>Create Dir</guibutton> button allows you to make a directory to store the GnuCash files.
+            </para>
+          </listitem>
+          <listitem>
+            <para>The
+              <guibutton>Delete File</guibutton> button allows you to remove unwanted files.
+            </para>
+          </listitem>
+          <listitem>
+            <para>The
+              <guibutton>Rename File </guibutton>button allows you to rename GnuCash files.
+            </para>
+          </listitem>
+          <listitem>
+            <para>The drop down list allows you to navigate the directory structure.</para>
+          </listitem>
+          <listitem>
+            <para>The left panel allows you to navigate up and down by directory</para>
+          </listitem>
+          <listitem>
+            <para>The right panel allows you to select the file you want</para>
+          </listitem>
+          <listitem>
+            <para>The
+              <guibutton>OK</guibutton> button is used to confirm your selection.
+            </para>
+          </listitem>
+          <listitem>
+            <para>The
+              <guibutton>Cancel</guibutton> button is used to exit the dialog without using any changes you have made.
+            </para>
+          </listitem>
+        </itemizedlist>
+        <para></para>
+        <para>Navigate to where you have stored your QIF files and select the first one then click
+          <guibutton>OK</guibutton>. You will now see it listed in the
+          <guilabel>QIF Filename:</guilabel> field.
+        </para>
+        <para></para>
+        <para>If the file you are loading does not have an account name listed in it you will see the
+          <guilabel>Set the default QIF account name</guilabel> screen. Otherwise you will skip this screen and go on to the screen in the next section that shows loaded QIF files.
+        </para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>The
+              <guilabel>Account name:</guilabel> field is used to set an account name for this QIF file.
+            </para>
+          </listitem>
+        </itemizedlist>
+        <para></para>
+        <para>The next screen shows you the
+          <guilabel>QIF files you have loaded</guilabel>. You can use this screen to return to the previous screen and load more QIF files. It will also let you unload any files you have loaded by mistake.
+        </para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>The top panel shows the list of
+              <guilabel>QIF Files</guilabel> you have loaded.
+            </para>
+          </listitem>
+          <listitem>
+            <para>The
+              <guilabel>Load another file</guilabel> button takes you back to the previous screen to load another QIF file.
+            </para>
+          </listitem>
+          <listitem>
+            <para>The
+              <guilabel>Unload selected file</guilabel> allows you to select a file from the top panel and remove it from the list.
+            </para>
+          </listitem>
+        </itemizedlist>
+        <para></para>
+        <para>The next screen gives a description of the
+          <guilabel>Accounts and stock holdings</guilabel> matching process on the
+          <guilabel>Match QIF accounts with GnuCash accounts</guilabel> screen. This and other informational screens in the
+          <guilabel>Import QIF files</guilabel> druid can be turned off in the
+          <guilabel>Online Banking &amp; Importing</guilabel> section of the
+          <guilabel>GnuCash Preferences</guilabel>. Please refer to the
+          <guilabel>GnuCash Preferences</guilabel> section of the help for instructions on this.
+        </para>
+        <para></para>
+        <para>The next screen lets you
+          <guilabel>Match QIF accounts with GnuCash accounts</guilabel>. You will see a list of
+          <guilabel>QIF account names</guilabel> on the left and suggested
+          <guilabel>GnuCash account names</guilabel> on the right. The
+          <guilabel>New?</guilabel> column indicates if the GnuCash account name will be created by the QIF Import.
+        </para>
+        <para></para>
+        <para>To change the GnuCash account to a different one select the QIF account. A dialog will pop up to select another account or create a new one.</para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>Select an account from the list to choose a already existing account.</para>
+          </listitem>
+          <listitem>
+            <para>The
+              <guibutton>New Account (child of selected) ...</guibutton> button allows you to add a new account name as a sub-account of the selected account.
+            </para>
+          </listitem>
+          <listitem>
+            <para>The
+              <guibutton>OK</guibutton> button is used to confirm your selection.
+            </para>
+          </listitem>
+          <listitem>
+            <para>The
+              <guibutton>Cancel</guibutton> button is used to exit the dialog without using any changes you have made.
+            </para>
+          </listitem>
+        </itemizedlist>
+        <para></para>
+        <para>The next screen gives a description of the
+          <guilabel>Income and Expense categories</guilabel> matching process on the
+          <guilabel>Match QIF categories with GnuCash accounts</guilabel> screen.
+        </para>
+        <para></para>
+        <para>The next screen lets you
+          <guilabel>Match QIF categories with GnuCash accounts</guilabel>. You will see a list of
+          <guilabel>QIF category names</guilabel> on the left and suggested
+          <guilabel>GnuCash account names</guilabel> on the right. The
+          <guilabel>New?</guilabel> column indicates if the GnuCash account name will be created by the QIF Import.
+        </para>
+        <para></para>
+        <para>To change the GnuCash account to a different one select the QIF category. A dialog will pop up to select another account or create a new one.</para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>Select an account from the list to choose a already existing account.</para>
+          </listitem>
+          <listitem>
+            <para>The
+              <guibutton>New Account (child of selected) ...</guibutton> button allows you to add a new account name as a sub-account of the selected account.
+            </para>
+          </listitem>
+          <listitem>
+            <para>The
+              <guibutton>OK</guibutton> button is used to confirm your selection.
+            </para>
+          </listitem>
+          <listitem>
+            <para>The
+              <guibutton>Cancel</guibutton> button is used to exit the dialog without using any changes you have made.
+            </para>
+          </listitem>
+        </itemizedlist>
+        <para></para>
+        <para>The next screen gives a description of the
+          <guilabel>Payees and memos</guilabel> matching process on the
+          <guilabel>Match payees/memos to GnuCash accounts</guilabel> screen.
+        </para>
+        <para></para>
+        <para>The next screen lets you
+          <guilabel>Match payees/memos to GnuCash accounts</guilabel>. You will see a list of
+          <guilabel>QIF payee/memo names</guilabel> on the left and suggested
+          <guilabel>GnuCash account names</guilabel> on the right. The default GnuCash account used is called Unspecified. The
+          <guilabel>New?</guilabel> column indicates if the GnuCash account name will be created by the QIF Import.
+        </para>
+        <para></para>
+        <para>To change the GnuCash account to a different one select the QIF payee/memo. A dialog will pop up to select another account or create a new one.</para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>Select an account from the list to choose a already existing account.</para>
+          </listitem>
+          <listitem>
+            <para>The
+              <guibutton>New Account (child of selected) ...</guibutton> button allows you to add a new account name as a sub-account of the selected account.
+            </para>
+          </listitem>
+          <listitem>
+            <para>The
+              <guibutton>OK</guibutton> button is used to confirm your selection.
+            </para>
+          </listitem>
+          <listitem>
+            <para>The
+              <guibutton>Cancel</guibutton> button is used to exit the dialog without using any changes you have made.
+            </para>
+          </listitem>
+        </itemizedlist>
+        <para></para>
+        <para>The next screen allows you to
+          <guilabel>Enter the currency used for new accounts</guilabel>. The drop down list defaults to USD (US Dollar). If you wish the new accounts to use a different currency select one from the list.
+        </para>
+        <para></para>
+        <para>The next screen gives a description of the
+          <guilabel>Match duplicate transactions</guilabel> process on the
+          <guilabel>Select possible duplicates</guilabel> screen.
+        </para>
+        <para></para>
+        <para>The next screen lets you
+          <guilabel>Select possible duplicate transactions</guilabel>. Imported transactions are shown on the left panel and possible matches to each selected transaction are shown on the right.
+        </para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>The left panel shows the list of Imported transactions to select from for matching duplicates</para>
+          </listitem>
+          <listitem>
+            <para>The right panel shows the list of Possible duplicates for the selected imported transaction. Select the one that most closely matches</para>
+            <para></para>
+          </listitem>
+        </itemizedlist>
+        <para>The last screen gives you a list of three choices to finish the druid.</para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>The
+              <guibutton>Cancel</guibutton> button is used to exit the druid and cancel creating a new set of accounts. Any selections you have made in this druid up to this point will be lost.
+            </para>
+          </listitem>
+          <listitem>
+            <para>The
+              <guibutton>Back</guibutton> button will bring up the previous screen so you can change a selection made on that screen.
+            </para>
+          </listitem>
+          <listitem>
+            <para>The
+              <guibutton>Finish</guibutton> button creates the accounts you have selected.
+            </para>
+          </listitem>
+        </itemizedlist>
+        <para></para>
+        <para>You should now have successfully imported your accounts.</para>
+      </sect2>
+      <sect2 id="tutorial">
+        <title>GnuCash Tutorial and Concepts Guide</title>
+        <para></para>
+        <para>This guide is the counterpart to this help. It explains the concepts used in GnuCash and has a tutorial that takes you through using GnuCash to manage your accounts. It will appear if you choose
+          <guibutton>Open the new user tutorial</guibutton> in the
+          <guilabel>Welcome to GnuCash!</guilabel> menu.
+        </para>
+        <para></para>
+        <para>To open this Guide manually go to
+          <guimenu>Help</guimenu> -&gt;
+          <guimenuitem>Tutorial and Concepts Guide</guimenuitem>.
+        </para>
+        <para></para>
+        <para>It is strongly recommended to read this guide if you are new to GnuCash or unfamiliar with accounting concepts. </para>
+      </sect2>
+    </sect1>
+    <sect1 id="tip-of-the-day">
+      <title>Tip of The Day</title>
+      <para></para>
+      <para>The
+        <guilabel>Tip of the Day</guilabel> screen starts whenever you start GnuCash. It gives tips on features and using GnuCash. You can use the three buttons at the bottom of the screen to look through the tips.
+      </para>
+      <para></para>
+      <itemizedlist>
+        <listitem>
+          <para>The
+            <guibutton>close</guibutton> button is used to dismiss the
+            <guilabel>Tip of the Day</guilabel> dialog
+          </para>
+        </listitem>
+        <listitem>
+          <para>The
+            <guibutton>Prev</guibutton> button is used to look at the previous tip
+          </para>
+        </listitem>
+        <listitem>
+          <para>The
+            <guibutton>Next</guibutton> button is used to look at the next tip.
+          </para>
+        </listitem>
+        <listitem>
+          <para>The
+            <guibutton>Display this dialog next time</guibutton> checkbox is used to enable or disable the
+            <guilabel>Tip of the Day</guilabel> from running at GnuCash startup.
+          </para>
+        </listitem>
+      </itemizedlist>
+      <para></para>
+      <para>It is also possible to configure if the
+        <guilabel>Tip of the Day</guilabel> runs at startup in
+        <guimenu>Edit</guimenu> -&gt;
+        <guimenuitem>Preferences</guimenuitem> -&gt;
+        <guilabel>General</guilabel>. The
+        <guilabel>Tip of the Day</guilabel> can also be manually run by going to
+        <guimenu>Help</guimenu> -&gt;
+        <guimenuitem>Tip of the Day</guimenuitem>.
+      </para>
+    </sect1>
+  </chapter>
--- /dev/null
+++ help/C/custom.xml
@@ -0,0 +1,549 @@
+<!--
+      (Do not remove this comment block.)
+  Version: 1.8.4
+  Last modified: February 28th 2005
+  Maintainers:
+               Chris Lyttle <chris at wilddev.net>
+               Neil Williams <linux at codehelp.co.uk>
+  Author:
+  		Jon Lapham <lapham at extracta.com.br>
+  Originally written by Carol Champagne.
+  Translators:
+               (translators put your name and email here)
+-->
+  <chapter id="custom-gnucash">
+    <title>Customizing GnuCash</title>
+    <sect1 id="account-options">
+      <title>Account Options</title>
+      <para></para>
+      <para>The Account Options is used to set the view of the Account Tree Window. This dialog sets the view on each open window of the account tree. This means that when the New Account Tree is used several different views of the account tree can be created.</para>
+      <para></para>
+      <itemizedlist>
+        <listitem>
+          <para>Name of the account view: Used to name the account in the Windows menu and the note tabs.</para>
+        </listitem>
+        <listitem>
+          <para>Double click expands parent accounts: Use double click instead of single click to expand accounts</para>
+        </listitem>
+        <listitem>
+          <para>Account types to display: Select which types of accounts to display in the account tree.</para>
+        </listitem>
+        <listitem>
+          <para>Account fields to display: Select what fields to display in the account tree.</para>
+        </listitem>
+      </itemizedlist>
+      <para></para>
+    </sect1>
+    <sect1 id="set-prefs">
+      <title>Setting Your Preferences</title>
+      <para></para>
+      <para>The GnuCash Preferences dialog contains the following sections.</para>
+      <sect2 id="prefs-accounts">
+        <title>Accounts: </title>
+        <para></para>
+        <para>This section contains the following preferences;</para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>Account : This option is used to pick a different separator in the register for parent and child accounts.</para>
+          </listitem>
+          <listitem>
+            <para>Reversed-balance account types: This option is used to choose what type of account have their balances reversed. If the balance is normally negative, as in a loan or a credit card then this will make the balance positive.</para>
+          </listitem>
+          <listitem>
+            <para>Use accounting labels: This option is used to turn on accounting labels (debit and credit) instead of using terms such as withdrawal and deposit.</para>
+          </listitem>
+        </itemizedlist>
+        <para></para>
+      </sect2>
+      <sect2 id="prefs-biz">
+        <title>Business: </title>
+        <para></para>
+        <para>This section contains the following preferences;</para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>Number of Rows: This option is used to set the default number of register rows to display in invoices.</para>
+          </listitem>
+          <listitem>
+            <para>Invoice Tax Included?: This option is used to set if tax is included by default in entries on invoices. </para>
+          </listitem>
+          <listitem>
+            <para>Bill Tax Included?: This option is used to set if tax is included by default in entries on bills.</para>
+          </listitem>
+        </itemizedlist>
+        <para></para>
+      </sect2>
+      <sect2 id="prefs-general">
+        <title>General: </title>
+        <para></para>
+        <para>This section contains the following preferences;</para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>Show Advanced Settings: </para>
+          </listitem>
+          <listitem>
+            <para>Toolbar Buttons: </para>
+          </listitem>
+          <listitem>
+            <para>Display "Tip of the Day": </para>
+          </listitem>
+          <listitem>
+            <para>Display negative amounts in red: </para>
+          </listitem>
+          <listitem>
+            <para>Automatic Decimal Point: </para>
+          </listitem>
+          <listitem>
+            <para>Auto Decimal Places: </para>
+          </listitem>
+          <listitem>
+            <para>No account list setup on new file: </para>
+          </listitem>
+          <listitem>
+            <para>Days to retain log files: </para>
+          </listitem>
+        </itemizedlist>
+        <para></para>
+      </sect2>
+      <sect2 id="prefs-inter">
+        <title>International: </title>
+        <para></para>
+        <para>This section contains the following preferences;</para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>Date Format: </para>
+          </listitem>
+          <listitem>
+            <para>Default Currency: </para>
+          </listitem>
+          <listitem>
+            <para>Use 24-hour time format: </para>
+          </listitem>
+          <listitem>
+            <para>Enable EURO support: </para>
+          </listitem>
+        </itemizedlist>
+        <para></para>
+      </sect2>
+      <sect2 id="prefs-online">
+        <title>Online Banking &amp; Importing: </title>
+        <para></para>
+        <para>This section contains the following preferences;</para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>QIF Verbose documentation: </para>
+          </listitem>
+          <listitem>
+            <para>Enable REPLACE match action: </para>
+          </listitem>
+          <listitem>
+            <para>Enable SKIP transaction action: </para>
+          </listitem>
+          <listitem>
+            <para>Auto-CLEAR threshold: </para>
+          </listitem>
+          <listitem>
+            <para>Match display threshold: </para>
+          </listitem>
+          <listitem>
+            <para>Auto-ADD threshold: </para>
+          </listitem>
+        </itemizedlist>
+        <para></para>
+      </sect2>
+      <sect2 id="prefs-rec">
+        <title>Reconcile: </title>
+        <para></para>
+        <para>This section contains the following preferences;</para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>Automatic interest transfer: </para>
+          </listitem>
+          <listitem>
+            <para>Automatic credit card payments: </para>
+          </listitem>
+          <listitem>
+            <para>Check off cleared transactions: </para>
+          </listitem>
+        </itemizedlist>
+        <para></para>
+      </sect2>
+      <sect2 id="prefs-reg">
+        <title>Register: </title>
+        <para></para>
+        <para>This section contains the following preferences;</para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>Default Register Style: </para>
+          </listitem>
+          <listitem>
+            <para>Double Line Mode: </para>
+          </listitem>
+          <listitem>
+            <para>'Enter' moves to blank transaction: </para>
+          </listitem>
+          <listitem>
+            <para>Confirm before changing reconciled: </para>
+          </listitem>
+          <listitem>
+            <para>Register font: </para>
+          </listitem>
+          <listitem>
+            <para>Register hint font: </para>
+          </listitem>
+        </itemizedlist>
+        <para></para>
+      </sect2>
+      <sect2 id="prefs-reg-color">
+        <title>Register Colors: </title>
+        <para></para>
+        <para>This section contains the following preferences;</para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>Header color: </para>
+          </listitem>
+          <listitem>
+            <para>Primary color: </para>
+          </listitem>
+          <listitem>
+            <para>Secondary color: </para>
+          </listitem>
+          <listitem>
+            <para>Primary active color: </para>
+          </listitem>
+          <listitem>
+            <para>Secondary active color: </para>
+          </listitem>
+          <listitem>
+            <para>Split color: </para>
+          </listitem>
+          <listitem>
+            <para>Split active color: </para>
+          </listitem>
+          <listitem>
+            <para>Double mode colors alternate with transactions: </para>
+          </listitem>
+        </itemizedlist>
+        <para></para>
+      </sect2>
+      <sect2 id="prefs-sched">
+        <title>Scheduled Transactions: </title>
+        <para></para>
+        <para>This section contains the following preferences;</para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>Run on GnuCash start: </para>
+          </listitem>
+          <listitem>
+            <para>Auto-Create new Scheduled Transactions by default: </para>
+          </listitem>
+          <listitem>
+            <para>Notify on new, auto-created Scheduled Transactions: </para>
+          </listitem>
+          <listitem>
+            <para>Default number of days in advance to create: </para>
+          </listitem>
+          <listitem>
+            <para>Default number of days in advance to remind: </para>
+          </listitem>
+          <listitem>
+            <para>Template Register Lines: </para>
+          </listitem>
+        </itemizedlist>
+        <para></para>
+      </sect2>
+      <sect2 id="prefs-user">
+        <title>User Info: </title>
+        <para></para>
+        <para>This section contains the following preferences;</para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>User Name: </para>
+          </listitem>
+          <listitem>
+            <para>User Address: </para>
+          </listitem>
+        </itemizedlist>
+        <para></para>
+      </sect2>
+      <sect2 id="prefs-advanced">
+        <title>Advanced: </title>
+        <para></para>
+        <para>This section contains the following preferences (this screen is hidden by default);</para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>Save Window Geometry: </para>
+          </listitem>
+          <listitem>
+            <para>Application MDI mode: </para>
+          </listitem>
+          <listitem>
+            <para>Show Vertical Borders: </para>
+          </listitem>
+          <listitem>
+            <para>Show Horizontal Borders: </para>
+          </listitem>
+          <listitem>
+            <para>Auto-Raise Lists: </para>
+          </listitem>
+          <listitem>
+            <para>Show All Transactions: </para>
+          </listitem>
+          <listitem>
+            <para>Number of Rows: </para>
+          </listitem>
+        </itemizedlist>
+        <para></para>
+      </sect2>
+    </sect1>
+    <sect1 id="change-style">
+      <title>Changing Style Sheets</title>
+      <para></para>
+      <para>GnuCash has two default stylesheets for webpage reports. These stylesheets can be altered by using the HTML Style Sheets editor. To access the editor go to Edit -&gt; Style Sheets...</para>
+      <para></para>
+      <para>To add a new Style Sheet select the New... button in the Style Sheet pane. The New Style Sheet dialog will appear. Fill in the Name: of the new Style Sheet and choose a template. To remove a Style Sheet select the Style Sheet from the list and click Delete.</para>
+      <para></para>
+      <sect2 id="style-default">
+        <title>Default</title>
+        <para></para>
+        <para>The Default Style Sheet has two tabs to alter the appearance of reports, General and Tables. </para>
+        <sect3 id="style-def-general">
+          <title>General</title>
+          <para></para>
+          <itemizedlist>
+            <listitem>
+              <para>Background Color: Opens the color picker to choose a new color.</para>
+            </listitem>
+            <listitem>
+              <para>Background Pixmap: Use the Browse button to select a picture to use as the background in reports.</para>
+            </listitem>
+            <listitem>
+              <para>Enable Links: Select this to enable blue hyperlinks in reports.</para>
+            </listitem>
+          </itemizedlist>
+          <para></para>
+        </sect3>
+        <sect3 id="style-def-tables">
+          <title>Tables</title>
+          <para></para>
+          <itemizedlist>
+            <listitem>
+              <para>Table cell spacing: Sets the space between table cells</para>
+            </listitem>
+            <listitem>
+              <para>Table cell padding: Sets the padding between table cells</para>
+            </listitem>
+            <listitem>
+              <para>Table border width: Sets the width of the borders on tables.</para>
+            </listitem>
+          </itemizedlist>
+          <para></para>
+        </sect3>
+      </sect2>
+      <sect2 id="style-technicolor">
+        <title>Technicolor</title>
+        <para></para>
+        <para>The Technicolor Style Sheet has four tabs to alter the appearance of reports, Colors, General, Images and Tables.</para>
+        <para></para>
+        <sect3 id="style-tech-colors">
+          <title>Colors</title>
+          <para></para>
+          <itemizedlist>
+            <listitem>
+              <para>Background Color: Opens the color picker to choose a new color.</para>
+            </listitem>
+            <listitem>
+              <para>Text Color: Opens the color picker to choose a new color.</para>
+            </listitem>
+            <listitem>
+              <para>Table Cell Color: Opens the color picker to choose a new color.</para>
+            </listitem>
+            <listitem>
+              <para>Link Color: Opens the color picker to choose a new color.</para>
+            </listitem>
+            <listitem>
+              <para>Alternate Table Cell Color: Opens the color picker to choose a new color.</para>
+            </listitem>
+            <listitem>
+              <para>Subheading/Subtotal Cell Color: Opens the color picker to choose a new color.</para>
+            </listitem>
+            <listitem>
+              <para>Sub-subheading/total Cell Color:Opens the color picker to choose a new color.</para>
+            </listitem>
+            <listitem>
+              <para>Grand Total Cell Color:Opens the color picker to choose a new color.</para>
+            </listitem>
+          </itemizedlist>
+          <para></para>
+        </sect3>
+        <sect3 id="style-tech-general">
+          <title>General</title>
+          <para></para>
+          <itemizedlist>
+            <listitem>
+              <para>Preparer: Name of the person preparing the report.</para>
+            </listitem>
+            <listitem>
+              <para>Prepared for: Name of Organization or Company the report is prepared for.</para>
+            </listitem>
+            <listitem>
+              <para>Show preparer info: Show the Preparer information in the report.</para>
+            </listitem>
+            <listitem>
+              <para>Enable Links: Select this to enable blue hyperlinks in reports.</para>
+            </listitem>
+          </itemizedlist>
+          <para></para>
+        </sect3>
+        <sect3 id="style-tech-images">
+          <title>Images</title>
+          <para></para>
+          <itemizedlist>
+            <listitem>
+              <para>Background Tile: Use the Browse button to select a picture to use as the background in reports.</para>
+            </listitem>
+            <listitem>
+              <para>Heading Banner: Use the Browse button to select a picture to use as the heading in reports.</para>
+            </listitem>
+            <listitem>
+              <para>Logo: Use the Browse button to select a picture to use as the logo in reports.</para>
+            </listitem>
+          </itemizedlist>
+          <para></para>
+        </sect3>
+        <sect3 id="style-tech-tables">
+          <title>Tables</title>
+          <para></para>
+          <itemizedlist>
+            <listitem>
+              <para>Table cell spacing: Sets the space between table cells</para>
+            </listitem>
+            <listitem>
+              <para>Table cell padding: Sets the padding between table cells</para>
+            </listitem>
+            <listitem>
+              <para>Table border width: Sets the width of the borders on tables.</para>
+            </listitem>
+          </itemizedlist>
+          <para></para>
+        </sect3>
+      </sect2>
+    </sect1>
+    <sect1 id="set-tax-options">
+      <title>Setting Tax Options</title>
+      <para></para>
+      <para>The Tax Information dialog is used to set Tax Options. The settings on accounts in this dialog are used by the TXF Export function in reports to select the accounts for export. To access this dialog go to Edit -&gt; Tax Options.</para>
+      <para></para>
+      <para>IMPORTANT: Most TXF codes should only appear on a single account! The exceptions are codes for which the "Payer Name Source" is not grayed, each of which can appear many times. Of course, each duplicate should have a unique payer name. These are typically interest accounts or stocks or mutual funds that pay dividends.</para>
+      <para></para>
+      <itemizedlist>
+        <listitem>
+          <para>Accounts: This pane contains the list of accounts. Select an account to set a TXF category. If no account is selected nothing is changed. If multiple accounts are selected, all of the accounts will be set to the selected item. </para>
+        </listitem>
+        <listitem>
+          <para>Tax Related: Select this checkbox to add tax information to an account then select the TXF Category below.</para>
+        </listitem>
+        <listitem>
+          <para>TXF Categories: Select the desired one. A detailed description appears just below.</para>
+        </listitem>
+        <listitem>
+          <para>Payer Name Source: A text description that is exported along with the value of the account. This is usually the name of a bank, stock, or mutual fund that pays dividends or interest. Occasionally, it is a description of a deduction.</para>
+        </listitem>
+      </itemizedlist>
+      <para></para>
+      <sect2 id="txf-probs">
+        <title>TXF Export - Known Anomalies and Limitations</title>
+        <para></para>
+        <para>TaxCut 1999 </para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>Code: N488 "^ Sched B \ Div. income, cap gain distrib."</para>
+          </listitem>
+          <listitem>
+            <para>Code: N286 "^ Sched B \ Dividend income"</para>
+          </listitem>
+        </itemizedlist>
+        <para></para>
+        <para>These two codes, from the same payer, are not correlated. The user will have to adjust for this after import. </para>
+        <para></para>
+        <para>TaxCut 1999, 2000 </para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>Code: N521 " F1040 \ Federal estimated tax, quarterly"</para>
+          </listitem>
+        </itemizedlist>
+        <para></para>
+        <para>Does not accept the date field and does not import the individual payment amounts, only the total. The date and individual payment amounts, only matter if you have to compute the penalty. (this may be a TurboTax enhancement) </para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>Code: N460 " W-2 \ Salary or wages, self"</para>
+          </listitem>
+          <listitem>
+            <para>Code: N506 " W-2 \ Salary or wages, spouse" </para>
+          </listitem>
+          <listitem>
+            <para>and other related codes.</para>
+          </listitem>
+        </itemizedlist>
+        <para></para>
+        <para>Information from only one job may be imported. </para>
+        <para></para>
+        <para>TurboTax 1999, 2000 </para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>Code: N521 " F1040 \ Federal estimated tax, quarterly"</para>
+          </listitem>
+        </itemizedlist>
+        <para></para>
+        <para>Does not accept the dates outside of the tax year. This is a problem for the last payment that is due Jan 15. GnuCash changes the the date of the last payment to Dec 31. The user will have to adjust for this after import. The date only matters if you have to compute the penalty. </para>
+        <para></para>
+        <para>TXF Tax eXport Format </para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>Duplicate Codes</para>
+          </listitem>
+        </itemizedlist>
+        <para></para>
+        <para>Most codes are not supposed to appear more than once. GnuCash issues an error message if it detects this, but will still export the data. These are not handled the same by TaxCut and TurboTax.</para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>TurboTax</para>
+          </listitem>
+        </itemizedlist>
+        <para></para>
+        <para>Sums the duplicate codes. i.e., job one and job two are added together.</para>
+        <para></para>
+        <itemizedlist>
+          <listitem>
+            <para>TaxCut</para>
+          </listitem>
+        </itemizedlist>
+        <para></para>
+        <para>Keeps only the LAST of the duplicate codes. i.e., job one is ignored and job two is kept. </para>
+        <para></para>
+      </sect2>
+      <sect2 id="txf-defs">
+        <title>Detailed TXF Category Descriptions</title>
+        <para></para>
+        <para>Table 32. Detailed TXF Category Descriptions</para>
+        <para></para>
+	&txf-categories;
+      </sect2>
+    </sect1>
+  </chapter>
Index: gnucash-help.xml
===================================================================
RCS file: /home/cvs/cvsroot/gnucash-docs/help/C/gnucash-help.xml,v
retrieving revision 1.6
retrieving revision 1.7
diff -Lhelp/C/gnucash-help.xml -Lhelp/C/gnucash-help.xml -u -r1.6 -r1.7
--- help/C/gnucash-help.xml
+++ help/C/gnucash-help.xml
@@ -1,6 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" 
+<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
 "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [
+<!ENTITY intro SYSTEM "intro.xml">
+<!ENTITY gettingstarted SYSTEM "gettingstarted.xml">
+<!ENTITY usage SYSTEM "usage.xml">
+<!ENTITY custom SYSTEM "custom.xml">
 <!ENTITY chartacctseg SYSTEM "chtacctseg.xml">
 <!ENTITY chartofaccts SYSTEM "chartofaccts.xml">
 <!ENTITY txf-categories SYSTEM "txf-categories.xml">
@@ -27,11 +31,11 @@
                (translators put your name and email here)
 -->
 
-<article id='help' lang="en-US">
+<book id="help" lang="en-US">
 <!-- please do not change the id; for translations, change lang to -->
 <!-- appropriate code -->
 
-  <articleinfo>
+  <bookinfo>
    <title>&app; Help Manual</title>
    <copyright>
      <year>2002-2004</year>
@@ -78,7 +82,7 @@
 
     <revhistory>
       <revision>
-        <revnumber>&app; Help Manual V&manrevision;</revnumber>
+        <revnumber>&app; Help Manual TEST V&manrevision;</revnumber>
         <date>&date;</date>
         <revdescription>
           <para role="author">Chris Lyttle
@@ -152,6931 +156,10 @@
 <!-- Translators may also add here feedback address for translations -->
     </legalnotice>
 
-  </articleinfo>
-  <sect1 id="intro-to-gnucash">
-    <title>Introduction to GnuCash</title>
-    <sect2 id="what-is-gnucash">
-      <title>What is GnuCash?</title>
-      <para>GnuCash is a personal and small business finance application. Its designed to be easy to use, yet powerful and flexible. GnuCash allows you to track your income and expenses, reconcile bank accounts, monitor stock portfolios and manage your small business finances. It is based on professional accounting principles to ensure balanced books and accurate reports.</para>
-    </sect2>
-  </sect1>
-  <sect1 id="getting-started">
-    <title>Getting Started</title>
-    <sect2 id="first-time">
-      <title>Running GnuCash for the first time</title>
-      <para />
-      <para>The very first time you run GnuCash you will be presented with the 
-        <guilabel>Welcome to GnuCash! </guilabel>menu with three choices. The following table describes the contents of the menu.
-      </para>
-      <para />
-      <table frame="topbot" id="Table1">
-    <title />
-        <tgroup cols="2">
-          <tbody>
-            <row>
-              <entry>
-                <para>Menu Item</para>
-              </entry>
-              <entry>
-                <para>Description</para>
-              </entry>
-            </row>
-            <row>
-              <entry>
-                <para>
-                  <guibutton>Create a new set of accounts</guibutton>
-                </para>
-              </entry>
-              <entry>
-                <para>Runs the New Account Hierarchy Setup Druid.</para>
-              </entry>
-            </row>
-            <row>
-              <entry>
-                <para>
-                  <guibutton>Import my QIF files</guibutton>
-                </para>
-              </entry>
-              <entry>
-                <para>Runs the Import QIF Files Druid.</para>
-              </entry>
-            </row>
-            <row>
-              <entry>
-                <para>
-                  <guibutton>Open the new user tutorial</guibutton>
-                </para>
-              </entry>
-              <entry>
-                <para>Opens the GnuCash Tutorial and Concepts Guide.</para>
-              </entry>
-            </row>
-          </tbody>
-        </tgroup>
-      </table>
-      <para />
-      <para>This menu is intended for you to use to get quickly up and running. </para>
-      <para />
-      <itemizedlist>
-        <listitem>
-          <para>The 
-            <guibutton>Cancel</guibutton> button is used to exit the dialog. It will then prompt you to uncheck the checkbox if you do not want to see the 
-            <guilabel>Welcome to GnuCash!</guilabel> menu again. The default is to have the 
-            <guilabel>Welcome to GnuCash!</guilabel> menu run again.
-          </para>
-        </listitem>
-        <listitem>
-          <para>The 
-            <guibutton>OK </guibutton>button is used to confirm your selection.
-          </para>
-        </listitem>
-      </itemizedlist>
-      <para />
-      <para>You can either use a preset hierarchy of accounts, import Quicken files (QIF files) or view the GnuCash Tutorial and Concepts Guide. Each of these choices will be explained in more depth in the following sections.</para>
-      <para />
-      <itemizedlist>
-        <listitem>
-          <para>If you wish to have a basic set of accounts to add account transactions into choose 
-            <guibutton>Create a new set of accounts.</guibutton>
-          </para>
-        </listitem>
-        <listitem>
-          <para>If you already have Quicken files (QIF files) from another financial application and wish to import them then choose 
-            <guibutton>Import my QIF files.</guibutton>
-          </para>
-        </listitem>
-        <listitem>
-          <para>If you are a new to GnuCash and just want to be guided though setting up GnuCash then choose 
-            <guibutton>Open the new user tutorial.</guibutton>
-          </para>
-        </listitem>
-      </itemizedlist>
-      <para />
-      <para>It is possible to run these items after you have made a choice here but this 
-        <guilabel>Welcome to GnuCash!</guilabel> menu will not reappear. To try one of the other choices later, use the following sections to start the other items from the GnuCash menu.
-      </para>
-      <sect3 id="acct-hierarchy">
-        <title>New Account Hierarchy Setup</title>
-        <para />
-        <para>This druid helps you to create a set of GnuCash accounts. It will appear if you choose 
-          <guibutton>Create a new set of accounts</guibutton> in the 
-          <guilabel>Welcome to GnuCash! </guilabel>menu.
-        </para>
-        <para />
-        <para>To start this druid manually go to 
-          <guimenu>File</guimenu> -&gt; 
-          <guimenuitem>New File</guimenuitem>. This will create a new blank GnuCash file and then automatically start the 
-          <guilabel>New Account Hierarchy Setup</guilabel> druid.
-        </para>
-        <para />
-        <para>The 
-          <guilabel>New Account Hierarchy Setup</guilabel> druid opens with a screen that briefly describes what this druid does. The three buttons at the very bottom of the screen will not change while using the druid.
-        </para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>The 
-              <guibutton>Cancel</guibutton> button is used to exit the druid and cancel creating a new set of accounts. Any selections you have made in this druid up to this point will be lost.
-            </para>
-          </listitem>
-          <listitem>
-            <para>The 
-              <guibutton>Back</guibutton> button will bring up the previous screen so you can change a selection made on that screen.
-            </para>
-          </listitem>
-          <listitem>
-            <para>The 
-              <guibutton>Forward</guibutton> button will bring up the next screen so you can continue though the druid.
-            </para>
-          </listitem>
-        </itemizedlist>
-        <para />
-        <para>The next screen allows you to select the default currency to use for your accounts. The 
-          <guibutton>Select...</guibutton> button on this screen is used to access the list of currencies. The 
-          <guibutton>Select... </guibutton>button brings up the 
-          <guilabel>Select currency/security</guilabel> dialog.
-        </para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>The 
-              <guilabel>Type: </guilabel>drop down list defaults to 
-              <guibutton>CURRENCY</guibutton>. Other types are used for setting up commodities for stock related accounts.
-            </para>
-          </listitem>
-          <listitem>
-            <para>The 
-              <guilabel>Currency/security:</guilabel> drop down list defaults to 
-              <guibutton>USD (US Dollar)</guibutton>. If you wish your accounts to use a different default currency select one from the list. 
-            </para>
-          </listitem>
-          <listitem>
-            <para>The 
-              <guibutton>OK </guibutton>button is used to confirm your selection.
-            </para>
-          </listitem>
-          <listitem>
-            <para>The 
-              <guibutton>New... </guibutton>button brings up the 
-              <guilabel>New Currency/Security</guilabel> dialog. This is used for setting up commodities for stock related accounts.
-            </para>
-          </listitem>
-          <listitem>
-            <para>The 
-              <guibutton>Cancel</guibutton> button is used to exit the dialog without using any changes you have made.
-            </para>
-          </listitem>
-        </itemizedlist>
-        <para />
-        <para>The next screen is used to choose a hierarchy of accounts to create. You will see a screen divided into three parts. </para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>The top part has a list of 
-              <guilabel>Account Types and Descriptions </guilabel>for commonly used hierarchies of accounts. Select from this list the types of accounts you wish to use. You can select as many types of accounts as you wish.
-            </para>
-          </listitem>
-          <listitem>
-            <para>The left bottom part has a 
-              <guilabel>Detailed Description</guilabel> of the account type you selected.
-            </para>
-          </listitem>
-          <listitem>
-            <para>The right bottom part has a list of the 
-              <guilabel>Accounts</guilabel> that will be created from the selected account type.
-            </para>
-          </listitem>
-          <listitem>
-            <para>The 
-              <guibutton>Select All</guibutton> button allows you to include all of the account types from the top part.
-            </para>
-          </listitem>
-          <listitem>
-            <para>The 
-              <guibutton>Clear All </guibutton>button allows you to deselect all of the account types from the top part.
-            </para>
-          </listitem>
-        </itemizedlist>
-        <para />
-        <para>The next screen allows you to enter opening balances for your accounts and also select if the account is a placeholder account. Placeholder accounts are used to create a hierarchy of accounts and normally do not have transactions or opening balances. Equity accounts also do not have opening balances.</para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>The left side of the screen has a list of 
-              <guilabel>Account Names</guilabel>. Select each account to enter a opening balance or to make it a placeholder account.
-            </para>
-          </listitem>
-          <listitem>
-            <para>The right side of the screen has a checkbox to make an account a 
-              <guibutton>Placeholder</guibutton> and a box to add the 
-              <guilabel>Opening Balance</guilabel> for the selected account.
-            </para>
-          </listitem>
-        </itemizedlist>
-        <para />
-        <para>The last screen gives you a list of three choices to finish the druid.</para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>The 
-              <guibutton>Cancel</guibutton> button is used to exit the druid and cancel creating a new set of accounts. Any selections you have made in this druid up to this point will be lost.
-            </para>
-          </listitem>
-          <listitem>
-            <para>The 
-              <guibutton>Back</guibutton> button will bring up the previous screen so you can change a selection made on that screen.
-            </para>
-          </listitem>
-          <listitem>
-            <para>The 
-              <guibutton>Finish</guibutton> button creates the accounts you have selected.
-            </para>
-          </listitem>
-        </itemizedlist>
-        <para />
-        <para>You should now have a hierarchy of accounts in your main GnuCash account window.</para>
-      </sect3>
-      <sect3 id="import-qif">
-        <title>Import QIF Files</title>
-        <para />
-        <para>This Druid helps you import Quicken (QIF) files. It will appear if you choose 
-          <guibutton>Import my QIF files</guibutton> in the 
-          <guilabel>Welcome to GnuCash! </guilabel>menu.
-        </para>
-        <para />
-        <para>To start this druid manually go to 
-          <guimenu>File</guimenu> -&gt; 
-          <guimenu>Import</guimenu> -&gt; 
-          <guimenuitem>Import QIF...</guimenuitem> or press Ctrl-I.
-        </para>
-        <para />
-        <para>The 
-          <guilabel>Import QIF files</guilabel> druid opens with a screen that briefly describes what this druid does. The three buttons at the very bottom of the screen will not change while using the druid.
-        </para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>The 
-              <guibutton>Cancel</guibutton> button is used to exit the druid and cancel importing Quicken file data. Any selections you have made in this druid up to this point will be lost.
-            </para>
-          </listitem>
-          <listitem>
-            <para>The 
-              <guibutton>Back</guibutton> button will bring up the previous screen so you can change a selection made on that screen.
-            </para>
-          </listitem>
-          <listitem>
-            <para>The 
-              <guibutton>Forward </guibutton>button will bring up the next screen so you can continue though the druid.
-            </para>
-          </listitem>
-        </itemizedlist>
-        <para />
-        <para>The next screen allows you to 
-          <guilabel>Select a QIF file to load</guilabel>. The 
-          <guibutton>Select...</guibutton> button on this screen is used to access the list of files. The 
-          <guibutton>Select...</guibutton> button brings up the 
-          <guilabel>Select QIF File</guilabel> dialog.
-        </para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>The 
-              <guibutton>Create Dir</guibutton> button allows you to make a directory to store the GnuCash files.
-            </para>
-          </listitem>
-          <listitem>
-            <para>The 
-              <guibutton>Delete File</guibutton> button allows you to remove unwanted files.
-            </para>
-          </listitem>
-          <listitem>
-            <para>The 
-              <guibutton>Rename File </guibutton>button allows you to rename GnuCash files.
-            </para>
-          </listitem>
-          <listitem>
-            <para>The drop down list allows you to navigate the directory structure.</para>
-          </listitem>
-          <listitem>
-            <para>The left panel allows you to navigate up and down by directory</para>
-          </listitem>
-          <listitem>
-            <para>The right panel allows you to select the file you want</para>
-          </listitem>
-          <listitem>
-            <para>The 
-              <guibutton>OK</guibutton> button is used to confirm your selection.
-            </para>
-          </listitem>
-          <listitem>
-            <para>The 
-              <guibutton>Cancel</guibutton> button is used to exit the dialog without using any changes you have made.
-            </para>
-          </listitem>
-        </itemizedlist>
-        <para />
-        <para>Navigate to where you have stored your QIF files and select the first one then click 
-          <guibutton>OK</guibutton>. You will now see it listed in the 
-          <guilabel>QIF Filename:</guilabel> field.
-        </para>
-        <para />
-        <para>If the file you are loading does not have an account name listed in it you will see the 
-          <guilabel>Set the default QIF account name</guilabel> screen. Otherwise you will skip this screen and go on to the screen in the next section that shows loaded QIF files.
-        </para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>The 
-              <guilabel>Account name:</guilabel> field is used to set an account name for this QIF file.
-            </para>
-          </listitem>
-        </itemizedlist>
-        <para />
-        <para>The next screen shows you the 
-          <guilabel>QIF files you have loaded</guilabel>. You can use this screen to return to the previous screen and load more QIF files. It will also let you unload any files you have loaded by mistake.
-        </para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>The top panel shows the list of 
-              <guilabel>QIF Files</guilabel> you have loaded.
-            </para>
-          </listitem>
-          <listitem>
-            <para>The 
-              <guilabel>Load another file</guilabel> button takes you back to the previous screen to load another QIF file.
-            </para>
-          </listitem>
-          <listitem>
-            <para>The 
-              <guilabel>Unload selected file</guilabel> allows you to select a file from the top panel and remove it from the list.
-            </para>
-          </listitem>
-        </itemizedlist>
-        <para />
-        <para>The next screen gives a description of the 
-          <guilabel>Accounts and stock holdings</guilabel> matching process on the 
-          <guilabel>Match QIF accounts with GnuCash accounts</guilabel> screen. This and other informational screens in the 
-          <guilabel>Import QIF files</guilabel> druid can be turned off in the 
-          <guilabel>Online Banking &amp; Importing</guilabel> section of the 
-          <guilabel>GnuCash Preferences</guilabel>. Please refer to the 
-          <guilabel>GnuCash Preferences</guilabel> section of the help for instructions on this.
-        </para>
-        <para />
-        <para>The next screen lets you 
-          <guilabel>Match QIF accounts with GnuCash accounts</guilabel>. You will see a list of 
-          <guilabel>QIF account names</guilabel> on the left and suggested 
-          <guilabel>GnuCash account names</guilabel> on the right. The 
-          <guilabel>New?</guilabel> column indicates if the GnuCash account name will be created by the QIF Import. 
-        </para>
-        <para />
-        <para>To change the GnuCash account to a different one select the QIF account. A dialog will pop up to select another account or create a new one.</para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>Select an account from the list to choose a already existing account.</para>
-          </listitem>
-          <listitem>
-            <para>The 
-              <guibutton>New Account (child of selected) ...</guibutton> button allows you to add a new account name as a sub-account of the selected account.
-            </para>
-          </listitem>
-          <listitem>
-            <para>The 
-              <guibutton>OK</guibutton> button is used to confirm your selection.
-            </para>
-          </listitem>
-          <listitem>
-            <para>The 
-              <guibutton>Cancel</guibutton> button is used to exit the dialog without using any changes you have made.
-            </para>
-          </listitem>
-        </itemizedlist>
-        <para />
-        <para>The next screen gives a description of the 
-          <guilabel>Income and Expense categories</guilabel> matching process on the 
-          <guilabel>Match QIF categories with GnuCash accounts</guilabel> screen.
-        </para>
-        <para />
-        <para>The next screen lets you 
-          <guilabel>Match QIF categories with GnuCash accounts</guilabel>. You will see a list of 
-          <guilabel>QIF category names</guilabel> on the left and suggested 
-          <guilabel>GnuCash account names</guilabel> on the right. The 
-          <guilabel>New?</guilabel> column indicates if the GnuCash account name will be created by the QIF Import. 
-        </para>
-        <para />
-        <para>To change the GnuCash account to a different one select the QIF category. A dialog will pop up to select another account or create a new one.</para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>Select an account from the list to choose a already existing account.</para>
-          </listitem>
-          <listitem>
-            <para>The 
-              <guibutton>New Account (child of selected) ...</guibutton> button allows you to add a new account name as a sub-account of the selected account.
-            </para>
-          </listitem>
-          <listitem>
-            <para>The 
-              <guibutton>OK</guibutton> button is used to confirm your selection.
-            </para>
-          </listitem>
-          <listitem>
-            <para>The 
-              <guibutton>Cancel</guibutton> button is used to exit the dialog without using any changes you have made.
-            </para>
-          </listitem>
-        </itemizedlist>
-        <para />
-        <para>The next screen gives a description of the 
-          <guilabel>Payees and memos</guilabel> matching process on the 
-          <guilabel>Match payees/memos to GnuCash accounts</guilabel> screen.
-        </para>
-        <para />
-        <para>The next screen lets you 
-          <guilabel>Match payees/memos to GnuCash accounts</guilabel>. You will see a list of 
-          <guilabel>QIF payee/memo names</guilabel> on the left and suggested 
-          <guilabel>GnuCash account names</guilabel> on the right. The default GnuCash account used is called Unspecified. The 
-          <guilabel>New?</guilabel> column indicates if the GnuCash account name will be created by the QIF Import. 
-        </para>
-        <para />
-        <para>To change the GnuCash account to a different one select the QIF payee/memo. A dialog will pop up to select another account or create a new one.</para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>Select an account from the list to choose a already existing account.</para>
-          </listitem>
-          <listitem>
-            <para>The 
-              <guibutton>New Account (child of selected) ...</guibutton> button allows you to add a new account name as a sub-account of the selected account.
-            </para>
-          </listitem>
-          <listitem>
-            <para>The 
-              <guibutton>OK</guibutton> button is used to confirm your selection.
-            </para>
-          </listitem>
-          <listitem>
-            <para>The 
-              <guibutton>Cancel</guibutton> button is used to exit the dialog without using any changes you have made.
-            </para>
-          </listitem>
-        </itemizedlist>
-        <para />
-        <para>The next screen allows you to 
-          <guilabel>Enter the currency used for new accounts</guilabel>. The drop down list defaults to USD (US Dollar). If you wish the new accounts to use a different currency select one from the list. 
-        </para>
-        <para />
-        <para>The next screen gives a description of the 
-          <guilabel>Match duplicate transactions</guilabel> process on the 
-          <guilabel>Select possible duplicates</guilabel> screen.
-        </para>
-        <para />
-        <para>The next screen lets you 
-          <guilabel>Select possible duplicate transactions</guilabel>. Imported transactions are shown on the left panel and possible matches to each selected transaction are shown on the right.
-        </para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>The left panel shows the list of Imported transactions to select from for matching duplicates</para>
-          </listitem>
-          <listitem>
-            <para>The right panel shows the list of Possible duplicates for the selected imported transaction. Select the one that most closely matches</para>
-            <para />
-          </listitem>
-        </itemizedlist>
-        <para>The last screen gives you a list of three choices to finish the druid.</para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>The 
-              <guibutton>Cancel</guibutton> button is used to exit the druid and cancel creating a new set of accounts. Any selections you have made in this druid up to this point will be lost.
-            </para>
-          </listitem>
-          <listitem>
-            <para>The 
-              <guibutton>Back</guibutton> button will bring up the previous screen so you can change a selection made on that screen.
-            </para>
-          </listitem>
-          <listitem>
-            <para>The 
-              <guibutton>Finish</guibutton> button creates the accounts you have selected.
-            </para>
-          </listitem>
-        </itemizedlist>
-        <para />
-        <para>You should now have successfully imported your accounts.</para>
-      </sect3>
-      <sect3 id="tutorial">
-        <title>GnuCash Tutorial and Concepts Guide</title>
-        <para />
-        <para>This guide is the counterpart to this help. It explains the concepts used in GnuCash and has a tutorial that takes you through using GnuCash to manage your accounts. It will appear if you choose 
-          <guibutton>Open the new user tutorial</guibutton> in the 
-          <guilabel>Welcome to GnuCash!</guilabel> menu.
-        </para>
-        <para />
-        <para>To open this Guide manually go to 
-          <guimenu>Help</guimenu> -&gt; 
-          <guimenuitem>Tutorial and Concepts Guide</guimenuitem>.
-        </para>
-        <para />
-        <para>It is strongly recommended to read this guide if you are new to GnuCash or unfamiliar with accounting concepts. </para>
-      </sect3>
-    </sect2>
-    <sect2 id="tip-of-the-day">
-      <title>Tip of The Day</title>
-      <para />
-      <para>The 
-        <guilabel>Tip of the Day</guilabel> screen starts whenever you start GnuCash. It gives tips on features and using GnuCash. You can use the three buttons at the bottom of the screen to look through the tips.
-      </para>
-      <para />
-      <itemizedlist>
-        <listitem>
-          <para>The 
-            <guibutton>close</guibutton> button is used to dismiss the 
-            <guilabel>Tip of the Day</guilabel> dialog
-          </para>
-        </listitem>
-        <listitem>
-          <para>The 
-            <guibutton>Prev</guibutton> button is used to look at the previous tip
-          </para>
-        </listitem>
-        <listitem>
-          <para>The 
-            <guibutton>Next</guibutton> button is used to look at the next tip.
-          </para>
-        </listitem>
-        <listitem>
-          <para>The 
-            <guibutton>Display this dialog next time</guibutton> checkbox is used to enable or disable the 
-            <guilabel>Tip of the Day</guilabel> from running at GnuCash startup.
-          </para>
-        </listitem>
-      </itemizedlist>
-      <para />
-      <para>It is also possible to configure if the 
-        <guilabel>Tip of the Day</guilabel> runs at startup in 
-        <guimenu>Edit</guimenu> -&gt; 
-        <guimenuitem>Preferences</guimenuitem> -&gt; 
-        <guilabel>General</guilabel>. The 
-        <guilabel>Tip of the Day</guilabel> can also be manually run by going to 
-        <guimenu>Help</guimenu> -&gt; 
-        <guimenuitem>Tip of the Day</guimenuitem>.
-      </para>
-    </sect2>
-  </sect1>
-  <sect1 id="usage">
-    <title>Usage</title>
-    <sect2 id="windows">
-      <title>GnuCash Windows</title>
-      <para />
-      <para>GnuCash windows display the accounts and tools you use to access your financial data. This section gives you an overview of the different windows you will see in GnuCash.</para>
-      <sect3 id="account-tree">
-        <title>Account Tree Window</title>
-        <para />
-        <para>This window provides an overview of all your accounts and a summary of their balances. It groups the accounts into types based on standard accounting practice. Access to commonly used windows and account tools is through this window.</para>
-        <para />
-        <para>To reopen the Account Tree if you have closed it or to open an additional Account Tree go to File -&gt; New Account Tree. This will open the account tree in the existing window</para>
-        <para />
-        <para>To open a new window with an Account Tree go to File -&gt; Open in a New Window. Figure ? shows an Account Tree Window.</para>
-        <para />
-        <para />
-        <para>Table 2 describes the components of the Account Tree Window.</para>
-        <para />
-        <table frame="topbot" id="Table2">
-    <title />
-          <tgroup cols="2">
-            <thead>
-              <row>
-                <entry>
-                  <para>Component</para>
-                </entry>
-                <entry>
-                  <para>Description</para>
-                </entry>
-              </row>
-            </thead>
-            <tbody>
-              <row>
-                <entry>
-                  <para>Menubar</para>
-                </entry>
-                <entry>
-                  <para>Contains the Menus used in the Account Tree Window</para>
-                </entry>
-              </row>
-              <row>
-                <entry>
-                  <para>Tool Bar</para>
-                </entry>
-                <entry>
-                  <para>Contains buttons used to access common Account Tree tasks</para>
-                </entry>
-              </row>
-              <row>
-                <entry>
-                  <para>Summary Bar</para>
-                </entry>
-                <entry>
-                  <para>Contains Summary of Financial Data</para>
-                </entry>
-              </row>
-              <row>
-                <entry>
-                  <para>Account Tree </para>
-                </entry>
-                <entry>
-                  <para>Contains the Chart of Accounts</para>
-                </entry>
-              </row>
-              <row>
-                <entry>
-                  <para>Status Bar</para>
-                </entry>
-                <entry>
-                  <para>Contains a short description of Menu items and a progress bar</para>
-                </entry>
-              </row>
-            </tbody>
-          </tgroup>
-        </table>
-        <para />
-        <sect4 id="tree-menus">
-          <title>Menus</title>
-          <para />
-          <para>The following tables describe the menus in the Account Tree Window.</para>
-          <para />
-          <para>Table 3: File Menu - Access to file and account operations and printing.</para>
-          <para />
-          <table frame="topbot" id="Table3">
-    <title />
-            <tgroup cols="2">
-              <thead>
-                <row>
-                  <entry>
-                    <para>Menu Item</para>
-                  </entry>
-                  <entry>
-                    <para>Description</para>
-                  </entry>
-                </row>
-              </thead>
-              <tbody>
-                <row>
-                  <entry>
-                    <para>New File</para>
-                  </entry>
-                  <entry>
-                    <para>Starts the New Account Hierarchy Setup Druid and creates a new file</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>New Account...</para>
-                  </entry>
-                  <entry>
-                    <para>Creates a New Account and opens account properties</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>New Account Tree </para>
-                  </entry>
-                  <entry>
-                    <para>Opens a new instance of the Account Tree view</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Open...</para>
-                  </entry>
-                  <entry>
-                    <para>Opens a different GnuCash file. Menu shortcut F3</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Open Account </para>
-                  </entry>
-                  <entry>
-                    <para>When an account is selected in the Account Tree opens the register for that account. Menu Shortcut Ctrl-O</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Open Sub-Accounts</para>
-                  </entry>
-                  <entry>
-                    <para>When an account is selected in the Account Tree opens a General Ledger register for that account and all subaccounts</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Open in a New Window</para>
-                  </entry>
-                  <entry>
-                    <para>Opens a new Account Tree Window using the current account tree or report.</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Open Recent</para>
-                  </entry>
-                  <entry>
-                    <para>Opens one of a list of the four most recently opened account files</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Save</para>
-                  </entry>
-                  <entry>
-                    <para>Saves the currently open file. Menu shortcut Ctrl-S</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Save As...</para>
-                  </entry>
-                  <entry>
-                    <para>Saves the currently opened file with a different name</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Import -&gt; Import QIF File</para>
-                  </entry>
-                  <entry>
-                    <para>Starts the Import QIF Files druid to import files from other financial programs.</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Export -&gt; Export Accounts</para>
-                  </entry>
-                  <entry>
-                    <para>Exports your account hierarchy to a new file. Does not export data.</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Print</para>
-                  </entry>
-                  <entry>
-                    <para>Prints reports</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Properties</para>
-                  </entry>
-                  <entry>
-                    <para>Sets options for this file.</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Close</para>
-                  </entry>
-                  <entry>
-                    <para>Closes the current open account tree or report. Menu shortcut Ctrl-W</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Exit</para>
-                  </entry>
-                  <entry>
-                    <para>Exits GnuCash. Menu shortcut Ctrl-Q</para>
-                  </entry>
-                </row>
-              </tbody>
-            </tgroup>
-          </table>
-          <para />
-          <para>Table 4: Edit Menu - Access to file and account editing operations and preferences.</para>
-          <para />
-          <table frame="topbot" id="Table4">
-    <title />
-            <tgroup cols="2">
-              <thead>
-                <row>
-                  <entry>
-                    <para>Menu Item</para>
-                  </entry>
-                  <entry>
-                    <para>Description</para>
-                  </entry>
-                </row>
-              </thead>
-              <tbody>
-                <row>
-                  <entry>
-                    <para>Cut</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Copy</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Paste</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Edit Account</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Delete Account</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Preferences...</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Style Sheets...</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Tax Options</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-              </tbody>
-            </tgroup>
-          </table>
-          <para />
-          <para>Table 5: View Menu - Changes Account Tree Window view.</para>
-          <para />
-          <table frame="topbot" id="Table5">
-    <title />
-            <tgroup cols="2">
-              <thead>
-                <row>
-                  <entry>
-                    <para>Menu Item</para>
-                  </entry>
-                  <entry>
-                    <para>Description</para>
-                  </entry>
-                </row>
-              </thead>
-              <tbody>
-                <row>
-                  <entry>
-                    <para>Refresh</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Toolbar</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Summary Bar</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Status Bar</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-              </tbody>
-            </tgroup>
-          </table>
-          <para />
-          <para>Table 6: Actions Menu - Setup scheduled transactions, repair accounts, perform stock splits,transfer and reconcile transactions.</para>
-          <para />
-          <table frame="topbot" id="Table6">
-    <title />
-            <tgroup cols="2">
-              <thead>
-                <row>
-                  <entry>
-                    <para>Menu Item</para>
-                  </entry>
-                  <entry>
-                    <para>Description</para>
-                  </entry>
-                </row>
-              </thead>
-              <tbody>
-                <row>
-                  <entry>
-                    <para>Scheduled Transactions -&gt; Scheduled Transaction Editor</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Scheduled Transactions -&gt;Since Last Run...</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Scheduled Transactions -&gt; Mortgage &amp; Loan Repayment Setup</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Transfer...</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Reconcile...</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Stock Split...</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Check &amp; Repair -&gt; Check &amp; Repair Account</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Check &amp; Repair -&gt; Check &amp; Repair Subaccounts</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Check &amp; Repair -&gt; Check &amp; Repair All</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-              </tbody>
-            </tgroup>
-          </table>
-          <para />
-          <para>Table 7: Business Menu - Access small business features of GnuCash.</para>
-          <para />
-          <table frame="topbot" id="Table7">
-    <title />
-            <tgroup cols="2">
-              <thead>
-                <row>
-                  <entry>
-                    <para>Menu Item</para>
-                  </entry>
-                  <entry>
-                    <para>Description</para>
-                  </entry>
-                </row>
-              </thead>
-              <tbody>
-                <row>
-                  <entry>
-                    <para>Customers -&gt; New Customer</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Customers -&gt; Find Customer</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Customers -&gt; New Invoice</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Customers -&gt; Find Invoice</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Customers -&gt; New Job</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Customers -&gt; Find Job</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Customers -&gt; Process Payment</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Vendors -&gt; New Vendor</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Vendors -&gt; Find Vendor</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Vendors -&gt; New Bill</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Vendors -&gt; Find Bill</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Vendors -&gt; New Job</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Vendors -&gt; Find Job</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Vendors -&gt; Process Payment</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Tax Tables</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Billing Terms</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-              </tbody>
-            </tgroup>
-          </table>
-          <para />
-          <para>Table 8: Reports Menu - Access GnuCash Reports and Charts.</para>
-          <para />
-          <table frame="topbot" id="Table8">
-    <title />
-            <tgroup cols="2">
-              <thead>
-                <row>
-                  <entry>
-                    <para>Menu Item</para>
-                  </entry>
-                  <entry>
-                    <para>Description</para>
-                  </entry>
-                </row>
-              </thead>
-              <tbody>
-                <row>
-                  <entry>
-                    <para>Account Summary</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Tax Report &amp; TXF Export</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Transaction Report</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Sample &amp; Custom -&gt; Welcome Sample Report</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Sample &amp; Custom -&gt; Custom Multicolumn Report</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Sample &amp; Custom -&gt; Custom Web Report</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Sample &amp; Custom -&gt; Sample Report With Examples</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Assets &amp; Liabilities -&gt; Advanced Portfolio</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Assets &amp; Liabilities -&gt; Asset Barchart</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Assets &amp; Liabilities -&gt; Asset Piechart</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Assets &amp; Liabilities -&gt; Average Balance</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Assets &amp; Liabilities -&gt; Balance Sheet</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Assets &amp; Liabilities -&gt; Investment Portfolio</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Assets &amp; Liabilities -&gt; Liability Barchart</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Assets &amp; Liabilities -&gt; Liability Piechart</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Assets &amp; Liabilities -&gt; Net Worth Barchart</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Assets &amp; Liabilities -&gt; Price Scatterplot</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Income &amp; Expense -&gt; Expense Barchart</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Income &amp; Expense -&gt; Expense Piechart</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Income &amp; Expense -&gt; Income &amp; Expense Chart</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Income &amp; Expense -&gt; Income Barchart</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Income &amp; Expense -&gt; Income Piechart</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Income &amp; Expense -&gt; Profit &amp; Loss</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Business Reports -&gt; Customer Report</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Business Reports -&gt; Payable Aging</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Business Reports -&gt; Printable Invoice</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Business Reports -&gt; Receivable Aging</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Business Reports -&gt; Vendor Report</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-              </tbody>
-            </tgroup>
-          </table>
-          <para />
-          <para>Table 9: Tools Menu - Access to miscellaneous tools and editors</para>
-          <para />
-          <table frame="topbot" id="Table9">
-    <title />
-            <tgroup cols="2">
-              <thead>
-                <row>
-                  <entry>
-                    <para>Menu Item</para>
-                  </entry>
-                  <entry>
-                    <para>Description</para>
-                  </entry>
-                </row>
-              </thead>
-              <tbody>
-                <row>
-                  <entry>
-                    <para>General Ledger</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Price Editor</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Commodity Editor</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Financial Calculator</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Find Transactions</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-              </tbody>
-            </tgroup>
-          </table>
-          <para />
-          <para>Table 10: Help Menu - Access to this help and the GnuCash Tutorial and Concepts Guide.</para>
-          <para />
-          <table frame="topbot" id="Table10">
-    <title />
-            <tgroup cols="2">
-              <thead>
-                <row>
-                  <entry>
-                    <para>Menu Item</para>
-                  </entry>
-                  <entry>
-                    <para>Description</para>
-                  </entry>
-                </row>
-              </thead>
-              <tbody>
-                <row>
-                  <entry>
-                    <para>GnuCash Tutorial &amp; Concepts Guide</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Tips Of The Day</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Help</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>About...</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-              </tbody>
-            </tgroup>
-          </table>
-          <para />
-        </sect4>
-        <sect4 id="tree-toolbar">
-          <title>Tool Bar Buttons</title>
-          <para />
-          <para>The Account Tree Window has a tool bar to access quickly some common functions used with accounts. The Tool Bar can be hidden or shown by selecting the Toolbar item on the View menu.</para>
-          <para />
-          <para>Table 11: Account Tree Window Tool Bar</para>
-          <para />
-          <table frame="topbot" id="Table11">
-    <title />
-            <tgroup cols="2">
-              <thead>
-                <row>
-                  <entry>
-                    <para>Tool Bar Button</para>
-                  </entry>
-                  <entry>
-                    <para>Description</para>
-                  </entry>
-                </row>
-              </thead>
-              <tbody>
-                <row>
-                  <entry>
-                    <para>Save</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Close</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Open</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Edit</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Options</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>New</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Delete</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Exit</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-              </tbody>
-            </tgroup>
-          </table>
-          <para />
-        </sect4>
-        <sect4 id="tree-summary">
-          <title>Summary Bar</title>
-          <para />
-          <para>The Summary Bar displays your Net Assets and Profits at a glance. The Summary Bar can be hidden or shown by selecting the Summary Bar item on the View menu.</para>
-        </sect4>
-        <sect4 id="tree-main">
-          <title>Account Tree</title>
-          <para />
-          <para>The Account Tree displays the list of your accounts in hierarchical format. This enables you to organize your accounts by account type. </para>
-          <para />
-          <para>The boxed plus shape beside the account name is used to open and close the account tree. When you click on the box the plus sign changes into a minus sign to indicate that the tree is opened. You will then see directly below the account name a line leading to either the sub account or another box. This shows you the linked lower level of the account tree. </para>
-          <para />
-          <para>The default display for the Account Tree Window is in Notebook mode. This is indicated by the tab on the left side of the Account Tree Window. Other tabs will appear below this one when you open reports and more Account Trees. </para>
-        </sect4>
-        <sect4 id="tree-status">
-          <title>Status Bar</title>
-          <para />
-          <para>The Status Bar displays tooltips for the menus that give more
-	    explanation to a menu item. It also shows a progress bar when
-	    opening or saving a GnuCash data file. The Status Bar can be hidden or shown by selecting the Status Bar item on the View menu.</para>
-        </sect4>
-      </sect3>
-      <sect3 id="account-register">
-        <title>Account Register Window</title>
-        <para />
-        <para>This window is used to enter and edit your account data. It also provides tools for scheduling future transactions, finding and reporting on transactions and printing checks.</para>
-        <para />
-        <para>To open the Account Register Window for an account, select the account in the Account Tree then go to File -&gt; Open Account or press Ctrl-O. This will open a new window with the Account Register. Pressing the Open button on the Tool Bar in the Account Tree Window or the Jump button in the Account Register Window are alternate methods.</para>
-        <para />
-        <para>Figure ? shows an Account Register Window.</para>
-        <para />
-        <para />
-        <para>Table 12 describes the components of the Account Register Window.</para>
-        <para />
-        <table frame="topbot" id="Table14">
-    <title />
-          <tgroup cols="2">
-            <thead>
-              <row>
-                <entry>
-                  <para>Component</para>
-                </entry>
-                <entry>
-                  <para>Description</para>
-                </entry>
-              </row>
-            </thead>
-            <tbody>
-              <row>
-                <entry>
-                  <para>Menubar</para>
-                </entry>
-                <entry>
-                  <para>Contains the Menus used in the Account Register Window</para>
-                </entry>
-              </row>
-              <row>
-                <entry>
-                  <para>Tool Bar</para>
-                </entry>
-                <entry>
-                  <para>Contains buttons used to access common Account Register tasks</para>
-                </entry>
-              </row>
-              <row>
-                <entry>
-                  <para>Summary Bar</para>
-                </entry>
-                <entry>
-                  <para>Contains Summary of Financial Data</para>
-                </entry>
-              </row>
-              <row>
-                <entry>
-                  <para>List of Transactions</para>
-                </entry>
-                <entry>
-                  <para>Area where transactions are entered and edited.</para>
-                </entry>
-              </row>
-              <row>
-                <entry>
-                  <para>Status Bar</para>
-                </entry>
-                <entry>
-                  <para>Contains a short description of the different list of transactions areas.</para>
-                </entry>
-              </row>
-            </tbody>
-          </tgroup>
-        </table>
-        <para />
-        <sect4 id="reg-menus">
-          <title>Menus</title>
-          <para />
-          <para>The following tables describe the menus in the Account Register Window.</para>
-          <para />
-          <para>Table 13: File Menu - Access to file and account operations and printing.</para>
-          <para />
-          <table frame="topbot" id="Table15">
-    <title />
-            <tgroup cols="2">
-              <thead>
-                <row>
-                  <entry>
-                    <para>Menu Item</para>
-                  </entry>
-                  <entry>
-                    <para>Description</para>
-                  </entry>
-                </row>
-              </thead>
-              <tbody>
-                <row>
-                  <entry>
-                    <para>New Account</para>
-                  </entry>
-                  <entry>
-                    <para>Creates a New Account and opens account properties</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Save</para>
-                  </entry>
-                  <entry>
-                    <para>Saves the currently open file. Menu shortcut Ctrl-S</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Save As...</para>
-                  </entry>
-                  <entry>
-                    <para>Saves the currently opened file with a different name</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Print</para>
-                  </entry>
-                  <entry>
-                    <para>Prints the Account Report</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Print Check</para>
-                  </entry>
-                  <entry>
-                    <para>Prints the selected check</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Close</para>
-                  </entry>
-                  <entry>
-                    <para>Closes the current open account tree or report. Menu shortcut Ctrl-W</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Exit</para>
-                  </entry>
-                  <entry>
-                    <para>Exits GnuCash. Menu shortcut Ctrl-Q</para>
-                  </entry>
-                </row>
-              </tbody>
-            </tgroup>
-          </table>
-          <para />
-          <para>Table 14: Edit Menu - Access to account and transaction editing operations and finding transactions.</para>
-          <para />
-          <table frame="topbot" id="Table16">
-    <title />
-            <tgroup cols="2">
-              <thead>
-                <row>
-                  <entry>
-                    <para>Menu Item</para>
-                  </entry>
-                  <entry>
-                    <para>Description</para>
-                  </entry>
-                </row>
-              </thead>
-              <tbody>
-                <row>
-                  <entry>
-                    <para>Cut</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Copy</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Paste</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Edit Account</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Cut Transaction</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Copy Transaction</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Paste Transaction</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Find...</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-              </tbody>
-            </tgroup>
-          </table>
-          <para />
-          <para>Table 15: View Menu - Changes Account Register Window view.</para>
-          <para />
-          <table frame="topbot" id="Table17">
-    <title />
-            <tgroup cols="2">
-              <thead>
-                <row>
-                  <entry>
-                    <para>Menu Item</para>
-                  </entry>
-                  <entry>
-                    <para>Description</para>
-                  </entry>
-                </row>
-              </thead>
-              <tbody>
-                <row>
-                  <entry>
-                    <para>Toolbar</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Summary Bar</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Status Bar</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Date Range -&gt; Show All</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Date Range -&gt; Set Range</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Sort Order -&gt; Standard</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Sort Order -&gt; Date</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Sort Order -&gt; Date of Entry</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Sort Order -&gt; Statement Date</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Sort Order -&gt; Number</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Sort Order -&gt; Amount</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Sort Order -&gt; Memo</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Sort Order -&gt; Description</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Style -&gt; Basic Ledger</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Style -&gt; Auto-Split Ledger</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Style -&gt; Transaction Journal</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Style -&gt; Double Line</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-              </tbody>
-            </tgroup>
-          </table>
-          <para />
-          <para>Table 16: Actions Menu - Enter, delete, split and duplicate transactions. Setup scheduled transactions, repair accounts, perform stock splits,transfer and reconcile transactions.</para>
-          <para />
-          <table frame="topbot" id="Table18">
-    <title />
-            <tgroup cols="2">
-              <thead>
-                <row>
-                  <entry>
-                    <para>Menu Item</para>
-                  </entry>
-                  <entry>
-                    <para>Description</para>
-                  </entry>
-                </row>
-              </thead>
-              <tbody>
-                <row>
-                  <entry>
-                    <para>Transfer...</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Reconcile...</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Stock Split...</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Enter</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Cancel</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Delete</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Blank</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Duplicate Transaction...</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Split Transaction</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Schedule...</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Jump</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Check &amp; Repair -&gt; All Transactions</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Check &amp; Repair -&gt; This Transaction</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-              </tbody>
-            </tgroup>
-          </table>
-          <para />
-          <para>Table 17: Reports Menu - Access GnuCash Reports and Charts.</para>
-          <para />
-          <table frame="topbot" id="Table20">
-    <title />
-            <tgroup cols="2">
-              <thead>
-                <row>
-                  <entry>
-                    <para>Menu Item</para>
-                  </entry>
-                  <entry>
-                    <para>Description</para>
-                  </entry>
-                </row>
-              </thead>
-              <tbody>
-                <row>
-                  <entry>
-                    <para>Account Report</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Transaction Report</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-              </tbody>
-            </tgroup>
-          </table>
-          <para />
-          <para>Table 18: Tools Menu - Access to miscellaneous tools and editors</para>
-          <para />
-          <table frame="topbot" id="Table21">
-    <title />
-            <tgroup cols="2">
-              <thead>
-                <row>
-                  <entry>
-                    <para>Menu Item</para>
-                  </entry>
-                  <entry>
-                    <para>Description</para>
-                  </entry>
-                </row>
-              </thead>
-              <tbody>
-                <row>
-                  <entry>
-                    <para>General Ledger</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Price Editor</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Commodity Editor</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Financial Calculator</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-              </tbody>
-            </tgroup>
-          </table>
-          <para />
-          <para>Table 19: Help Menu - Access to this help and the GnuCash Tutorial and Concepts Guide.</para>
-          <para />
-          <table frame="topbot" id="Table22">
-    <title />
-            <tgroup cols="2">
-              <thead>
-                <row>
-                  <entry>
-                    <para>Menu Item</para>
-                  </entry>
-                  <entry>
-                    <para>Description</para>
-                  </entry>
-                </row>
-              </thead>
-              <tbody>
-                <row>
-                  <entry>
-                    <para>GnuCash Tutorial &amp; Concepts Guide</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Tips Of The Day</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Help</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>About...</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-              </tbody>
-            </tgroup>
-          </table>
-          <para />
-        </sect4>
-        <sect4 id="reg-toolbar">
-          <title>Tool Bar Buttons</title>
-          <para />
-          <para>The Account Register Window has a tool bar to access quickly some common functions used with the list of transactions. The Tool Bar can be hidden or shown by selecting the Toolbar item on the View menu.</para>
-          <para />
-          <para>Table 20: Account Register Window Tool Bar</para>
-          <para />
-          <table frame="topbot" id="Table12">
-    <title />
-            <tgroup cols="2">
-              <thead>
-                <row>
-                  <entry>
-                    <para>Tool Bar Button</para>
-                  </entry>
-                  <entry>
-                    <para>Description</para>
-                  </entry>
-                </row>
-              </thead>
-              <tbody>
-                <row>
-                  <entry>
-                    <para>Close</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Enter</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Cancel</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Delete</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Duplicate</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Schedule</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Split</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Blank</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Jump</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Transfer</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Find</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Report</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Print</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-              </tbody>
-            </tgroup>
-          </table>
-          <para />
-        </sect4>
-        <sect4 id="reg-summary">
-          <title>Summary Bar</title>
-          <para />
-          <para>The Summary Bar displays balances appropriate for the opened account type at a glance. Usually accounts display today's account balance, any balance for future dates, a balance for cleared items and a reconciled balance. Stock accounts, however, display shares totals and their value. The Summary Bar can be hidden or shown by selecting the Summary Bar item on the View menu.</para>
-        </sect4>
-        <sect4 id="reg-main">
-          <title>List of Transactions</title>
-          <para />
-          <para>The List of Transactions displays transactions you have entered and a running balance. It also provides a blank transaction to enter new transactions. The column headings vary according to what type of account you have opened. Common headings are Date, Description, Transfer and Balance.</para>
-          <para />
-          <para>The View menu can be used to alter the appearance of the List of Transactions. Possible changes are limiting the number of transactions shown, using a different sort order and changing the style to more easily see transactions. The split button also provides quick access to view all the parts of a transaction.</para>
-        </sect4>
-        <sect4 id="reg-status">
-          <title>Status Bar</title>
-          <para />
-          <para>The Status Bar displays a short description when different fields are selected in the list of transactions. The Status Bar can be hidden or shown by selecting the Status Bar item on the View menu.</para>
-        </sect4>
-        <sect4 id="reg-gl">
-          <title>General Ledger</title>
-          <para />
-          <para>The General Ledger is an advanced register used to enter transactions without needing to open individual accounts. The General Ledger shows the transaction entries for all accounts on one register.</para>
-          <para />
-          <para>Entering transactions in the General Ledger is more complicated than entering them in the individual account registers. The advantage is the General Ledger provides a more comprehensive view of the transactions you have entered in all your accounts.</para>
-          <para />
-          <para>The General Ledger defaults to showing only the previous month of transactions. This is changeable by using the Date Range on the View menu.</para>
-        </sect4>
-      </sect3>
-      <sect3 id="report-win">
-        <title>Report Window</title>
-        <para />
-        <para>This window is shown whenever a report or chart is selected from the Reports menu. It provides a web browser type display with clickable links to account data.</para>
-        <para />
-        <para>At this time all the functions of the report window are accessed through Tool Bar buttons.</para>
-        <sect4 id="report-toolbar">
-          <title>Tool Bar Buttons</title>
-          <para />
-          <para>The Report Window has a tool bar to access quickly the functions used with reports. The Tool Bar can be hidden or shown by selecting the Toolbar item on the View menu.</para>
-          <para />
-          <para>Table 21: Report Window Tool Bar</para>
-          <para />
-          <table frame="topbot" id="Table13">
-    <title />
-            <tgroup cols="2">
-              <thead>
-                <row>
-                  <entry>
-                    <para>Tool Bar Button</para>
-                  </entry>
-                  <entry>
-                    <para>Description</para>
-                  </entry>
-                </row>
-              </thead>
-              <tbody>
-                <row>
-                  <entry>
-                    <para>Save</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Close</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Back</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Forward</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Reload</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Stop</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Export</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Options</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Print</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Exit</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-              </tbody>
-            </tgroup>
-          </table>
-          <para />
-        </sect4>
-        <sect4 id="report-main">
-          <title>Report</title>
-          <para />
-          <para>This is where the report or chart you have selected is shown. The properties of this window are editable in two ways. Selecting the Options button on the toolbar lets you edit what the report is showing and which accounts the information is drawn from. Selecting Edit -&gt; Style Sheets... lets you select the properties of the web page that displays your report.</para>
-          <para />
-          <para>The report is able to act like a web browser if your report contains links to external web pages. The toolbar buttons allow you to move back and forward through web pages. It will also open account information in the register window when you click on links contained in the report.</para>
-          <para />
-          <para>You can also save your report to a file and print the report through the toolbar buttons.</para>
-        </sect4>
-      </sect3>
-      <sect3 id="tool-win">
-        <title>Tool Windows</title>
-        <para />
-        <para>There are several specialized Tool Windows used in GnuCash. These windows provide additional functions to the basic account register.</para>
-        <para />
-        <para>To access the Scheduled Transaction Editor go to Actions -&gt; Scheduled Transactions -&gt; Scheduled Transaction Editor. To access the Reconcile Window go to Actions -&gt; Reconcile... (menu shortcut Ctrl-R). The other Tools are accessed by going to the Tools menu.</para>
-        <sect4 id="tool-sched">
-          <title>Scheduled Transaction Editor</title>
-          <para />
-          <para>The Scheduled Transaction Editor is used to create and edit transactions that are to be added to the register in an automated way. This is combined with the Since Last Run druid to review and enter the transactions.</para>
-          <para />
-          <sect5 id="sched-win">
-            <title>Scheduled Transactions Window</title>
-            <para />
-            <para>The top pane of the Scheduled Transaction Window contains the list of scheduled transactions that are currently setup. This window lists the Name of the transaction, the Frequency that the transaction is entered and the next time the transaction will be entered.</para>
-            <para />
-            <para>The right side of this window contains three buttons to create and edit scheduled transactions. New and Edit opens the Edit Scheduled Transaction dialog. Delete removes the selected scheduled transaction.</para>
-            <para />
-            <para>Below the list of scheduled transactions is the Upcoming calendar. This mini calendar lists the dates that the scheduled transactions occur so it is easy to see when the transaction next occurs. Clicking on a date in the calendar brings up a list of scheduled transactions for that date. Moving the mouse over other dates changes to the list of transactions on those dates. Clicking once more on the calendar removes the transaction list.</para>
-          </sect5>
-          <sect5 id="sched-edit">
-            <title>Edit Scheduled Transaction Window</title>
-            <para />
-            <para>The Edit Scheduled Transaction Window is divided into a Name area, Options pane, End pane, Recurrance Frequency pane, mini calendar and Template Transaction pane.</para>
-            <para />
-            <para>The Options pane contains checkboxes to set if the transaction is automatically created and how many days in advance the transaction is created or a reminder posted.</para>
-            <para />
-            <para>The End pane contains selections to set for how long the transaction is entered and the number of </para>
-            <para />
-            <para>The Recurrance Frequency pane contains selections to set how often the transaction is scheduled to be added and on what dates this occurs.</para>
-            <para />
-            <para>The mini calendar provides a visual indication of what transactions are already scheduled.</para>
-            <para />
-            <para>The Template Transaction pane allows you to setup the transaction as you would like it to be entered into the register.</para>
-            <para />
-            <para>These options are described in more detail in the To Schedule Transactions section of </para>
-          </sect5>
-        </sect4>
-        <sect4 id="tool-reconcile">
-          <title>Reconcile Window</title>
-          <para />
-          <para>The Reconcile Window is used to reconcile bank statements to GnuCash accounts. It provides access to various GnuCash functions to make it easy to enter and update account information during the reconciliation.</para>
-          <para />
-          <para>The Reconcile Window is accessed in the Account Tree Window by going to Actions -&gt; Reconcile... (menu shortcut Ctrl-R). In the Account Register Window it is accessed by going to Actions -&gt; Reconcile...</para>
-          <para />
-          <para>Figure ? shows an Reconcile Window.</para>
-          <para />
-          <para />
-          <para>Table 22 describes the components of the Reconcile Window.</para>
-          <para />
-          <table frame="topbot" id="Table26">
-    <title />
-            <tgroup cols="2">
-              <thead>
-                <row>
-                  <entry>
-                    <para>Component</para>
-                  </entry>
-                  <entry>
-                    <para>Description</para>
-                  </entry>
-                </row>
-              </thead>
-              <tbody>
-                <row>
-                  <entry>
-                    <para>Menubar</para>
-                  </entry>
-                  <entry>
-                    <para>Contains the Menus used in the Reconcile Window.</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Tool Bar</para>
-                  </entry>
-                  <entry>
-                    <para>Contains buttons used to access common Reconcile Window tasks.</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Funds In</para>
-                  </entry>
-                  <entry>
-                    <para>Contains a list of funds deposited in the account.</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Funds Out</para>
-                  </entry>
-                  <entry>
-                    <para>Contains a list of funds withdrawn from the account.</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Balance Pane</para>
-                  </entry>
-                  <entry>
-                    <para>Contains a list of balances to use in reconciling.</para>
-                  </entry>
-                </row>
-              </tbody>
-            </tgroup>
-          </table>
-          <para />
-          <sect5 id="rec-menus">
-            <title>Menus</title>
-            <para />
-            <para>The following tables describe menus in the Reconcile Window.</para>
-            <para />
-            <para>Table 23: Reconcile Menu - Access to Reconcile Information and finishing or postponing.</para>
-            <para />
-            <table frame="topbot" id="Table27">
-    <title />
-              <tgroup cols="2">
-                <thead>
-                  <row>
-                    <entry>
-                      <para>Menu Item</para>
-                    </entry>
-                    <entry>
-                      <para>Description</para>
-                    </entry>
-                  </row>
-                </thead>
-                <tbody>
-                  <row>
-                    <entry>
-                      <para>Reconcile Information</para>
-                    </entry>
-                    <entry>
-                      <para />
-                    </entry>
-                  </row>
-                  <row>
-                    <entry>
-                      <para>Finish</para>
-                    </entry>
-                    <entry>
-                      <para />
-                    </entry>
-                  </row>
-                  <row>
-                    <entry>
-                      <para>Postpone</para>
-                    </entry>
-                    <entry>
-                      <para />
-                    </entry>
-                  </row>
-                  <row>
-                    <entry>
-                      <para>Cancel</para>
-                    </entry>
-                    <entry>
-                      <para />
-                    </entry>
-                  </row>
-                </tbody>
-              </tgroup>
-            </table>
-            <para />
-            <para>Table 24: Account Menu - Access to account operations.</para>
-            <para />
-            <table frame="topbot" id="Table28">
-    <title />
-              <tgroup cols="2">
-                <thead>
-                  <row>
-                    <entry>
-                      <para>Menu Item</para>
-                    </entry>
-                    <entry>
-                      <para>Description</para>
-                    </entry>
-                  </row>
-                </thead>
-                <tbody>
-                  <row>
-                    <entry>
-                      <para>Open Account</para>
-                    </entry>
-                    <entry>
-                      <para />
-                    </entry>
-                  </row>
-                  <row>
-                    <entry>
-                      <para>Edit Account</para>
-                    </entry>
-                    <entry>
-                      <para />
-                    </entry>
-                  </row>
-                  <row>
-                    <entry>
-                      <para>Transfer...</para>
-                    </entry>
-                    <entry>
-                      <para />
-                    </entry>
-                  </row>
-                  <row>
-                    <entry>
-                      <para>Check </para>
-                    </entry>
-                    <entry>
-                      <para />
-                    </entry>
-                  </row>
-                </tbody>
-              </tgroup>
-            </table>
-            <para />
-            <para>Table 25: Transaction Menu - Access to transaction editing operations.</para>
-            <para />
-            <table frame="topbot" id="Table29">
-    <title />
-              <tgroup cols="2">
-                <thead>
-                  <row>
-                    <entry>
-                      <para>Menu Item</para>
-                    </entry>
-                    <entry>
-                      <para>Description</para>
-                    </entry>
-                  </row>
-                </thead>
-                <tbody>
-                  <row>
-                    <entry>
-                      <para>New</para>
-                    </entry>
-                    <entry>
-                      <para />
-                    </entry>
-                  </row>
-                  <row>
-                    <entry>
-                      <para>Edit</para>
-                    </entry>
-                    <entry>
-                      <para />
-                    </entry>
-                  </row>
-                  <row>
-                    <entry>
-                      <para>Delete</para>
-                    </entry>
-                    <entry>
-                      <para />
-                    </entry>
-                  </row>
-                </tbody>
-              </tgroup>
-            </table>
-            <para />
-            <para>Table 26: Help Menu - Access to help.</para>
-            <para />
-            <table frame="topbot" id="Table30">
-    <title />
-              <tgroup cols="2">
-                <thead>
-                  <row>
-                    <entry>
-                      <para>Menu Item</para>
-                    </entry>
-                    <entry>
-                      <para>Description</para>
-                    </entry>
-                  </row>
-                </thead>
-                <tbody>
-                  <row>
-                    <entry>
-                      <para>Help</para>
-                    </entry>
-                    <entry>
-                      <para />
-                    </entry>
-                  </row>
-                </tbody>
-              </tgroup>
-            </table>
-            <para />
-          </sect5>
-          <sect5 id="rec-toolbar">
-            <title>Tool Bar Buttons</title>
-            <para />
-            <para>The Reconcile Window has a tool bar to access quickly some common functions used with reconciliation.</para>
-            <para />
-            <para>Table 27: Reconcile Window Tool Bar</para>
-            <para />
-            <table frame="topbot" id="Table31">
-    <title />
-              <tgroup cols="2">
-                <thead>
-                  <row>
-                    <entry>
-                      <para>Tool Bar Button</para>
-                    </entry>
-                    <entry>
-                      <para>Description</para>
-                    </entry>
-                  </row>
-                </thead>
-                <tbody>
-                  <row>
-                    <entry>
-                      <para>New</para>
-                    </entry>
-                    <entry>
-                      <para />
-                    </entry>
-                  </row>
-                  <row>
-                    <entry>
-                      <para>Edit</para>
-                    </entry>
-                    <entry>
-                      <para />
-                    </entry>
-                  </row>
-                  <row>
-                    <entry>
-                      <para>Delete</para>
-                    </entry>
-                    <entry>
-                      <para />
-                    </entry>
-                  </row>
-                  <row>
-                    <entry>
-                      <para>Open</para>
-                    </entry>
-                    <entry>
-                      <para />
-                    </entry>
-                  </row>
-                  <row>
-                    <entry>
-                      <para>Finish</para>
-                    </entry>
-                    <entry>
-                      <para />
-                    </entry>
-                  </row>
-                </tbody>
-              </tgroup>
-            </table>
-            <para />
-          </sect5>
-          <sect5 id="rec-main">
-            <title>Reconciling Window</title>
-            <para />
-            <para>The Funds In pane shows all unreconciled deposits to the account.</para>
-            <para />
-            <itemizedlist>
-              <listitem>
-                <para>Date: The date of the unreconciled transaction.</para>
-              </listitem>
-              <listitem>
-                <para>Num: The number of the unreconciled transaction.</para>
-              </listitem>
-              <listitem>
-                <para>Description: The Description of the unreconciled transaction.</para>
-              </listitem>
-              <listitem>
-                <para>Amount: The Amount of the unreconciled transaction.</para>
-              </listitem>
-              <listitem>
-                <para>R: Shows a green tick if the transaction will be reconciled when done.</para>
-              </listitem>
-            </itemizedlist>
-            <para />
-            <para>The Funds Out pane shows all unreconciled expenses from the account.</para>
-            <para />
-            <itemizedlist>
-              <listitem>
-                <para>Date: The date of the unreconciled transaction.</para>
-              </listitem>
-              <listitem>
-                <para>Num: The number of the unreconciled transaction.</para>
-              </listitem>
-              <listitem>
-                <para>Description: The Description of the unreconciled transaction.</para>
-              </listitem>
-              <listitem>
-                <para>Amount: The Amount of the unreconciled transaction.</para>
-              </listitem>
-              <listitem>
-                <para>R: Shows a green tick if the transaction will be reconciled when done.</para>
-              </listitem>
-            </itemizedlist>
-            <para />
-            <para>The Balance pane shows the balances used in reconciliation.</para>
-            <para />
-            <itemizedlist>
-              <listitem>
-                <para>Starting Balance: The balance at the end of the last reconciliation.</para>
-              </listitem>
-              <listitem>
-                <para>Ending Balance: The balance entered from the statement.</para>
-              </listitem>
-              <listitem>
-                <para>Reconciled Balance: The balance of selected transactions.</para>
-              </listitem>
-              <listitem>
-                <para>Difference: The difference between the Reconciled and Ending Balances.</para>
-              </listitem>
-            </itemizedlist>
-            <para />
-          </sect5>
-        </sect4>
-        <sect4 id="tool-price">
-          <title>Price Editor</title>
-          <para />
-          <para>The Price Editor is used to track the value of currency, mutual fund and stock type accounts. It provides a unified interface to updating the values of these commodities and is able to update manually or through online quotes.</para>
-          <para />
-          <para>Each entry in the editor shows a record of a commodity price:</para>
-          <para />
-          <itemizedlist>
-            <listitem>
-              <para>
-                <emphasis>Commodity: </emphasis>The commodity being priced.
-              </para>
-            </listitem>
-            <listitem>
-              <para>
-                <emphasis>Currency: </emphasis>The currency the price is recorded in.
-              </para>
-            </listitem>
-            <listitem>
-              <para>
-                <emphasis>Date: </emphasis>The date the price was recorded.
-              </para>
-            </listitem>
-            <listitem>
-              <para>
-                <emphasis>Source: </emphasis>The source of the commodities price quote. Typically, this will be either "user:price-editor", indicating you entered it directly, or "Finance::Quote", indicating that it was retrieved from an online source by the Finance::Quote module.
-              </para>
-            </listitem>
-            <listitem>
-              <para>
-                <emphasis>Type: </emphasis>There are several different types of stock price quotes.
-              </para>
-            </listitem>
-            <listitem>
-              <para>
-                <emphasis>Bid: </emphasis>Indicates what a specialist dealer is prepared to pay for a stock. 
-              </para>
-            </listitem>
-            <listitem>
-              <para>
-                <emphasis>Ask: </emphasis>Indicates at what price the dealers are prepared to sell a stock.
-              </para>
-            </listitem>
-            <listitem>
-              <para>
-                <emphasis>Last: </emphasis>Indicate the price at which the last trade in that stock/security occurred at. This is the price most commonly quoted in the media.
-              </para>
-            </listitem>
-            <listitem>
-              <para>
-                <emphasis>Net Asset Value: </emphasis>Are typically used for mutual funds. They are calculated on the net value of the fund's assets.
-              </para>
-            </listitem>
-            <listitem>
-              <para>
-                <emphasis>Unknown: </emphasis>Use this if the type of price quoted is not known.
-              </para>
-            </listitem>
-            <listitem>
-              <para>
-                <emphasis>Price: </emphasis>The actual price of the commodity.
-              </para>
-            </listitem>
-          </itemizedlist>
-          <para />
-          <para>To add a new price, click on Add, and enter the details of the price into the dialog box. To edit an existing price, select the price in the price list, click the Edit button, and edit the figures.</para>
-          <para />
-          <para>To remove just one price, select the price and click the Remove button. If you want to remove all prices older than a certain time, click on the Remove Old... button and enter the details in the dialog box.</para>
-          <para />
-          <para>To support online quotations for a particular stock or mutual fund account, you must first enable online price quoting and select a price source. This is described in detail in the To Create a New Account section of Setting up And Editing Accounts. Once online quotes are enabled, you can update prices for your stocks and mutual funds by clicking the Get Quotes button.</para>
-        </sect4>
-        <sect4 id="tool-commodity">
-          <title>Commodity Editor</title>
-          <para />
-          <para>The Commodity Editor is used to create and edit commodities that are used by mutual fund and stock type accounts. It also shows the details of National Currencies that are used by GnuCash.</para>
-          <para />
-          <para>Each entry in the editor shows the details used by the commodity:</para>
-          <para />
-          <itemizedlist>
-            <listitem>
-              <para>Type: Indicates for stocks the exchange on which a stock is traded. For mutual funds use the FUND type. If your commodity is not of one of these types, you can create a new type by typing it in the box. For national currencies the type is ISO4217. ISO-4217 is an international standard which defines unique three-letter symbols for each currency. National currencies are not user editable.</para>
-            </listitem>
-            <listitem>
-              <para>Symbol: Indicates the symbol or abbreviation for the commodity. This is usually the ticker symbol (for stocks) or other unique abbreviation for the commodity. If the commodity is traded on any public exchange, it is important to use the same identifier used on that exchange. For national currencies the symbol is the ISO-4217 currency code.</para>
-            </listitem>
-            <listitem>
-              <para>Name: The full name of the commodity is a recognizable name such as "US Dollars" or "IBM Common Stock".</para>
-            </listitem>
-            <listitem>
-              <para>Code: This is any numeric or alphanumeric code that is used to identify the commodity. The CUSIP code is a unique identifying numeric string that is associated with every stock, bond or mutual fund, and most kinds of tradable options, futures and commodities. This code is not required.</para>
-            </listitem>
-            <listitem>
-              <para>Fraction: This is the smallest tradable unit of the commodity, expressed as a fraction of a single nominal unit. This unit is used by GnuCash accounts as the default fraction for trades in the commodity.</para>
-            </listitem>
-          </itemizedlist>
-          <para />
-          <para>To add a new commodity, click on Add, and enter the details of the commodity into the New Currency/Security dialog box. To edit an existing commodity, select the commodity from the Commodities list, click the Edit button, and edit the New Currency/Security dialog box. To remove a commodity, select the commodity and click the Remove button. </para>
-          <para />
-          <para>To show the details for National Currencies click the Show National Currencies checkbox.</para>
-        </sect4>
-        <sect4 id="tool-calc">
-          <title>Financial Calculator</title>
-          <para />
-          <para>The Financial Calculator is used to calculate compound interest. It provides a way of entering four of the five parameters of a compound interest calculation and then calculating the remaining figure.</para>
-          <para />
-          <para>The calculator is split into two panes. The left pane has five fields with a Calculate button and a Clear button. The Calculate button is used to select the figure to calculate. The Clear button is used to clear any amount in the field.</para>
-          <para />
-          <itemizedlist>
-            <listitem>
-              <para>Payment Periods: This field is used to select the number of payments you wish to use in the calculation.</para>
-            </listitem>
-            <listitem>
-              <para>Interest Rate: This field is used for the interest rate percentage.</para>
-            </listitem>
-            <listitem>
-              <para>Present Value: This field usually contains the amount you have borrowed. It is the base amount you wish to compound.</para>
-            </listitem>
-            <listitem>
-              <para>Periodic Payment: This field contains the amount that is the payment for the period selected (ie monthly, weekly, etc). If it is for repaying a loan it should be a negative number.</para>
-            </listitem>
-            <listitem>
-              <para>Future Value: This field contains the final value at the end of the periods above. If we are repaying a loan in full it would be '0'.</para>
-            </listitem>
-          </itemizedlist>
-          <para />
-          <para>The right pane contains buttons to select what sort of payments and compounding is used for the left pane calculations.</para>
-          <para />
-          <itemizedlist>
-            <listitem>
-              <para>Compounding: This button allows you to select the interval used if the Discrete Compounding button is selected.</para>
-            </listitem>
-            <listitem>
-              <para>Payments: This button allows you to select the interval used for the Payment Periods field.</para>
-            </listitem>
-            <listitem>
-              <para>End of Period Payments: Use this button if the payment is at the end of the period.</para>
-            </listitem>
-            <listitem>
-              <para>Beginning of Period Payments: Use this button if the payment is at the beginning of the period.</para>
-            </listitem>
-            <listitem>
-              <para>Discrete Compounding: This button is used where interest is charged at a discrete interval defined by the Compounding button above.</para>
-            </listitem>
-            <listitem>
-              <para>Continuous Compounding: This button is used when the interest is charged continuously.</para>
-            </listitem>
-            <listitem>
-              <para>Payment Total: This field shows the total amount paid.</para>
-            </listitem>
-          </itemizedlist>
-          <para />
-          <para>Examples of using the Financial Calculator are given in the Tutorial and Concepts Guide.</para>
-        </sect4>
-        <sect4 id="tool-find">
-          <title>Find Transactions</title>
-          <para />
-          <para>Find Transactions is used to search for transactions in GnuCash and display the results in a register window. The title bar of the Find Transactions dialog contains 'Search For...' and the first line of the dialog has 'Split Search'. In other search dialogs used in GnuCash the first line contains a different description but the same basic layout.</para>
-          <para />
-          <para>To open the Find Transactions dialog in the Account Tree Window go to the Tools menu and select Find Transactions or type menu shortcut Ctrl-F. To open the Find Transactions dialog in the Account Register Window go to the Edit menu and select Find... or type menu shortcut F6.</para>
-          <para />
-          <para>There are two panes in the search dialog. The top pane contains the Search Criteria buttons and the bottom pane contains the Type of Search selection. </para>
-          <para />
-          <para>There are two buttons in the top of the Search Criteria pane. The left button allows you to add another criteria row to search for multiple criteria. The existing criteria row needs to be completed before adding a new row. The right button is used to Search for items where all criteria are met or Search for items where any criteria are met. The all criteria are met search requires all of the criteria rows to have at least one match. The any criteria are met search requires only one of the criteria rows to be matched.</para>
-          <para />
-          <para>The criteria row is used to combine different criteria buttons. The following table describes the possible button combinations (regex means regular expression search);</para>
-          <para />
-          <para>Table 28: Search criteria buttons.</para>
-          <para />
-          <table frame="topbot" id="Table19">
-    <title />
-            <tgroup cols="8">
-              <thead>
-                <row>
-                  <entry>
-                    <para>Button 1</para>
-                  </entry>
-                  <entry>
-                    <para>Button2</para>
-                  </entry>
-                  <entry>
-                    <para>Button3</para>
-                  </entry>
-                  <entry>
-                    <para>Button4</para>
-                  </entry>
-                  <entry>
-                    <para>Button5</para>
-                  </entry>
-                  <entry>
-                    <para>Button 6</para>
-                  </entry>
-                  <entry>
-                    <para>Button 7</para>
-                  </entry>
-                  <entry>
-                    <para>Button 8</para>
-                  </entry>
-                </row>
-              </thead>
-              <tbody>
-                <row>
-                  <entry>
-                    <para>Description</para>
-                  </entry>
-                  <entry>
-                    <para>contains</para>
-                  </entry>
-                  <entry>
-                    <para>Criteria entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Is entry Case Insensitive?</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Description</para>
-                  </entry>
-                  <entry>
-                    <para>does not contain</para>
-                  </entry>
-                  <entry>
-                    <para>Criteria entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Is entry Case Insensitive?</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Description</para>
-                  </entry>
-                  <entry>
-                    <para>matches regex</para>
-                  </entry>
-                  <entry>
-                    <para>Criteria entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Is entry Case Insensitive?</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Description</para>
-                  </entry>
-                  <entry>
-                    <para>does not match regex</para>
-                  </entry>
-                  <entry>
-                    <para>Criteria entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Is entry Case Insensitive?</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Memo</para>
-                  </entry>
-                  <entry>
-                    <para>contains</para>
-                  </entry>
-                  <entry>
-                    <para>Criteria entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Is entry Case Insensitive?</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Memo</para>
-                  </entry>
-                  <entry>
-                    <para>does not contain</para>
-                  </entry>
-                  <entry>
-                    <para>Criteria entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Is entry Case Insensitive?</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Memo</para>
-                  </entry>
-                  <entry>
-                    <para>matches regex</para>
-                  </entry>
-                  <entry>
-                    <para>Criteria entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Is entry Case Insensitive?</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Memo</para>
-                  </entry>
-                  <entry>
-                    <para>does not match regex</para>
-                  </entry>
-                  <entry>
-                    <para>Criteria entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Is entry Case Insensitive?</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Number</para>
-                  </entry>
-                  <entry>
-                    <para>contains</para>
-                  </entry>
-                  <entry>
-                    <para>Criteria entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Is entry Case Insensitive?</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Number</para>
-                  </entry>
-                  <entry>
-                    <para>does not contain</para>
-                  </entry>
-                  <entry>
-                    <para>Criteria entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Is entry Case Insensitive?</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Number</para>
-                  </entry>
-                  <entry>
-                    <para>matches regex</para>
-                  </entry>
-                  <entry>
-                    <para>Criteria entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Is entry Case Insensitive?</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Number</para>
-                  </entry>
-                  <entry>
-                    <para>does not match regex</para>
-                  </entry>
-                  <entry>
-                    <para>Criteria entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Is entry Case Insensitive?</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Action</para>
-                  </entry>
-                  <entry>
-                    <para>contains</para>
-                  </entry>
-                  <entry>
-                    <para>Criteria entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Is entry Case Insensitive?</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Action</para>
-                  </entry>
-                  <entry>
-                    <para>does not contain</para>
-                  </entry>
-                  <entry>
-                    <para>Criteria entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Is entry Case Insensitive?</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Action</para>
-                  </entry>
-                  <entry>
-                    <para>matches regex</para>
-                  </entry>
-                  <entry>
-                    <para>Criteria entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Is entry Case Insensitive?</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Action</para>
-                  </entry>
-                  <entry>
-                    <para>does not match regex</para>
-                  </entry>
-                  <entry>
-                    <para>Criteria entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Is entry Case Insensitive?</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Date Posted</para>
-                  </entry>
-                  <entry>
-                    <para>is before</para>
-                  </entry>
-                  <entry>
-                    <para>Date selection field</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Date Posted</para>
-                  </entry>
-                  <entry>
-                    <para>is before or on</para>
-                  </entry>
-                  <entry>
-                    <para>Date selection field</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Date Posted</para>
-                  </entry>
-                  <entry>
-                    <para>is on</para>
-                  </entry>
-                  <entry>
-                    <para>Date selection field</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Date Posted</para>
-                  </entry>
-                  <entry>
-                    <para>is not on</para>
-                  </entry>
-                  <entry>
-                    <para>Date selection field</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Date Posted</para>
-                  </entry>
-                  <entry>
-                    <para>is after</para>
-                  </entry>
-                  <entry>
-                    <para>Date selection field</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Date Posted</para>
-                  </entry>
-                  <entry>
-                    <para>is on or after</para>
-                  </entry>
-                  <entry>
-                    <para>Date selection field</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Value</para>
-                  </entry>
-                  <entry>
-                    <para>has credits or debits</para>
-                  </entry>
-                  <entry>
-                    <para>less than</para>
-                  </entry>
-                  <entry>
-                    <para>Amount entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Value</para>
-                  </entry>
-                  <entry>
-                    <para>has credits or debits</para>
-                  </entry>
-                  <entry>
-                    <para>less than or equal to</para>
-                  </entry>
-                  <entry>
-                    <para>Amount entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Value</para>
-                  </entry>
-                  <entry>
-                    <para>has credits or debits</para>
-                  </entry>
-                  <entry>
-                    <para>equal to</para>
-                  </entry>
-                  <entry>
-                    <para>Amount entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Value</para>
-                  </entry>
-                  <entry>
-                    <para>has credits or debits</para>
-                  </entry>
-                  <entry>
-                    <para>not equal to</para>
-                  </entry>
-                  <entry>
-                    <para>Amount entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Value</para>
-                  </entry>
-                  <entry>
-                    <para>has credits or debits</para>
-                  </entry>
-                  <entry>
-                    <para>greater than</para>
-                  </entry>
-                  <entry>
-                    <para>Amount entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Value</para>
-                  </entry>
-                  <entry>
-                    <para>has credits or debits</para>
-                  </entry>
-                  <entry>
-                    <para>greater than or equal to</para>
-                  </entry>
-                  <entry>
-                    <para>Amount entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Value</para>
-                  </entry>
-                  <entry>
-                    <para>has credits</para>
-                  </entry>
-                  <entry>
-                    <para>less than</para>
-                  </entry>
-                  <entry>
-                    <para>Amount entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Value</para>
-                  </entry>
-                  <entry>
-                    <para>has credits</para>
-                  </entry>
-                  <entry>
-                    <para>less than or equal to</para>
-                  </entry>
-                  <entry>
-                    <para>Amount entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Value</para>
-                  </entry>
-                  <entry>
-                    <para>has credits</para>
-                  </entry>
-                  <entry>
-                    <para>equal to</para>
-                  </entry>
-                  <entry>
-                    <para>Amount entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Value</para>
-                  </entry>
-                  <entry>
-                    <para>has credits</para>
-                  </entry>
-                  <entry>
-                    <para>not equal to</para>
-                  </entry>
-                  <entry>
-                    <para>Amount entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Value</para>
-                  </entry>
-                  <entry>
-                    <para>has credits</para>
-                  </entry>
-                  <entry>
-                    <para>greater than</para>
-                  </entry>
-                  <entry>
-                    <para>Amount entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Value</para>
-                  </entry>
-                  <entry>
-                    <para>has credits</para>
-                  </entry>
-                  <entry>
-                    <para>greater than or equal to</para>
-                  </entry>
-                  <entry>
-                    <para>Amount entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Value</para>
-                  </entry>
-                  <entry>
-                    <para>has debits</para>
-                  </entry>
-                  <entry>
-                    <para>less than</para>
-                  </entry>
-                  <entry>
-                    <para>Amount entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Value</para>
-                  </entry>
-                  <entry>
-                    <para>has debits</para>
-                  </entry>
-                  <entry>
-                    <para>less than or equal to</para>
-                  </entry>
-                  <entry>
-                    <para>Amount entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Value</para>
-                  </entry>
-                  <entry>
-                    <para>has debits</para>
-                  </entry>
-                  <entry>
-                    <para>equal to</para>
-                  </entry>
-                  <entry>
-                    <para>Amount entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Value</para>
-                  </entry>
-                  <entry>
-                    <para>has debits</para>
-                  </entry>
-                  <entry>
-                    <para>not equal to</para>
-                  </entry>
-                  <entry>
-                    <para>Amount entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Value</para>
-                  </entry>
-                  <entry>
-                    <para>has debits</para>
-                  </entry>
-                  <entry>
-                    <para>greater than</para>
-                  </entry>
-                  <entry>
-                    <para>Amount entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Value</para>
-                  </entry>
-                  <entry>
-                    <para>has debits</para>
-                  </entry>
-                  <entry>
-                    <para>greater than or equal to</para>
-                  </entry>
-                  <entry>
-                    <para>Amount entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Shares</para>
-                  </entry>
-                  <entry>
-                    <para>less than</para>
-                  </entry>
-                  <entry>
-                    <para>Amount entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Shares</para>
-                  </entry>
-                  <entry>
-                    <para>less than or equal to</para>
-                  </entry>
-                  <entry>
-                    <para>Amount entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Shares</para>
-                  </entry>
-                  <entry>
-                    <para>equal to</para>
-                  </entry>
-                  <entry>
-                    <para>Amount entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Shares</para>
-                  </entry>
-                  <entry>
-                    <para>not equal to</para>
-                  </entry>
-                  <entry>
-                    <para>Amount entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Shares</para>
-                  </entry>
-                  <entry>
-                    <para>greater than</para>
-                  </entry>
-                  <entry>
-                    <para>Amount entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Shares</para>
-                  </entry>
-                  <entry>
-                    <para>greater than or equal to</para>
-                  </entry>
-                  <entry>
-                    <para>Amount entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Share Price</para>
-                  </entry>
-                  <entry>
-                    <para>less than</para>
-                  </entry>
-                  <entry>
-                    <para>Amount entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Share Price</para>
-                  </entry>
-                  <entry>
-                    <para>less than or equal to</para>
-                  </entry>
-                  <entry>
-                    <para>Amount entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Share Price</para>
-                  </entry>
-                  <entry>
-                    <para>equal to</para>
-                  </entry>
-                  <entry>
-                    <para>Amount entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Share Price</para>
-                  </entry>
-                  <entry>
-                    <para>not equal to</para>
-                  </entry>
-                  <entry>
-                    <para>Amount entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Share Price</para>
-                  </entry>
-                  <entry>
-                    <para>greater than</para>
-                  </entry>
-                  <entry>
-                    <para>Amount entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Share Price</para>
-                  </entry>
-                  <entry>
-                    <para>greater than or equal to</para>
-                  </entry>
-                  <entry>
-                    <para>Amount entry field</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Reconcile</para>
-                  </entry>
-                  <entry>
-                    <para>is</para>
-                  </entry>
-                  <entry>
-                    <para>Not Cleared</para>
-                  </entry>
-                  <entry>
-                    <para>Cleared</para>
-                  </entry>
-                  <entry>
-                    <para>Reconciled</para>
-                  </entry>
-                  <entry>
-                    <para>Frozen</para>
-                  </entry>
-                  <entry>
-                    <para>Voided</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Reconcile</para>
-                  </entry>
-                  <entry>
-                    <para>is not</para>
-                  </entry>
-                  <entry>
-                    <para>Not Cleared</para>
-                  </entry>
-                  <entry>
-                    <para>Cleared</para>
-                  </entry>
-                  <entry>
-                    <para>Reconciled</para>
-                  </entry>
-                  <entry>
-                    <para>Frozen</para>
-                  </entry>
-                  <entry>
-                    <para>Voided</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Balanced</para>
-                  </entry>
-                  <entry>
-                    <para>is</para>
-                  </entry>
-                  <entry>
-                    <para>set true</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Balanced</para>
-                  </entry>
-                  <entry>
-                    <para>is not</para>
-                  </entry>
-                  <entry>
-                    <para>set true</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Account</para>
-                  </entry>
-                  <entry>
-                    <para>matches any account</para>
-                  </entry>
-                  <entry>
-                    <para>Choose Accounts</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Account</para>
-                  </entry>
-                  <entry>
-                    <para>matches no account</para>
-                  </entry>
-                  <entry>
-                    <para>Choose Accounts</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>All Accounts</para>
-                  </entry>
-                  <entry>
-                    <para>matches all account</para>
-                  </entry>
-                  <entry>
-                    <para>Choose Accounts</para>
-                  </entry>
-                  <entry>
-                    <para>Remove row</para>
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                  <entry>
-                    <para />
-                  </entry>
-                </row>
-              </tbody>
-            </tgroup>
-          </table>
-          <para />
-          <para>The Account button performs a search where the accounts selected in the Choose Accounts dialog will both be searched individually for results. This means that a match in any of the selected accounts will either be displayed (matches any account) or discarded (matches no account).</para>
-          <para />
-          <para>The All Accounts button performs a search where accounts selected in the Choose Accounts dialog will only return results that match in both accounts.</para>
-          <para />
-          <para>There are four selections in the Type of Search pane. When a new search is started only the New Search button is selectable. The other buttons become selectable only when the Search Results register window is visible.</para>
-          <para />
-          <itemizedlist>
-            <listitem>
-              <para>New Search: Perform a new transaction search</para>
-            </listitem>
-            <listitem>
-              <para>Refine current search: Search within the results of the previous search.</para>
-            </listitem>
-            <listitem>
-              <para>Add results to current search: Search based on the first set of criteria or the new criteria.</para>
-            </listitem>
-            <listitem>
-              <para>Delete results from current search: Discard any results that match the previous search results.</para>
-            </listitem>
-          </itemizedlist>
-        </sect4>
-      </sect3>
-      <sect3 id="help-win">
-        <title>Help Window</title>
-        <para />
-        <para>The GnuCash Help Window is used to display web page versions of these help documents that are installed with GnuCash. It also has a searchable database of help terms and the ability to load web pages directly from the Internet.</para>
-        <para />
-        <para>This window is accessed by going to the Help menu and selecting either the Tutorial and Concepts Guide or the Help.</para>
-        <para />
-        <para>The Help Window has a toolbar for navigation. The toolbar is described below;</para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>Back: Used to navigate to pages previously viewed.</para>
-          </listitem>
-          <listitem>
-            <para>Forward: Used to navigate to pages previously viewed.</para>
-          </listitem>
-          <listitem>
-            <para>Reload: Used to refresh the current page.</para>
-          </listitem>
-          <listitem>
-            <para>Open: Used to open a web page from a different location to the standard help.</para>
-          </listitem>
-          <listitem>
-            <para>Stop: Used to halt loading a web page.</para>
-          </listitem>
-          <listitem>
-            <para>Print: Used to print the currently viewed page.</para>
-          </listitem>
-          <listitem>
-            <para>Close: Used to close the help window.</para>
-          </listitem>
-        </itemizedlist>
-        <para />
-        <para>The right side of the Help Window displays the currently opened web page. The left side of the Help Window contains the help Topics list tab and the Search tab. Selecting one of the help topics will load that page on the right side. The topics list also contains a link to the GnuCash bug reporting webpage at http://bugzilla.gnome.org.</para>
-        <para />
-        <para>The Search tab is used to search the help for documents containing terms you specify. Enter the term to search for in the Search Term field then click the Search button to get a list of pages containing that term. Selecting a link in the Search Results pane will load the web page.</para>
-      </sect3>
-    </sect2>
-    <sect2 id="setup-accounts">
-      <title>Setting Up And Editing Accounts</title>
-      <para />
-      <para>This section describes the process of setting up GnuCash Accounts. In GnuCash an Account is used as the basic tool to organize the recording of where money comes from and goes to. GnuCash also extends the concept of real world accounts such as a bank account or loan account to grouping income and expense accounts. This allows to to quickly see where you spent your money and what your major income and expenses are. GnuCash sets Account Types (as described in the next section) to help in organizing and grouping accounts. Account Types can be used to create a Chart of Accounts.</para>
-      <sect3 id="acct-types">
-        <title>Types of GnuCash Accounts</title>
-        <para />
-        <para>GnuCash supports a number of different account types. It is recommended to choose an appropriate account type based on the list of account types described below.</para>
-        <para />
-        <para>Table 29: Types of GnuCash Accounts.</para>
-        <para />
-        <table frame="topbot" id="Table23">
-    <title />
-          <tgroup cols="2">
-            <thead>
-              <row>
-                <entry>
-                  <para>Account Type</para>
-                </entry>
-                <entry>
-                  <para>Description</para>
-                </entry>
-              </row>
-            </thead>
-            <tbody>
-              <row>
-                <entry>
-                  <para>Accounts Payable</para>
-                </entry>
-                <entry>
-                  <para>Accounts Payable are used by businesses to record
-		    amounts that must be paid. Example: The business has bought
-		    something, but the business has not paid the bill 
-		    until later. [Note: Previous versions of this help defined
-		    A/P and A/R the other way round.]</para>
-                </entry>
-              </row>
-              <row>
-                <entry>
-                  <para>Accounts Receivable</para>
-                </entry>
-                <entry>
-                  <para>Accounts Receivable records amounts for which money has
-		    not yet been received. Example: A business has sold
-		    something and issued a bill, but the client has not payed
-		    until later. [Note: Previous versions of this help defined
-		    A/P and A/R the other way round.]</para>
-                </entry>
-              </row>
-              <row>
-                <entry>
-                  <para>Asset</para>
-                </entry>
-                <entry>
-                  <para>Asset accounts are used for tracking things that are of
-		    value and can be used or sold to pay debts. (Normally a
-		    placeholder account)</para>
-                </entry>
-              </row>
-              <row>
-                <entry>
-                  <para>Bank</para>
-                </entry>
-                <entry>
-                  <para>The Bank account type denotes savings or checking accounts held at a bank or other financial institution. Some of these accounts may bear interest. This is also the appropriate account type for check (debit) cards, which directly withdraw payments from a checking account. </para>
-                </entry>
-              </row>
-              <row>
-                <entry>
-                  <para>Cash</para>
-                </entry>
-                <entry>
-                  <para>The Cash account type is used to denote the cash that you store in your wallet, shoe box, piggyback, or mattress.</para>
-                </entry>
-              </row>
-              <row>
-                <entry>
-                  <para>Credit Card</para>
-                </entry>
-                <entry>
-                  <para>The Credit Card account type is used to denote credit card accounts, both for cards that allow floating lines of credit (e.g. VISA, MasterCard, or Discover) and with cards that do not permit continuing balances (e.g. American Express) </para>
-                </entry>
-              </row>
-              <row>
-                <entry>
-                  <para>Currency</para>
-                </entry>
-                <entry>
-                  <para>Currency Accounts are used for trading currencies.</para>
-                </entry>
-              </row>
-              <row>
-                <entry>
-                  <para>Equity</para>
-                </entry>
-                <entry>
-                  <para>Equity accounts are used to store the opening balances when you first start using GnuCash or start a new accounting period.</para>
-                </entry>
-              </row>
-              <row>
-                <entry>
-                  <para>Expense</para>
-                </entry>
-                <entry>
-                  <para>Any expense such as food, clothing, taxes, etc. This type is called a category in Quicken.</para>
-                </entry>
-              </row>
-              <row>
-                <entry>
-                  <para>Income</para>
-                </entry>
-                <entry>
-                  <para>Any income received from sources such as salary, interest, dividends, etc. This type is called a category in Quicken.</para>
-                </entry>
-              </row>
-              <row>
-                <entry>
-                  <para>Liability</para>
-                </entry>
-                <entry>
-                  <para>Liability accounts are used for tracking debts or
-		    financial obligations. (Normally a placeholder
-		    account)</para>
-                </entry>
-              </row>
-              <row>
-                <entry>
-                  <para>Mutual Fund</para>
-                </entry>
-                <entry>
-                  <para>A professionally managed portfolio of stocks and bonds or other investments divided up into shares.</para>
-                </entry>
-              </row>
-              <row>
-                <entry>
-                  <para>Stock</para>
-                </entry>
-                <entry>
-                  <para>A share of ownership in a corporation, which entitles its owner to all the risks and rewards that go with it.</para>
-                </entry>
-              </row>
-            </tbody>
-          </tgroup>
-        </table>
-        <para />
-        <para>The New Account Hierarchy Setup druid described in the first section of this help is a convenient way of setting up a set of accounts to use as a framework of account types.</para>
-        <para />
-        <para>When new accounts are created the available choices of account types are grayed out according to what type the parent account is. The following list contains the possible choices.</para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>Accounts Payable: All accounts except Equity, Expense and Income can be child accounts.</para>
-          </listitem>
-          <listitem>
-            <para>Accounts Receivable: All accounts except Equity, Expense and Income can be child accounts.</para>
-          </listitem>
-          <listitem>
-            <para>Asset: All accounts except Equity, Expense and Income can be child accounts.</para>
-          </listitem>
-          <listitem>
-            <para>Bank: All accounts except Equity, Expense and Income can be child accounts.</para>
-          </listitem>
-          <listitem>
-            <para>Cash: All accounts except Equity, Expense and Income can be child accounts.</para>
-          </listitem>
-          <listitem>
-            <para>Credit Card: All accounts except Equity, Expense and Income can be child accounts.</para>
-          </listitem>
-          <listitem>
-            <para>Currency: All accounts except Equity, Expense and Income can be child accounts.</para>
-          </listitem>
-          <listitem>
-            <para>Equity: Only Equity accounts can be child accounts.</para>
-          </listitem>
-          <listitem>
-            <para>Expense: Only Expense or Income accounts can be child accounts.</para>
-          </listitem>
-          <listitem>
-            <para>Income: Only Expense or Income accounts can be child accounts.</para>
-          </listitem>
-          <listitem>
-            <para>Liability: All accounts except Equity, Expense and Income can be child accounts.</para>
-          </listitem>
-          <listitem>
-            <para>Mutual Fund: All accounts except Equity, Expense and Income can be child accounts.</para>
-          </listitem>
-          <listitem>
-            <para>Stock: All accounts except Equity, Expense and Income can be child accounts.</para>
-          </listitem>
-        </itemizedlist>
-        <para />
-      </sect3>
-      <sect3 id="chart-create">
-        <title>To Create a Chart of Accounts</title>
-        <para />
-        <para>The Chart of Accounts is like a table of contents for your finances. The best way to conceptualize a chart of accounts is as a tree. The main branches represent entire categories or groups, while the leaves of the tree denote individual bank accounts or expense categories. When a summary report is requested, typically only the main branches are shown in the report, rather than the individual accounts. For example, a chart of accounts might look like the following: 
-	&chartacctseg;
-	</para>
-        <para />
-        <para>Note that accounts not only have names; they have codes, to order the accounts. When a report is generated, the sort order is determined by the numbering. It's customary to have the leaf accounts end in non-zero digits, while parent nodes have increasing numbers of zeros. </para>
-        <para />
-        <para>GnuCash does not prevent duplicate numbering, although we would encourage you to avoid this. Account codes are treated as numbers in base-36, thus, if you run out of numbers, you can use the letters, a through z.</para>
-        <para />
-        <para>A sample chart of accounts is shown below. Each account is of a given account type. This example is a combination of some typical business and personal accounts. 
-	&chartofaccts;
-	</para>
-        <para />
-      </sect3>
-      <sect3 id="acct-create">
-        <title>To Create a New Account</title>
-        <para />
-        <para>The New Account properties dialog consists of two tabs, the General Information tab and the Opening Balance tab. This dialog can be accessed by going to File -&gt; New Account... or by clicking the New toolbar icon in the Account Tree Window.</para>
-        <para />
-        <para>Creating a New Account involves planning in advance several details that are used in the New Account dialog. </para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>What type of account is needed .</para>
-          </listitem>
-          <listitem>
-            <para>Where it fits in the structure of the Chart of Accounts.</para>
-          </listitem>
-          <listitem>
-            <para>If there is an Opening Balance.</para>
-          </listitem>
-          <listitem>
-            <para>If there is a Commodity needed for the account.</para>
-          </listitem>
-          <listitem>
-            <para>If online updating of the commodity price is needed.</para>
-          </listitem>
-        </itemizedlist>
-        <para />
-        <para>These details are described below.</para>
-        <sect4 id="gen-info">
-          <title>General Information</title>
-          <para />
-          <para>The General Information tab is used to access the basic information about the account. It provides a way of connecting the account to stock information if it is one of the currency, mutual fund or stock account types. It can also be flagged as a Tax Related or Placeholder account.</para>
-          <para />
-          <para>There are five panes in this tab. Below the panes are checkboxes to mark the account as Tax Related and a Placeholder account. The Tax Related checkbox means that this account has been flagged to be included in Tax Exports. This flag should only be set for Income and Expense type accounts. The Placeholder checkbox means this account is not used for transaction data. This checkbox is used to enable a hierarchy or chart of accounts to be setup.</para>
-          <para />
-          <para>The top pane contains the Account Information.</para>
-          <para />
-          <itemizedlist>
-            <listitem>
-              <para>Account Information: Enter a name for the account such as First Bank Checking.</para>
-            </listitem>
-            <listitem>
-              <para>Description: This is an optional description for the account.</para>
-            </listitem>
-            <listitem>
-              <para>Commodity: For most accounts this should be the default, USD (US Dollar) or your local currency symbol. If this account is for a foreign currency then use the Select... button to choose a different currency in the Select currency/security dialog. Use the Select... button to choose a security if this is a mutual fund or stock account.</para>
-            </listitem>
-            <listitem>
-              <para>Select currency/security: To select a different currency click the Currency/security: drop down list and choose the currency symbol you need. To create a security for mutual fund and stock accounts select the New... button to bring up the New Currency/Security dialog. After the security is created select the Type:(usually the exchange the security is traded on) and the name in the Currency/security: drop down list.</para>
-            </listitem>
-            <listitem>
-              <para>New Currency/Security: The options here are described in detail in the Commodity Editor section. Fill in a name, symbol and type.</para>
-            </listitem>
-            <listitem>
-              <para>Account Code: Enter an optional number code as described in the To Create a Chart of Accounts section.</para>
-            </listitem>
-          </itemizedlist>
-          <para />
-          <para>The next pane contains a list of Account Types. Select a type from the descriptions in the Types of GnuCash Accounts section.</para>
-          <para />
-          <para>The next pane contains an account tree to choose a Parent Account. To create a new account tree select New top level account. If the parent account is a certain type, then several of the choices in Account Type become  out. For example if the Parent Account is Assets then Equity, Expense and Income become  This is to help maintain a proper account structure for the Chart of Accounts.</para>
-          <para />
-          <para>The next pane is the Price Quote Source pane. </para>
-          <para />
-          <itemizedlist>
-            <listitem>
-              <para>Get Online Quotes: This checkbox is only enabled when currency, mutual fund or stock account types are selected. It is used to enable this account to have quotes downloaded from an online source.</para>
-            </listitem>
-            <listitem>
-              <para>The source for price quotes: Select a quote source from the pull-down menu. Currently supported quote sources include Yahoo, Yahoo Europe, Fidelity Investments, T. Rowe Price, the Vanguard Group, the Australian Stock Exchange (ASX) and TIAA-CREF. Note that Yahoo will provide price quotes for many mutual funds including Fidelity, T.Rowe Price and Vanguard, and that the quoted prices at Yahoo should be identical to those that may be found at the source sites. If you choose Yahoo Europe, you should append the market code for the security, such as PA for Paris, BE for Berlin, etc. Example: 12150.PA (a Peugeot security in the Paris market). Tables 30 and 31 below lists codes for various markets.</para>
-            </listitem>
-            <listitem>
-              <para>Timezone for these quotes: Select the timezone for the source of the online quotes you are receiving. For example, Yahoo normally quotes Eastern timezone, so choose America/New York if you use that quote source.</para>
-            </listitem>
-          </itemizedlist>
-          <para />
-          <para>Note: The set of steps needed to properly enable online quote updating with the Price Editor are;</para>
-          <para />
-          <orderedlist>
-            <listitem>
-              <para>Create the mutual fund or stock with either the Commodity Editor or the New Currency/Security dialog described above.</para>
-            </listitem>
-            <listitem>
-              <para>Create the Account for the mutual fund or stock with it listed in the Commodity field.</para>
-            </listitem>
-            <listitem>
-              <para>Select Online Quotes, the source for price quotes and Timezone.</para>
-            </listitem>
-            <listitem>
-              <para>Run the perl script 'update-finance-quote' as the root user to install the Finance::Quote package.</para>
-            </listitem>
-            <listitem>
-              <para>Add a commodity to the Price Editor as described in the Price Editor section of Tool Windows.</para>
-            </listitem>
-            <listitem>
-              <para>Select Get Quotes in the Price Editor.</para>
-            </listitem>
-          </orderedlist>
-          <para />
-          <para>If you wish to update price quotes from the command line, you can do so by the following command;</para>
-          <para />
-          <para>gnucash --add-price-quotes &lt;gnucash-file-name&gt;</para>
-          <para />
-          <para>Table 30 Code List for European Markets</para>
-          <para />
-          <table frame="topbot" id="Table24">
-    <title />
-            <tgroup cols="2">
-              <thead>
-                <row>
-                  <entry>
-                    <para>Code</para>
-                  </entry>
-                  <entry>
-                    <para>Market</para>
-                  </entry>
-                </row>
-              </thead>
-              <tbody>
-                <row>
-                  <entry>
-                    <para>BC</para>
-                  </entry>
-                  <entry>
-                    <para>Barcelona</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>BE</para>
-                  </entry>
-                  <entry>
-                    <para>Berlin</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>BI</para>
-                  </entry>
-                  <entry>
-                    <para>Bilbao</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>BR</para>
-                  </entry>
-                  <entry>
-                    <para>Brême</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>CO</para>
-                  </entry>
-                  <entry>
-                    <para>Copenhagen</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>D</para>
-                  </entry>
-                  <entry>
-                    <para>Dusseldorf</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>F</para>
-                  </entry>
-                  <entry>
-                    <para>Frankfurt</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>FX</para>
-                  </entry>
-                  <entry>
-                    <para>Xetra</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>H</para>
-                  </entry>
-                  <entry>
-                    <para>Hamburg</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>HA</para>
-                  </entry>
-                  <entry>
-                    <para>Hanover</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>L</para>
-                  </entry>
-                  <entry>
-                    <para>London</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>MA</para>
-                  </entry>
-                  <entry>
-                    <para>Madrid</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>MC</para>
-                  </entry>
-                  <entry>
-                    <para>Madrid (M.C.)</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>MI</para>
-                  </entry>
-                  <entry>
-                    <para>Milan</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>MU</para>
-                  </entry>
-                  <entry>
-                    <para>Munich</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>O</para>
-                  </entry>
-                  <entry>
-                    <para>Oslo</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>PA</para>
-                  </entry>
-                  <entry>
-                    <para>Paris</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>ST</para>
-                  </entry>
-                  <entry>
-                    <para>Stockholm</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>SG</para>
-                  </entry>
-                  <entry>
-                    <para>Stuttgart</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>VA</para>
-                  </entry>
-                  <entry>
-                    <para>Valence</para>
-                  </entry>
-                </row>
-              </tbody>
-            </tgroup>
-          </table>
-          <para />
-          <para>Table 31: Pseudo-symbols that can be used for TIAA-CREF quotes</para>
-          <para />
-          <table frame="topbot" id="Table25">
-    <title />
-            <tgroup cols="2">
-              <thead>
-                <row>
-                  <entry>
-                    <para>Name</para>
-                  </entry>
-                  <entry>
-                    <para>Pseudo-symbol</para>
-                  </entry>
-                </row>
-              </thead>
-              <tbody>
-                <row>
-                  <entry>
-                    <para>Bond Market</para>
-                  </entry>
-                  <entry>
-                    <para>CREFbond</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Equity Index</para>
-                  </entry>
-                  <entry>
-                    <para>CREFequi</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Global Equities</para>
-                  </entry>
-                  <entry>
-                    <para>CREFglob</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Growth</para>
-                  </entry>
-                  <entry>
-                    <para>CREFgrow</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Inflation-Linked Bond</para>
-                  </entry>
-                  <entry>
-                    <para>CREFinfb</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Money Market</para>
-                  </entry>
-                  <entry>
-                    <para>CREFmony</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Social Choice</para>
-                  </entry>
-                  <entry>
-                    <para>CREFsoci</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Stock</para>
-                  </entry>
-                  <entry>
-                    <para>CREFstok</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Teachers PA Select Stock</para>
-                  </entry>
-                  <entry>
-                    <para>TIAAsele</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>Teachers PA Stock Index</para>
-                  </entry>
-                  <entry>
-                    <para>TIAAsndx</para>
-                  </entry>
-                </row>
-                <row>
-                  <entry>
-                    <para>TIAA Real Estate</para>
-                  </entry>
-                  <entry>
-                    <para>TIAAreal</para>
-                  </entry>
-                </row>
-              </tbody>
-            </tgroup>
-          </table>
-          <para />
-          <para>The last pane is the Notes pane. This is used for any additional notes about the account.</para>
-          <para />
-        </sect4>
-        <sect4 id="open-balance">
-          <title>Opening Balance</title>
-          <para />
-          <para>The Opening Balance tab is visible only when creating a new account. It is used to record the beginning balance for an account. This allows it to be used for two different scenarios. If using GnuCash for the first time to record transactions, it can be used as a beginning balance. If the accounts in use are closed at the end of a period and new accounts are created, it is used to close and carry balances forward.</para>
-          <para />
-          <para>There are three panes in this tab. The top pane contains the Balance Information.</para>
-          <para />
-          <itemizedlist>
-            <listitem>
-              <para>Balance: Enter here the balance to start the account with.</para>
-            </listitem>
-            <listitem>
-              <para>Date: Choose here the date the opening balance should be recorded.</para>
-            </listitem>
-          </itemizedlist>
-          <para />
-          <para>The next pane is the Transfer Type pane.</para>
-          <para />
-          <itemizedlist>
-            <listitem>
-              <para>Use Opening Balances Equity account: This transfers the opening balance for the account from a standard Equity account called Opening Balances.</para>
-            </listitem>
-            <listitem>
-              <para>Select Transfer Account: This enables the pane below so a different account can be used to transfer the opening balance.</para>
-            </listitem>
-          </itemizedlist>
-          <para />
-          <para>The last pane is the Transfer Account pane. Select the account to use for opening balances from the list of accounts in this pane.</para>
-        </sect4>
-      </sect3>
-      <sect3 id="acct-edit">
-        <title>To Edit an Account</title>
-        <para />
-        <para>The Edit Account dialog consists of just the General Information tab. This tab has the same information that was described in To Create a New Account. To access the Edit Account dialog go to Edit -&gt; Edit Account (menu shortcut Ctrl-E) or click the Edit toolbar icon in the Account Tree Window.</para>
-      </sect3>
-      <sect3 id="chart-edit">
-        <title>To Edit a Chart of Accounts</title>
-        <para />
-        <para>Editing the Chart of Accounts is done within the Parent Account pane of the Edit Account dialog. It is possible to move an account to any part of the Chart of Account. It is recommended to keep accounts generally under the related types of accounts as described in the Types of GnuCash Accounts section. This helps to preserve the Chart of Accounts structure.</para>
-        <para />
-        <para>To move the selected account to a different parent account just select the account in the Parent Account pane. If New top level account is selected then the account will be move to the top level.</para>
-      </sect3>
-      <sect3 id="acct-delete">
-        <title>To Delete an Account</title>
-        <para />
-        <para>Deleting an Account means removing all transaction information and information about this account from the file. This cannot be undone. You will be prompted to  that you wish to remove the account. If the account still contains transaction information you will be warned that this account contains transactions.</para>
-        <para />
-        <para>A side effect of removing an account that contains transactions is that you will end up with unbalanced accounts. This will be indicated in the account by a grey checkbox next to the debit and credit amounts. You can repair automatically these unbalanced accounts by using the Actions -&gt; Check &amp; Repair menu. This will automatically assign the unbalanced amounts to a new account named Imbalance.</para>
-      </sect3>
-      <sect3 id="acct-jump">
-        <title>To Jump to another Account</title>
-        <para />
-        <para>When using the Account Register Window it is frequently useful to be able to view an account and also the transfer account at the same time. GnuCash allows you to do this quickly by using 'Jump'. This is available on the toolbar and in the Actions menu in the Account Register Window. </para>
-        <para />
-        <para>Select the transaction in the Account Register Window and click jump to open the transfer Account Register Window. If the transaction is split between more than one transfer account then you will need to show all the split transfer accounts first and select the transfer account to jump to.</para>
-      </sect3>
-      <sect3 id="acct-reconcile">
-        <title>To Reconcile an Account to a Statement</title>
-        <para />
-        <para>Reconciliation of Accounts in GnuCash with statements from a bank or other institution is a way of double checking the balance of your accounts. It also is useful to track uncleared checks and other outstanding transactions. </para>
-        <para />
-        <para>The Summary Bar at the top of the Account Register Window indicates the amounts of Cleared and Reconciled transactions. Online account information can be used to mark which transaction the bank has processed by changing the R (reconciliation) column in the register from n (new) to c (cleared). The bank statement is then used with the Reconcile Window to reconcile the account which changes the R field to y (reconciled).</para>
-        <para />
-        <para>The Reconcile Window is accessed in the Account Tree Window by going to Actions -&gt; Reconcile... (menu shortcut Ctrl-R). In the Account Register Window it is accessed by going to Actions -&gt; Reconcile...</para>
-        <para />
-        <sect4 id="rec-info">
-          <title>Reconcile Information</title>
-          <para />
-          <para>The Reconcile Information dialog is used to indicate the date the statement ends on and what the starting and ending balance of the statement is. The Include Subaccounts checkbox is used if two or more accounts are used to track a single bank account. The Enter Interest Payment button is used to add a transfer to the accounts for an interest payment. If selected a dialog will be displayed to add the payment to the account.</para>
-          <para />
-          <para>There are three panes in the Interest Payment dialog. At the bottom is a button called No Auto Interest Payments for this Account which will cancel the dialog. The top pane contains the Payment Information.</para>
-          <para />
-          <itemizedlist>
-            <listitem>
-              <para>Amount: Enter the amount of the interest payment.</para>
-            </listitem>
-            <listitem>
-              <para>Date: Select the date for the interest payment.</para>
-            </listitem>
-            <listitem>
-              <para>Num: Enter a number for the transaction (optional).</para>
-            </listitem>
-            <listitem>
-              <para>Description: Enter an informational description for the transaction.</para>
-            </listitem>
-            <listitem>
-              <para>Memo: Enter a note about the transaction (optional).</para>
-            </listitem>
-          </itemizedlist>
-          <para />
-          <para>The next pane contains a list of accounts for the Payment From account. If the payment is for a credit or loan account then usually this would be from an Expense account. If the payment is for a checking or savings account then usually this would be from an Income account. The Show Income/Expense checkbox shows or hides the Income and Expense accounts.</para>
-          <para />
-          <para>The next pane contains the Reconcile Account. This shows the account that the interest payment will be transferred to or from.</para>
-        </sect4>
-        <sect4 id="rec-win">
-          <title>Reconcile Window</title>
-          <para />
-          <para>The parts of the Reconcile Window are described in the Tool Windows section of GnuCash Windows. This window is used to open the account and to add transaction information to the account in order to reconcile the account to the bank statement.</para>
-          <para />
-          <para>The set of unreconciled transactions in the Funds In and Funds Out panes can be changed by using the menus and toolbar to access the account and transaction information. If you wish to postpone the reconciliation until later use the Reconcile -&gt; Postpone menu item (menu shortcut Ctrl-P).</para>
-          <para />
-          <para>Select each unreconciled transaction matching a statement transaction so a green tick appears in the R column. The Balance pane changes to reflect each selected transaction until the Ending Balance equals the Reconciled Balance and the Difference is zero. Once this is done select the Finish button or Finish on the Reconcile menu (menu shortcut Ctrl-F) to finish the reconcile process.</para>
-        </sect4>
-      </sect3>
-      <sect3 id="stock-split">
-        <title>To Perform a Stock Split</title>
-        <para />
-        <para>Stock splits commonly occur when a company decides its stock price is to expensive for individual investors to buy the stock. Splits have the effect of lowering the price of a single share while keeping the value of shares owned by investors who have already purchased shares.</para>
-        <para />
-        <sect4 id="stock-split-druid">
-          <title>Stock Split Druid</title>
-          <para />
-          <para>GnuCash uses the Stock Split druid to record stock splits. This provides a way of entering the details of the stock split and also any change in stock price or cash disbursement as a result of the stock split.</para>
-          <para />
-          <para>The Stock Split druid is accessed by going to Actions -&gt; Stock Split...</para>
-          <para />
-          <para>The Stock Split druid opens with a screen that briefly describes what this druid does. The three buttons at the very bottom of the screen will not change while using the druid.</para>
-          <para />
-          <itemizedlist>
-            <listitem>
-              <para>The Cancel button is used to exit the druid and cancel entering the stock split information. Any selections you have made in this druid up to this point will be lost.</para>
-            </listitem>
-            <listitem>
-              <para>The Back button will bring up the previous screen so you can change a selection made on that screen.</para>
-            </listitem>
-            <listitem>
-              <para>The Forward button will bring up the next screen so you can continue though the druid.</para>
-            </listitem>
-          </itemizedlist>
-          <para />
-          <para>The next screen allows you to select a Stock Account. Select an account from the list to record a stock split or merger.</para>
-          <para />
-          <itemizedlist>
-            <listitem>
-              <para>Account: Lists the GnuCash account name for the stock.</para>
-            </listitem>
-            <listitem>
-              <para>Symbol: The stock symbol for the stock associated with this account.</para>
-            </listitem>
-            <listitem>
-              <para>Shares: The amount of shares that have been purchased in the account.</para>
-            </listitem>
-          </itemizedlist>
-          <para />
-          <para>The next screen lets you set the Stock Split Details. The top part of the screen contains details used in creating the stock split transaction. </para>
-          <para />
-          <itemizedlist>
-            <listitem>
-              <para>Date: Choose the date of the stock split.</para>
-            </listitem>
-            <listitem>
-              <para>Share Distribution: Enter the amount of shares gained from the stock split. For a stock merger enter a negative number.</para>
-            </listitem>
-            <listitem>
-              <para>Description: Enter a description or leave as the default.</para>
-            </listitem>
-          </itemizedlist>
-          <para />
-          <para>The bottom part of the screen contains details used to record a price for the split (optional).</para>
-          <para />
-          <itemizedlist>
-            <listitem>
-              <para>New Price: Enter the price of the shares on the day of the stock split.</para>
-            </listitem>
-            <listitem>
-              <para>Currency: Choose the currency of the shares.</para>
-            </listitem>
-          </itemizedlist>
-          <para />
-          <para>The next screen lets you enter a transaction for a cash disbursement (Cash In Lieu) as a result of the stock split (optional).</para>
-          <para />
-          <itemizedlist>
-            <listitem>
-              <para>Cash Amount: Enter the amount of the Cash disbursement.</para>
-            </listitem>
-            <listitem>
-              <para>Memo: Enter a memo or leave as the default.</para>
-            </listitem>
-            <listitem>
-              <para>Income Account: Choose an Income Account for the disbursement.</para>
-            </listitem>
-            <listitem>
-              <para>Asset Account: Choose an Asset Account for the disbursement.</para>
-            </listitem>
-          </itemizedlist>
-          <para />
-          <para>The last screen gives you a list of three choices to finish the druid.</para>
-          <para />
-          <itemizedlist>
-            <listitem>
-              <para>The Cancel button is used to exit the druid and cancel creating the Stock Split transactions.. Any selections you have made in this druid up to this point will be lost.</para>
-            </listitem>
-            <listitem>
-              <para>The Back button will bring up the previous screen so you can change a selection made on that screen.</para>
-            </listitem>
-            <listitem>
-              <para>The Finish button creates the transactions for the Stock Split.</para>
-            </listitem>
-          </itemizedlist>
-          <para />
-          <para>You should now have successfully entered the Stock Split or Merger.</para>
-        </sect4>
-      </sect3>
-    </sect2>
-    <sect2 id="transactions">
-      <title>Using The Register To Record Transactions</title>
-      <para />
-      <para>GnuCash uses accounts as a way of grouping or organizing the recording of transactions. Transactions are entered into the Account Register Window. This section describes the tools GnuCash has to help enter transactions quickly into the register. </para>
-      <para />
-      <para>A  represents the movement of money from one account to another account. Whenever you spend or receive money, or transfer money between accounts, that is a transaction. In GnuCash transactions always involve at least two accounts.</para>
-      <para />
-      <sect3 id="reg-views">
-        <title>Changing the Register View</title>
-        <para />
-        <para>GnuCash has several options to change the way the register looks so transactions can be seen more clearly. The default style is the Basic Ledger. This presents a single line view of transactions to allow the most concise view with all the relevant details.</para>
-        <para />
-        <para>The default view or style can be changed by going to View -&gt; Style. When the window closes the style will revert to the Basic Ledger style. To make this change permanent change the style in the Preferences in the Register section.</para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>Basic Ledger: The default one line per transaction style. Splits are shown as a summary.</para>
-          </listitem>
-          <listitem>
-            <para>Auto-Split Ledger: This style will automatically expand the splits in any transaction selected.</para>
-          </listitem>
-          <listitem>
-            <para>Transaction Journal: This style expands all transactions so the complete transaction can be seen.</para>
-          </listitem>
-          <listitem>
-            <para>Double Line: This checkbox changes any of the above styles so that an additional line for notes about the transaction is added.</para>
-          </listitem>
-        </itemizedlist>
-        <para />
-        <para>The two other options to change the view of the register is to restrict the Date Range and change the Sort Order. These are both accessible from the View menu.</para>
-      </sect3>
-      <sect3 id="trans-enter">
-        <title>To Enter a Transaction</title>
-        <para />
-        <para>When the Account Register Window for an account is opened the list of transactions for that account is shown. This window has the name of the account on its title bar. The menus contain several functions that alter the display of transactions. The toolbar also contains several functions that are used often when entering transactions. These are described in the Account Register Window section of this help.</para>
-        <para />
-        <para>GnuCash has two methods available for entering transactions. Entering directly into the register window is the most common way of entering transactions. The Transfer Funds Window is the second method.</para>
-        <para />
-        <sect4 id="trans-reg-enter">
-          <title>Enter Directly in the Register Window</title>
-          <para />
-          <para>The register window will look slightly different depending on the style options you have chosen. The following describes entering transactions in the basic ledger style. The cursor is placed in the date field by default when the register window is opened.</para>
-          <para />
-          <orderedlist>
-            <listitem>
-              <para>Selecting the triangle icon on the right of the date field drops down a date selection dialog. Use the arrows to select the correct month and year for the transaction then select the date. Selecting the triangle icon once more will close the date selection dialog. It is also possible to type in the date or part of the date and let GnuCash fill the rest.</para>
-            </listitem>
-            <listitem>
-              <para>Press tab to move or select the Num field. Here you can enter a check or transaction number. Pressing '+' (plus) will automatically advance the number by one from the last transaction to have a number.</para>
-            </listitem>
-            <listitem>
-              <para>Press tab to move or select the Description field. This field is used to enter either a payee or other description for the transaction. It will automatically attempt to fill the payee name as you type.</para>
-            </listitem>
-            <listitem>
-              <para>At this stage two things will happen if tab is pressed. If GnuCash matches an existing transaction the cursor will jump to one of the amount fields, automatically filling in the transfer account. If there is no existing transaction GnuCash will move the cursor to the Transfer field. Selecting the Transfer field with the mouse instead of tabbing will not automatically fill the Transfer field.</para>
-            </listitem>
-            <listitem>
-              <para>When typing in the Transfer field GnuCash will also attempt to automatically match the account. It does this alphabetically, so typing 'Ex' will match the Expenses section of the account list. When the section is matched, it is possible to move to a child account by pressing ':' (colon). If after typing 'Ex' you press ':' then the cursor will move to the first child account in the list. Typing combinations of letters and ':' will allow movement down the tree of accounts quickly. The triangle icon on the right of the Transfer box can be used as an alternate way of selecting accounts.</para>
-            </listitem>
-            <listitem>
-              <para>The next field is used for reconciliation. This is described in the To Reconcile an Account to a Statement section above.</para>
-            </listitem>
-            <listitem>
-              <para>Press tab to move to the first of the amount fields. The name of the next two columns is different according to what type of account is opened. For example, Bank accounts show Deposit and Withdrawal here, Credit Card accounts show Payment and Charge, and Stock accounts show Shares, Price, Buy and Sell.</para>
-            </listitem>
-            <listitem>
-              <para>Enter an amount for the transaction in the correct field. Pressing the Enter key, selecting the Enter icon or going to Actions -&gt; Enter will finish the transaction. Selecting the Cancel icon or going to Actions -&gt; Cancel will erase the transaction.</para>
-            </listitem>
-            <listitem>
-              <para>Transactions with just one transfer account will show the name of that account in the Transfer field in completed transactions. </para>
-            </listitem>
-            <listitem>
-              <para>To move to the blank transaction at the bottom of the register, press the Blank toolbar icon or go to Actions -&gt; Blank</para>
-            </listitem>
-          </orderedlist>
-          <para />
-        </sect4>
-        <sect4 id="trans-win-enter">
-          <title>Enter in the Transfer Funds Window</title>
-          <para />
-          <para>The method described here uses the Transfer Funds Window to enter a single transaction. This is mainly used as a quick way to enter a single transaction without opening the account registers. To enter multiple transactions it is recommended to use the register directly.</para>
-          <para />
-          <orderedlist>
-            <listitem>
-              <para>Enter in the Transfer Information pane the Amount, Date and Description. The Num and Memo fields are optional.</para>
-            </listitem>
-            <listitem>
-              <para>Choose the Transfer From account. If this account is an income or expense account select the checkbox at the bottom of the Transfer From pane.</para>
-            </listitem>
-            <listitem>
-              <para>Choose the Transfer To account. If this account is an income or expense account select the checkbox at the bottom of the Transfer From pane.</para>
-            </listitem>
-            <listitem>
-              <para>If one of the accounts  above is a different currency from the other account the Currency Transfer pane will be enabled to add either an Exchange Rate or a To Amount.</para>
-            </listitem>
-            <listitem>
-              <para>Select OK to commit the transaction or Cancel to dismiss the dialog without entering the transaction.</para>
-            </listitem>
-          </orderedlist>
-          <para />
-        </sect4>
-      </sect3>
-      <sect3 id="trans-multi-enter">
-        <title>To Enter Multiple Split Transactions</title>
-        <para />
-        <para>The register window will look slightly different depending on the style options you have chosen. The following describes entering transactions with multiple splits in the basic ledger style. GnuCash describes the accounts that money is transferred to or from in the currently opened transaction a Split. The cursor is placed in the date field by default when the register window is opened.</para>
-        <para />
-        <orderedlist>
-          <listitem>
-            <para>Selecting the triangle icon on the right of the date field drops down a date selection dialog. Use the arrows to select the correct month and year for the transaction then select the date. Selecting the triangle icon once more will close the date selection dialog. It is also possible to type in the date or part of the date and let GnuCash fill the rest.</para>
-          </listitem>
-          <listitem>
-            <para>Press tab to move or select the Num field. Here you can enter a check or transaction number. Pressing '+' (plus) will automatically advance the number by one from the last transaction to have a number.</para>
-          </listitem>
-          <listitem>
-            <para>Press tab to move or select the Description field. This field is used to enter either a payee or other description for the transaction. It will automatically attempt to fill the payee name as you type.</para>
-          </listitem>
-          <listitem>
-            <para>At this stage two things will happen if tab is pressed. If GnuCash matches an existing transaction the cursor will jump to one of the amount fields, automatically filling in the transfer account. If there is no existing transaction GnuCash will move the cursor to the Transfer field. Selecting the Transfer field with the mouse instead of tabbing will not automatically fill the Transfer field.</para>
-          </listitem>
-          <listitem>
-            <para>When typing in the Transfer field GnuCash will also attempt to automatically match the account. It does this alphabetically, so typing 'Ex' will match the Expenses section of the account list. When the section is matched, it is possible to move to a child account by pressing ':' (colon). If after typing 'Ex' you press ':' then the cursor will move to the first child account in the list. Typing combinations of letters and ':' will allow movement down the tree of accounts quickly. The triangle icon on the right of the Transfer box can be used as an alternate way of selecting accounts.</para>
-          </listitem>
-          <listitem>
-            <para>The next field is used for reconciliation. This is described in the To Reconcile an Account to a Statement section above.</para>
-          </listitem>
-          <listitem>
-            <para>Press tab to move to the first of the amount fields. The name of the next two columns is different according to what type of account is opened. For example, Bank accounts show Deposit and Withdrawal here, Credit Card accounts show Payment and Charge, and Stock accounts show Shares, Price, Buy and Sell.</para>
-          </listitem>
-          <listitem>
-            <para>Enter the total amount for the transaction in the correct field. </para>
-          </listitem>
-          <listitem>
-            <para>To enter the additional splits, press the Split button on the toolbar or select Actions -&gt; Split Transaction. Transactions with more than one split show '--Split Transaction--' and the Split button will need to be used to show the details.</para>
-          </listitem>
-          <listitem>
-            <para>The display will expand, the titles of the amount columns will be renamed and the Transfer column name will be blank. The first line contains the description and the amount of the transaction. The second line contains the currently opened account name in the Account field and the amount of the transaction. The third line contains the transfer account name in the Account field. If the amount is not balanced GnuCash will indicate this by placing grey checkboxes in the amount columns with the unbalanced amount in a blank fourth row.</para>
-          </listitem>
-          <listitem>
-            <para>When one of the short lines is selected, the column titles will change. The very first and last (Date and Balance) columns will have blank titles. Num will change to Action, Description to Memo, the now blank Transfer column will change to Account. The last two amount columns will show the name described in step seven.</para>
-          </listitem>
-          <listitem>
-            <para>The Action and Memo columns are optional to fill out at this stage. Action is used to describe what kind of account transfer is involved. Memo is an additional description of the transfer.</para>
-          </listitem>
-          <listitem>
-            <para>Move to the missing amount field on the third line and fill in the amount. Pressing the Enter key, selecting the Enter icon or going to Actions -&gt; Enter will now move the cursor to the next line.</para>
-          </listitem>
-          <listitem>
-            <para>The Account column contains the list of transfer accounts. This column is the one that is used to add splits. The method described in step five can be used to select another account on a blank line. Add as many additional splits as needed.</para>
-          </listitem>
-          <listitem>
-            <para>When the transaction is balanced the grey checkboxes will disappear and the last blank line will not have an amount.</para>
-          </listitem>
-          <listitem>
-            <para>Pressing enter as described above past the blank line will jump to the next transaction. Selecting the next transaction will close the split or it can be manually closed by pressing the Split icon or selecting Actions -&gt; Split Transaction.</para>
-          </listitem>
-        </orderedlist>
-      </sect3>
-      <sect3 id="trans-currency-enter">
-        <title>To Enter Multiple Currency Transactions</title>
-        <para />
-        <para>Currently transfers between different currencies are only supported by using the Transfer Funds Window described above. It is necessary to use this dialog to add an exchange rate. </para>
-        <para />
-        <para>To setup an account as a different currency edit the account properties and change the Commodity field to the foreign currency. This account will now enable the Currency Transfer pane in the Transfer Funds Window.</para>
-      </sect3>
-      <sect3 id="trans-edit">
-        <title>To Edit a Transaction</title>
-        <para />
-        <para>Editing a transaction involves just selecting the part of the transaction that needs to be changed. Once the changes are made pressing the Enter key, selecting the Enter icon or going to Actions -&gt; Enter will now move the cursor to the next line or transaction.</para>
-        <para />
-        <para>To see a more detailed view of a transaction for editing, press the Split button on the toolbar or select Actions -&gt; Split Transaction.</para>
-      </sect3>
-      <sect3 id="trans-delete">
-        <title>To Delete a Transaction</title>
-        <para />
-        <para>If a transaction needs to be removed from the register, select the transaction and press either the Delete icon on the toolbar or go to Actions -&gt; Delete. Parts of a transaction can also be removed by pressing the Split button on the toolbar or selecting Actions -&gt; Split Transaction. The part of the transaction that needs to be deleted can be then selected for deletion.</para>
-      </sect3>
-      <sect3 id="trans-split-remove">
-        <title>To Remove Transaction Splits</title>
-        <para />
-        <para>Removing Transaction Splits involves erasing all splits except the one for the account that is opened. This is a useful way of reusing a previous transaction that has multiple splits that need to be changed. (Note this can be done without opening the split, but doing so makes the effect more visible)</para>
-        <para />
-        <orderedlist>
-          <listitem>
-            <para>Press the Split button on the toolbar or select Actions -&gt; Split Transaction to open the transaction.</para>
-          </listitem>
-          <listitem>
-            <para>Select Actions -&gt; Remove Transaction Splits.</para>
-          </listitem>
-          <listitem>
-            <para>All Accounts and their related details will be removed except for the currently opened account. </para>
-          </listitem>
-          <listitem>
-            <para>The amount is not balanced and GnuCash will indicate this by placing grey checkboxes in the amount columns with the unbalanced amount in the blank last row.</para>
-          </listitem>
-          <listitem>
-            <para>Edit the transaction to fill in the new details.</para>
-          </listitem>
-        </orderedlist>
-      </sect3>
-      <sect3 id="trans-copy">
-        <title>To Copy a Transaction</title>
-        <para />
-        <para>Copying Transactions is available from both the Edit menu and the Actions menu. The Edit menu has Cut Transaction, Copy Transaction and Paste Transaction which allows a whole transaction to be cut or copied and pasted to a new transaction line. This way of copying a transaction will use the date showing in the new transaction blank line.</para>
-        <para />
-        <para>The Actions menu also contains Duplicate Transaction... which unlike the previous method allows for choosing a different date.</para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>Select the transaction to duplicate.</para>
-          </listitem>
-          <listitem>
-            <para>Go to Actions -&gt; Duplicate Transaction...</para>
-          </listitem>
-          <listitem>
-            <para>A dialog called Duplicate Transaction will prompt for a new Date and Num for the transaction.</para>
-          </listitem>
-          <listitem>
-            <para>Press OK to add the transaction to the register.</para>
-          </listitem>
-        </itemizedlist>
-      </sect3>
-      <sect3 id="trans-sched">
-        <title>To Schedule Transactions</title>
-        <para />
-        <para>Scheduled Transactions provide the ability to have transactions automatically entered into the register at a specified time. The Scheduled Transaction Editor is used to create and edit transactions that are to be added to the register in an automated way. This is combined with the Since Last Run druid to review and enter the transactions. The Mortgage &amp; Loan Repayment druid is used to setup a scheduled transaction to repay a compounding interest loan.</para>
-        <para />
-        <para>The easiest way to setup a scheduled transaction is to use an existing transaction in an account register as a template. Select the account you wish to use as a template and then either select the Schedule icon on the toolbar of go to Actions -&gt; Schedule... This will bring up the Make Scheduled Transaction dialog.</para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>Name: Enter here a name to use for the scheduled transaction. This will be used in the Description file of the transaction.</para>
-          </listitem>
-          <listitem>
-            <para>Frequency: Choose the time period you want between scheduled entries. The dates that the transactions will be entered will show in the mini calendar pane to the right.</para>
-          </listitem>
-          <listitem>
-            <para>Start Date: Choose a date for the scheduled transaction to start.</para>
-          </listitem>
-          <listitem>
-            <para>Never End: This scheduled transaction has no finish date.</para>
-          </listitem>
-          <listitem>
-            <para>End Date: Choose a date for the scheduled transaction to end.</para>
-          </listitem>
-          <listitem>
-            <para>Number of Occurrences: Enter the number of times you wish the scheduled transaction to be added to the register.</para>
-          </listitem>
-        </itemizedlist>
-        <para />
-        <para>The Advanced... button brings up the Scheduled Transaction Editor's dialog to Edit the Scheduled Transaction. This is described in the next section.</para>
-        <para />
-        <sect4 id="trans-sched-editor">
-          <title>Scheduled Transaction Editor</title>
-          <para />
-          <para>The Scheduled Transaction Editor is used to access the list of scheduled transactions and edit or remove them. It also provides a calendar which lists upcoming scheduled transactions. Clicking on the calendar view and hovering over any date will pop up a small dialog that shows the transactions scheduled for that day. The yellow highlight in the calendar indicates which days have scheduled transactions. To dismiss the hover dialog click once more.</para>
-          <para />
-          <para>The Scheduled Transaction Editor is accessed by going to Actions -&gt; Scheduled Transactions -&gt; Scheduled Transaction Editor. Selecting a transaction from the list and pressing Edit or pressing New will bring up the Edit Scheduled Transaction dialog.</para>
-          <para />
-          <para>The Edit Scheduled Transaction dialog is described in the Tool Windows section of this help. This section will describe how to add a new transaction manually.</para>
-          <para />
-          <orderedlist>
-            <listitem>
-              <para>Enter a name for the scheduled transaction.</para>
-            </listitem>
-            <listitem>
-              <para>Choose a Frequency in the Recurrence Frequency pane.</para>
-            </listitem>
-            <listitem>
-              <para>Select the details in the bottom part of the Recurrence Frequency pane. The changes are highlighted in the calendar view below.</para>
-            </listitem>
-            <listitem>
-              <para>Select from the Options pane if the transaction is to be created automatically and/or the number of days in advance. Options for reminding in advance and when automatically created can also be selected. Creating automatically cannot use variables in splits.</para>
-            </listitem>
-            <listitem>
-              <para>Select the End options. This can either be No End, a specific End Date or a certain Number of </para>
-            </listitem>
-            <listitem>
-              <para>Enter the transaction in the Template Transaction. This should be similar to entering a transaction in the register.</para>
-            </listitem>
-          </orderedlist>
-        </sect4>
-        <sect4 id="trans-sched-slr">
-          <title>Since Last Run Druid</title>
-          <para />
-          <para>The Since Last Run druid is run automatically when GnuCash is started. It is used to enter into the register any transactions that are due to be automatically entered. The run on GnuCash start can be altered in the preferences. To run the Since Last Run druid manually go to Actions -&gt; Scheduled Transactions -&gt; Since Last Run...</para>
-          <para />
-          <para>The Since Last Run druid will automatically skip any screens that have no transactions. The following describes every possible screen the druid will show. The three buttons at the very bottom of the screen will not change while using the druid.</para>
-          <para />
-          <itemizedlist>
-            <listitem>
-              <para>The Cancel button is used to exit the druid and cancel entering the transactions. Any selections you have made in this druid up to this point will be lost.</para>
-            </listitem>
-            <listitem>
-              <para>The Back button will bring up the previous screen so you can change a selection made on that screen.</para>
-            </listitem>
-            <listitem>
-              <para>The Forward button will bring up the next screen so you can continue though the druid.</para>
-            </listitem>
-          </itemizedlist>
-          <para />
-          <para>The first screen shows Transaction Reminders page. This lists scheduled transactions that have been set to give a reminder a number of days in advance. The screen contains three columns. The first column contains the name of the scheduled transaction and the date it is due. The second column contains the Frequency of the scheduled transaction. The third column has the number of Days Away the transaction is due to be entered. To create any transactions in the list instead of just being reminded, select the date line. This will add it to the list of transactions on the To-Create Transaction Preparation page.</para>
-          <para />
-          <para>The next screen shows the Auto-Created Transactions Notification page. This lists scheduled transactions that have been set to be automatically created and notify when they are created. Each transaction is presented in a register view that shows the details of the splits in the transaction.</para>
-          <para />
-          <para>The next screen shows the To-Create Transaction Preparation page. This lists scheduled transactions that are due to be entered in the register. This screen is divided into three panes. The top left pane contains the list of transactions due to be automatically entered. The top right pane allows you to change the Disposition and has a read only view of the Variables used to create the transaction. The bottom pane contains a read only view of the transactions due to be entered.</para>
-          <para />
-          <para>The next screen shows the Created Transaction Review page. This screen displays the list of transactions about to be created and allows for final changes to be made. The list is presented in a register view that shows the details of the splits in the transaction. This is editable in the same way transactions are able to be edited in the register.</para>
-          <para />
-          <para>The last screen shows the Obsolete Scheduled Transactions page. This screen displays a list of scheduled transactions that are able to be deleted as the schedule is completed. Select the ones to be removed.</para>
-          <para />
-          <itemizedlist>
-            <listitem>
-              <para>The Cancel button is used to exit the druid and cancel creating the scheduled transactions. Any selections you have made in this druid up to this point will be lost.</para>
-            </listitem>
-            <listitem>
-              <para>The Back button will bring up the previous screen so you can change a selection made on that screen.</para>
-            </listitem>
-            <listitem>
-              <para>The Finish button creates the accounts you have selected.</para>
-            </listitem>
-          </itemizedlist>
-          <para />
-          <para>The Since Last Run druid has now added the scheduled transactions to the register.</para>
-        </sect4>
-        <sect4 id="trans-sched-loans">
-          <title>Mortgage &amp; Loan Repayment Druid</title>
-          <para />
-          <para>This druid creates a loan repayment scheduled transaction. When used to setup a scheduled transaction, the druid creates a variable formula so that the compounding interest is correctly calculated. To start this druid manually go to Actions -&gt; Scheduled Transactions -&gt; Mortgage and Loan Repayment... </para>
-          <para />
-          <para>The Mortgage and Loan Repayment druid opens with a screen that briefly describes what this druid does. The three buttons at the very bottom of the screen will not change while using the druid.</para>
-          <para />
-          <itemizedlist>
-            <listitem>
-              <para>The Cancel button is used to exit the druid and cancel creating the scheduled transaction. Any selections you have made in this druid up to this point will be lost.</para>
-            </listitem>
-            <listitem>
-              <para>The Back button will bring up the previous screen so you can change a selection made on that screen.</para>
-            </listitem>
-            <listitem>
-              <para>The Forward button will bring up the next screen so you can continue though the druid.</para>
-            </listitem>
-          </itemizedlist>
-          <para />
-          <para>The next screen allows you to enter the basic loan information. This is usually the information provided by the bank when loan and disclosure documents are given to the borrower. Here you can also setup an account that the scheduled transaction will use to enter the payment transaction.</para>
-          <para />
-          <itemizedlist>
-            <listitem>
-              <para>Loan Account: Choose an account for the loan payment transactions or use New... to setup a new account for the transactions.</para>
-            </listitem>
-            <listitem>
-              <para>Loan Amount: Enter the amount of the loan.</para>
-            </listitem>
-            <listitem>
-              <para>Interest Rate: Enter the loan interest rate.</para>
-            </listitem>
-            <listitem>
-              <para>Type: Choose the type of loan. If an adjustable rate is used the frequency screen is enabled.</para>
-            </listitem>
-            <listitem>
-              <para>Interest Rate Change Frequency: Choose the frequency for the rate change and the start date of the rate change.</para>
-            </listitem>
-            <listitem>
-              <para>Start Date: Choose the date the loan is starting on.</para>
-            </listitem>
-            <listitem>
-              <para>Length: Enter the length of the loan.</para>
-            </listitem>
-            <listitem>
-              <para>Months Remaining: This should be automatically calculated. Choose how many months are remaining on the loan.</para>
-            </listitem>
-          </itemizedlist>
-          <para />
-          <para>The next screen is used to set escrow, insurance and tax options for the loan. It is mainly used for mortgage payments. When each of the options here is set, this enables additional pages in the druid to setup those portions of the payments. All of the pages will be described here, even though some may not show if that option is not chosen.</para>
-          <para />
-          <itemizedlist>
-            <listitem>
-              <para>... utilize an escrow account for payments?: This selection enables the use of an account setup for tracking escrow payments. If the mortgage or loan uses an escrow account to pay taxes, insurance, etc then setup an account here.</para>
-            </listitem>
-            <listitem>
-              <para>... pay "Taxes"?: adds an additional page to setup a scheduled transaction to pay taxes.</para>
-            </listitem>
-            <listitem>
-              <para>... pay "Insurance"?: adds an additional page to setup a scheduled transaction to pay insurance payments.</para>
-            </listitem>
-            <listitem>
-              <para>... pay "PMI"?: adds an additional page to setup a scheduled transaction to pay PMI payments.</para>
-            </listitem>
-            <listitem>
-              <para>... pay "Other Expense"?: adds an additional page to setup a scheduled transaction to pay other expenses.</para>
-            </listitem>
-          </itemizedlist>
-          <para />
-          <para>The next screen is used to setup the details of the scheduled transaction for the Loan Repayment.</para>
-          <para />
-          <itemizedlist>
-            <listitem>
-              <para>Transaction Memo: The name entered here will be used as the name for the scheduled transaction, the description of the scheduled transaction and the memo.</para>
-            </listitem>
-            <listitem>
-              <para>Payment Amount: Shows the variable used to calculate the payment amount.</para>
-            </listitem>
-            <listitem>
-              <para>Payment From: Choose an account to pay the loan amount from.</para>
-            </listitem>
-            <listitem>
-              <para>Principal To: Choose an account to transfer the principal part of the loan to.</para>
-            </listitem>
-            <listitem>
-              <para>Interest To: Choose an account to transfer the interest part of the loan to.</para>
-            </listitem>
-            <listitem>
-              <para>Remainder to: Choose an account to transfer the rest of the payment amount to.</para>
-            </listitem>
-            <listitem>
-              <para>Repayment Frequency: Select the Frequency and start date for loan repayments.</para>
-            </listitem>
-          </itemizedlist>
-          <para />
-          <para>The next screen is used to setup the details of the scheduled transaction for the Tax payment.</para>
-          <para />
-          <itemizedlist>
-            <listitem>
-              <para>Transaction Memo: The name entered here will be used as the name for the scheduled transaction, the description of the scheduled transaction and the memo.</para>
-            </listitem>
-            <listitem>
-              <para>Amount: Enter the payment amount.</para>
-            </listitem>
-            <listitem>
-              <para>Payment From: Choose an account to pay the tax amount from.</para>
-            </listitem>
-            <listitem>
-              <para>Payment To: Choose an account to transfer the tax payment to.</para>
-            </listitem>
-            <listitem>
-              <para>Repayment Frequency: Select the Frequency and start date for tax payments.</para>
-            </listitem>
-          </itemizedlist>
-          <para />
-          <para>The next screen is used to setup the details of the scheduled transaction for the Insurance payment.</para>
-          <para />
-          <itemizedlist>
-            <listitem>
-              <para>Transaction Memo: The name entered here will be used as the name for the scheduled transaction, the description of the scheduled transaction and the memo.</para>
-            </listitem>
-            <listitem>
-              <para>Amount: Enter the payment amount.</para>
-            </listitem>
-            <listitem>
-              <para>Payment From: Choose an account to pay the insurance amount from.</para>
-            </listitem>
-            <listitem>
-              <para>Payment To: Choose an account to transfer the insurance payment to.</para>
-            </listitem>
-            <listitem>
-              <para>Repayment Frequency: Select the Frequency and start date for insurance payments.</para>
-            </listitem>
-          </itemizedlist>
-          <para />
-          <para>The next screen is used to setup the details of the scheduled transaction for the PMI payment.</para>
-          <para />
-          <itemizedlist>
-            <listitem>
-              <para>Transaction Memo: The name entered here will be used as the name for the scheduled transaction, the description of the scheduled transaction and the memo.</para>
-            </listitem>
-            <listitem>
-              <para>Amount: Enter the payment amount.</para>
-            </listitem>
-            <listitem>
-              <para>Payment From: Choose an account to pay the PMI amount from.</para>
-            </listitem>
-            <listitem>
-              <para>Payment To: Choose an account to transfer the PMI payment to.</para>
-            </listitem>
-            <listitem>
-              <para>Repayment Frequency: Select the Frequency and start date for PMI payments.</para>
-            </listitem>
-          </itemizedlist>
-          <para />
-          <para>The next screen is used to setup the details of the scheduled transaction for the Other Expense payment.</para>
-          <para />
-          <itemizedlist>
-            <listitem>
-              <para>Transaction Memo: The name entered here will be used as the name for the scheduled transaction, the description of the scheduled transaction and the memo.</para>
-            </listitem>
-            <listitem>
-              <para>Amount: Enter the payment amount.</para>
-            </listitem>
-            <listitem>
-              <para>Payment From: Choose an account to pay the other expense amount from.</para>
-            </listitem>
-            <listitem>
-              <para>Payment To: Choose an account to transfer the other expense payment to.</para>
-            </listitem>
-            <listitem>
-              <para>Repayment Frequency: Select the Frequency and start date for other expense payments.</para>
-            </listitem>
-          </itemizedlist>
-          <para />
-          <para>The last screen gives you a list of three choices to finish the druid.</para>
-          <para />
-          <itemizedlist>
-            <listitem>
-              <para>The Cancel button is used to exit the druid and cancel creating a new loan scheduled transaction. Any selections you have made in this druid up to this point will be lost.</para>
-            </listitem>
-            <listitem>
-              <para>The Back button will bring up the previous screen so you can change a selection made on that screen.</para>
-            </listitem>
-            <listitem>
-              <para>The Finish button creates the scheduled transaction.</para>
-            </listitem>
-          </itemizedlist>
-          <para />
-          <para>You should now have the Mortgage or Loan Repayment scheduled transaction setup.</para>
-          <para />
-        </sect4>
-      </sect3>
-      <sect3 id="print-check">
-        <title>To Print Checks</title>
-        <para />
-        <para>Checks are printed in GnuCash from the account register. GnuCash provides the ability to print to standard Quicken Checks (US Letter) or to make a custom check format. Check position and Date formats are also customizable.</para>
-        <para />
-        <para>To access the check printing feature in GnuCash, select the transaction to print a check for and go to File -&gt; Print Check. This will open the Print Check properties dialog.</para>
-        <para />
-        <para>The Print Check dialog has two tabs. The first tab, Options, is used to setup the most common options to print a check. The second tab, Custom format, is used to setup the position of various fields on the check. It is useful to print a test check to a plain piece of paper first and use that to make any adjustments needed.</para>
-        <para />
-        <para>The default selection in Options is for Quicken/Quickbooks (tm) US-Letter checks.</para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>Check format: Test with Quicken first then use custom if the position is incorrect.</para>
-          </listitem>
-          <listitem>
-            <para>Check position: This sets if the Top, Middle or Bottom check is printed. Custom is used if the position of the checks on the page is incorrect.</para>
-          </listitem>
-          <listitem>
-            <para>Date format: The default here is set in the Preferences International section. Choose a date format. This can also be adjusted by the Use of the Months: and Years: lines. Custom allows the date format to be set in the Format: box (%m means month, %d means day, %Y means year) A Sample of the format chosen is displayed below.</para>
-          </listitem>
-        </itemizedlist>
-        <para />
-        <para>The Custom check format contains two columns to enter in the X and Y co-ordinates of the field position on the check. Positions in the Custom Check Format entry area are specified with x = 0 at the left edge of the check with x increasing to the right, and y = 0 at the bottom edge of the check with y increasing as you travel up.</para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>Payee: </para>
-          </listitem>
-          <listitem>
-            <para>Date: </para>
-          </listitem>
-          <listitem>
-            <para>Amount (words): </para>
-          </listitem>
-          <listitem>
-            <para>Amount (numbers): </para>
-          </listitem>
-          <listitem>
-            <para>Memo: </para>
-          </listitem>
-          <listitem>
-            <para>Check position: </para>
-          </listitem>
-          <listitem>
-            <para>Date format: </para>
-          </listitem>
-          <listitem>
-            <para>Units: Set the unit to use for the above positions.</para>
-          </listitem>
-        </itemizedlist>
-        <para />
-        <para>Once OK is pressed on the Print Check dialog the Print GnuCash Document dialog is presented. Press OK to print the check.</para>
-        <para />
-      </sect3>
-    </sect2>
-    <sect2 id="reports">
-      <title>Using  Reports And Charts</title>
-      <para />
-      <para>Reports and Charts give GnuCash the ability to present an overview of financial data in various ways. This can range from a simple summary of account totals to an advanced portfolio view. This section will present an explanation of the main GnuCash reports and how to adjust them.</para>
-      <para />
-      <sect3 id="report-types">
-        <title>Types of Reports and Graphs</title>
-        <para />
-        <para>GnuCash has classified the main types of reports into four major classes. These are all available under the Reports menu. Note that barcharts can be moved by clicking on them and dragging the mouse, and piecharts can be "exploded" into individual segments.</para>
-        <para />
-        <sect4 id="report-general">
-          <title>General Reports</title>
-          <para />
-          <para>The General Reports includes the Tax Report and TXF Export, the Account Summary and the Transaction Reports and also the reports in the Sample &amp; Custom menu.</para>
-          <para />
-          <itemizedlist>
-            <listitem>
-              <para>Account Summary:</para>
-            </listitem>
-            <listitem>
-              <para>Tax Report and TXF Export: The tax report is used to export all tax related Income and Expenses to a TXF (Tax eXchange Format) file. This is in addition to the html format that all reports allow. The TXF file can be imported into tax filing programs such as TaxCut or TurboTax. (See Note 1)</para>
-            </listitem>
-            <listitem>
-              <para>Transaction Report:</para>
-            </listitem>
-            <listitem>
-              <para>Welcome Sample Report:</para>
-            </listitem>
-            <listitem>
-              <para>Custom Multicolumn Report: This report is used to place multiple reports into a single report window to examine a set of financial information at a glance.</para>
-            </listitem>
-            <listitem>
-              <para>Custom Web Report:</para>
-            </listitem>
-            <listitem>
-              <para>Sample Report with Examples:</para>
-            </listitem>
-          </itemizedlist>
-          <para />
-          <para>Note 1: For this to work, the user has to segregate taxable and non taxable income to different accounts, as well as deductible and non deductible expenses. The Tax Information dialog is used for this. To access the Tax Information dialog go to Edit -&gt; Tax Options. The user also must set the TXF category of each tax related account. The Tax Information dialog is described in the Setting Tax Options section.</para>
-          <para />
-        </sect4>
-        <sect4 id="report-assets">
-          <title>Assets &amp; Liabilities</title>
-          <para />
-          <para>The Assets &amp; Liabilities reports includes the Balance Sheet report, Investment reports and the Net Worth report.</para>
-          <para />
-          <itemizedlist>
-            <listitem>
-              <para>Advanced Portfolio:</para>
-            </listitem>
-            <listitem>
-              <para>Asset Barchart:</para>
-            </listitem>
-            <listitem>
-              <para>Asset Piechart:</para>
-            </listitem>
-            <listitem>
-              <para>Average Balance:</para>
-            </listitem>
-            <listitem>
-              <para>Balance Sheet: This report summarizes assets, liabilities, and equity. When properly maintained, assets should equal the sum of liabilities and equity. If that is not the case, there is some kind of internal imbalance in the accounts.</para>
-            </listitem>
-            <listitem>
-              <para>Investment Portfolio: This report summarizes the value of the stocks in the current portfolio.</para>
-            </listitem>
-            <listitem>
-              <para>Liability Barchart:</para>
-            </listitem>
-            <listitem>
-              <para>Liability Piechart:</para>
-            </listitem>
-            <listitem>
-              <para>Net Worth Barchart: Net worth is the difference between the value of assets or liabilities.</para>
-            </listitem>
-            <listitem>
-              <para>Price Scatterplot:</para>
-            </listitem>
-          </itemizedlist>
-        </sect4>
-        <sect4 id="report-income">
-          <title>Income &amp; Expense</title>
-          <para />
-          <para>The Income &amp; Expense reports includes the Cash Flow and Profit &amp; Loss reports.</para>
-          <para />
-          <itemizedlist>
-            <listitem>
-              <para>Cash Flow:</para>
-            </listitem>
-            <listitem>
-              <para>Expense Barchart:</para>
-            </listitem>
-            <listitem>
-              <para>Expense Piechart:</para>
-            </listitem>
-            <listitem>
-              <para>Income &amp; Expense Chart:</para>
-            </listitem>
-            <listitem>
-              <para>Income Barchart:</para>
-            </listitem>
-            <listitem>
-              <para>Income Piechart:</para>
-            </listitem>
-            <listitem>
-              <para>Profit &amp; Loss: This report summarizes sources of income and expenditure.</para>
-            </listitem>
-          </itemizedlist>
-          <para />
-        </sect4>
-        <sect4 id="report-biz">
-          <title>Business Reports</title>
-          <para />
-          <para>The Business Reports includes Customer and Vendor Reports and Printable Invoices as well as Aging reports.</para>
-          <para />
-          <itemizedlist>
-            <listitem>
-              <para>Customer Report:</para>
-            </listitem>
-            <listitem>
-              <para>Payable Aging:</para>
-            </listitem>
-            <listitem>
-              <para>Printable Invoice:</para>
-            </listitem>
-            <listitem>
-              <para>Receivable Aging:</para>
-            </listitem>
-            <listitem>
-              <para>Vendor Report:</para>
-            </listitem>
-          </itemizedlist>
-          <para />
-        </sect4>
-      </sect3>
-      <sect3 id="report-create">
-        <title>To Create Reports and Graphs</title>
-        <para />
-        <para>It is possible to write reports if the current ones are not suitable. To do this you will need to know Scheme (a LISP-like programming language), and it is an excellent idea to have a copy of the GnuCash source code available. </para>
-        <para>The reporting interface is documented in the source code 
-	  file src/report/report-system/doc/report-html.txt. The file src/scm/report/hello-world.scm in the GnuCash source distribution provides a good example of how reports are developed.</para>
-        <para>It is also necessary to access data from the engine to get information for your report. This is performed by a set of Scheme wrapper functions that are documented in the file src/g-wrap/gnc.html. Examine some of the other reports in src/scm/report for an indication of how they are used.</para>
-        <para>At present, reports are produced by calling a HTML-generation API, which outputs a dialect of HTML and rendering this with a HTML widget. This has limitations, particularly when trying to align objects precisely, as might be necessary for printing onto pre-printed invoices for example.</para>
-      </sect3>
-      <sect3 id="report-custom">
-        <title>To Customize Reports and Graphs</title>
-        <para />
-        <para>GnuCash reports have many options for customization. To access report options choose the Options button on the toolbar.</para>
-        <para />
-        <para>Many reports share similar sorts of options. Some common ones include:</para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>Report Name: Set the title of the report. This is also used to print the report for later viewing.</para>
-          </listitem>
-          <listitem>
-            <para>Date Options: Reports typically specify either a single date, or a date range, for the report. Dates can be specified in two ways, either directly (using the date selector), or by selecting a relative date from the menu. Relative dates allow you to specify dates like "Beginning of this year" or "Today".</para>
-          </listitem>
-          <listitem>
-            <para>Step Size: This option is used on bar charts to determine the interval which each bar represents. Typical values are daily, weekly, monthly, and yearly.</para>
-          </listitem>
-          <listitem>
-            <para>Accounts: Select the appropriate accounts for the report. Note that in some reports only certain types of accounts can be selected. For example, an expense piechart only allows expense accounts to be selected. </para>
-          </listitem>
-          <listitem>
-            <para>Show Long Account Names: This option allows displaying either short account names (for example, Power) or long account names (for example, Utilities:Power).</para>
-          </listitem>
-          <listitem>
-            <para>Include Subaccounts?: Summary reports typically have an include all subaccounts option, which if selected ensures that all subaccounts are included if the parent account is.</para>
-          </listitem>
-          <listitem>
-            <para>Depth: This option allows the selection of how many levels the report displays subaccounts. If the subaccounts go deeper than selected, an overall value for all the subaccounts is calculated and included in a total. To make sure every account selected is individually displayed, select All.</para>
-          </listitem>
-          <listitem>
-            <para>Style Sheet: Select a Style Sheet. Style sheets control how reports are displayed. At the moment, there are two style sheets, "default" and "technicolor". You can customize each of these from the Edit -&gt; Style Sheets... menu item. This is described in the Changing Style Sheets section.</para>
-          </listitem>
-          <listitem>
-            <para>Plot Dimensions: There are width and height options for most graphs, which specify the displayed dimensions (in pixels).</para>
-          </listitem>
-          <listitem>
-            <para>Report Currency: Select the report currency. Generally, values will be converted to this currency for display.</para>
-          </listitem>
-          <listitem>
-            <para>Price Source: Select how stock and currency prices are calculated in this report. Choose between a weighted average of prices over all transactions, prices at current values, or prices at the time of the report date.</para>
-          </listitem>
-          <listitem>
-            <para>Totals: Charts display totals in the chart legend if this option is selected. </para>
-          </listitem>
-          <listitem>
-            <para>Maximum Slices: Controls the maximum number of slices displayed in a piechart - other accounts will be placed in a slice marked Other. </para>
-          </listitem>
-          <listitem>
-            <para>Maximum Bars: Controls the maximum number of bars displayed in a barchart.</para>
-          </listitem>
-          <listitem>
-            <para>Display Columns: Choose columns to show from the register.</para>
-          </listitem>
-        </itemizedlist>
-        <para />
-      </sect3>
-      <sect3 id="report-print">
-        <title>To Print or Export Reports and Graphs</title>
-        <para />
-        <para>GnuCash is able to print reports and to export the reports to web pages. The Print GnuCash Document dialog is accessed from the Print button on the toolbar or go to File -&gt; Print in the menu. To Export a report to a web page (HTML) select the Export button on the toolbar and type in a file name.</para>
-        <para />
-        <para>The Print GnuCash Document dialog is used to select which Printer to send the print job to or to print to a File. It also contains a Preview button to view the document before printing. Press Print to send the job to the selected printer or Cancel to dismiss the Print dialog.</para>
-        <para />
-        <para>Printing from an open register prints the Account Report, which is also called the Register Report. This lists transactions in the account with a total. Other reports print as viewed in the Report screen.</para>
-      </sect3>
-    </sect2>
-  </sect1>
-  <sect1 id="custom-gnucash">
-    <title>Customizing GnuCash</title>
-    <sect2 id="account-options">
-      <title>Account Options</title>
-      <para />
-      <para>The Account Options is used to set the view of the Account Tree Window. This dialog sets the view on each open window of the account tree. This means that when the New Account Tree is used several different views of the account tree can be created.</para>
-      <para />
-      <itemizedlist>
-        <listitem>
-          <para>Name of the account view: Used to name the account in the Windows menu and the note tabs.</para>
-        </listitem>
-        <listitem>
-          <para>Double click expands parent accounts: Use double click instead of single click to expand accounts</para>
-        </listitem>
-        <listitem>
-          <para>Account types to display: Select which types of accounts to display in the account tree.</para>
-        </listitem>
-        <listitem>
-          <para>Account fields to display: Select what fields to display in the account tree.</para>
-        </listitem>
-      </itemizedlist>
-      <para />
-    </sect2>
-    <sect2 id="set-prefs">
-      <title>Setting Your Preferences</title>
-      <para />
-      <para>The GnuCash Preferences dialog contains the following sections.</para>
-      <sect3 id="prefs-accounts">
-        <title>Accounts: </title>
-        <para />
-        <para>This section contains the following preferences;</para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>Account : This option is used to pick a different separator in the register for parent and child accounts.</para>
-          </listitem>
-          <listitem>
-            <para>Reversed-balance account types: This option is used to choose what type of account have their balances reversed. If the balance is normally negative, as in a loan or a credit card then this will make the balance positive.</para>
-          </listitem>
-          <listitem>
-            <para>Use accounting labels: This option is used to turn on accounting labels (debit and credit) instead of using terms such as withdrawal and deposit.</para>
-          </listitem>
-        </itemizedlist>
-        <para />
-      </sect3>
-      <sect3 id="prefs-biz">
-        <title>Business: </title>
-        <para />
-        <para>This section contains the following preferences;</para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>Number of Rows: This option is used to set the default number of register rows to display in invoices.</para>
-          </listitem>
-          <listitem>
-            <para>Invoice Tax Included?: This option is used to set if tax is included by default in entries on invoices. </para>
-          </listitem>
-          <listitem>
-            <para>Bill Tax Included?: This option is used to set if tax is included by default in entries on bills.</para>
-          </listitem>
-        </itemizedlist>
-        <para />
-      </sect3>
-      <sect3 id="prefs-general">
-        <title>General: </title>
-        <para />
-        <para>This section contains the following preferences;</para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>Show Advanced Settings: </para>
-          </listitem>
-          <listitem>
-            <para>Toolbar Buttons: </para>
-          </listitem>
-          <listitem>
-            <para>Display "Tip of the Day": </para>
-          </listitem>
-          <listitem>
-            <para>Display negative amounts in red: </para>
-          </listitem>
-          <listitem>
-            <para>Automatic Decimal Point: </para>
-          </listitem>
-          <listitem>
-            <para>Auto Decimal Places: </para>
-          </listitem>
-          <listitem>
-            <para>No account list setup on new file: </para>
-          </listitem>
-          <listitem>
-            <para>Days to retain log files: </para>
-          </listitem>
-        </itemizedlist>
-        <para />
-      </sect3>
-      <sect3 id="prefs-inter">
-        <title>International: </title>
-        <para />
-        <para>This section contains the following preferences;</para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>Date Format: </para>
-          </listitem>
-          <listitem>
-            <para>Default Currency: </para>
-          </listitem>
-          <listitem>
-            <para>Use 24-hour time format: </para>
-          </listitem>
-          <listitem>
-            <para>Enable EURO support: </para>
-          </listitem>
-        </itemizedlist>
-        <para />
-      </sect3>
-      <sect3 id="prefs-online">
-        <title>Online Banking &amp; Importing: </title>
-        <para />
-        <para>This section contains the following preferences;</para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>QIF Verbose documentation: </para>
-          </listitem>
-          <listitem>
-            <para>Enable REPLACE match action: </para>
-          </listitem>
-          <listitem>
-            <para>Enable SKIP transaction action: </para>
-          </listitem>
-          <listitem>
-            <para>Auto-CLEAR threshold: </para>
-          </listitem>
-          <listitem>
-            <para>Match display threshold: </para>
-          </listitem>
-          <listitem>
-            <para>Auto-ADD threshold: </para>
-          </listitem>
-        </itemizedlist>
-        <para />
-      </sect3>
-      <sect3 id="prefs-rec">
-        <title>Reconcile: </title>
-        <para />
-        <para>This section contains the following preferences;</para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>Automatic interest transfer: </para>
-          </listitem>
-          <listitem>
-            <para>Automatic credit card payments: </para>
-          </listitem>
-          <listitem>
-            <para>Check off cleared transactions: </para>
-          </listitem>
-        </itemizedlist>
-        <para />
-      </sect3>
-      <sect3 id="prefs-reg">
-        <title>Register: </title>
-        <para />
-        <para>This section contains the following preferences;</para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>Default Register Style: </para>
-          </listitem>
-          <listitem>
-            <para>Double Line Mode: </para>
-          </listitem>
-          <listitem>
-            <para>'Enter' moves to blank transaction: </para>
-          </listitem>
-          <listitem>
-            <para>Confirm before changing reconciled: </para>
-          </listitem>
-          <listitem>
-            <para>Register font: </para>
-          </listitem>
-          <listitem>
-            <para>Register hint font: </para>
-          </listitem>
-        </itemizedlist>
-        <para />
-      </sect3>
-      <sect3 id="prefs-reg-color">
-        <title>Register Colors: </title>
-        <para />
-        <para>This section contains the following preferences;</para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>Header color: </para>
-          </listitem>
-          <listitem>
-            <para>Primary color: </para>
-          </listitem>
-          <listitem>
-            <para>Secondary color: </para>
-          </listitem>
-          <listitem>
-            <para>Primary active color: </para>
-          </listitem>
-          <listitem>
-            <para>Secondary active color: </para>
-          </listitem>
-          <listitem>
-            <para>Split color: </para>
-          </listitem>
-          <listitem>
-            <para>Split active color: </para>
-          </listitem>
-          <listitem>
-            <para>Double mode colors alternate with transactions: </para>
-          </listitem>
-        </itemizedlist>
-        <para />
-      </sect3>
-      <sect3 id="prefs-sched">
-        <title>Scheduled Transactions: </title>
-        <para />
-        <para>This section contains the following preferences;</para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>Run on GnuCash start: </para>
-          </listitem>
-          <listitem>
-            <para>Auto-Create new Scheduled Transactions by default: </para>
-          </listitem>
-          <listitem>
-            <para>Notify on new, auto-created Scheduled Transactions: </para>
-          </listitem>
-          <listitem>
-            <para>Default number of days in advance to create: </para>
-          </listitem>
-          <listitem>
-            <para>Default number of days in advance to remind: </para>
-          </listitem>
-          <listitem>
-            <para>Template Register Lines: </para>
-          </listitem>
-        </itemizedlist>
-        <para />
-      </sect3>
-      <sect3 id="prefs-user">
-        <title>User Info: </title>
-        <para />
-        <para>This section contains the following preferences;</para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>User Name: </para>
-          </listitem>
-          <listitem>
-            <para>User Address: </para>
-          </listitem>
-        </itemizedlist>
-        <para />
-      </sect3>
-      <sect3 id="prefs-advanced">
-        <title>Advanced: </title>
-        <para />
-        <para>This section contains the following preferences (this screen is hidden by default);</para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>Save Window Geometry: </para>
-          </listitem>
-          <listitem>
-            <para>Application MDI mode: </para>
-          </listitem>
-          <listitem>
-            <para>Show Vertical Borders: </para>
-          </listitem>
-          <listitem>
-            <para>Show Horizontal Borders: </para>
-          </listitem>
-          <listitem>
-            <para>Auto-Raise Lists: </para>
-          </listitem>
-          <listitem>
-            <para>Show All Transactions: </para>
-          </listitem>
-          <listitem>
-            <para>Number of Rows: </para>
-          </listitem>
-        </itemizedlist>
-        <para />
-      </sect3>
-    </sect2>
-    <sect2 id="change-style">
-      <title>Changing Style Sheets</title>
-      <para />
-      <para>GnuCash has two default stylesheets for webpage reports. These stylesheets can be altered by using the HTML Style Sheets editor. To access the editor go to Edit -&gt; Style Sheets...</para>
-      <para />
-      <para>To add a new Style Sheet select the New... button in the Style Sheet pane. The New Style Sheet dialog will appear. Fill in the Name: of the new Style Sheet and choose a template. To remove a Style Sheet select the Style Sheet from the list and click Delete.</para>
-      <para />
-      <sect3 id="style-default">
-        <title>Default</title>
-        <para />
-        <para>The Default Style Sheet has two tabs to alter the appearance of reports, General and Tables. </para>
-        <sect4 id="style-def-general">
-          <title>General</title>
-          <para />
-          <itemizedlist>
-            <listitem>
-              <para>Background Color: Opens the color picker to choose a new color.</para>
-            </listitem>
-            <listitem>
-              <para>Background Pixmap: Use the Browse button to select a picture to use as the background in reports.</para>
-            </listitem>
-            <listitem>
-              <para>Enable Links: Select this to enable blue hyperlinks in reports.</para>
-            </listitem>
-          </itemizedlist>
-          <para />
-        </sect4>
-        <sect4 id="style-def-tables">
-          <title>Tables</title>
-          <para />
-          <itemizedlist>
-            <listitem>
-              <para>Table cell spacing: Sets the space between table cells</para>
-            </listitem>
-            <listitem>
-              <para>Table cell padding: Sets the padding between table cells</para>
-            </listitem>
-            <listitem>
-              <para>Table border width: Sets the width of the borders on tables.</para>
-            </listitem>
-          </itemizedlist>
-          <para />
-        </sect4>
-      </sect3>
-      <sect3 id="style-technicolor">
-        <title>Technicolor</title>
-        <para />
-        <para>The Technicolor Style Sheet has four tabs to alter the appearance of reports, Colors, General, Images and Tables.</para>
-        <para />
-        <sect4 id="style-tech-colors">
-          <title>Colors</title>
-          <para />
-          <itemizedlist>
-            <listitem>
-              <para>Background Color: Opens the color picker to choose a new color.</para>
-            </listitem>
-            <listitem>
-              <para>Text Color: Opens the color picker to choose a new color.</para>
-            </listitem>
-            <listitem>
-              <para>Table Cell Color: Opens the color picker to choose a new color.</para>
-            </listitem>
-            <listitem>
-              <para>Link Color: Opens the color picker to choose a new color.</para>
-            </listitem>
-            <listitem>
-              <para>Alternate Table Cell Color: Opens the color picker to choose a new color.</para>
-            </listitem>
-            <listitem>
-              <para>Subheading/Subtotal Cell Color: Opens the color picker to choose a new color.</para>
-            </listitem>
-            <listitem>
-              <para>Sub-subheading/total Cell Color:Opens the color picker to choose a new color.</para>
-            </listitem>
-            <listitem>
-              <para>Grand Total Cell Color:Opens the color picker to choose a new color.</para>
-            </listitem>
-          </itemizedlist>
-          <para />
-        </sect4>
-        <sect4 id="style-tech-general">
-          <title>General</title>
-          <para />
-          <itemizedlist>
-            <listitem>
-              <para>Preparer: Name of the person preparing the report.</para>
-            </listitem>
-            <listitem>
-              <para>Prepared for: Name of Organization or Company the report is prepared for.</para>
-            </listitem>
-            <listitem>
-              <para>Show preparer info: Show the Preparer information in the report.</para>
-            </listitem>
-            <listitem>
-              <para>Enable Links: Select this to enable blue hyperlinks in reports.</para>
-            </listitem>
-          </itemizedlist>
-          <para />
-        </sect4>
-        <sect4 id="style-tech-images">
-          <title>Images</title>
-          <para />
-          <itemizedlist>
-            <listitem>
-              <para>Background Tile: Use the Browse button to select a picture to use as the background in reports.</para>
-            </listitem>
-            <listitem>
-              <para>Heading Banner: Use the Browse button to select a picture to use as the heading in reports.</para>
-            </listitem>
-            <listitem>
-              <para>Logo: Use the Browse button to select a picture to use as the logo in reports.</para>
-            </listitem>
-          </itemizedlist>
-          <para />
-        </sect4>
-        <sect4 id="style-tech-tables">
-          <title>Tables</title>
-          <para />
-          <itemizedlist>
-            <listitem>
-              <para>Table cell spacing: Sets the space between table cells</para>
-            </listitem>
-            <listitem>
-              <para>Table cell padding: Sets the padding between table cells</para>
-            </listitem>
-            <listitem>
-              <para>Table border width: Sets the width of the borders on tables.</para>
-            </listitem>
-          </itemizedlist>
-          <para />
-        </sect4>
-      </sect3>
-    </sect2>
-    <sect2 id="set-tax-options">
-      <title>Setting Tax Options</title>
-      <para />
-      <para>The Tax Information dialog is used to set Tax Options. The settings on accounts in this dialog are used by the TXF Export function in reports to select the accounts for export. To access this dialog go to Edit -&gt; Tax Options.</para>
-      <para />
-      <para>IMPORTANT: Most TXF codes should only appear on a single account! The exceptions are codes for which the "Payer Name Source" is not grayed, each of which can appear many times. Of course, each duplicate should have a unique payer name. These are typically interest accounts or stocks or mutual funds that pay dividends.</para>
-      <para />
-      <itemizedlist>
-        <listitem>
-          <para>Accounts: This pane contains the list of accounts. Select an account to set a TXF category. If no account is selected nothing is changed. If multiple accounts are selected, all of the accounts will be set to the selected item. </para>
-        </listitem>
-        <listitem>
-          <para>Tax Related: Select this checkbox to add tax information to an account then select the TXF Category below.</para>
-        </listitem>
-        <listitem>
-          <para>TXF Categories: Select the desired one. A detailed description appears just below.</para>
-        </listitem>
-        <listitem>
-          <para>Payer Name Source: A text description that is exported along with the value of the account. This is usually the name of a bank, stock, or mutual fund that pays dividends or interest. Occasionally, it is a description of a deduction.</para>
-        </listitem>
-      </itemizedlist>
-      <para />
-      <sect3 id="txf-probs">
-        <title>TXF Export - Known Anomalies and Limitations</title>
-        <para />
-        <para>TaxCut 1999 </para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>Code: N488 "^ Sched B \ Div. income, cap gain distrib."</para>
-          </listitem>
-          <listitem>
-            <para>Code: N286 "^ Sched B \ Dividend income"</para>
-          </listitem>
-        </itemizedlist>
-        <para />
-        <para>These two codes, from the same payer, are not correlated. The user will have to adjust for this after import. </para>
-        <para />
-        <para>TaxCut 1999, 2000 </para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>Code: N521 " F1040 \ Federal estimated tax, quarterly"</para>
-          </listitem>
-        </itemizedlist>
-        <para />
-        <para>Does not accept the date field and does not import the individual payment amounts, only the total. The date and individual payment amounts, only matter if you have to compute the penalty. (this may be a TurboTax enhancement) </para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>Code: N460 " W-2 \ Salary or wages, self"</para>
-          </listitem>
-          <listitem>
-            <para>Code: N506 " W-2 \ Salary or wages, spouse" </para>
-          </listitem>
-          <listitem>
-            <para>and other related codes.</para>
-          </listitem>
-        </itemizedlist>
-        <para />
-        <para>Information from only one job may be imported. </para>
-        <para />
-        <para>TurboTax 1999, 2000 </para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>Code: N521 " F1040 \ Federal estimated tax, quarterly"</para>
-          </listitem>
-        </itemizedlist>
-        <para />
-        <para>Does not accept the dates outside of the tax year. This is a problem for the last payment that is due Jan 15. GnuCash changes the the date of the last payment to Dec 31. The user will have to adjust for this after import. The date only matters if you have to compute the penalty. </para>
-        <para />
-        <para>TXF Tax eXport Format </para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>Duplicate Codes</para>
-          </listitem>
-        </itemizedlist>
-        <para />
-        <para>Most codes are not supposed to appear more than once. GnuCash issues an error message if it detects this, but will still export the data. These are not handled the same by TaxCut and TurboTax.</para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>TurboTax</para>
-          </listitem>
-        </itemizedlist>
-        <para />
-        <para>Sums the duplicate codes. i.e., job one and job two are added together.</para>
-        <para />
-        <itemizedlist>
-          <listitem>
-            <para>TaxCut</para>
-          </listitem>
-        </itemizedlist>
-        <para />
-        <para>Keeps only the LAST of the duplicate codes. i.e., job one is ignored and job two is kept. </para>
-        <para />
-      </sect3>
-      <sect3 id="txf-defs">
-        <title>Detailed TXF Category Descriptions</title>
-        <para />
-        <para>Table 32. Detailed TXF Category Descriptions</para>
-        <para />
-	&txf-categories;
-      </sect3>
-    </sect2>
-  </sect1>
-  
+  </bookinfo>
+&intro;
+&gettingstarted;
+&usage;
+&custom;
 &GFDL;
-
-</article>
+</book>
Index: Makefile.am
===================================================================
RCS file: /home/cvs/cvsroot/gnucash-docs/help/C/Makefile.am,v
retrieving revision 1.2
retrieving revision 1.3
diff -Lhelp/C/Makefile.am -Lhelp/C/Makefile.am -u -r1.2 -r1.3
--- help/C/Makefile.am
+++ help/C/Makefile.am
@@ -7,6 +7,10 @@
 	legal.xml \
 	chartofaccts.xml \
 	chtacctseg.xml \
-	txf-categories.xml
+	txf-categories.xml \
+	intro.xml \
+	gettingstarted.xml \
+	usage.xml \
+	custom.xml
 include $(top_srcdir)/xmldocs.make
 dist-hook: app-dist-hook
--- /dev/null
+++ help/C/gnucash-help.sgml
@@ -0,0 +1,174 @@
+<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook V4.1//EN"
+ "http://www.oasis-open.org/docbook/xml/4.1/docbookx.dtd" [
+<!ENTITY intro SYSTEM "intro.xml">
+<!ENTITY gettingstarted SYSTEM "gettingstarted.xml">
+<!ENTITY usage SYSTEM "usage.xml">
+<!ENTITY custom SYSTEM "custom.xml">
+<!ENTITY chartacctseg SYSTEM "chtacctseg.xml">
+<!ENTITY chartofaccts SYSTEM "chartofaccts.xml">
+<!ENTITY txf-categories SYSTEM "txf-categories.xml">
+<!ENTITY legal SYSTEM "legal.xml">
+<!ENTITY GFDL SYSTEM "fdl-appendix.xml">
+<!ENTITY manrevision "1.8.4">
+<!ENTITY date "11th April 2004">
+<!ENTITY app "GnuCash">
+]>
+<!--
+      (Do not remove this comment block.)
+  Template Maintained by the GNOME Documentation Project:
+	  http://developer.gnome.org/projects/gdp
+  Template version: 2.0 beta
+  Template last modified Feb 12, 2002
+-->
+<!--
+      (Do not remove this comment block.)
+  Version: 1.8.4
+  Last modified: April 10th 2004
+  Maintainers:
+               Chris Lyttle   <chris at wilddev.net)
+  Translators:
+               (translators put your name and email here)
+-->
+
+<book id="help">
+<!-- please do not change the id; for translations, change lang to -->
+<!-- appropriate code in the xml version (article tag). -->
+
+  <bookinfo>
+   <title>&app; Help Manual</title>
+   <copyright>
+     <year>2002-2004</year>
+     <holder>Chris Lyttle</holder>
+   </copyright>
+
+   <!-- translators: uncomment this:
+
+   <copyright>
+      <year>2000</year>
+      <holder>ME-THE-TRANSLATOR (Latin translation)</holder>
+   </copyright>
+
+  -->
+
+    <publisher>
+       <publishername> GnuCash Documentation Team </publishername>
+    </publisher>
+
+    &legal;
+
+    <authorgroup>
+      <author>
+        <firstname>Chris</firstname>
+        <surname>Lyttle</surname>
+        <affiliation>
+          <orgname>GnuCash Documentation Team</orgname>
+          <address> <email>chris at wilddev.net</email> </address>
+        </affiliation>
+      </author>
+<!-- This is appropriate place for other contributors: translators,
+      maintainers,  etc. Commented out by default.
+       <othercredit role="translator">
+        <firstname>Latin</firstname>
+        <surname>Translator 1</surname>
+        <affiliation>
+          <orgname>Latin Translation Team</orgname>
+          <address> <email>translator at gnome.org</email> </address>
+        </affiliation>
+        <contrib>Latin translation</contrib>
+      </othercredit>
+-->
+    </authorgroup>
+
+    <revhistory>
+      <revision>
+        <revnumber>PDF generation</revnumber>
+        <date>9th March 2005</date>
+        <revdescription>
+          <para role="author">Neil Williams
+            <email>linux at codehelp.co.uk</email>
+          </para>
+          <para role="publisher">GnuCash Documentation Team</para>
+        </revdescription>
+      </revision>
+      <revision>
+        <revnumber>&app; Help Manual V&manrevision;</revnumber>
+        <date>&date;</date>
+        <revdescription>
+          <para role="author">Chris Lyttle
+            <email>chris at wilddev.net</email>
+          </para>
+          <para role="publisher">GnuCash Documentation Team</para>
+        </revdescription>
+      </revision>
+      <revision>
+        <revnumber>GnuCash Help Manual V1.8.3</revnumber>
+        <date>Aug 2003</date>
+        <revdescription>
+          <para role="author">Chris Lyttle
+            <email>chris at wilddev.net</email>
+          </para>
+          <para role="publisher">GnuCash Documentation Team</para>
+        </revdescription>
+      </revision>
+      <revision>
+        <revnumber>GnuCash Help Manual V1.8.2</revnumber>
+        <date>Aug 2003</date>
+        <revdescription>
+          <para role="author">Chris Lyttle
+            <email>chris at wilddev.net</email>
+          </para>
+          <para role="publisher">GnuCash Documentation Team</para>
+        </revdescription>
+      </revision>
+      <revision>
+        <revnumber>GnuCash Help Manual V1.8.1</revnumber>
+        <date>May 2003</date>
+        <revdescription>
+          <para role="author">Chris Lyttle
+            <email>chris at wilddev.net</email>
+          </para>
+          <para role="publisher">GnuCash Documentation Team</para>
+        </revdescription>
+      </revision>
+      <revision>
+        <revnumber>GnuCash Help Manual V1.8.0</revnumber>
+        <date>Jan 2003</date>
+        <revdescription>
+          <para role="author">Chris Lyttle
+            <email>chris at wilddev.net</email>
+          </para>
+          <para role="publisher">GnuCash Documentation Team</para>
+        </revdescription>
+      </revision>
+      <revision>
+        <revnumber>GnuCash User Manual</revnumber>
+        <date>June 2002</date>
+        <revdescription>
+          <para role="author">GnuCash Developers and Documentors
+            <email>gnucash-devel at gnucash.org</email>
+          </para>
+          <para role="publisher">GnuCash Documentation Team</para>
+        </revdescription>
+      </revision>
+    </revhistory>
+
+    <releaseinfo>This manual describes how to use the GnuCash Financial
+    software.
+    </releaseinfo>
+    <legalnotice>
+      <title>Feedback</title>
+      <para>To report a bug or make a suggestion regarding this package or
+        this manual, follow the directions at the
+        <ulink url="http://bugzilla.gnome.org"
+          >GNOME Bug Tracking System</ulink>.
+      </para>
+<!-- Translators may also add here feedback address for translations -->
+    </legalnotice>
+
+  </bookinfo>
+&intro;
+&gettingstarted;
+&usage;
+&custom;
+&GFDL;
+</book>


More information about the gnucash-changes mailing list