[Gnucash-changes] r13209 - htdocs/trunk/www - Removing files now based in the Wiki

Neil Williams codehelp at cvs.gnucash.org
Sat Feb 11 13:41:25 EST 2006


Author: codehelp
Date: 2006-02-11 13:41:24 -0500 (Sat, 11 Feb 2006)
New Revision: 13209
Trac: http://svn.gnucash.org/trac/changeset/13209

Removed:
   htdocs/trunk/www/architecture.phtml
   htdocs/trunk/www/articles.phtml
   htdocs/trunk/www/bugs.phtml
   htdocs/trunk/www/contribute.phtml
   htdocs/trunk/www/hacking.phtml
   htdocs/trunk/www/history.phtml
   htdocs/trunk/www/htdig.sh
   htdocs/trunk/www/irc.phtml
   htdocs/trunk/www/links.phtml
   htdocs/trunk/www/lists.phtml
   htdocs/trunk/www/quiz-results-early.phtml
   htdocs/trunk/www/quiz-results.phtml
   htdocs/trunk/www/quiz.phtml
   htdocs/trunk/www/required.phtml
   htdocs/trunk/www/roadmap.phtml
   htdocs/trunk/www/screenshots.phtml
   htdocs/trunk/www/search.phtml
   htdocs/trunk/www/state_of_the_gnucash_project.phtml
Log:
Removing files now based in the Wiki

Deleted: htdocs/trunk/www/architecture.phtml
===================================================================
--- htdocs/trunk/www/architecture.phtml	2006-02-11 18:37:58 UTC (rev 13208)
+++ htdocs/trunk/www/architecture.phtml	2006-02-11 18:41:24 UTC (rev 13209)
@@ -1,155 +0,0 @@
-<?php $title = _("Architecture"); ?>
-<?php
-include("../emulate_globals_on.php");
-include($toppath."/externals/en/header.phtml");
-include($toppath."/en/menu/menu-main-developer.phtml"); ?>
-<div id="content">
-
-<h1><?php echo _("Architectural Overview");?></h1>
-
-<p><?php echo _("GnuCash is written primarily in two languages: C and Scheme. The engine/server is written in C primarily for speed, portability, stability and historical reasons.  Various bits and peices that help glue together the various components are written in Scheme. Scheme was choosen for its power, expressiveness and ease of development. The user interface uses the GTK/Gnome widget set, and  is designed primarily with the ");?>
-<a href="http://glade.pn.org">Glade</a><?php
-echo ("GUI designer tool. The file format is in XML, and multi-user support is provided through the Postgres SQL backend. The reporting subsystem, written in Scheme, generates HTML
-reports.");?>
-</p>
-
-<p><?php echo _("GnuCash aims to be modular, thereby allowing separate individuals to maintain, develop and enhance certain modules without disturbing the overall development.  (Never mind that modules help avoid spaghetti code and nasty, ugly hacks). The interfaces between modules are documented, and, for the most part, stable and unchanging.");?>
-<a href="/images/diagrams/components.png"><?php echo _("This block diagram shows major components.");?></a></p>
-
-<p><b>
-<?php echo _("GnuCash currently consists of the following modules:");?></b>
-</p>
-
-<div class="tblborder">
-   <table cellpadding=5 cellspacing=1 width="100%">
-   <colgroup><col width="25%"><col width="50%"></colgroup>
-   <tr>
-     <td class="tblheader"><b>Module</b></td>
-     <td class="tblheader"><b>Description</b></td>
-   </tr>
-   <tr>
-     <td>
-        <img src="/images/icons/document.txt.gif" width=16 height=16 
-	alt="document icon">
-        <b><?php echo _("Engine");?></b>
-     </td>
-     <td>
-<p><?php echo _("The <dfn>Engine</dfn> (located under the <code>src/engine/</code> directory in the GnuCash codebase) provides an interface for creating, manipulating, and destroying six basic financial entities: Accounts, Transactions (which record a sale/purchase on a given date), Splits (which record the balancing components of a transaction: the amount, the account involved), Lots (which identify that the physical item sold in one transaction is the same one that was bought in another), Prices and Currencies/Commodities.  These six entities provide the central data structures of the GnuCash financial data model, <a href=\"/images/diagrams/structures.png\">as illustrated in this diagram.</a> Additional structures are created by the business component."); 
-echo "</p><p>";
-echo _("The Engine code contains no GUI code whatsoever, and is essentially OS-neutral. It is written entirely in C.  It was designed to be used in a stand-alone server; however, it is not currently used as such.");?></p>
-   </td>
-   </tr>
-   <tr class="divider">
-     <td>
-        <img src="/images/icons/document.txt.gif" width=16 height=16 
-	alt="document icon">
-        <b><?php echo _("Query");?></b>
-     </td>
-     <td>
-<p><?php echo _("The <dfn>Query</dfn> module (also in <code>src/engine/</code>) provides a generic mechanism for performing complex, structured queries on a collection of objects.  For example, GnuCash uses queries to find transactions based on a set of user-sepecified criteria, such as description, date posted, account membership, etc. Simple queries can be combined using standard boolean operators.  The query subsystem is a true generic object-query system, independent of the financial structure in GnuCash, and is slowly being spun-out as a stand-alone component at ");?><a href="http://qof.sourceforge.net">qof.sourceforge.net</a>.
-<?php echo _("Note that Query works closely with the data storage backend, so that the local collection of objects in the GnuCash engine acts as a 'cache' for a possibly much larger set of data in the SQL backend.  The idea is to keep GnuCash 'scalable': the runtime size can stay small, while still having high-performance interactions, even when dealing with large, remote databases.");?></p>
-   </td>
-   </tr>
-   <tr>
-     <td>
-       <img src="/images/icons/document.txt.gif" width=16 height=16 
-	alt="document icon">
-        <b><?php echo _("Storage Backend");?></b>
-     </td>
-     <td>
-<p><?php echo _("The <dfn>Storage Backend</dfn> module (<code>src/backend/</code>) defines a generic interface for storing GnuCash data (into files or databases) or for communicating with a remote GnuCash storage server (by any server-defined protocol). Currently implemented and supported are the XML file backend, which stores GnuCash data in its native XML file format, and the Postgres SQL backend, which supports multiple simultaneous users of GnuCash.  Additionally, there are several experimental backends (currently broken/unsupported): one for communicating with a GnuCash storage server via RPC, and another that chats, via XML across HTTP, with a GnuCash server.");?>
-    </td>
-   </tr>
-   <tr class="divider">
-     <td>
-       <img src="/images/icons/document.txt.gif" width=16 height=16 
-	alt="document icon">
-        <b><?php echo _("Register");?></b>
-     </td>
-     <td>
-<p><?php echo _("The <dfn>Register</dfn> (<code>src/register/</code>) implements a ledger-like GUI that allows the user to dynamically enter dates, prices, memos descriptions, etc. in an intuitive fashion that should be obvious to anyone who's used a checkbook register. The code is highly configurable, allowing the ledger columns and rows to be laid out in any way, with no restrictions on the function, type, and number of columns/rows. For example, one can define a ledger with three date fields, one price field, and four memo fields in a straightforward fashion. Cell handling objects support and automatically validate date entry, memo entry (w/auto-completion), prices, combo-boxes (pull-down menus), and multi-state check-boxes. Cells can be marked read-write, or output-only. Cells can be assigned unique colors. The currently active ledger row-block can be highlighted with a unique color.");?>
-</p> <p>
-<?php echo _("The register code is completely independent of the engine code, knows nothing about accounting or any of the other GnuCash subsystems. It can be used in independent projects that have nothing to do with accounting.");?></p>
-    </td>
-   </tr>
-   <tr>
-     <td>
-       <img src="/images/icons/document.txt.gif" width=16 height=16 
-	alt="document icon">
-        <b><?php echo _("Reports &amp; Graphs");?></b>
-     </td>
-     <td>
-<p><?php echo _("The <dfn>Reports &amp; Graphs</dfn> module (<code>src/report/</code>) is a scheme (guile) based system to create balance sheets, profit &amp; loss statements, barcharts, piecharts, <i>etc.</i>  It uses the Query API to fetch and format data, which is then converted into HTML and displayed with the gtkhtml widget.  Graphs are implemented in Guppi,
-(&lt;<code>http://www.gnome.org/guppi</code>&gt;) and are embedded (as live graphs) directly in the HTML.");?></p>
-    </td>
-   </tr>
-   <tr class="divider">
-     <td>
-       <img src="/images/icons/document.txt.gif" width=16 height=16 
-	alt="document icon">
-        <b><?php echo _("Price Quotes");?></b>
-     </td>
-     <td>
-<p><?php echo _("The <dfn>Price Quotes</dfn> module (<code>src/quotes</code>) is a wrapper around the Finance::Quote Perl module, used to fetch stock price data off the Internet and insert it into the GnuCash Engine. The Finance::Quote module is available at SourceForge (or 
-through CPAN). This module can fetch price quotes from many different sources including Yahoo, Yahoo Europe, and some international exchanges. Before a new data source can be added to GnuCash, it must be added to Finance::Quote first.");?></p>
-<p><?php echo _("The Finance::Quote module also supports fetching currency exchange rates. GnuCash will be extended to allow the fetching and use of currency exchange rates.");?></p>
-   </td>
-   </tr>
-   <tr>
-     <td>
-       <img src="/images/icons/document.txt.gif" width=16 height=16 
-	alt="document icon">
-        <b><?php echo _("User Preferences");?></b>
-     </td>
-     <td>
-<p><?php echo _("The <dfn>User Preferences</dfn> module (<code>src/app-utils/</code>) provides an infrastructure for defining both user-configurable and internal preferences. Preferences are defined in scheme using several predefined preference types such as boolean, string, date, etc. Preferences are 'implemented' by providing a GUI which allows the user to see and change preference values. An API is provided to query preference values and to register callbacks which will be invoked when preferences change.");?>
-</p> <p><?php echo _("Preference values which are different from the default values are stored as scheme forms in a user-specific preferences file (<code>~/.gnucash/config.auto</code>). This file is automatically loaded upon startup.");?></p>
-   </td>
-   </tr>
-   <tr class="divider">
-     <td>
-       <img src="/images/icons/document.txt.gif" width=16 height=16 
-	alt="document icon">
-        <b><?php echo _("Data Import &amp; Export");?></b>
-     </td>
-     <td>
-<p><?php echo _("The <dfn>Import</dfn> module (<code>src/import-export/</code>) provides functionality for importing QIF (Quicken Interchange Format) data files and OFX (Open Financial Exchange) files into GnuCash.  One of the difficult  aspects of importing data from a file is what to do if the file contains some data that has already been entered into GnuCash.  This can happen when the imported file is a bank statement obtained periodically from a website: each time it is fetched, it might contain transactions that were previously reported.  Thus, to perform file import correctly, one must have a fairly sophisticated transaction matcher that can detect and properly handle (ignore) duplicate transactions. This pattern matching is generically useful, and is used by the HCBI subsystem.  (HCBI is an online banking system available to residents of Germany).");?></p>
-   </td>
-   </tr>
-   <tr>
-     <td>
-       <img src="/images/icons/document.txt.gif" width=16 height=16 
-	alt="document icon">
-        <b><?php echo _("Small Business Features");?></b>
-     </td>
-     <td>
-<p><?php echo _("GnuCash provides support for a number of small business features, including a business-oriented ledger (which shows additional info that the regular, 'check-book style' ledger does not), Invoicing, Jobs &amp; Order Entry, Tax Tables, and lists of Vendors, Employees and Customers.  The structural organization of this code is similar to that of core GnuCash: there is a set of C objects (<code>src/business/business-core)</code>) that are saved/restored in the backend. The objects themsleves are manipulated by various GUI dialog elements (<code>src/business/gnome)</code>).");?></p>
-   </td>
-   </tr>
-   <tr class="divider">
-     <td>
-       <img src="/images/icons/document.txt.gif" width=16 height=16 
-	alt="document icon">
-        <b><?php echo _("Recurring Transactions");?></b>
-     </td>
-     <td>
-<p><?php echo _("Scheduled transactions provide a mechanism for describing a set of regularly recurring financial transactions so that the GnuCash dataset can be automatically updated as time passes.  The core object is the &quot;Frequency Specification&quot;, which identifies a periodicity (daily, weekly, monthly, etc.).  It is manipulated by a GUI widget.  The FreqSpec is used with special &quot;Template Transactions&quot; that record info about how future transactions should be made out, and are manipulated by a corresponding GUI.");?></p>
-    </td>
-   </tr>
-   <tr>
-     <td>
-      <img src="/images/icons/document.txt.gif" width=16 height=16 
-	alt="document icon">
-        <b><?php echo _("GnuCash");?></b>
-     </td>
-     <td>
-<p><?php echo _("The GnuCash module (<code>src/gnome</code> and other directories) is the main GUI application. It consists of a collection of miscellaneous GUI code to glue together all of the pieces above into a coherent, point-and-click whole. It is meant to be easy to use and intuitive to the novice user without sacrificing the power and flexibility that a professional might expect. When people say that GnuCash is trying to be a &quot;Quicken or MS Money look/work/act-alike&quot;, this is the piece that they are referring to. It really is meant to be a personal-finance manager with enough power for the power user and the ease of use for the beginner.");?></p>
-<p><?php echo _("Currently, the Gnome interface is the only operational interface. An obsolete Motif interface can be fished out of historical CVS; but this interface has been deleted in the current CVS.");?></p>
-   </td>
-   </tr>
-   </table>
-</div>
-
-</div>
-
-<?php include($toppath."/externals/en/footer.phtml"); ?>

Deleted: htdocs/trunk/www/articles.phtml
===================================================================
--- htdocs/trunk/www/articles.phtml	2006-02-11 18:37:58 UTC (rev 13208)
+++ htdocs/trunk/www/articles.phtml	2006-02-11 18:41:24 UTC (rev 13209)
@@ -1,344 +0,0 @@
-<?php $title = "GnuCash in the News"; ?>
-<?php
-include("../emulate_globals_on.php");
-include($toppath."/externals/en/header.phtml");
-include($toppath."/en/menu/menu-main-other.phtml");
-?>
-
-<div id="content">
-
-<p><b>GnuCash in the News!</b>
-</p><p>
-A collection of press clippings from around the world.
-</p>
-
-<dl>
-      <dt>
-      <b><a href="http://newsforge.com/newsforge/03/08/22/151254.shtml?tid=11">What's new in GnuCash</a></b> (<a href="/press-archive/newsforge-2003-08/151254.html">archival copy</a>) (newsforge.com, 22 Aug 2003)
-      </dt>
-      <dd>
-      - by Joe Barr -
-       It's been almost a year since I first wrote about GnuCash, the open source alternative to Quicken, the perennial best-selling/most popular proprietary application for personal finances.
-      <br><br>
-      </dd>
-      <dt>
-      <b><a href="http://www.golem.de/0302/23786.html">GnuCash-Finanzverwaltung für Linux unterstützt HBCI</a></b> (<a href="/press-archive/golem.de-2003-02/23786.html">archival copy</a>) (golem.de, 3 Feb 2003) 
-      </dt>
-      <dd>
-      Das GnuCash-Entwicklerteam hat jetzt die Version 1.8 von GnuCash veröffentlicht, einer Open-Source-Finanzverwaltung für Linux/Unix, die sich an Privatanwender und Kleinbetriebe richtet. In der neuen stabilen Version wird erstmals das Online-Banking über HBCI unterstützt. 
-      <br><br>
-      </dd>
-      <dt><b><a href="http://www.linux-community.de/Neues/story?storyid=6378">GnuCash 1.8.0 jetzt mit HBCI-Unterstützung </a></b> 
-      (<a href="/press-archive/linux-community.de-2003-02/story.storyid-6378.html">archival copy</a>) (Linux Community, 3 Feb 2003)
-      </dt>
-      <dd>
-      Das GnuCash Entwicklerteam meldet die Veröffentlichung von GnuCash 1.8.0, der OpenSource-Finanzverwaltung für Linux/Unix. 
-
-      "Wozu braucht man jetzt noch Windows? Online-Banking mit HBCI und die private Kontoverwaltung ist nun vollständig auf Linux möglich," meint Christian Stimming vom Entwicklerteam. 
-      <br><br>
-      </dd>
-      <dt>
-      <b>
-      <a href="http://heise.de/newsticker/data/anw-09.12.02-006/">HBCI-Bibliothek für Linux/Unix</a> </b>(<a href="/press-archive/heise.de-2002-12/index.html">archival copy</a>) (heise online, 9 Dec 2002)
-      </dt>
-      <dd>
-      Das OpenHBCI-Entwicklerteam stellt die nach eigenen Angaben erste freie OpenSource-Implementierung des Homebanking-Standards HBCI (Home Banking Computer Interface) für Linux/Unix
-      <br><br>
-      </dd>
-      <dt>
-      <b>
-      <a href="http://www.pro-linux.de/news/2002/4975.html">GnuCash mit HBCI-Unterstützung erschiene</a></b>
-
-      (<a href="/press-archive/pro-linux-2002-12/4975.html">archival copy</a>)
-      (Pro-Linux, 2 Dec 2002)
-      </dt>
-      <dd>
-      Das »GnuCash«-Entwickler-Team kündigte heute die Verfügbarkeit von GnuCash 1.7.4 mit HBCI-Unterstützung (Home Banking Computer Information) an.
-      <br><br>
-      </dd>
-      <dt>
-      <b>
-      <a href="http://www.linuxworld.com/go.cgi?id=740992">Balancing your books? GnuCash is the answer</a></b>
-
-      (<a href="/press-archive/linuxworld-2002-09/0916.gnucash.html">archival copy</a>)
-      (Linux World, 16 Sept 2002)
-      </dt>
-      <dd>Joe Barr walks us through his experience with GnuCash personal-accounting software. His conclusion? GnuCash is good enough to trust with his miniature donkey farm?s bookkeeping. (1,200 words) 
-      <br><br>
-      </dd>
-      <dt>
-      <b>
-      <a href="http://www.linuxjournal.com/article.php?sid=5669&amp;mode=thread&amp;order=0">
-      Keep Track of Your Money</a></b>
-      (<a href="/press-archive/linuxjournal-2002-06/article.php?sid=6559">archival copy</a>)
-      (Linux Journal, 8 June 2002)
-      </dt>
-      <dd>Recently, I took the big step: I became a freelancer. It's great, 
-      but even after a short while, I began to realize that there were some 
-      changes in my behavior concerning finances and spending money. So I 
-      thought decided to start keeping track of my personal accounts, 
-      especially with having more time to go shopping. I never thought 
-      I would do this, but now I do, and I'm feeling more secure knowing 
-      exactly how I spend my income.      
-      <br><br>
-      </dd>
-										    
-      <dt>
-      <b><a href="http://www.lwn.net/2001/0621/">
-      GnuCash and library dependencies, again</a></b>
-      (<a href="/press-archive/lwn.net-2001-0621/index.html">archival copy</a>)
-      (LWN.net, June 21 2001)
-      </dt>
-      <dd> 
-      Last week's item about the GnuCash 1.6 release and its many 
-      library dependencies drew more than the usual amount of mail, 
-      including this response from the GnuCash project itself. We 
-      seem to have hit a bit of a nerve there. So this week we'll 
-      follow up with two more articles; this one looks at the 
-      library dependency issue again, and the following one is a
-      quick review of the 1.6 release itself. 
-      <br><br>
-      </dd>
-      
-      <dt>
-      <b><a href="http://www.lwn.net/2001/0614/">
-      gnucash 1.6 and the dependency nightmare</a></b>
-      (<a href="/press-archive/lwn.net-2001-0614/index.html">archival copy</a>)
-      (LWN.net, June 14 2001)
-      </dt>
-      <dd> The release of gnucash 1.6 was announced on June 11. 
-      gnucash is an important application - it is the only free 
-      package which provides comprehensive personal and business 
-      finance functionality. Your editor has been using it for 
-      over a year, and has been anxiously waiting for it to catch
-      up to what the commercial finance packages can do. 
-      <br><br>
-      </dd>
-      
-      <dt>
-      <b>Gerer ses comptes personnels</b>
-      (archive: <a href="/press-archive/maximum-linux-2000-12/p1.jpg">page 1</a>,
-      <a href="/press-archive/maximum-linux-2000-12/p2.jpg">page 2</a>,
-      <a href="/press-archive/maximum-linux-2000-12/p3.jpg">page 3</a>,
-      <a href="/press-archive/maximum-linux-2000-12/p4.jpg">page 4</a>)
-      
-      (MaximumLinux France, December 2000)
-      </dt>
-      <dd>
-      L'ordinateur prend une place de plus en plus importante 
-      dans les foyers, notamment en ce qui concrne la gestion 
-      des finances personnelles. Petit tour d'horizon des 
-      differents logiciels pour vous aider a faire le bon choix.
-      <br><br>
-      [editors note: gnucash-1.4.8 gets five stars from this French magazine!]
-      <br><br>
-      </dd>
-      
-      <dt>
-      <b><a href="http://www.linuxgram.com/newsitem.phtml?sid=109&amp;aid=10365">
-      Guns along the Gnome</a></b>
-      (<a href="/press-archive/linuxgram-2000-12/newsitem.html">archival copy</a>)
-      (Linuxgram, December 2000)
-      </dt>
-      <dd>
-      Guns along the Gnome: It Ain't Paranoia If They're Really Out To Get You
-      Nautilus (Eazel) = MS Explorer File Manager 
-      <br><br>
-      </dd>
-      
-      <dt>
-      <b><a href="http://www.linuxorbit.com/features/newbie10.php3">
-      The Newbie test drives GnuCash</a></b>
-      (<a href="/press-archive/linuxorbit-2000-12/features-newbie10.php3.html">archival copy</a>)
-      (Linux Orbit, December 2000)
-      </dt>
-      <dd>
-      I'd been looking around for something that might interest a 
-      Linux neophyte like myself and with a little coaching from 
-      the head honcho at Linux Orbit, I decided to try out GnuCash 
-      and give you the newbie perspective. Although I've always 
-      used spreadsheets to keep track of finances, I figured, what 
-      the heck.
-      <br><br>
-      </dd>
-      
-      <dt>
-      <b><a href="http://www.linuxnews.com/stories.php?story=526">
-      What's New with GnuCash</a></b>
-      (<a href="/press-archive/linuxnews-2000-10/stories.html">archival copy</a>)
-      (LinuxNews, October 2000)
-      </dt>
-      <dd>GnuCash, the open source accounting and finance system, is 
-      gearing up to become the premier accounting package on Linux--and 
-      is rapidly finding the means to do it. 
-      Rob Browning, one of GnuCash's developers, explained that the 
-      project has been expanding of late. "Right now we have four 
-      full-time developers, and we're about to hire a few more," he said,
-      attributing the growth of the staff--and the project--to financial 
-      backing from Gnumatic Incorporated, announced August 14, 2000. 
-      <br><br>
-      </dd>
-
-      <dt>
-      <b>
-      <a href="http://slashdot.org/articles/00/06/19/1721237.shtml">
-      Gnucash v1.4.0 Released</a></b>
-      (<a href="/press-archive/slashdot-2000-06/slashdot.org.articles.00.06.19.1721237.html">archival copy</a>)
-      (Slashdot, June 2000)
-      </dt>
-      <dd>
-      Ur at eus writes: "The Gnucash team has released the
-      1.4.0 version of their wonderful Quicken-like personal
-      finance manager. This is the first stable release since the move from
-      Motif to GNOME. You find Gnucash 1.4.0 at Gnucash.org" This plugs
-      a major gaping hole in Linux software: I've been using gnucash for a
-      year now, and it's made great leaps in terms of features and stability. It
-      isn't quicken, but its close enough for most of us. If you're having
-      problems with the main link, try this mirror. 
-      <br><br>
-      </dd>
-
-      <dt>
-      <b><a href="http://linux.davecentral.com/bol_20000612.html">
-      Best of Linux Winner</a></b>
-      (<a href="/press-archive/davecentral-2000-06/bol_20000612.html">archival copy</a>)
-      (Dave Central, June 2000)
-      </dt>
-      <dd>
-      Computer finance management: it isn't just
-      for Quicken anymore. In my continuing effort
-      to move my checkbook balancing routine from
-      disorganized receipts to clean Linux
-      automation, I've enlisted the help of GnuCash.
-      If this program can put my scattered financial
-      house in order, imagine what it can do for an
-      organized individual like you.
-      <br><br>
-      </dd>
-      
-      <dt>
-      <b><a href="http://www.lwn.net/2000/0504/devel.phtml">
-      Another look at gnucash</a></b>
-      (<a href="/press-archive/lwn.net-2000-0504/devel.html">archival copy</a>)
-      (LWN.net, May 2000)
-      </dt>
-      <dd>
-      Last December we ran a review of gnucash that concluded 
-      that the program - a free personal and small business finance 
-      package - was not quite ready for prime time.  Inspired by 
-      meeting the developers at the Linux Business Expo, LWN took 
-      another look at gnucash. Conclusion: it has come a long way.  
-      Your editor is pleased to announce a complete transition to 
-      gnucash, thus getting rid of the last Windows application on 
-      his system. Time to reclaim that partition. 
-      <br><br>
-      </dd>
-      
-      <dt>
-      <b><a href="http://www.linuxworld.com/linuxworld/lw-2000-04/f_lw-04-vcontrol_4.html">
-      There's no accounting for Linux</a></b>
-      (<a href="/press-archive/linuxworld-2000-04/f_lw-04-vcontrol_4.html">archival copy</a>)
-      (LinuxWorld, April 2000)
-      </dt>
-      <dd>
-      Is Linux getting mainstream? Not if you base your conclusion 
-      on the search results I just got at Freshmeat when I entered 
-      "accounting" as my search term. I got geek soup: packet accounting, 
-      multirouting traffic accounting, ISDN monitoring, network traffic 
-      accounting meter, and, at the top of the list, a patch for the net 
-      accounting daemon. 
-      <br><br>
-      </dd>
- 
-      <dt>
-      <b><a href="http://www.linuxmall.com/news/?1,2">
-      The GNUCash Project: Focusing on Money Management for Linux</a></b>
-      (<a href="/press-archive/linuxmall/linuxmall.com,news,1,2,index.html">archival copy</a>) 
-      (LinuxMall, March 2000)
-      </dt>
-      <dd>
-      Five years ago, Linas Vepstas was working "with a .com. We were with 
-      it, we were hip, we knew which side of our bread was buttered, we 
-      were building this web site with NT... back then, NT was the once 
-      and future king. It was crazy to bet against Microsoft." Then he
-      discovered Linux--and launched the GNUCash Project, aimed at 
-      developing stable, easy-to-use, flexible financial accounting 
-      software for GNU/Linux. 
-      <br><br>
-      </dd>
-
-      <dt>
-      <b><a href="http://slashdot.org/articles/00/02/28/0945240.shtml">
-      Gnucash 1.3.0 Beta Released</a></b> 
-      (<a href="/press-archive/slashdot-2000-02/slashdot.org.articles.00.02.28.0945240.html">archival copy</a>)
-      (Slashdot, February 2000)
-      </dt>
-      <dd>
-      Jeremy Collins wrote in to tell us that Gnucash 1.3.0 Beta
-      is out. We keep the software release announcements to a
-      minimum and let more appropriate sites handle them,
-      but this is pretty significant. Gnucash is the best quickenesque program
-      under Linux today, and as we all know: it's those pesky end user apps
-      that we lag behind other OSs. We've already got several word
-      processors, spreadheets and image manipulation coming along nicely,
-      but seeing development happen in the financial package area (also
-      games and video) is important. Anyway, I'd suggest checking this one
-      out: I've been using it since xacc and it's good if you're anal. Check out
-      the ftp.gnucash.org and report bugs if you see 'em. 
-      <br><br>
-      </dd>
-      
-      <dt>
-      <b><a href="http://lwn.net/1999/features/GnuCash/">
-      A look at GnuCash 1.2.5</a></b>
-      (<a href="/press-archive/lwn.net-1999-features/lwn.net,1999,features,GnuCash,index.html">archival copy</a>)
-      (LWN.net, December 1999)
-      </dt>
-      <dd>
-      Here is an unpleasant confession for an LWN author to make: 
-      I actually still use Windows.  I boot it to run exactly one 
-      program - an old, proprietary personal finance application. 
-      It's the only thing I have ever found useful on Windows. 
-      Occasionally I look around for a free replacement so that 
-      I can recover that one last, small partition on my disk. 
-      This article is the result of my latest attempt - driven, 
-      additionally, by the sinking feeling that my current 
-      application probably won't handle the next century very well...
-      <br><br>
-      </dd>
-
-      <dt>
-      <b><a href="http://www2.linuxjournal.com/articles/currents/008.html">
-      Dispelling the Great "There Aren't Any Applications" Myth</a></b>
-      (<a href="/press-archive/linuxjournal-1999-09/www2.linuxjournal.com,articles,currents,008.html">archival copy</a>)
-      (Linux Journal, September 1999)
-      </dt>
-      <dd>
-      Windows users say, "I'd love to run Linux, but the applications 
-      just aren't there." Prove them wrong!  I'm sure you've heard the 
-      following from your Windows-using friends: "According to what 
-      I've been reading, Linux software is all server stuff and there 
-      just aren't enough easy-to-use applications for desktop use." 
-      So they keep using Windows. 
-      <br><br>
-      </dd>
-
-      <dt>
-      <b><a href="http://www.32bitsonline.com/article.php3?file=issues/199902/lj-19990208&amp;page=1">Personal Finance Software</a></b>
-      (<a href="/press-archive/32bitsonline-1999-02/lj-19990208.html">archival copy</a>)
-      (32BitsOnline.com February 1999)
-      </dt>
-      <dd>
-      Availability of specialized applications is one of the weaknesses of Linux
-      compared to its operating system counterparts. In the realm of personal
-      finance, none of the well-known software packages are available for Linux.
-      Hopefully, Intuit will port their popular Quicken and QuickBooks line of
-      products to the Linux platform someday. Until then, here are a few personal
-      finance applications to get you balancing your checkbooks in the Linux
-      environment.
-      <br><br>
-      </dd>
-      </dl>
-
-</div>
-<?php include($toppath."/externals/en/footer.phtml"); ?>

Deleted: htdocs/trunk/www/bugs.phtml
===================================================================
--- htdocs/trunk/www/bugs.phtml	2006-02-11 18:37:58 UTC (rev 13208)
+++ htdocs/trunk/www/bugs.phtml	2006-02-11 18:41:24 UTC (rev 13209)
@@ -1,43 +0,0 @@
-<?php $title = _("GnuCash Bug Reports");
-include("../emulate_globals_on.php");
-include($toppath."/externals/en/header.phtml");
-include($toppath."/externals/en/menu-main-help.phtml");
-?>
-
-<div id="content">
-<h1><?php echo _("GnuCash Bugs at GNOME Bugzilla");?></h1>
-
-<p><?php echo _("The GnuCash bug reporting system is now hosted by GNOME bugzilla. This gives the GnuCash project the ability to receive bug reports generated by Bug Buddy as well as take advantage of the GNOME bug team in their overall administration of GNOME bugs.");?>
-</p>
-<p><?php 
-echo _("If you wish to use the GNOME bug system to report a GnuCash bug, please go to");?>
-<a href="http://bugzilla.gnome.org">bugzilla.gnome.org</a> 
-<?php echo _(" and use the forms there to enter your report.");?><br>
-</p>
-
-<div>
-<ul>
-<li><p>
-    <a href="http://bugzilla.gnome.org/buglist.cgi?product=GnuCash&amp;bug_status=UNCONFIRMED&amp;bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=NEEDINFO&amp;bug_status=REOPENED&amp;chfieldto=Now&amp;cmdtype=doit&amp;namedcmd=nautilus-backgrounds&amp;order=Reuse+same+sort+as+last+time&amp;form_name=query"><?php
-echo _("Click here")?></a>
-<?php echo _(" to see the list of bugs that have been reported but haven't yet been fixed.");
-?>
-   </p>
-   <p><?php
-echo _("(Yes, there are a lot of these. We need help from someone to weed out the ones that can't be reproduced, that don't have enough info in them to do anything with, and those that are duplicates of one another. You don't need to be a programmer to help with the above tasks. Finally, we do need programmers to help start fixing some of these. Please volunteer your time!)"); ?>
-   </p>
-   </li>
-      
-<li><p>
-<a href="http://bugzilla.gnome.org/buglist.cgi?product=GnuCash"><?php echo _("Click here");
-?></a> 
-   <?php 
-echo _("to see a complete list of all GnuCash bug reports (including old, fixed bugs)");
-?>
-</p></li>
-</ul>
-</div>
-
-</div>
-
-<?php include($toppath."/externals/en/footer.phtml"); ?>

Deleted: htdocs/trunk/www/contribute.phtml
===================================================================
--- htdocs/trunk/www/contribute.phtml	2006-02-11 18:37:58 UTC (rev 13208)
+++ htdocs/trunk/www/contribute.phtml	2006-02-11 18:41:24 UTC (rev 13209)
@@ -1,67 +0,0 @@
-<?php 
-$title = "Contribute";
-include("../emulate_globals_on.php");
-include($toppath."/externals/en/header.phtml");
-include($toppath."/en/menu/menu-main-general.phtml");
-?>
-
-<div id="content">
-
-<h1>How to Contribute</h1>
-
-<p>
-<div><p>
-GnuCash is an Free Software development project that depends
-on volunteer efforts for its survival and growth.  We need
-your help to foster the community, promote the project,
-write the documentation and the source code, and translate
-it into dozens of languages.  The dynamics of participating
-in the GnuCash community are much like that for other projects:
-What you contribute depends one your skill and motivation,
-the time you have available, and how much you enjoy doing it.
-The GnuCash Project is looking for promoters, writers, artists,
-beta-testers, programmers,  accountants, financial advisors,
-question-answerers, translators and all-around nice people.
-And, if you'd like to make a cash donation, please visit our
-<a href="donations.phtml">donations webpage</a>.</p>
-</div>
-
-<p>
-
-<div>
-<p>
-<b>Select your talent to see where you might fit in:</b>
-</p>
-<form method="get" action="contribute.phtml">
-<div>
-<select name="contribute">
-  <option value="programmer"
-   <?php if ($contribute == "programmer") { echo ("selected"); } ?>
-  >I am a programmer</option>
-  <option value="translator"
-   <?php if ($contribute == "translator") { echo ("selected"); } ?>
-  >I am a translator</option>
-  <option value="fan"
-   <?php if ($contribute == "fan") { echo ("selected"); } ?>
-  >I am a fan</option>
-  <option value="webmaster"
-   <?php if ($contribute == "webmaster") { echo ("selected"); } ?>
-  >I am a webmaster</option>
-  <option value="writer"
-   <?php if ($contribute == "writer") { echo ("selected"); } ?>
-  >I am a writer</option>
-</select>
-<input type="submit" value="Go">
-</div>
-</form>
-</div>
-
-<hr>
-<?php
-  if ($contribute != "") {
-		include("contribute/contribute-".$contribute.".phtml");
-  }
-?>
-
-</div>
-<?php include($toppath."/externals/en/footer.phtml"); ?>

Deleted: htdocs/trunk/www/hacking.phtml
===================================================================
--- htdocs/trunk/www/hacking.phtml	2006-02-11 18:37:58 UTC (rev 13208)
+++ htdocs/trunk/www/hacking.phtml	2006-02-11 18:41:24 UTC (rev 13209)
@@ -1,209 +0,0 @@
-<?php 
-$title = "Hacking";
-include("../emulate_globals_on.php");
-include($toppath."/externals/en/header.phtml");
-include($toppath."/en/menu/menu-main-developer.phtml");
-?>
-
-</div>
-<div id="content">
-
-<h1>Hacking GnuCash</h1>
-
-<p>There are a number of steps to go through to hack on gnucash. 
-You will need to install development (<tt>*-devel-*</tt>) 
-versions of the packages 
-listed on the <a href="/en/required.phtml">tools page</a>.  The latest
-development versions of gnucash may depend on bleeding edge 
-versions of some gnome tools (e.g. <tt>gnome-print</tt>).  You may also 
-need to get unusual or special versions of g-wrap and guppi.
-</p>
-<p><b>Getting the most recent sources via SVN:</b></p>
-<p>
-   The latest source code is maintained in a publically readable 
-   SVN source code repository.  Accessing it is simple,
-   and if you plan to be an active developer, there is
-   no better way of getting the source.  The SVN tree
-   is not publically writable; once you have patches, 
-   you should submit them to the 
-   <a href=/en/lists.phtml>gnucash-patches at gnucash.org</a>
-   mailing list.  Documentation changes can be sent to the
-   same place.</p>
-<p>
-<b>Update for SVN!</b>
-<!--
-If you are new to CVS, you may want to take a moment
-and visit the <a href="http://www.cvshome.org/">
-Concurrent Versions System Home Page</a>, and in particular,
-the <a href="http://www.cvshome.org/docs/">documentation page</a>.
-CVS allows multiple users to modify the source code for GnuCash,
-each without stepping on the toes (and changes) made by others.
-If CVS seems at first overwhelming, don't let it be so:
-its quite easy to learn and use.
--->
-</p>
-<p>
-   To access the CVS tree, first, login, as so: 
-</p>
-
-
-<table bgcolor="#000000" cellpadding=10><tr><td>
-<font color="#aaaaaa">
-cvs -d :pserver:cvs at cvs.gnucash.org:/home/cvs/cvsroot login
-</font>
-</td>
-</tr>
-</table>
-
-<p>
-The password is &quot;guest&quot; ; after entering the password,
-you will be immediately returned to the command prompt.  You
-can now use other CVS commands to view the source.
-
-To get a copy of the latest/beta development version 
-(which is currently version 1.9.x), do a 
-</p>
-
-<table bgcolor="#000000" cellpadding=10><tr><td>
-<font color="#aaaaaa">
-cvs -d :pserver:cvs at cvs.gnucash.org:/home/cvs/cvsroot checkout gnucash 
-</font>
-</td>
-</tr>
-</table>
-
-<br>
-<b>Building GnuCash:</b><br>
-<br>
-A complete set of instructions for building GnuCash from source can be
-found in the 
-<a href="https://cvs.gnucash.org/cgi-bin/cvsweb.cgi/gnucash/README"><tt>README</tt></a>
-file in the top-level directory.  For the 
-impatient, the following instructions might help:
-<p>
-Start with a distributed binary version of GnuCash, in order to get 
-dependencies resolved.  GnuCash does not currently support GNOME2.
-
-<ol>
-<li>Try to install the gnucash binary from your distribution.  For
-    example, <tt>gnucash-1.6.6-7.i386.rpm</tt>
-<li>Note the missing dependencies.
-<li>Install those dependencies and associated -devel packages (if any).
-<li>Go to step 1.
-<li>Once you get GnuCash installed, remove it. :-)
-<li>Download the source for the latest gnucash development version from
-    CVS.  All dependecies except for <tt>g-wrap</tt> are the same in 
-    GnuCash 1.6.x and 1.8.x
-<li>Remove g-wrap, if necessary.
-<li>Download </tt>g-wrap-1.3.4</tt> from 
-    <a href="http://www.gnucash.org/pub/g-wrap/">http://www.gnucash.org/pub/g-wrap/</a>
-<li>Build g-wrap and gnucash
-<li>Install additional </tt>-devel</tt> packages when configure complains
-</ol>
-</p>
-<p>
-If any of these steps don't make sense to you, you probably need more
-background material.  Start with the 
-<a href="https://cvs.gnucash.org/cgi-bin/cvsweb.cgi/gnucash/README"><tt>README</tt></a>
-file in the source tree.
-Note that the GnuCash source code is 
-<a href="https://cvs.gnucash.org/cgi-bin/cvsweb.cgi/"> browsable via CVSweb.</a>
-However, you may find browsing with <tt>ctags</tt> in your own file system
-to be a bit speedier.
-</p>
-
-<br>
-<b>Getting Older Versions of GnuCash out of CVS:</b><br>
-<p>
-Older versions and branches can be accessed with tags. 
-The branch containing the latest version of the stable 
-gnucash-1.8.x code is marked 
-with the tag <tt>gnucash-1-8-branch</tt> . Thus, to check out the
-latest in the the gnucash-1.8.x series, do the following:
-</p>
-
-<table bgcolor="#000000" cellpadding=10><tr><td>
-<font color="#aaaaaa">
-cvs -d :pserver:cvs at cvs.gnucash.org:/home/cvs/cvsroot checkout -r gnucash-1-8-branch gnucash
-</font>
-</td>
-</tr>
-</table>
-
-
-<p>
-Released versions are tagged with the number of the release. Thus,
-the tag <tt>gnucash-1-8-0</tt> will get you a copy of the source
-as it was for version 1.8.0.  If you are a developer, you should 
-probably be working either in the head branch (<tt>HEAD</tt>) 
-on the latest beta/development code, or in the 
-<tt>gnucash-1-8-branch</tt>, squashing any remaining bugs in the 
-current stable version.
-</p>
-<p>
-Other tags of (mostly historical) interest are:
-<dl><dd>
-<dl>
-<dt><b>xacc-09a</b>
-<dd>Robin Clark's original source from October 1997.  For history 
-    buffs only: the source has been completely re-written since then.
-<dt><b>xacc-10b17</b>
-<dd>version 1.0.17 (one of the last stable version of xacc, before 
-    the name was changed to gnucash).
-<dt><b>xacc-10-patch</b>
-<dd>the tip of the branch of the stable version 1.0.x series.
-<dt><b>xacc-11b6</b>
-<dd>version 1.1.6 (an unstable, development version of gnucash)
-<dt><b>xacc-12-patch</b>
-<dd>the tip of the 1.2 branch. This is the last branch containing
-    motif code.  Later versions were re-written in gtk/gnome.
-<dt><b>patch-124</b>
-<dd>version 1.2.4, one of the last in the 1.2.x series.
-<dt><b>gnucash-1-4-branch</b>
-<dd>the tip of the 1.4.x branch, the first gtk/gnome stable branch.
-<dt><b>gnucash-1-6-branch</b>
-<dd>the tip of the 1.6.x branch, the previous stable branch.
-<dt><b>gnucash-1-8-branch</b>
-<dd>the tip of the 1.8.x branch, the current stable branch.
-<dt><b>gnucash-gnome2-dev</b>
-<dd>the tip of the GNOME2 branch(currently very unstable) which will be the first GNOME2 version of GnuCash.
-</dl>
-</dl>
-
-<p>
-In order to speed up the performance of CVS, some of the older tags
-(stuff older than mid-year 2000, mostly; and some newer stuff) and
-branches have been removed from the mainline CVS tree. To those who
-are interested in doing historical mining of the CVS tree as it used
-to be, you can supply an older branch tag to the following repository:
-<br><br>
-<table bgcolor="#000000" cellpadding=10><tr><td>
-<font color="#aaaaaa">
-cvs -d :pserver:cvs at cvs.gnucash.org:/home/cvs/cvsroot checkout -r &lt;some-tag&gt; gnucash-archive
-</font>
-</td>
-</tr>
-</table>
-</p>
-
-<p>
-<b>Getting the most recent sources via FTP:</b></p>
-<p>
-If you don't like to bother with CVS you can download recent 
-snapshots of the CVS tree from one of the FTP sites below.
-Note, however, that if you wish to contribute patches and updates
-to GnuCash, it is strongly recommended that you learn and use CVS.
-We encourage this because the snapshots can sometimes get a bit 
-dated, and you just might be fixing a bug that's already fixed.
-</p>
-<p>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-<a href="http://www.linas.org/pub/gnucash/gnucash/sources/">http://www.linas.org/pub/gnucash/gnucash/sources/</a>
-</p> 
-<p>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-<a href="http://www.gnucash.org/pub/gnucash/sources/">http://www.gnucash.org/pub/gnucash/sources/</a>
-</p>
-
-
-<?php include($toppath."/externals/en/footer.phtml"); ?>

Deleted: htdocs/trunk/www/history.phtml
===================================================================
--- htdocs/trunk/www/history.phtml	2006-02-11 18:37:58 UTC (rev 13208)
+++ htdocs/trunk/www/history.phtml	2006-02-11 18:41:24 UTC (rev 13209)
@@ -1,338 +0,0 @@
-<?php 
-$title = "History"; 
-include("../emulate_globals_on.php");
-include($toppath."/externals/en/header.phtml");
-include($toppath."/en/menu/menu-main-other.phtml");
-?>
-
-<div id="content">
-
-<p><b>History & Credits</b></p>
-
-<p>  Whose blood, sweat and tears is this anyway?</p>
-
-<h3>Lead Developers</h3>
-<HR>
-(In Historical Order)
-<br><br>
-
-
-<dl>
-  <dt>
-  <b>Robin Clark</b>
-  </dt>
-  <dd>
-<div class="history">
-    wrote the original 
-    <a href="http://www.cs.hmc.edu/~rclark/xacc/">X-Accountant</a>
-    (<a href="http://www.gnucash.org/mirrors/www.cs.hmc.edu/~rclark/xacc/">mirror</a>)
-    in Motif as a school project, 
-    taking it to version 0.9 by October 1997.  Although every single 
-    line of his code has been re-written, his name appears as a 
-    credit in almost every file.  Such is the magic of copyrights.
-</div>
-
-  </dd>
-
-  <dt>
-  <b>Linas Vepstas</b> (<a href="/images/people/linas-at-kims.jpg">photo</a>)
-  </dt>
-  <dd>
-<div class="history">
-    liked what he saw: the GUI was slick, the code was documented and 
-    well structured, and it was all GPL'ed. And so he re-wrote it: 
-    adding cell-widgets to XbaeMatrix, so that the combobox and arrows 
-    would make an even slicker GUI, rewrote the X-Accountant internals 
-    to add double-entry, an account hierarchy, split out a transaction 
-    mini-engine, added support for stocks, and spiffed up the help
-    menus. This was version 1.0 as of January 1998. For version 1.1 &amp;
-    1.2, the engine was expanded and refined, and the register window 
-    code completely redesigned and made mostly Motif-(and GUI-)independent.
-    Linas is now active with Gnumatic Incorporated, a company formed to 
-    enhance and support GnuCash for everyone, from home desktop users 
-    to commercial and professional accountants.
-</div>
-  </dd>
-
-
-  <dt>
-  <b>Jeremy Collins</b> 
-  </dt>
-  <dd>
-<div class="history">
-    publicized the GnoMoney project widely and broadly, and then 
-    changed its name to GnuCash.   (Actually, put the selection 
-    of the name up to popular vote.  Democracy is <b>not</b>
-    a good way to pick names.) 
-    Jeremy registered the domain name, and created and maintained 
-    the gnucash.org web site for years,
-    and got the initial GTK/gnome code working.  
-    The newest website design is Jeremy's as well.
-</div>
-  </dd>
-
-
-  <dt>
-  <b>Rob Browning</b> (<a href="/images/people/browning.srl.jpg">photo</a>)
-  </dt>
-  <dd>
-<div class="history">
-    abused everyone for not using Perl, and then after we added Perl support, 
-    dumped Perl in favor of Guile/Scheme support. Rob maintined the 
-    build infrastructure for a while, added user preferences, 
-    and re-wrote the reports in scheme. One of Rob's recent 
-    contributions is the change-over of the file-format to XML.
-    He is now concentrating on scheme performance.  He is the g-wrap
-    guile wrapper maintainer.
-    <br><Br>
-    Rob Browning hails from Dallas and is currently a refugee from
-    doctoral studies at UT's Computer Science department, where he 
-    specialized in robotics and computer vision. 
-    The photo shows him as a volunteer, putting up
-    the microwave link for SRL's exploding circus.
-</div>
-  </dd>
-
-
-  <dt>
-  <b>Yannick Le Ny</b>
-  </dt>
-  <dd>
-<div class="history">
-    Our French translator.
-    He has translated the menus, messages, README and the documentation to French.
-    He strung up the French translation to the GnuCash website, working hard 
-    to keep it up to date.
-    Patches for Yahoo Europe to get stocks quotes.
-</div>
-  </dd>
-
-
-  <dt>
-  <b>Dave Peticolas</b> (<a href="/images/people/peticolas.jpg">photo</a>)
-  </dt>
-  <dd>
-<div class="history">
-    hacks obsessively on GnuCash. But he can stop anytime he wants to. Really. 
-    (As he is now the gatekeeper of the GnuCash CVS tree, be nice to him,
-    or he may decide to stop hacking in the middle of your patch).
-</div>
-  </dd>
-
-
-  <dt>
-  <b>Bill Gribble</b>
-  </dt>
-  <dd>
-<div class="history">
-    is not shy, or softly spoken.  So don't be shy if you find a bug in 
-    his code: QIF import, query API and transaction search, check-printing,
-    commodity and currency support, gtkhtml integration and report printing,
-    pgp support, guppi integration, and the new main window layout.
-</div>
-  </dd>
-
-
-  <dt>
-  <b>Robert Graham Merkel</b>
-  </dt>
-  <dd>
-<div class="history">
-    Reporting, gnome, and config patches
-</div>
-  </dd>
-
-
-  <dt>
-  <b>James LewisMoss</b>
-  </dt>
-  <dd>
-<div class="history">
-    XML Refactoring.  Automated test suite.
-</div>
-  </dd>
-
-
-<dt><b>Carol Champagne</b></dt>
-<dd>
-<div class="history">
-First draft of the GnuCash User's Guide
-</div>
-</dd>
-
-
-  <dt>
-  <b>Christian Stimming</b> (<a href="/images/people/cstim2.jpg">photo</a>)
-  </dt>
-  <dd>
-<div class="history">
-    used to be the report-generating monster, when he
-    created most of the graphical reports and added multi-currency support
-    to the reports in general. Lately he implemented support of HBCI, the
-    German online banking system, and widely promotes GnuCash all around
-    Germany. Currently he is the internationalization guru, overseeing the
-    translation of gnucash into as many languages as there are translators
-    around.
-</div>
-  </dd>
-
-
-<dt><b>Derek Atkins</b> (<a href="/images/people/warlord8.tif">photo</a>) 
-    (<a href="/images/people/warlord.jpg">photo</a>) </dt>
-<dd>
-<div class="history">
-Warlord created the RPC backend for starters, and has been the 
-    lead developer of the small business features.
-</div>
-</dd>
-
-
-<dt><strong>Joshua Sled</strong> 
-    (<a href="/images/people/jsled-me-best.jpg">photo</a>)</dt>
-<dd>
-<div class="history">
-    jsled got really excited about adding budgeting support and a
-    financial-planning workbench into GnuCash, and realized how poor his
-    time-estimation skills were while adding Scheduled Transactions support
-    into GnuCash 1.8.0.  Currently in a high-time-commitment startup job,
-    he hopes to return to Budgeting in a FutureRelease, he hopes that enough
-    people will add scheduled transactions into their data files to be a good
-    initial data-set for budgeting/analysis when it's available.
-</div>
-</dd>
-
-
-<dt><b>Chris Lyttle</b> (<a href="/images/people/wilddev.jpg">photo</a>) </dt>
-<dd>
-<div class="history">
-wilddev
-</div></dd>
-
-
-<dt><b>David Hampton</b> (<a href="/images/people/hampton.jpg">photo</a>) </dt>
-<dd>
-<div class="history">
-
-</div>
-</dd>
-
-
-<dt><b>Benoit Gregoire</b></dt>
-<dd>
-<div class="history">
-    created libOFX, thereby enabling GnuCash to understand the
-    OFX (Open Financial Exchange) protocol and file format.
-</div>
-</dd>
-
-</dl>
-
-<BR>
-
-
-<h2>Fixers and Patchers</h2>
-<hr>
-(In Alphabetical Order)
-
-<dl>
-
-<dt><b>Andrew Arensburger</b> &lt;<i>arensb at cfar.umd.edu</i>&gt; </dt><dd> for FreeBSD &amp; other patches</dd>
-<dt><b>Matt Armstrong</b> &lt;<i>matt_armstrong at bigfoot.com</i>&gt; </dt><dd> for misc fixes</dd>
-<dt><b>Fred Baube</b> &lt;<i>fred at moremagic.com</i>&gt; </dt><dd> for attempted Java port/MoneyDance</dd>
-<dt><b>Dennis Björklund</b> &lt;<i>dennisb at cs.chalmers.se</i>&gt; </dt><dd> Swedish translation</dd>
-<dt><b>Per Bojsen</b> &lt;<i>bojsen at worldnet.att.net</i>&gt; </dt><dd> several core dump fixes</dd>
-<dt><b>Terry Boldt</b> &lt;<i>tboldt at attglobal.net</i>&gt; </dt><dd> financial calculator and expression parser</dd>
-<dt><b>Simon Britnell</b> &lt;<i>simon.britnell at peace.com</i>&gt; </dt><dd> patch to RPM spec</dd>
-<dt><b>Christopher B. Browne</b> &lt;<i>cbbrowne at hex.net</i>&gt; </dt><dd> for perl, lots of scheme and documentation</dd>
-<dt><b>Conrad Canterford</b> &lt;<i>conrad at mail.watersprite.com.au</i>&gt; </dt><dd> register bug fix</dd>
-<dt><b>Bill Carlson</b> &lt;<i>wwc at wwcnet.nu</i>&gt; </dt><dd> performance improvements</dd>
-<dt><b>Graham Chapman</b> &lt;<i>grahamc at zeta.org.au</i>&gt; </dt><dd> for the xacc-rpts addon package</dd>
-<dt><b>George Chen</b> &lt;<i>georgec at sco.com</i>&gt; </dt><dd> for MS-Money QIF's &amp; fixes</dd>
-<dt><b>Albert Chin-A-Young</b> &lt;<i>china at thewrittenword.com</i>&gt; </dt><dd> configure.in patch</dd>
-<dt><b>Kenneth Christiansen</b> &lt;<i>kenneth at gnome.org</i>&gt; </dt><dd> Danish translation</dd>
-<dt><b>Robin Clark</b> &lt;<i>Rob_Clark at alumni.hmc.edu</i>&gt; </dt><dd> Author of the Original X-Accountant</dd>
-<dt><b>Jeremey Collins</b> &lt;<i>jcollins at gnucash.org</i>&gt; </dt><dd> for GnoMoney &amp; GTK port</dd>
-<dt><b>Matthew Condell</b> &lt;<i>mcondell at bbn.com</i>&gt; </dt><dd> FreeBSD patch</dd>
-<dt><b>Patrick Condron</b> &lt;<i>pcondon at rackspace.com</i>&gt; </dt><dd> for webserver and T1 connection from rackspace.com</dd>
-<dt><b>Raphael Dechenaux</b> &lt;<i>raphael.dechenaux at worldonline.fr</i>&gt; </dt><dd> register patch</dd>
-<dt><b>Ciaran Deignan</b> &lt;<i>Ciaran.Deignan at bull.net</i>&gt; </dt><dd> for AIX binary version</dd>
-<dt><b>Glen Ditchfield</b> &lt;<i>gjditchfield at acm.org</i>&gt; </dt><dd> updated documentation</dd>
-<dt><b>Tyson Dowd</b> &lt;<i>tyson at tyse.net</i>&gt; </dt><dd> for config/make patches &amp; debian maint</dd>
-<dt><b>Koen D'Hondt</b> &lt;<i>ripley at xs4all.nl</i>&gt; </dt><dd> for Solaris patches to XmHTML</dd>
-<dt><b>Bob Drzyzgula</b> &lt;<i>bob at mostly.com</i>&gt; </dt><dd> for budgeting design notes</dd>
-<dt><b>Paul Fenwick</b> &lt;<i>pjf at schools.net.au</i>&gt; </dt><dd> ASX support, Finance::Quote</dd>
-<dt><b>Hubert Figuiere</b> &lt;<i>hfiguiere at teaser.fr</i>&gt; </dt><dd> patch to gnc-prices</dd>
-<dt><b>Valek Filippov</b> &lt;<i>frob at df.ru</i>&gt; </dt><dd> Russian translation</dd>
-<dt><b>Jan-Uwe Finck</b> &lt;<i>jufi at nerdnet.de</i>&gt; </dt><dd> for German message translation</dd>
-<dt><b>Kevin Finn</b> &lt;<i>kevinfinn at mediaone.net</i>&gt; </dt><dd> auto-decimal point patch, options patch</dd>
-<dt><b>Ron Forrester</b> &lt;<i>rjf at aracnet.com</i>&gt; </dt><dd> for gnome patches</dd>
-<dt><b>Dave Freese</b> &lt;<i>DFreese at osc.uscg.mil</i>&gt; </dt><dd> for leap-year fix</dd>
-<dt><b>John Goerzen</b> &lt;<i>jgoerzen at complete.org</i>&gt; </dt><dd> file i/o fix for 64-bit architectures</dd>
-<dt><b>Hans de Graaff</b> &lt;<i>hans at degraaff.org</i>&gt; </dt><dd> xml patches</dd>
-<dt><b>Bill Gribble</b> &lt;<i>grib at billgribble.com</i>&gt; </dt><dd> qif importation code</dd>
-<dt><b>Mitsuo Hamada</b> &lt;<i>mhamada at redhat.com</i>&gt; </dt><dd> Japanese translations</dd>
-<dt><b>Otto Hammersmith</b> &lt;<i>otto at bug.redhat.com</i>&gt; </dt><dd> for RedHat RPM version</dd>
-<dt><b>Eric Hanchrow</b> &lt;<i>offby1 at blarg.net</i>&gt; </dt><dd> updated currency documentation</dd>
-<dt><b>Alexandru Harsanyi</b> &lt;<i>haral at codec.ro</i>&gt; </dt><dd> for core dumps, lockups, gtk work</dd>
-<dt><b>John Hasler</b> &lt;<i>john at dhh.gt.org</i>&gt; </dt><dd> engine patch</dd>
-<dt><b>Jon Kåre Hellan</b> &lt;<i>hellan at acm.org</i>&gt; </dt><dd> misc core dump fixes</dd>
-<dt><b>Claus Hindsgaul</b> &lt;<i>claus_h at image.dk</i>&gt; </dt><dd> Danish translation</dd>
-<dt><b>Miquel Jordana Vilamitjana</b> &lt;<i>jjvmjv at mundomail.net</i>&gt; </dt><dd> Spanish translation of manual</dd>
-<dt><b>Prakash Kailasa</b> &lt;<i>PrakashK at bigfoot.com</i>&gt; </dt><dd> for gnome build fixes</dd>
-<dt><b>Alexey Kakunin</b> &lt;<i>small at arcadia.spb.ru</i>&gt; </dt><dd> quickfill patch for cyrillic</dd>
-<dt><b>Ben Kelly</b> &lt;<i>ben.kelly at ieee.org</i>&gt; </dt><dd> for motif menu bug fix, core dump fixes</dd>
-<dt><b>Tom Kludy</b> &lt;<i>tkludy at csd.sgi.com</i>&gt; </dt><dd> for SGI Irix port</dd>
-<dt><b>Sven Kuenzler</b> &lt;<i>sk at xgm.de</i>&gt; </dt><dd> for SuSE README file</dd>
-<dt><b>Bryan Larsen</b> &lt;<i>blarsen at ada-works.com</i>&gt; </dt><dd> guile budget report</dd>
-<dt><b>Graham Leggett</b> &lt;<i>minfrin at sharp.fm</i>&gt; </dt><dd> for fixing a hang</dd>
-<dt><b>Ted Lemon</b> &lt;<i>mellon at andare.fugue.com</i>&gt; </dt><dd> for NetBSD port</dd>
-<dt><b>Grant Likely</b> &lt;<i>glikely at nortelnetworks.com</i>&gt; </dt><dd> gnome and engine patches</dd>
-<dt><b>Duarte Loreto</b> &lt;<i>happyguy_pt at hotmail.com</i>&gt; </dt><dd> Portuguese translations</dd>
-<dt><b>Heath Martin</b> &lt;<i>martinh at pegasus.cc.ucf.edu</i>&gt; </dt><dd> gnome patches, major register work</dd>
-<dt><b>Matt Martin</b> &lt;<i>mgmartin at abacusnet.net</i>&gt; </dt><dd> guile error handling code</dd>
-<dt><b>Robert Graham Merkel</b> &lt;<i>rgmerk at mira.net</i>&gt; </dt><dd> reporting, gnome, and config patches</dd>
-<dt><b>Juan Manuel García Molina</b> &lt;<i>juanmagm at mail.com</i>&gt; </dt><dd> spanish translation</dd>
-<dt><b>Christopher Molnar</b> &lt;<i>molnarc at mandrakesoft.com</i>&gt; </dt><dd> build system patch</dd>
-<dt><b>Tim Mooney</b> &lt;<i>mooney at dogbert.cc.ndsu.NoDak.edu</i>&gt; </dt><dd> port to alpha-dec-osf4.0f</dd>
-<dt><b>G. Allen Morris III</b> &lt;<i>gam3 at ann.softgams.com</i>&gt; </dt><dd> for QIF core dump</dd>
-<dt><b>James LewisMoss</b> &lt;<i>dres at debian.org</i>&gt; </dt><dd> design doc patches, xml, test suite</dd>
-<dt><b>Steven Murdoch</b> &lt;<i>sjmurdoch at linuxfan.com</i>&gt; </dt><dd> gnc-prices fix for London exchange</dd>
-<dt><b>Brent Neal</b> &lt;<i>brent at baton.phys.lsu.edu</i>&gt; </dt><dd> TIAA-CREF support.</dd>
-<dt><b>Johnny Ernst Nielsen</b> &lt;<i>j.e.nielsen at iname.com</i>&gt; </dt><dd> Danish translation</dd>
-<dt><b>Stefan Nobis</b> &lt;<i>stefan-ml at snobis.de</i>&gt; </dt><dd> German translation patch</dd>
-<dt><b>Peter Norton</b> &lt;<i>spacey at inch.com</i>&gt; </dt><dd> for a valiant attempt at a GTK port</dd>
-<dt><b>OmNiBuS</b> &lt;<i>webmaster at obsidian.uia.net</i>&gt; </dt><dd> web site graphics &amp; content</dd>
-<dt><b>Gordon Oliver</b> &lt;<i>gordo at pincoya.com</i>&gt; </dt><dd> multiple currency status line patch</dd>
-<dt><b>Myroslav Opyr</b> &lt;<i>mopyr at IPM.Lviv.UA</i>&gt; </dt><dd> for misc patches</dd>
-<dt><b>Dave Peticolas</b> &lt;<i>dave at krondo.com</i>&gt; </dt><dd> extensive intelligent patches</dd>
-<dt><b>Laurent P'elecq</b> &lt;<i>laurent.pelecq at wanadoo.fr</i>&gt; </dt><dd> i18n patches with gettext</dd>
-<dt><b>Alain Peyrat</b> &lt;<i>Alain.Peyrat at nmu.alcatel.fr</i>&gt; </dt><dd> for configure.in patches</dd>
-<dt><b>Peter Pointner</b> &lt;<i>peter at wuzel.m.isar.de</i>&gt; </dt><dd> QIF import fixes, Qt patches</dd>
-<dt><b>Gavin Porter</b> &lt;<i>maufk at csv.warwick.ac.uk</i>&gt; </dt><dd> for euro style dates</dd>
-<dt><b>Tomas Pospisek</b> &lt;<i>tpo at spin.ch</i>&gt; </dt><dd> debian patches</dd>
-<dt><b>Ron Record</b> &lt;<i>rr at sco.com</i>&gt; </dt><dd> for SCO Unixware &amp; OpenServer binaries</dd>
-<dt><b>Keith Refson</b> &lt;<i>Keith.Refson at earth.ox.ac.uk</i>&gt; </dt><dd> Solaris fixes</dd>
-<dt><b>Dirk Schoenberger</b> &lt;<i>schoenberger at signsoft.com</i>&gt; </dt><dd> Qt/KDE work</dd>
-<dt><b>Jan Schrage</b> &lt;<i>jan.schrage at urz.uni-heidelberg.de</i>&gt; </dt><dd> documentation patches</dd>
-<dt><b>Christopher Seawood</b> &lt;<i>cls at seawood.org</i>&gt; </dt><dd> for XbaeMatrix core dump</dd>
-<dt><b>Alessandro Seveso</b> &lt;<i>aleseveso at tiscalinet.it</i>&gt; </dt><dd> Italian translations</dd>
-<dt><b>Mike Simons</b> &lt;<i>msimons at fsimons01.erols.com</i>&gt; </dt><dd> misc configure.in patches</dd>
-<dt><b>Keld Simonsen</b> &lt;<i>keld at dkuug.dk</i>&gt; </dt><dd> Danish translation</dd>
-<dt><b>Richard Skelton</b> &lt;<i>rich at brake.demon.co.uk</i>&gt; </dt><dd> for Solaris cleanup</dd>
-<dt><b>Henning Spruth</b> &lt;<i>spruth at bigfoot.com</i>&gt; </dt><dd> for German text &amp; euro date rework</dd>
-<dt><b>Ben Stanley</b> &lt;<i>bds02 at uow.edu.au</i>&gt; </dt><dd> test infrastructure</dd>
-<dt><b>Robby Stephenson</b> &lt;<i>robby.stephenson at usa.net</i>&gt; </dt><dd> register &amp; file history patches</dd>
-<dt><b>Christian Stimming</b> &lt;<i>stimming at uclink.berkeley.edu</i>&gt; </dt><dd> report patch</dd>
-<dt><b>Bartek Szady</b> &lt;<i>bszx at bszxdomain.edu.eu.org</i>&gt; </dt><dd> engine and build system patches</dd>
-<dt><b>Herbert Thoma</b> &lt;<i>tma at iis.fhg.de</i>&gt; </dt><dd> gnome register &amp; euro support patches</dd>
-<dt><b>Diane Trout</b> &lt;<i>detrout at earthlink.net</i>&gt; </dt><dd> scheme qif import patch</dd>
-<dt><b>Richard -Gilligan- Uschold</b> &lt;<i>uschold at cs.ucf.edu</i>&gt; </dt><dd> tax report &amp; txf export</dd>
-<dt><b>Richard Wackerbarth</b> &lt;<i>rkw at dataplex.net</i>&gt; </dt><dd> patch to gnc-prices, qif import fixes</dd>
-<dt><b>Rob Walker</b> &lt;<i>rob at valinux.com</i>&gt; </dt><dd> guile and register patches</dd>
-<dt><b>David Woodhouse</b> &lt;<i>dwmw2 at infradead.org</i>&gt; </dt><dd> Great Britain translations</dd>
-<dt><b>Ken Yamaguchi</b> &lt;<i>gooch at ic.EECS.Berkeley.EDU</i>&gt; </dt><dd> QIF import fixes; MYM import</dd>
-<dt><b>Shimpei Yamashita</b> &lt;<i>shimpei at gol.com</i>&gt; </dt><dd> Japanese translation</dd>
-</dl>
-
-</div>
-<?php include($toppath."/externals/en/footer.phtml"); ?>

Deleted: htdocs/trunk/www/htdig.sh
===================================================================
--- htdocs/trunk/www/htdig.sh	2006-02-11 18:37:58 UTC (rev 13208)
+++ htdocs/trunk/www/htdig.sh	2006-02-11 18:41:24 UTC (rev 13209)
@@ -1,5 +0,0 @@
-HTBINDIR=/usr/lib/cgi-bin
-QUERY_STRING="$@"
-REQUEST_METHOD=GET
-export QUERY_STRING REQUEST_METHOD 
-$HTBINDIR/htsearch

Deleted: htdocs/trunk/www/irc.phtml
===================================================================
--- htdocs/trunk/www/irc.phtml	2006-02-11 18:37:58 UTC (rev 13208)
+++ htdocs/trunk/www/irc.phtml	2006-02-11 18:41:24 UTC (rev 13209)
@@ -1,17 +0,0 @@
-<?php 
-$title = "GnuCash on IRC";
-include("../emulate_globals_on.php");
-include($toppath."/externals/en/header.phtml");
-include($toppath."/externals/en/menu-main-help.phtml");
-?>
-
-<div id="content">
-
-<h1>GnuCash on IRC</h1>
-
-Have some fun (or merely get help with using and installing GnuCash) 
-by discussing GnuCash development with developers and users alike, 
-on IRC.  Join the #gnucash channel at irc.gnome.org.
-</div>
-
-<?php include($toppath."/externals/en/footer.phtml"); ?>

Deleted: htdocs/trunk/www/links.phtml
===================================================================
--- htdocs/trunk/www/links.phtml	2006-02-11 18:37:58 UTC (rev 13208)
+++ htdocs/trunk/www/links.phtml	2006-02-11 18:41:24 UTC (rev 13209)
@@ -1,66 +0,0 @@
-<?php 
-$title = "Related Financial Software";
-include("../emulate_globals_on.php");
-include($toppath."/externals/en/header.phtml");
-include($toppath."/en/menu/menu-main-other.phtml");
-?>
-
-<div id="content">
-
-<h1>Related Financial Software</h1>
-
-<div>
-<p><b>Select a section:</b>
-</p>
-<form method="get" action="<?php echo $_SERVER["PHP_SELF"];?>">
-<div>
-<select name="linkpage">
-  <option value="general"
-  <?php if ($_GET["linkpage"] == "general") { echo ("selected"); } ?>
-  >General References</option>
-  <option value="utilities"
-  <?php if ($_GET["linkpage"] == "utilities") { echo ("selected"); } ?>
-  >Utilities</option>
-  <option value="palm"
-  <?php if ($_GET["linkpage"] == "palm") { echo ("selected"); } ?>
-  >Palm Computing</option>
-  <option value="stock"
-  <?php if ($_GET["linkpage"] == "stock") { echo ("selected"); } ?>
-  >Stock Trading &amp; Technical Analysis</option>
-  <option value="quote"
-  <?php if ($_GET["linkpage"] == "quote") { echo ("selected"); } ?>
-  >Quote Sources, Tools</option>
-  <option value="money"
-  <?php if ($_GET["linkpage"] == "money") { echo ("selected"); } ?>
-  >Electronic Currencies</option>
-  <option value="erp"
-  <?php if ($_GET["linkpage"] == "erp") { echo ("selected"); } ?>
-  >Business, ERP Projects</option>
-  <option value="xml"
-  <?php if ($_GET["linkpage"] == "xml") { echo ("selected"); } ?>
-  >XML and Other Data Formats</option>
-  <option value="misc"
-  <?php if ($_GET["linkpage"] == "misc") { echo ("selected"); } ?>
-  >Miscellaneous</option>
-  <option value="obsolete"
-  <?php if ($_GET["linkpage"] == "obsolete") { echo ("selected"); } ?>
-  >Historical References</option>
-  <option value="review"
-  <?php if ($_GET["linkpage"] == "review") { echo ("selected"); } ?>
-  >Gnucash Review &amp; Rating Sites</option>
-</select>
-<input type="submit" value="Go">
-</div>
-</form>
-</div>
-
-<?php
-  if ($linkpage != "") { 
-	include($toppath."/www/links/links-".$linkpage.".phtml");
-  } else {
-	include($toppath."/www/links/links-general.phtml");
-  }
-?>
-
-</div>
-<?php include($toppath."/externals/en/footer.phtml"); ?>

Deleted: htdocs/trunk/www/lists.phtml
===================================================================
--- htdocs/trunk/www/lists.phtml	2006-02-11 18:37:58 UTC (rev 13208)
+++ htdocs/trunk/www/lists.phtml	2006-02-11 18:41:24 UTC (rev 13209)
@@ -1,223 +0,0 @@
-<?php 
-$title = "Mailing Lists"; 
-include("../emulate_globals_on.php");
-include($toppath."/externals/en/header.phtml");
-include($toppath."/externals/en/menu-main-help.phtml");
-?>
-
-<div id="content">
-
-<h1>GnuCash Mailing Lists</h1>
-
-<p>There are a number of GnuCash mailing lists serving different
-communities: some for users and some for developers.  Click on
-the bold type for instructions on how to subscribe and unsubscribe.
-</p>
-
-<div class="tblborder">
-   <table border="0" cellpadding=5 cellspacing=1
-    style="background-color:#cacaf7" width="100%">
-<colgroup><col width="45%"><col width="55%"></colgroup>
-   <tr>
-    <td style="background-color:#666699">
-    <b style="color:white">Mailing List</b></td>
-    <td style="background-color:#666699">
-    <b style="color:white">Description</b></td>
-   </tr>
-
-   <tr class="divider">
-    <td valign="top">
-     <!-- use absolute URL so that site can be mirrored but cgi-bins
-        go to orig site! -->
-    <img src="/images/icons/document.txt.gif" width="16" height="16"
-    alt="document icon">
-    <A HREF="https://lists.gnucash.org/mailman/listinfo/gnucash-announce">
-    gnucash-announce at gnucash.org</A>
-    <br>
-    <img src="/images/icons/document.txt.gif"
-    width="16" height="16" alt="document icon">
-    <A HREF="https://lists.gnucash.org/pipermail/gnucash-announce">
-    Archives</A>
-    </td>
-    <td valign="top">Announcement mailing list: Posts to this
-    moderated list to announce important events and news concerning
-    GnuCash. This is a low-volume mailing list (1 or fewer messages a
-    week).</td>
-   </tr>
-
-   <tr style="background-color:white">
-    <td valign="top">
-    <img src="/images/icons/document.txt.gif" width="16" height="16"
-    alt="document icon">
-    <A HREF="https://lists.gnucash.org/mailman/listinfo/gnucash-user">
-    gnucash-user at gnucash.org</A>
-    <br>
-    <img src="/images/icons/document.txt.gif" width="16" height="16"
-    alt="document icon">
-    <A HREF="https://lists.gnucash.org/pipermail/gnucash-user">
-    Archives</A></td>
-    <td valign="top">
-    User's mailing list: Discussions of how to install, set up and use
-    GnuCash, and discussions such as basic accounting principles.
-    This is occasionally a high-volume mailing list (2 to 30 messages a
-    day).
-    </td>
-   </tr>
-
-   <tr class="divider">
-     <td valign="top">
-    <img src="/images/icons/document.txt.gif" width="16" height="16"
-    alt="document icon">
-    <A HREF="https://lists.gnucash.org/mailman/listinfo/gnucash-devel">
-    gnucash-devel at gnucash.org</A>
-    <br>
-    <img src="/images/icons/document.txt.gif" width="16" height="16"
-    alt="document icon">
-    <A HREF="https://lists.gnucash.org/pipermail/gnucash-devel">
-    Archives</A>
-    </td>
-    <td valign="top">
-    Developer's mailing list: Discussions of current and future
-    features and functions, and how they should be implemented.
-    This is occasionally a high-volume mailing list (2 to 30
-    messages a day).
-	</td>
-   </tr>
-
-   <tr style="background-color:white">
-    <td valign="top">
-    <img src="/images/icons/document.txt.gif" width="16" height="16"
-    alt="document icon">
-    <A HREF="https://lists.gnucash.org/mailman/listinfo/gnucash-de">
-    gnucash-de at gnucash.org</A>
-    <br>
-    <img src="/images/icons/document.txt.gif" width="16" height="16"
-    alt="document icon">
-    <A HREF="https://lists.gnucash.org/pipermail/gnucash-de">
-    Archives</A>
-    </td>
-    <td valign="top">
-    Dies ist die Mailingliste für deutsche GnuCash-Benutzer.
-    Die Sprache auf dieser Liste ist Deutsch.
-    </td>
-   </tr>
-
-   <tr class="divider">
-     <td valign="top">
-     <img src="/images/icons/document.txt.gif" width="16" height="16"
-     alt="document icon">
-     <A HREF="https://lists.gnucash.org/mailman/listinfo/gnucash-es">
-     gnucash-es at gnucash.org</A>
-     <br><img src="/images/icons/document.txt.gif" width="16" height="16"
-     alt="document icon">
-     <A HREF="https://lists.gnucash.org/pipermail/gnucash-es">
-     Archives</A>
-     </td>
-     <td valign="top">
-     gnucash-es es la lista de distribución del proyecto GnuCash en
-     español. Está lista está pensada para usuarios finales y
-     colaboradores en la traducción y localización de GnuCash.
-     </td>
-   </tr>
-
-   <tr style="background-color:white">
-    <td valign="top">
-    <img src="/images/icons/document.txt.gif" width="16" height="16"
-    alt="document icon">
-    <A HREF="https://lists.gnucash.org/mailman/listinfo/gnucash-fr">
-    gnucash-fr at gnucash.org</A>
-    <br>
-    <img src="/images/icons/document.txt.gif" width="16" height="16"
-    alt="document icon">
-    <A HREF="https://lists.gnucash.org/pipermail/gnucash-fr">
-    Archives</A>
-    </td>
-    <td valign="top">
-    Vous avez essayé GnuCash. Cela vous plaît vraiment mais vous
-    aimeriez obtenir de l'aide dans votre langue pour plus de simplicité.
-    Cette mailing liste est faite pour vous. Elle va permettre de rester
-    en contact avec des personnes francophones utilisant GnuCash qui
-    pourront vous guider dans son utilisation quotidienne aussi bien que
-    pour une utilisation professionnelle. Elle permettra aussi aux
-    personnes réfractaire à la langue de shakespeare de rester au courant
-    des derniers développements du logiciels.
-    </td>
-   </tr>
-
-   <tr class="divider">
-    <td valign="top">
-    <img src="/images/icons/document.txt.gif" width="16" height="16"
-    alt="document icon">
-    <A HREF="https://lists.gnucash.org/mailman/listinfo/gnucash-it">
-    gnucash-it at gnucash.org</A>
-    <br>
-    <img src="/images/icons/document.txt.gif" width="16" height="16"
-    alt="document icon">
-    <A HREF="https://lists.gnucash.org/pipermail/gnucash-it">
-    Archives</A>
-    </td>
-    <td valign="top">
-    <p>gnucash-it è la lista di distribuzione per il progetto GnuCash in
-    lingua italiana. Quando la propria lingua madre è l'italiano e
-    l'inglese rappresenta un ostacolo, quando si ha intenzione di
-    contribuire alla localizzazione (l10n) ed internazionalizzazione
-    (i18n) italiana del progetto, quando si vuole incontrare qualche
-    italiano per parlare di GnuCash, questa lista di distribuzione è il
-    luogo adatto per inviare i propri messaggi.</p>
-    <p>gnucash-it è nata per offrire ai traduttori di GnuCash un valido
-    mezzo di comunicazione.  Successivamente spera di diventare il punto
-    d'incontro per tutti coloro i quali vogliano contribuire al progetto
-    sia in qualità traduttori, revisori e programmatori per la realtà
-    italiana, sia di esperti in grado di aiutare chi si trova alle prime
-    armi.</p>
-    </td>
-   </tr>
-
-   <tr style="background-color:white">
-     <td valign="top">
-    <img src="/images/icons/document.txt.gif" width="16" height="16"
-    alt="document icon">
-    <A HREF="https://lists.gnucash.org/mailman/listinfo/gnucash-patches">
-    gnucash-patches at gnucash.org</A>
-    <br>
-    <img src="/images/icons/document.txt.gif" width="16" height="16"
-    alt="document icon">
-    <A HREF="https://lists.gnucash.org/pipermail/gnucash-patches">
-    Archives</A>
-    </td>
-    <td valign="top">
-    Developer's mailing list: Submission and discussion of patches,
-    and notifications of CVS tree updates.
-    Patches should be in <tt>makepatch</tt> format.
-    Patches may be against source code, documentation, or foreign
-    language translations.
-    This is occasionally a high-volume mailing list (2 to 30 messages
-    a day).
-    </td>
-   </tr>
-
-   <tr class="divider">
-    <td valign="top">
-    <img src="/images/icons/document.txt.gif" width="16" height="16"
-    alt="document icon">
-    <A HREF="https://lists.gnucash.org/mailman/listinfo/gnucash-changes">
-    gnucash-changes at gnucash.org</A>
-    <br>
-    <img src="/images/icons/document.txt.gif" width="16" height="16"
-    alt="document icon">
-    <A HREF="https://lists.gnucash.org/pipermail/gnucash-changes">
-    Archives</A>
-    </td>
-    <td valign="top">
-    Developer's mailing list: A list where commit logs are posted
-    together with diffs of changed files in CVS.
-    This is occasionally a high-volume mailing list (2 to 30
-    messages a day).
-    </td>
-   </tr>
-
-   </table>
-</div>
-
-</div>
-<?php include($toppath."/externals/en/footer.phtml"); ?>

Deleted: htdocs/trunk/www/quiz-results-early.phtml
===================================================================
--- htdocs/trunk/www/quiz-results-early.phtml	2006-02-11 18:37:58 UTC (rev 13208)
+++ htdocs/trunk/www/quiz-results-early.phtml	2006-02-11 18:41:24 UTC (rev 13209)
@@ -1,2608 +0,0 @@
-<?php 
-$title = "Survey";
-include("../emulate_globals_on.php");
-include($toppath."/externals/en/header.phtml");
-include($toppath."/en/menu/menu-main-other.phtml");
-?>
-</div>
-<div id="content">
-
-<h1>GnuCash User Survey Results</h1>
-<p>The survey continues, but this is a good time to take a break and show 
-some results.  For those too busy to read through the results, we 
-preface the results with a summary.
-</p>
-<p>It has 45 questions, and its broken into 
-six sections:</p>
-<ul>
-<li>General
-<li>Commercializing GnuCash
-<li>Using GnuCash
-<li>Future Features
-<li>Online Banking
-<li>Personal Profile
-</ul>
-
-<p>The summary results and conclusions are below, by section.
-</p>
-
-<dl>
-<dt><b>General and Personal Profile</b>
-<dd>
-There were 415 respondents in the 13 days since the survey started.
-Respondents are overwhelmingly male (97%), with a median age in 
-late-20's, early-30's. They are highly educated: more than 80%
-have college or post-grad degrees.  They're highly technical:
-better than 2/3rds are programmers, engineers or scientists.
-And they are old-hands at GNU/Linux/BSD: more than 2/3rds have 
-been using Linux for over 3 years.  This sample is very, very 
-far from what one finds for the average Internet/computer user, 
-nearly half of which is a woman (the left half, presumably), 
-and most of which is non-technical (no surprise here, the 
-brain weighs much less than the muscles, guts and bones).
-At a later date, I hope to publish the results as they would 
-look if we surgically removed the geek elements.
-<p>
-Nearly 90% have used accounting programs before.  Less then
-20% find that GnuCash meets all their needs.  Nearly half wish it
-had more features, and about 25% can't use GnuCash because its 
-missing critical features.
-<p>
-<dt><b>Commercializing GnuCash</b>
-<dd>
-Half of all respondents would buy a cdrom and a book. $20USD is
-the sweet spot for the CDROM price.  Support is not an issue.
-There is little interest in a 'GnuCash magazine' or in a 
-general-financial-advice website.
-
-<p>
-<dt><b>Using GnuCash</b>
-<dd>
-About 80% use gnucash for core accounting, 10% for incidentals,
-and 10% for small-business.  25% would use an MS Windows version.
-
-<p>
-<dt><b>Future Features</b>
-<dd>
-Top requests: more features, better documentation, all aimed 
-squarely at the home user.  Top picks for each feature
-category are below:
-<p>
-<ul>
-<li><b>Home users</b>: scheduled transactions (integrated into 
-    dayplanner/calendar), budgeting, more reports, online banking.
-<p>
-<li><b>Financial</b>: interest-bearing accounts, better general stock & 
-    bond support.
-<p>
-<li><b>Interop</b>: export reports to spreadsheet.
-<p>
-<li><b>Online banking</b>: 80% of respondents want to do this. Top picks:
-    view balances, reconcile accounts, pay bills.  Little demand 
-    for alternative payment systems, and of those, paypal is the winner.
-    25% have used quicken/msmoney for online banking.
-    Security, privacy and reliability are all hot issues.
-    
-<p>
-<li><b>Business Accounting</b>: support invoicing/billing, accounts-payable, 
-    receivable.  However, the results are sort of bizarre: users
-    are not that interested in an integrated address-book/contact 
-    manager/to-do list.  I find this is bizarre, since things like
-    billing/invoicing/checkprinting is almost useless if you don't 
-    have addresses and phone numbers to go with your invoice system.   
-    And accounts-payable is basically a fancy to-do-list, rendered
-    all-the-more useless without good checkprinting (i.e. print 
-    address on check) support.  So I'm tempted to conclude that
-    respondents have little/no actual experience in using a 
-    small-business accounting package. Indeed, we should filter results
-    for those who have actually used Peachtree/quickbooks or other
-    business package.
-<p>
-<li><b>dot-com accounting</b>: there is little interest in GnuCash as a 
-    back-end/tie-in to merchant systems. Again, maybe that's because
-    the respondents are primarily home users.
-</ul>
-</dl>
-<p>
-
-
-      <TABLE BORDER="0" CELLSPACING="0" CELLPADDING="0" WIDTH="100%">
-        <TR ALIGN="CENTER" VALIGN="MIDDLE">
-          <TD>
-<table bgcolor="#ffffff" border="1" width="95%"><tr><td>
-<h2>GnuCash Features Survey</h2>
-<h3></h3>
-<blockquote></blockquote>
-<table border="0" cellspacing="0" cellpadding="0" width="100%">
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q1">1.</A>
-			<b>I've been using GnuCash since</b>
-<br>(pick one only)
-
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>-- version 0.9/1.0</td>
-		<td align="right" width="60">35</td>
-		<td align="right" width="60">(8.4%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- version 1.2</td>
-		<td align="right" width="60">76</td>
-		<td align="right" width="60">(18.3%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- version 1.4</td>
-		<td align="right" width="60">146</td>
-		<td align="right" width="60">(35.2%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- version 1.6</td>
-		<td align="right" width="60">38</td>
-		<td align="right" width="60">(9.2%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- never used GnuCash</td>
-		<td align="right" width="60">115</td>
-		<td align="right" width="60">(27.7%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td><b>TOTAL</b></td>
-		<td align="right"><b>415</b></td>
-		<td align="right"><b>(98.8%)</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q2">2.</A>
-			<b>I've bee using Linux for about</b>
-<br>(pick one only)
-
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>-- 6 months or less</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=15><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;7.7%		</td>
-		<td align="right">(32)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- 1 year</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=12><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;6.3%		</td>
-		<td align="right">(26)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- 2 years</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=31><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;15.9%		</td>
-		<td align="right">(66)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- more than 3 years</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=134><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;67.5%		</td>
-		<td align="right">(280)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=194><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;97.3%</b></td>
-		<td width="10%" align="right"><b>415</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q3">3.</A>
-			<b>Other Accounting Packages</b>
-<br>(check all that apply)
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>-- I have never used accounting software before</td>
-		<td align="right" width="60">46</td>
-		<td align="right" width="60">(11.1%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- I use a spreadsheet for my accounting</td>
-		<td align="right" width="60">73</td>
-		<td align="right" width="60">(17.6%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- I use Quicken or MSMoney regularly</td>
-		<td align="right" width="60">93</td>
-		<td align="right" width="60">(22.4%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- I used to use Quicken/MSMoney but stopped</td>
-		<td align="right" width="60">142</td>
-		<td align="right" width="60">(34.2%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- I use Peachtree, QuickBooks or another MSWindows accounting package</td>
-		<td align="right" width="60">37</td>
-		<td align="right" width="60">(8.9%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- I GnuCash almost exclusively</td>
-		<td align="right" width="60">154</td>
-		<td align="right" width="60">(37.1%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- I use another Linux/Unix-based accounting package</td>
-		<td align="right" width="60">13</td>
-		<td align="right" width="60">(3.1%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td><b>TOTAL</b></td>
-		<td align="right"><b>415</b></td>
-		<td align="right"><b>(134.5%)</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q4">4.</A>
-			<b>My Favorite Accounting Package of all time is</b>
-<br>(check all that apply)
-
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>-- GnuCash</td>
-		<td align="right" width="60">175</td>
-		<td align="right" width="60">(42.2%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- Kapital</td>
-		<td align="right" width="60">2</td>
-		<td align="right" width="60">(0.5%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- MoneyDance</td>
-		<td align="right" width="60">2</td>
-		<td align="right" width="60">(0.5%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- Quicken</td>
-		<td align="right" width="60">95</td>
-		<td align="right" width="60">(22.9%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- MSMoney</td>
-		<td align="right" width="60">37</td>
-		<td align="right" width="60">(8.9%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- QuickBooks</td>
-		<td align="right" width="60">14</td>
-		<td align="right" width="60">(3.4%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- Peachtree</td>
-		<td align="right" width="60">1</td>
-		<td align="right" width="60">(0.2%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- Great Plains</td>
-		<td align="right" width="60">1</td>
-		<td align="right" width="60">(0.2%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- ACCPAC</td>
-		<td align="right" width="60">4</td>
-		<td align="right" width="60">(1.0%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- Other (write in below)
-</td>
-		<td align="right" width="60">31</td>
-		<td align="right" width="60">(7.5%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td align="right"><b>415</b></td>
-		<td align="right"><b>(87.2%)</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q5">5.</A>
-			<b>Did we miss your favorite accounting program?
-Write it in!</b>
-			<blockquote>
-<table width="90%" border="0" cellpadding="1">
-	<tr><th align="left">#</th><th>Response</th></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>a pen and a piece of paper... it's amazing what modern technology can do :)</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>all the ones i've used suck!</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Any good spreadsheet</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>BasisPro (GLOWS)</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>BMS</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Cashbook</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>checkfree software</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Davicash</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Davilex and abcmuis</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>gcalc.  no, seriously.</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Geldprofi</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>I wrote my own some time ago using MSAccess</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Manage Your Money (Mac)</td></tr>
-<tr bgcolor="#ffffff"><th align="left">2</th><td>managing your money</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>MoneySmith</td></tr>
-<tr bgcolor="#ffffff"><th align="left">3</th><td>MYOB</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>MYOB (Australian)</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>MYOB - it's available in australia</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>MYOB Accountedge for the MAC</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>never used one</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>No favorite, but would prefer using GnuCash.</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>None</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>none yet</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Pastell</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>pencil and notebook</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>postgresql</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Quicken about 5 years ago</td></tr>
-<tr bgcolor="#ffffff"><th align="left">2</th><td>StarMoney</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>UltraSoft Money (Palm)</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Xinvest</td></tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q6">6.</A>
-			<b>How Good is GnuCash?</b>
-<br>(check one only)
-
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>-- GnuCash is overkill for my accounting needs.
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=6><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;3.4%		</td>
-		<td align="right">(14)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- All of my accounting needs are met by GnuCash.
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=28><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;14.2%		</td>
-		<td align="right">(59)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- I use GnuCash but wish it had a few more features.
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=96><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;48.4%		</td>
-		<td align="right">(201)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- I wish I could use GnuCash, except that it doesn't
- have a feature that is really important to me.
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=49><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;24.8%		</td>
-		<td align="right">(103)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- GnuCash is really just not right for my accounting needs,
- and I just don't see how it ever could be.
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=0><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;0.2%		</td>
-		<td align="right">(1)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=182><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;91.1%</b></td>
-		<td width="10%" align="right"><b>415</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-<tr><td><hr></td></tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q7">7.</A>
-			<h2>Commercializing GnuCash</h2>
-
-<b>If GnuCash came on a CDROM, with an easy-to-install interface,
-would you buy a copy?</b>
-
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>Yes</td>
-		<td align="right" width="60">206</td>
-		<td align="right" width="60">(49.6%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>No</td>
-		<td align="right" width="60">195</td>
-		<td align="right" width="60">(47.0%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td align="right"><b>415</b></td>
-		<td align="right"><b>(96.6%)</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q8">8.</A>
-			<b>What is the most you'd be willing to pay for an easy-to-install
-CDROM version of GnuCash?
-</b>
-
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>   $5  US
-</td>
-		<td align="right" width="60">69</td>
-		<td align="right" width="60">(16.6%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>   $10 US
-</td>
-		<td align="right" width="60">87</td>
-		<td align="right" width="60">(21.0%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>   $20 US
-</td>
-		<td align="right" width="60">117</td>
-		<td align="right" width="60">(28.2%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>   $40 US
-</td>
-		<td align="right" width="60">53</td>
-		<td align="right" width="60">(12.8%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>   $80 US
-</td>
-		<td align="right" width="60">7</td>
-		<td align="right" width="60">(1.7%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td><b>TOTAL</b></td>
-		<td align="right"><b>415</b></td>
-		<td align="right"><b>(80.2%)</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q9">9.</A>
-			<b>Would you buy a book on how to use GnuCash?
-</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>Yes</td>
-		<td align="right" width="60">212</td>
-		<td align="right" width="60">(51.1%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>No</td>
-		<td align="right" width="60">183</td>
-		<td align="right" width="60">(44.1%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td align="right"><b>415</b></td>
-		<td align="right"><b>(95.2%)</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q10">10.</A>
-			<b>Would you buy commercial support for GnuCash?
-</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>Yes</td>
-		<td align="right" width="60">33</td>
-		<td align="right" width="60">(8.0%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>No</td>
-		<td align="right" width="60">365</td>
-		<td align="right" width="60">(88.0%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td align="right"><b>415</b></td>
-		<td align="right"><b>(95.9%)</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q11">11.</A>
-			<b>Which of these support options would be reasonable?
-</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>-- $50 per incident</td>
-		<td align="right" width="60">19</td>
-		<td align="right" width="60">(4.6%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- $50 per month flat rate</td>
-		<td align="right" width="60">12</td>
-		<td align="right" width="60">(2.9%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- $50 per hour till problem resolved</td>
-		<td align="right" width="60">6</td>
-		<td align="right" width="60">(1.4%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- $300 retainer with per incident billing</td>
-		<td align="right" width="60">2</td>
-		<td align="right" width="60">(0.5%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- $300 retainer with per hour billing</td>
-		<td align="right" width="60">2</td>
-		<td align="right" width="60">(0.5%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- $300/year with 3 incident maximum</td>
-		<td align="right" width="60">3</td>
-		<td align="right" width="60">(0.7%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- some other kind of pricing that is more reasonable for home users</td>
-		<td align="right" width="60">96</td>
-		<td align="right" width="60">(23.1%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- I wouldn't buy support</td>
-		<td align="right" width="60">266</td>
-		<td align="right" width="60">(64.1%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td align="right"><b>415</b></td>
-		<td align="right"><b>(97.8%)</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q12">12.</A>
-			<b>I would purchase confidential/secure data  backup for my files
-</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>Yes</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=32><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;16.4%		</td>
-		<td align="right">(68)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>No</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=155><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;77.8%		</td>
-		<td align="right">(323)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=188><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;94.2%</b></td>
-		<td width="10%" align="right"><b>415</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q13">13.</A>
-			<b>I would hire an accountant who knows GnuCash</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>Yes</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=68><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;34.5%		</td>
-		<td align="right">(143)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>No</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=115><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;57.8%		</td>
-		<td align="right">(240)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=184><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;92.3%</b></td>
-		<td width="10%" align="right"><b>415</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q14">14.</A>
-			<b>I would purchase custom (state-by-state, national) tax schedules</b>
-
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>Yes</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=97><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;48.9%		</td>
-		<td align="right">(203)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>No</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=90><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;45.3%		</td>
-		<td align="right">(188)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=188><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;94.2%</b></td>
-		<td width="10%" align="right"><b>415</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q15">15.</A>
-			<b>I would buy a monthly subscription to 'GnuCash Magazine'</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>Yes</td>
-		<td align="right" width="60">74</td>
-		<td align="right" width="60">(17.8%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>No</td>
-		<td align="right" width="60">316</td>
-		<td align="right" width="60">(76.1%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td align="right"><b>415</b></td>
-		<td align="right"><b>(94.0%)</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-<tr><td><hr></td></tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q16">16.</A>
-			<h2>Using GnuCash</h2>
-<b>My main interest in GnuCash is for:
-</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>-- Keeping track of occasional miscellaneous   expenses only (e.g. business travel reimbursements,   cost of personal hobby, personal loans to friends,   treasurer for small club/society, etc.)</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=3><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;1.9%		</td>
-		<td align="right">(8)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- Keeping track of online shopping expenses.</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=0><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;0.5%		</td>
-		<td align="right">(2)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- Getting records straight to make tax filing easier.</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=4><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;2.4%		</td>
-		<td align="right">(10)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- Keeping track of all personal/home finances/budgets in detail.</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=160><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;80.0%		</td>
-		<td align="right">(332)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- Keeping track of Portfolio Value (Stocks/Mutual Funds/Bonds)</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=5><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;2.7%		</td>
-		<td align="right">(11)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- Small Business Accounting.</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=22><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;11.3%		</td>
-		<td align="right">(47)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=197><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;98.8%</b></td>
-		<td width="10%" align="right"><b>415</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q17">17.</A>
-			<b>Areas I would like to see GnuCash to evolve into:
-</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>-- Easier to use for average home user</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=67><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;33.7%		</td>
-		<td align="right">(140)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- More features for the home user</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=130><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;65.3%		</td>
-		<td align="right">(271)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- Small Business Features</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=56><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;28.2%		</td>
-		<td align="right">(117)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- Better Investment (Stock/Mutual Fund/Bond/Option/Futures) support</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=60><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;30.4%		</td>
-		<td align="right">(126)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- Better PDA (PalmPilot/etc) integration</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=61><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;30.6%		</td>
-		<td align="right">(127)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- The ultimate web-integrated online banking/shopping/billpay   tool.</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=67><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;34.0%		</td>
-		<td align="right">(141)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- Technically cutting edge (eWallet, MicroPayments etc).</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=21><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;10.6%		</td>
-		<td align="right">(44)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;</b></td>
-		<td width="10%" align="right"><b>415</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q18">18.</A>
-			<b>I would use a version of GnuCash for Microsoft Windows if it was available
-</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>Yes</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=51><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;25.5%		</td>
-		<td align="right">(106)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>No</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=143><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;71.8%		</td>
-		<td align="right">(298)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=194><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;97.3%</b></td>
-		<td width="10%" align="right"><b>415</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q19">19.</A>
-			<b>If you are interested in Windows, which version?
-</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>-- MS Windows 98 base edition</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=6><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;3.4%		</td>
-		<td align="right">(14)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- MS Windows 98 second edition</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=24><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;12.0%		</td>
-		<td align="right">(50)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- MS Windows NT </td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=9><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;4.8%		</td>
-		<td align="right">(20)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- MS Windows 2000 </td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=38><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;19.0%		</td>
-		<td align="right">(79)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- MS Windows ME (Millenium Edition)</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=5><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;2.9%		</td>
-		<td align="right">(12)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=84><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;42.2%</b></td>
-		<td width="10%" align="right"><b>415</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-<tr><td><hr></td></tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q20">20.</A>
-			<h2>Future Features</h2>
-Features I would most like to see in GnuCash
-(sorted by category)
-<br>(1==very important 3==nice to have 5==don't need this)
-<br><br>
-<b>General</b>
-			<blockquote>
-<table border="0">
-	<tr>
-		<td></td>
-		<td align="center" colspan="7">Average rank</td>
-	</tr>
-	<tr>
-		<td></td>
-		<td align="right" width="44">1</td>
-		<td align="right" width="40">2</td>
-		<td align="right" width="40">3</td>
-		<td align="right" width="40">4</td>
-		<td align="right" width="36">5</td>
-		<td width="20"></td>
-		<td></td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Easier to Use</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=108><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(2.7)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Better Documentation</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=87><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(2.2)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Better Support</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=140><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.5)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">More Features</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=85><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(2.1)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Easier Installation</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=112><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(2.8)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Monthly (Paper) Newsletter/Magazine</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=168><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(4.2)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Financial Advice and Information on GnuCash Website</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=153><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.8)</td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q21">21.</A>
-			<b>Home</b>
-<br>(1==very important 3==nice to have 5==don't need this)
-
-			<blockquote>
-<table border="0">
-	<tr>
-		<td></td>
-		<td align="center" colspan="7">Average rank</td>
-	</tr>
-	<tr>
-		<td></td>
-		<td align="right" width="44">1</td>
-		<td align="right" width="40">2</td>
-		<td align="right" width="40">3</td>
-		<td align="right" width="40">4</td>
-		<td align="right" width="36">5</td>
-		<td width="20"></td>
-		<td></td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">More basic/overview reports for home use</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=88><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(2.2)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Home Inventory</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=125><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.1)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Insurance Records Organizer</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=130><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.3)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Scanner/photo support (for attached photos/images   of home inventory, or scanned paper receipts/invoices)</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=145><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.6)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Vital Records Organizer (bank account and investment account   names, addresses, numbers, passport number, D/L number,   insurance policy names, numbers)</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=125><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.1)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Income Tax Return preparation support</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=105><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(2.6)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Online banking (statement review, account reconciliation)</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=86><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(2.2)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Online billpay (pay bills/ authorize transfers)</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=103><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(2.6)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Better integration with online shopping venues (e.g. amazon.com)</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=149><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.7)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Better support for online payment methods (e.g. paypal, Qchex, egold)</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=136><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.4)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Budgeting and budget reports for home use</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=81><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(2.0)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Scheduled/regular/recurring transactions</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=72><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(1.8)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Use of calendar/dayplanner type interface for   scheduled transactions</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=89><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(2.2)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Support for alerts/popups for upcoming transactions</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=96><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(2.4)</td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q22">22.</A>
-			<b>Financial/Investment</b><br>(1==very important 3==nice to have 5==don't need this)
-
-			<blockquote>
-<table border="0">
-	<tr>
-		<td></td>
-		<td align="center" colspan="7">Average rank</td>
-	</tr>
-	<tr>
-		<td></td>
-		<td align="right" width="44">1</td>
-		<td align="right" width="40">2</td>
-		<td align="right" width="40">3</td>
-		<td align="right" width="40">4</td>
-		<td align="right" width="36">5</td>
-		<td width="20"></td>
-		<td></td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Improved support for international currencies</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=121><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.0)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Better support for stock/bond info</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=112><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(2.8)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Support for bonds, mortgages, interest   bearing instruments and accounts.</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=107><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(2.7)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Support for Business-oriented budgets</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=137><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.4)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Support for graphs of prices, moving averages, etc.</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=118><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.0)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Support for volume, beta, buy/sell indicators.</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=146><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.7)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Support for real-time trading abilities</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=158><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(4.0)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Support for on-line/breaking news access</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=165><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(4.1)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Support for financial research (reports on companies,   historical price graphs, etc).</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=154><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.9)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Investment (Buy/Sell) alerts, limit-order alerts</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=155><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.9)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Cost-basis/FIFO accounting</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=140><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.5)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Simplified split/spinoff/merger support</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=142><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.6)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Enhanced split/spinoff/merger support</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=142><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.6)</td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q23">23.</A>
-			<b>Interoperability</b><br>(1==very important 3==nice to have 5==don't need this)
-
-			<blockquote>
-<table border="0">
-	<tr>
-		<td></td>
-		<td align="center" colspan="7">Average rank</td>
-	</tr>
-	<tr>
-		<td></td>
-		<td align="right" width="44">1</td>
-		<td align="right" width="40">2</td>
-		<td align="right" width="40">3</td>
-		<td align="right" width="40">4</td>
-		<td align="right" width="36">5</td>
-		<td width="20"></td>
-		<td></td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Ability to Import IIF Files (Intuit Interchange Format)</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=135><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.4)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Ability to Export IIF Files (Intuit Interchange Format)</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=141><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.5)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Ability to Export QIF Files (Quicken Interchange Format)</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=113><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(2.8)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Ability to Import QFX Files (Quicken OFX Format)</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=117><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(2.9)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Ability to Export QFX Files (Quicken OFX Format)</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=123><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.1)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Ability to Import Peachtree/comma-delimited files</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=137><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.4)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Ability to Export reports to spreadsheet</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=97><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(2.4)</td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q24">24.</A>
-			<b>Other Import/Export Function</b>
-(write in)
-			<blockquote>
-<table width="90%" border="0" cellpadding="1">
-	<tr><th align="left">#</th><th>Response</th></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Ability to atore report in some word processor format (e.g. AbiWord, OpenOffice, ...) and presentation programs (e.g. impress, MagicPoint, OpenOffice). This  allows for better formating and give it the look you like. Company sometimes have strict design rules for presentations.
-
-This gives the end user a last chance to 'correct' the data, of course ;-)</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Ability to automatically connect to a bank and import QFX files like Quicken does for Discover.  Better QIF import functionality.  For example, allowing keyboard navigation to pick an account when importing.</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Ability to export data to comma delimited and export to gnumeric</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Ability to Import MYOB Accounting file format</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Able to export to a format TurboTax can read.</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>All Import/Export functionality is of a high priority.  If everyone can use GnuCash seamlessly from their old product, then GnuCash will become standard.</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>All Linux-based programs</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>better support for deleting redundant transactions
-imported by QIF</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Better, more colorful, easier to use GUI.  I love the software but it is not pretty to look at.</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Bug fixes</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Check printing!
-Quicker updated from Ximian for GnuCash (they still don't have 1.6 available yet)</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>CSV, common database formats</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Easy &quot;envelope style&quot; budgeting.  So you can allocate $X/month for purpose foo and if you don't spend the full $X, it carries over to the next month.  At any time, you can see how much is in your envelope.  (kindof like savings goals in Quicken)</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Excel format, MS Money and MYOB.</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Export graphs/reports.  I can't get this function to work.  It exports the html, but not with the Guppi plots.  </td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Export to comma-delimited would be very nice</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>export to gnumeric on account basis with an extra sheet for destination accounts (booking categories) one per account</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Export to HTML. Maybe 1.6 allows this but I haven't searched for this feature in 1.6 yet.</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Export/import (tab,comma) delimited files.</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>External Program to Import/convert an MSMoney file into GNUCash format.</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Exxport of accounts to a file
-Re-Import of those accounts into a different GNU-Cash file!!!</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>from and into MS Money</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>german BTX / HBCI</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Girotel (Dutch online banking system)</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>I see no reason to abandon QIF, but, generally speaking, it doesn't matter which format you use. The most important thing for me is to mate gnucash with my palm in an easy fashion. Why not write gnucash for palmOS?</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>I'd like to see some sort of export to an open exchange format.
-This is really critical.  I'm not sure if QFX is it (I don't know
-enough about it).</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>If the data was saved in a more human-readable type of ascii than the xml .xac file, that would be nice.  Say straight scheme lists, pretty-printed.  However this is very low in priority.</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>import account statements designed for use with Quicken</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Import MS Money</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Import MS Money files</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Import MS Money files.</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Import MSMoney97 files</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Import/Export to sql backend
-(can be handled via csv files also...)</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>importing accounts from a gnucash file</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Integration with PocketMoney (Palm Pilot)</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>It would be nice to support automatic downloads from online banking institutes - specifically sites like etrade that have alliances with Microsoft Money and Quicken, and don't support simple QIF downloads.</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>M$Money and Business</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Maybe even some sort of 'live update' with Gnumeric.  So if I wanted some feature that wasn't in Gnucash I could have it automatically put certian data into a Gnumeric sheet, and then generate the report from there.  I think that most people understand a spreadsheet better than Scheme (even though personally I really like Scheme)</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Moneydance, kapital</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>MS Money .dat import and export ability.</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>MSMoney</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>MsMoney can export QIF/QFX as I remember, so QIF/QFX seems to be enough...</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Musr be able to universaly inmport/export data</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>NACHA Presumably this might be part of an online system</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>OFX OFX OFX OFX OFX OFX OFX  (not just quicken, banks, too!)
-
-(getting the picture? :)</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>OFX support.. for bank reconciliation</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>OFX...</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Pay more attention to (and try to fix) the array of Quickens. I have been trying to import data from Mac versions of Quicken and
-it is a futile task!</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>PDA Module for Palm Pilot/Handspring Visor</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>perhaps export tax information for whatever format turbotax reads. 
-
-</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Perl interface for writing custom import/export filters.</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>SQL Database connectivity via unixODBC or better yet Gnome-DB</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>StarMoney</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Sync with Palm apps or gnucash mini-app for Palm</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>The ability to export back to quicken has been missing for some time.  If users knew they could export their data back to quicken if they did not like gnucash then I think more people would give gnucash a chance!  This is the one feature I long for!</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Use arbitrary gnc-prices Stock sources (like vwd, not only the ones offered from the gui in gnucash 1.4).</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Use of or export/import to/from SQL data base so I can write my own code in SQL instead
-of your scheme interface (looks like that is beta in 1.6).</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Web Interface</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>When Standard formats are supported my bank will be likely to provide its import/export functionality</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>XML/ HTML</td></tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q25">25.</A>
-			<b>Traditional Business Accounting:
-</b><br>(1==very important 3==nice to have 5==don't need this)
-
-			<blockquote>
-<table border="0">
-	<tr>
-		<td></td>
-		<td align="center" colspan="7">Average rank</td>
-	</tr>
-	<tr>
-		<td></td>
-		<td align="right" width="44">1</td>
-		<td align="right" width="40">2</td>
-		<td align="right" width="40">3</td>
-		<td align="right" width="40">4</td>
-		<td align="right" width="36">5</td>
-		<td width="20"></td>
-		<td></td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Integrated/interoperable addressbook</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=142><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.6)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Integrated/interoperable contact manager</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=145><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.6)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Integrated todo list</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=144><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.6)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Integrated time-tracker/bill-by-the-hour feature</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=141><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.5)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Accounts Payable</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=119><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.0)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Accounts Receivable</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=119><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.0)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Invoicing/Billing (basic)</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=120><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.0)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Invoicing/Billing (sophisticated)</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=132><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.3)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Shipping/Receiving</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=143><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.6)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Job Cost Estimation/Bids</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=148><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.7)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Job Cost Tracking</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=145><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.6)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Sales Orders/Job Orders/Pick Lists/Packing Lists</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=150><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.8)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Purchase Orders</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=144><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.6)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Inventory Management</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=146><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.7)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Assembly/Manufacturing Inventory</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=157><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.9)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">US Payroll</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=158><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(4.0)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">European Payroll</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=159><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(4.0)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">South American/Asian/Other/Generic Payroll</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=169><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(4.2)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Bill of Materials</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=160><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(4.0)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">US Depreciation/Amortization Schedules</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=158><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(4.0)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">European Depreciation/Amortization Schedules</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=158><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(4.0)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Generic Depreciation/Amortization Schedules</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=152><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.8)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">US Tax Modules</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=145><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.6)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">European/Other Tax Modules</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=139><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.5)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Accrual Accounting</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=144><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.6)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Cost Accounting</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=144><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.6)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Fund Accounting</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=150><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.8)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Audit Trails</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=139><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.5)</td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q26">26.</A>
-			<b>Modern Business Accounting:
-</b><br>(1==very important 3==nice to have 5==don't need this)
-
-			<blockquote>
-<table border="0">
-	<tr>
-		<td></td>
-		<td align="center" colspan="7">Average rank</td>
-	</tr>
-	<tr>
-		<td></td>
-		<td align="right" width="44">1</td>
-		<td align="right" width="40">2</td>
-		<td align="right" width="40">3</td>
-		<td align="right" width="40">4</td>
-		<td align="right" width="36">5</td>
-		<td width="20"></td>
-		<td></td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Credit Card Processing</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=139><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.5)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Online credit card verification/authorization/debit</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=144><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.6)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Interfaces to other data sources (e.g. ISP customer bandwidth usage)</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=153><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.8)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Streamlined data entry by multiple users</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=142><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.6)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Ability to handle large (>50K transactions) datasets</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=142><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.6)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Sophisticated Reports/Projections</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=128><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.2)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Better multi-user support</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=129><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.2)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Support for SQL databases other than Postgres</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=129><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.2)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Support for on-line purchasing/delivery/billing protocols</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=146><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.7)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">ASP-like Web-based client-server system</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=153><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.8)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">MS Windows Support</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=155><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.9)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Macintosh Support</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=165><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(4.1)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Integration with web shopping carts (e.g. Zelerate/OpenSales)</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=167><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(4.2)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Automated e-mail or web-based bill presentment</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=146><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.7)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Merchant support for paypal/checkfree/banking</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=148><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.7)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Integration with document scanners/image handling features</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=155><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.9)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Integration with Point-of-Sale systems</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=154><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.9)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Modular, reusable components that can be used in other apps</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=131><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.3)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">ERP features (e.g. integration with gnuE)</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=148><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.7)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Workflow</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=153><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.8)</td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-<tr><td><hr></td></tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q27">27.</A>
-			<h2>Online Banking</h2>
-<b>Would you like to do Online Banking with GnuCash?
-</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>Yes</td>
-		<td align="right" width="60">339</td>
-		<td align="right" width="60">(81.7%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>No</td>
-		<td align="right" width="60">70</td>
-		<td align="right" width="60">(16.9%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td align="right"><b>415</b></td>
-		<td align="right"><b>(98.6%)</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q28">28.</A>
-			<b>Do you know the name of the online banking interface
-you would like to see supported?
-</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>-- OFX (US)
-</td>
-		<td align="right" width="60">110</td>
-		<td align="right" width="60">(26.5%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- HBCI (Germany -- Home Banking Computer Interface)
-</td>
-		<td align="right" width="60">46</td>
-		<td align="right" width="60">(11.1%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- Don't know
-</td>
-		<td align="right" width="60">218</td>
-		<td align="right" width="60">(52.5%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td><b>TOTAL</b></td>
-		<td align="right"><b>415</b></td>
-		<td align="right"><b>(90.1%)</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q29">29.</A>
-			<b>Other banking interface</b>
-<br>(write in)
-			<blockquote>
-<table width="90%" border="0" cellpadding="1">
-	<tr><th align="left">#</th><th>Response</th></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>(don't know - but I'd be willing to move to a bank[UK] that you did support)</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>bank of america &amp; bank of Austria (unknown interfaces)</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>BofA -- QIF, unknown OFX support</td></tr>
-<tr bgcolor="#ffffff"><th align="left">2</th><td>BTX</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>BTX (DATEX-J, T-Online)</td></tr>
-<tr bgcolor="#ffffff"><th align="left">2</th><td>BTX (Germany)</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">2</th><td>CheckFree</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Commerce Bank, U.S.</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Commonwealth Bank of Australia Netbank(www.netbank.com.au) it's a web browser interface that works on all browsers and OS's</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Dutch Postbank (Girotel) and Belgian BBL or UN/EDIFACT</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>ESP-Link</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Existing web-based interfaces</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>File download not supported - would have to parse HTML</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>HTML Form Scraping</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>https</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>I don't think my bank supports online banking yet :-(</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>I would like to see integration with Swiss Banks, some allow download of SWIFT type files for transactions. UBS is used by Quicken Swiss Edition via http for Stock price infromation (it doesn't work though...)</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Interpay / AbnAmro</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>NACHA</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>No sure of the name, it's used by Canadian credit unions</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Not sure precisely, but my bank (The Bank of Ireland) would be a useful</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>OFX (EU)</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>QIF</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>QIF downloads</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Quicken</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Quicken's QXF (related to OFX I think)</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Rabobank (Netherlands)</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>See www.westpac.com.au</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>ssl-support like in StarMoney</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>t-online (German BTX)</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>t-online (germany), web formulars</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Using PIN/TAN numbers</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Web based forms</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Web interface (HTTPS)</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Whatever Barclays Bank (UK) use</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>whatever UK uses</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Whatever used in UK</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>yellownet (swiss post)</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>ZKA(Germany)</td></tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q30">30.</A>
-			<b>Online Banking features that you would most like to see
-in GnuCash
-</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>-- View bank balances
-</td>
-		<td align="right" width="60">331</td>
-		<td align="right" width="60">(79.8%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- Reconcile bank statements
-</td>
-		<td align="right" width="60">308</td>
-		<td align="right" width="60">(74.2%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- Review credit card statements
-</td>
-		<td align="right" width="60">269</td>
-		<td align="right" width="60">(64.8%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- Transfer funds within one bank
-</td>
-		<td align="right" width="60">251</td>
-		<td align="right" width="60">(60.5%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- Wire funds between banks
-</td>
-		<td align="right" width="60">160</td>
-		<td align="right" width="60">(38.6%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- Pay bills online
-</td>
-		<td align="right" width="60">272</td>
-		<td align="right" width="60">(65.5%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- Transfer funds between brokerage/mutual fund and bank
-</td>
-		<td align="right" width="60">104</td>
-		<td align="right" width="60">(25.1%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- Buy/sell mutual funds
-</td>
-		<td align="right" width="60">78</td>
-		<td align="right" width="60">(18.8%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- Buy/sell/place (limit) orders for stocks/options/futures
-</td>
-		<td align="right" width="60">74</td>
-		<td align="right" width="60">(17.8%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- Integrated with retail online shopping (amazon.com, etc).
-</td>
-		<td align="right" width="60">62</td>
-		<td align="right" width="60">(14.9%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td align="right"><b>415</b></td>
-		<td align="right"><b>(460.0%)</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q31">31.</A>
-			<b>Would you be willing to pay a fee for these some of
-these services? How much?</b>
-(Yes, we would all like it to be free, of course, but
-if there was a service charge, what is the most you would pay?)
-
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>-- no</td>
-		<td align="right" width="60">141</td>
-		<td align="right" width="60">(34.0%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- $3 US/month</td>
-		<td align="right" width="60">141</td>
-		<td align="right" width="60">(34.0%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- $10 US/month</td>
-		<td align="right" width="60">88</td>
-		<td align="right" width="60">(21.2%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- $20 US/month</td>
-		<td align="right" width="60">7</td>
-		<td align="right" width="60">(1.7%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td align="right"><b>415</b></td>
-		<td align="right"><b>(90.8%)</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q32">32.</A>
-			<b>Who would you be willing to engage for such a for-fee service?
-</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>-- A dot-com </td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=37><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;18.6%		</td>
-		<td align="right">(77)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- A large, well-known, name-brand company</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=65><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;32.8%		</td>
-		<td align="right">(136)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- My immediate bank/credit card provider only</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=111><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;55.7%		</td>
-		<td align="right">(231)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;</b></td>
-		<td width="10%" align="right"><b>415</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q33">33.</A>
-			<b>I would like to see GnuCash interfaces for the following
-'non-traditional' payment systems:
-</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>-- PayPal</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=53><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;27.0%		</td>
-		<td align="right">(112)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- E-Gold</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=8><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;4.1%		</td>
-		<td align="right">(17)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- Qchex</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=2><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;1.4%		</td>
-		<td align="right">(6)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- Achex</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=2><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;1.2%		</td>
-		<td align="right">(5)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- Checkfree</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=18><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;9.2%		</td>
-		<td align="right">(38)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=85><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;42.9%</b></td>
-		<td width="10%" align="right"><b>415</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q34">34.</A>
-			<b>Other payment system</b>
-<br>(write in)
-
-			<blockquote>
-<table width="90%" border="0" cellpadding="1">
-	<tr><th align="left">#</th><th>Response</th></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Billpoint (it's a good replacement for paypal that supports Canadian users better)</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>BPay</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>BPay. It's used in Australia. See bpay.com.au I think.</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>chek by phone</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Dutch and Belgian payment systems</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>fatshoe.com</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>GnuCash ... err... GnuDigiCash ... errr... GNU community-backed funny-money.</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>I didn't understand question #32.
-
-And #38 - I don't use all the features because there are extra charges when I can easily do it on the web for free.</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>international payments, as a means of short-circuiting the current bank
-rip-off policies allowed by their respective monopolies.</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Kagi</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Not familiar with</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Not sure</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Print on Quicken 0r MS Money checks</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>swiss postcheque
-In Europe many national post offices also offer a kind of banking which is usually very good and cheap for small amounts.</td></tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q35">35.</A>
-			<b>Have you used Quicken/MSMoney for bill pay or online banking?
-</b>
-
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>Yes</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=49><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;24.6%		</td>
-		<td align="right">(102)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>No</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=140><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;70.4%		</td>
-		<td align="right">(292)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=189><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;94.9%</b></td>
-		<td width="10%" align="right"><b>415</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q36">36.</A>
-			<b>If you use the online banking features in Quicken/MSMoney or
-through a Web interface, how often do you check account balances?
-</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>-- daily
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=23><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;11.6%		</td>
-		<td align="right">(48)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- weekly
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=53><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;27.0%		</td>
-		<td align="right">(112)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- monthly
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=10><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;5.1%		</td>
-		<td align="right">(21)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- never
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=30><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;15.2%		</td>
-		<td align="right">(63)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=117><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;58.8%</b></td>
-		<td width="10%" align="right"><b>415</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q37">37.</A>
-			<b>If you use the online banking features in Quicken/MSMoney or
-through a Web interface, how often do you pay bills or transfer funds?
-</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>-- daily
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=4><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;2.4%		</td>
-		<td align="right">(10)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- weekly
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=47><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;23.9%		</td>
-		<td align="right">(99)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- monthly
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=24><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;12.0%		</td>
-		<td align="right">(50)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- never
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=38><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;19.0%		</td>
-		<td align="right">(79)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=114><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;57.3%</b></td>
-		<td width="10%" align="right"><b>415</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q38">38.</A>
-			<b>If you don't use online banking features now, which of the following
-are your reasons?
-</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>-- I didn't know I could do that
-</td>
-		<td align="right" width="60">17</td>
-		<td align="right" width="60">(4.1%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- I don't care for it/ just plain not interested.
-</td>
-		<td align="right" width="60">37</td>
-		<td align="right" width="60">(8.9%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- My bank does not offer online banking
-</td>
-		<td align="right" width="60">34</td>
-		<td align="right" width="60">(8.2%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- I haven't gotten around to trying it, but would like to.
-</td>
-		<td align="right" width="60">64</td>
-		<td align="right" width="60">(15.4%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- Ease of use (these systems are too complex, not worth the effort).
-</td>
-		<td align="right" width="60">22</td>
-		<td align="right" width="60">(5.3%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- Security concerns (hackers/crackers/theft/fraud)
-</td>
-		<td align="right" width="60">60</td>
-		<td align="right" width="60">(14.5%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- Privacy concerns (others accessing my financial records)
-</td>
-		<td align="right" width="60">62</td>
-		<td align="right" width="60">(14.9%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- Reliability concerns (lost records, late payments, mistakes, confused billing)
-</td>
-		<td align="right" width="60">54</td>
-		<td align="right" width="60">(13.0%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td align="right"><b>415</b></td>
-		<td align="right"><b>(84.3%)</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q39">39.</A>
-			<b>Would you use an online-banking feature inside of GnuCash,
-in the future (next 6-24 months) if the above concerns concerns were fixed?
-</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>Yes</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=128><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;64.3%		</td>
-		<td align="right">(267)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>No</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=20><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;10.4%		</td>
-		<td align="right">(43)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=149><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;74.7%</b></td>
-		<td width="10%" align="right"><b>415</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q40">40.</A>
-			<b>If you do use online banking features, do you still have
-some nagging concerns about it?
-</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>-- Security concerns (hackers/crackers/theft/fraud)
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=63><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;31.8%		</td>
-		<td align="right">(132)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- Privacy concerns (other accessing my financial records)
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=59><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;29.9%		</td>
-		<td align="right">(124)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- Reliability concerns (lost records, late payments, mistakes, confused billing)
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=58><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;29.2%		</td>
-		<td align="right">(121)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- Ease of use (website/special client are confusing/hard to use).
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=31><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;15.9%		</td>
-		<td align="right">(66)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;</b></td>
-		<td width="10%" align="right"><b>415</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-<tr><td><hr></td></tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q41">41.</A>
-			<h2>Personal Profile</h2>
-OK, this is the end of this long survey.
-Tell us about yourself.
-<br><br>
-<b>Sex</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>Male</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=192><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;96.4%		</td>
-		<td align="right">(400)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>Female</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=2><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;1.2%		</td>
-		<td align="right">(5)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=195><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;97.6%</b></td>
-		<td width="10%" align="right"><b>415</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q42">42.</A>
-			<b>Age</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>< 26</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=50><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;25.1%		</td>
-		<td align="right">(104)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>26<36</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=94><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;47.2%		</td>
-		<td align="right">(196)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>36<50</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=40><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;20.0%		</td>
-		<td align="right">(83)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>50<</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=11><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;5.5%		</td>
-		<td align="right">(23)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=195><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;97.8%</b></td>
-		<td width="10%" align="right"><b>415</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q43">43.</A>
-			<b>Education</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>Grade School/Lycee</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=0><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;0.5%		</td>
-		<td align="right">(2)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>High School/Diplomat</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=22><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;11.3%		</td>
-		<td align="right">(47)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>College/Univeristy</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=113><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;56.6%		</td>
-		<td align="right">(235)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>Grad School/Doctorate</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=58><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;29.2%		</td>
-		<td align="right">(121)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=195><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;97.6%</b></td>
-		<td width="10%" align="right"><b>415</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q44">44.</A>
-			<b>Occupation</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>Student</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=30><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;15.4%		</td>
-		<td align="right">(64)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>Homemaker</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=1><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;0.7%		</td>
-		<td align="right">(3)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>Administrative/Sales/Service</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=2><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;1.2%		</td>
-		<td align="right">(5)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>Professional (doctor/lawyer/architect/etc)
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=38><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;19.3%		</td>
-		<td align="right">(80)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>Scientist
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=19><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;9.6%		</td>
-		<td align="right">(40)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>Work in startup/small business
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=33><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;16.9%		</td>
-		<td align="right">(70)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>Salaried Employee of midsize/large business
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=58><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;29.4%		</td>
-		<td align="right">(122)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>Executive</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=7><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;3.9%		</td>
-		<td align="right">(16)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=192><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;96.4%</b></td>
-		<td width="10%" align="right"><b>415</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q45">45.</A>
-			<b>Computer/Technical Skills
-</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>Ordinary user
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=2><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;1.2%		</td>
-		<td align="right">(5)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>Knowledgeable 'power user'/ h4><0r
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=20><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;10.4%		</td>
-		<td align="right">(43)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>Computer hobbyist/Technology enthusiast
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=30><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;15.4%		</td>
-		<td align="right">(64)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>Scientist/Engineer</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=45><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;22.9%		</td>
-		<td align="right">(95)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>Software Programmer
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=96><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;48.2%		</td>
-		<td align="right">(200)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=196><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;98.1%</b></td>
-		<td width="10%" align="right"><b>415</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q46">46.</A>
-			<b>Subscribe me to the gnucash-announce mailing list</b>
-<br>My e-mail address is below.
-			<blockquote>
-[withheld]
-			</blockquote>
-		</td>
-	</tr>
-</table>
-</td></tr></table>
-          </TD>
-        </TR>
-      </TABLE>
-    </TD>
-  </TR>
-</TABLE>
-
-<?php include($toppath."/externals/en/footer.phtml"); ?>

Deleted: htdocs/trunk/www/quiz-results.phtml
===================================================================
--- htdocs/trunk/www/quiz-results.phtml	2006-02-11 18:37:58 UTC (rev 13208)
+++ htdocs/trunk/www/quiz-results.phtml	2006-02-11 18:41:24 UTC (rev 13209)
@@ -1,2811 +0,0 @@
-<?php $title = "Survey"; 
-include("../emulate_globals_on.php");
-include($toppath."/externals/en/header.phtml");
-include($toppath."/en/menu/menu-main-other.phtml");
-?>
-
-<div id="content">
-
-<h1>GnuCash User Survey Results</h1>
-<p>The first GnuCash user survey has ended, and the results are 
-shown below.  For those too busy to read through the results, we 
-preface the results with a summary.
-</p>
-<p>It has 45 questions, and its broken into 
-six sections:</p>
-<ul>
-<li>General
-<li>Commercializing GnuCash
-<li>Using GnuCash
-<li>Future Features
-<li>Online Banking
-<li>Personal Profile
-</ul>
-
-<p>The summary results and conclusions are below, by section.
-</p>
-
-<dl>
-<dt><b>General and Personal Profile</b>
-<dd><p>
-There were 828 respondents during the 67 days that the survey 
-was active.  Of these, 415 responded in the first 13 days.
-The later respondents mirrored the early responses almost exactly
-(see <a href="/en/quiz-results-early.phtml">the early results 
-here</a>), and thus this summary is identical to the one before.
-The fact that the averages changed so little seems to indicate 
-that there was no ballot stuffing, or that the stuffers were 
-very very clever.
-</p>
-
-<p>Respondents are overwhelmingly male (97%), with a median age in 
-late-20's, early-30's. They are highly educated: more than 80%
-have college or post-grad degrees.  They're highly technical:
-better than 2/3rds are programmers, engineers or scientists.
-And they are old-hands at GNU/Linux/BSD: more than 2/3rds have 
-been using Linux for over 3 years.  This sample is very, very 
-far from what one finds for the average Internet/computer user, 
-nearly half of which is a woman (the left half, presumably), 
-and most of which is non-technical (no surprise here, the 
-brain weighs much less than the muscles, guts and bones).
-At a later date, I hope to publish the results as they would 
-look if we surgically removed the geek elements.
-</p><p>
-Nearly 90% have used accounting programs before.  Less then
-20% find that GnuCash meets all their needs.  Nearly half wish it
-had more features, and about 25% can't use GnuCash because its 
-missing critical features.
-</p></dd>
-<dt><b>Commercializing GnuCash</b>
-<dd>
-Half of all respondents would buy a cdrom and a book. $20USD is
-the sweet spot for the CDROM price.  Support is not an issue.
-There is little interest in a 'GnuCash magazine' or in a 
-general-financial-advice website.</dd>
-
-<dt><b>Using GnuCash</b>
-<dd>
-About 80% use gnucash for core accounting, 10% for incidentals,
-and 10% for small-business.  25% would use an MS Windows version.
-</dd>
-
-<dt><b>Future Features</b>
-<dd><p>
-Top requests: more features, better documentation, all aimed 
-squarely at the home user.  Top picks for each feature
-category are below:
-</p>
-<ul>
-<li><p><b>Home users</b>: scheduled transactions (integrated into 
-    dayplanner/calendar), budgeting, more reports, online banking.
-</p></li>
-<li><p><b>Financial</b>: interest-bearing accounts, better general stock &amp; 
-    bond support.
-</p></li>
-<li><p><b>Interop</b>: export reports to spreadsheet.
-</p></li>
-<li><p><b>Online banking</b>: 80% of respondents want to do this. Top picks:
-    view balances, reconcile accounts, pay bills.  Little demand 
-    for alternative payment systems, and of those, paypal is the winner.
-    25% have used quicken/msmoney for online banking.
-    Security, privacy and reliability are all hot issues.
-</p></li>
-<li><p><b>Business Accounting</b>: support invoicing/billing, accounts-payable, 
-    receivable.  However, the results are sort of bizarre: users
-    are not that interested in an integrated address-book/contact 
-    manager/to-do list.  I find this is bizarre, since things like
-    billing/invoicing/checkprinting is almost useless if you don't 
-    have addresses and phone numbers to go with your invoice system.   
-    And accounts-payable is basically a fancy to-do-list, rendered
-    all-the-more useless without good checkprinting (i.e. print 
-    address on check) support.  So I'm tempted to conclude that
-    respondents have little/no actual experience in using a 
-    small-business accounting package. Indeed, we should filter results
-    for those who have actually used Peachtree/quickbooks or other
-    business package.
-</p></li>
-<li><p><b>dot-com accounting</b>: there is little interest in GnuCash as a 
-    back-end/tie-in to merchant systems. Again, maybe that's because
-    the respondents are primarily home users.</p></li>
-</ul>
-</dl>
-<p>
-
-
-<TABLE BORDER="0" CELLSPACING="0" CELLPADDING="0" WIDTH="100%">
-  <TR ALIGN="CENTER" VALIGN="MIDDLE">
-    <TD>
-<table bgcolor="#ffffff" border="1" width="95%"><tr><td>
-<h2>GnuCash Features Survey</h2>
-<h3></h3>
-<blockquote></blockquote>
-<table border="0" cellspacing="0" cellpadding="0" width="100%">
-<tr xbgcolor="#eeeeee">
-	<td>
-		<A NAME="Q1">1.</A>
-		<b>I've been using GnuCash since</b>
-<br>(pick one only)
-
-		<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>-- version 0.9/1.0</td>
-		<td align="right" width="60">81</td>
-		<td align="right" width="60">(9.8%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- version 1.2</td>
-		<td align="right" width="60">131</td>
-		<td align="right" width="60">(15.8%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- version 1.4</td>
-		<td align="right" width="60">274</td>
-		<td align="right" width="60">(33.1%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- version 1.6</td>
-		<td align="right" width="60">88</td>
-		<td align="right" width="60">(10.6%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- never used GnuCash</td>
-		<td align="right" width="60">247</td>
-		<td align="right" width="60">(29.8%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td><b>TOTAL</b></td>
-		<td align="right"><b>828</b></td>
-		<td align="right"><b>(99.2%)</b></td>
-	</tr>
-</table>
-		</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-		<A NAME="Q2">2.</A>
-		<b>I've been using Linux for about</b>
-<br>(pick one only)
-
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>-- 6 months or less</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=18><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;9.3%		</td>
-		<td align="right">(77)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- 1 year</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=16><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;8.2%		</td>
-		<td align="right">(68)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- 2 years</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=34><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;17.3%		</td>
-		<td align="right">(143)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- more than 3 years</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=126><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;63.4%		</td>
-		<td align="right">(525)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=196><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;98.2%</b></td>
-		<td width="10%" align="right"><b>828</b></td>
-	</tr>
-</table>
-		</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q3">3.</A>
-			<b>Other Accounting Packages</b>
-<br>(check all that apply)
-		<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>-- I have never used accounting software before</td>
-		<td align="right" width="60">114</td>
-		<td align="right" width="60">(13.8%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- I use a spreadsheet for my accounting</td>
-		<td align="right" width="60">137</td>
-		<td align="right" width="60">(16.5%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- I use Quicken or MSMoney regularly</td>
-		<td align="right" width="60">229</td>
-		<td align="right" width="60">(27.7%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- I used to use Quicken/MSMoney but stopped</td>
-		<td align="right" width="60">258</td>
-		<td align="right" width="60">(31.2%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- I use Peachtree, QuickBooks or another MSWindows accounting package</td>
-		<td align="right" width="60">73</td>
-		<td align="right" width="60">(8.8%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- I GnuCash almost exclusively</td>
-		<td align="right" width="60">271</td>
-		<td align="right" width="60">(32.7%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- I use another Linux/Unix-based accounting package</td>
-		<td align="right" width="60">28</td>
-		<td align="right" width="60">(3.4%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td><b>TOTAL</b></td>
-		<td align="right"><b>828</b></td>
-		<td align="right"><b>(134.1%)</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q4">4.</A>
-			<b>My Favorite Accounting Package of all time is</b>
-<br>(check all that apply)
-
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>-- GnuCash</td>
-		<td align="right" width="60">357</td>
-		<td align="right" width="60">(43.1%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- Kapital</td>
-		<td align="right" width="60">6</td>
-		<td align="right" width="60">(0.7%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- MoneyDance</td>
-		<td align="right" width="60">7</td>
-		<td align="right" width="60">(0.8%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- Quicken</td>
-		<td align="right" width="60">219</td>
-		<td align="right" width="60">(26.4%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- MSMoney</td>
-		<td align="right" width="60">92</td>
-		<td align="right" width="60">(11.1%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- QuickBooks</td>
-		<td align="right" width="60">32</td>
-		<td align="right" width="60">(3.9%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- Peachtree</td>
-		<td align="right" width="60">7</td>
-		<td align="right" width="60">(0.8%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- AppGen</td>
-		<td align="right" width="60">2</td>
-		<td align="right" width="60">(0.2%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- Great Plains</td>
-		<td align="right" width="60">3</td>
-		<td align="right" width="60">(0.4%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- ACCPAC</td>
-		<td align="right" width="60">5</td>
-		<td align="right" width="60">(0.6%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- Other (write in below)
-</td>
-		<td align="right" width="60">53</td>
-		<td align="right" width="60">(6.4%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td><b>TOTAL</b></td>
-		<td align="right"><b>828</b></td>
-		<td align="right"><b>(94.6%)</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q5">5.</A>
-			<b>Did we miss your favorite accounting program?
-Write it in!</b>
-			<blockquote>
-<table width="90%" border="0" cellpadding="1">
-	<tr><th align="left">#</th><th>Response</th></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>a cardboard box and a spouse with a knack for organizing ;-}</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>a pen and a piece of paper... it's amazing what modern technology can do :)</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>all the ones i've used suck!</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>also liked cbb</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Any good spreadsheet</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>BankVX : Freeware for OS/2</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>BasisPro (GLOWS)</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>BMS</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Cashbook</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Catagories</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">2</th><td>cbb</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>checkfree software</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Davicash</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Davilex and abcmuis</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Electronic Teller for OS/2</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Emma</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>gcalc.  no, seriously.</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Geldprofi</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>gnofin</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>harmony</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>I don't like any</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>I wrote my own some time ago using MSAccess</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>InCharge</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>InCharge on OS/2</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>It isn't a PC package!</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Manage Your Money (Mac)</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">4</th><td>managing your money</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Mind Your Own Business (aka MYOB - yes, it's an accounting package)</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>MoneyCounts</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>MoneyCounts (Bob Parsons)</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>MoneyPlex</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>MoneySmith</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Morningstar Portfolio Manager</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>msmoney 96</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">5</th><td>MYOB</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>MYOB (Australian)</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>MYOB - it's available in australia</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>MYOB Accountedge for the MAC</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>never used one</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>No - good job so long</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>No favorite, but would prefer using GnuCash.</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>None</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>none yet</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Notebook and Pen hidden under my pillow :o)</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>one that works, is intuitive, and doesn't lose data files</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Pastell</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>pencil and notebook</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>postgresql</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Quicken about 5 years ago</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>quicken before all the garbage features.</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Quickpay--not that good but simple and fast</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Real World</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>RMRBank on Psion PDA</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>SQL-Ledger</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">2</th><td>StarMoney</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>TIMS</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>UltraSoft Money (Palm)</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Xinvest</td></tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q6">6.</A>
-			<b>How Good is GnuCash?</b>
-<br>(check one only)
-
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>-- GnuCash is overkill for my accounting needs.
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=6><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;3.4%		</td>
-		<td align="right">(28)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- All of my accounting needs are met by GnuCash.
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=23><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;12.0%		</td>
-		<td align="right">(99)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- I use GnuCash but wish it had a few more features.
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=99><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;49.6%		</td>
-		<td align="right">(411)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- I wish I could use GnuCash, except that it doesn't
- have a feature that is really important to me.
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=51><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;26.0%		</td>
-		<td align="right">(215)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- GnuCash is really just not right for my accounting needs,
- and I just don't see how it ever could be.
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=1><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;0.7%		</td>
-		<td align="right">(6)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=183><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;91.7%</b></td>
-		<td width="10%" align="right"><b>828</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-<tr><td><hr></td></tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q7">7.</A>
-			<h2>Commercializing GnuCash</h2>
-
-<b>If GnuCash came on a CDROM, with an easy-to-install interface,
-would you buy a copy?</b>
-
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>Yes</td>
-		<td align="right" width="60">423</td>
-		<td align="right" width="60">(51.1%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>No</td>
-		<td align="right" width="60">383</td>
-		<td align="right" width="60">(46.3%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td align="right"><b>828</b></td>
-		<td align="right"><b>(97.3%)</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q8">8.</A>
-			<b>What is the most you'd be willing to pay for an easy-to-install
-CDROM version of GnuCash?
-</b>
-
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>   $5  US
-</td>
-		<td align="right" width="60">134</td>
-		<td align="right" width="60">(16.2%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>   $10 US
-</td>
-		<td align="right" width="60">180</td>
-		<td align="right" width="60">(21.7%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>   $20 US
-</td>
-		<td align="right" width="60">260</td>
-		<td align="right" width="60">(31.4%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>   $40 US
-</td>
-		<td align="right" width="60">106</td>
-		<td align="right" width="60">(12.8%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>   $80 US
-</td>
-		<td align="right" width="60">18</td>
-		<td align="right" width="60">(2.2%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td><b>TOTAL</b></td>
-		<td align="right"><b>828</b></td>
-		<td align="right"><b>(84.3%)</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q9">9.</A>
-			<b>Would you buy a book on how to use GnuCash?
-</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>Yes</td>
-		<td align="right" width="60">391</td>
-		<td align="right" width="60">(47.2%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>No</td>
-		<td align="right" width="60">408</td>
-		<td align="right" width="60">(49.3%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td align="right"><b>828</b></td>
-		<td align="right"><b>(96.5%)</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q10">10.</A>
-			<b>Would you buy commercial support for GnuCash?
-</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>Yes</td>
-		<td align="right" width="60">68</td>
-		<td align="right" width="60">(8.2%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>No</td>
-		<td align="right" width="60">732</td>
-		<td align="right" width="60">(88.4%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td align="right"><b>828</b></td>
-		<td align="right"><b>(96.6%)</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q11">11.</A>
-			<b>Which of these support options would be reasonable?
-</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>-- $50 per incident</td>
-		<td align="right" width="60">34</td>
-		<td align="right" width="60">(4.1%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- $50 per month flat rate</td>
-		<td align="right" width="60">20</td>
-		<td align="right" width="60">(2.4%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- $50 per hour till problem resolved</td>
-		<td align="right" width="60">13</td>
-		<td align="right" width="60">(1.6%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- $300 retainer with per incident billing</td>
-		<td align="right" width="60">7</td>
-		<td align="right" width="60">(0.8%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- $300 retainer with per hour billing</td>
-		<td align="right" width="60">4</td>
-		<td align="right" width="60">(0.5%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- $300/year with 3 incident maximum</td>
-		<td align="right" width="60">8</td>
-		<td align="right" width="60">(1.0%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- some other kind of pricing that is more reasonable for home users</td>
-		<td align="right" width="60">194</td>
-		<td align="right" width="60">(23.4%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- I wouldn't buy support</td>
-		<td align="right" width="60">552</td>
-		<td align="right" width="60">(66.7%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td align="right"><b>828</b></td>
-		<td align="right"><b>(100.5%)</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q12">12.</A>
-			<b>I would purchase confidential/secure data  backup for my files
-</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>Yes</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=32><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;16.3%		</td>
-		<td align="right">(135)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>No</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=157><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;78.7%		</td>
-		<td align="right">(652)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=190><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;95.0%</b></td>
-		<td width="10%" align="right"><b>828</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q13">13.</A>
-			<b>I would hire an accountant who knows GnuCash</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>Yes</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=70><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;35.0%		</td>
-		<td align="right">(290)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>No</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=116><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;58.3%		</td>
-		<td align="right">(483)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=186><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;93.4%</b></td>
-		<td width="10%" align="right"><b>828</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q14">14.</A>
-			<b>I would purchase custom (state-by-state, national) tax schedules</b>
-
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>Yes</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=98><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;49.0%		</td>
-		<td align="right">(406)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>No</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=91><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;45.8%		</td>
-		<td align="right">(379)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=189><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;94.8%</b></td>
-		<td width="10%" align="right"><b>828</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q15">15.</A>
-			<b>I would buy a monthly subscription to 'GnuCash Magazine'</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>Yes</td>
-		<td align="right" width="60">128</td>
-		<td align="right" width="60">(15.5%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>No</td>
-		<td align="right" width="60">660</td>
-		<td align="right" width="60">(79.7%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td align="right"><b>828</b></td>
-		<td align="right"><b>(95.2%)</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-<tr><td><hr></td></tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q16">16.</A>
-			<h2>Using GnuCash</h2>
-<b>My main interest in GnuCash is for:
-</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>-- Keeping track of occasional miscellaneous   expenses only (e.g. business travel reimbursements,   cost of personal hobby, personal loans to friends,   treasurer for small club/society, etc.)</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=3><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;1.8%		</td>
-		<td align="right">(15)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- Keeping track of online shopping expenses.</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=0><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;0.2%		</td>
-		<td align="right">(2)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- Preparing a quarterly or annual networth or cashflow or   income-expense report only.</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=0><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;0.5%		</td>
-		<td align="right">(4)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- Getting records straight to make tax filing easier.</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=4><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;2.4%		</td>
-		<td align="right">(20)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- Keeping track of all personal/home finances/budgets in detail.</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=158><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;79.1%		</td>
-		<td align="right">(655)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- Keeping track of Portfolio Value (Stocks/Mutual Funds/Bonds)</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=4><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;2.4%		</td>
-		<td align="right">(20)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- Small Business Accounting.</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=24><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;12.3%		</td>
-		<td align="right">(102)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=197><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;98.8%</b></td>
-		<td width="10%" align="right"><b>828</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q17">17.</A>
-			<b>Areas I would like to see GnuCash to evolve into:
-</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>-- Easier to use for average home user</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=69><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;34.9%		</td>
-		<td align="right">(289)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- More features for the home user</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=135><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;67.8%		</td>
-		<td align="right">(561)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- Small Business Features</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=57><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;28.6%		</td>
-		<td align="right">(237)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- Better Investment (Stock/Mutual Fund/Bond/Option/Futures) support</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=59><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;30.0%		</td>
-		<td align="right">(248)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- Better PDA (PalmPilot/etc) integration</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=61><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;30.9%		</td>
-		<td align="right">(256)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- The ultimate web-integrated online banking/shopping/billpay   tool.</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=67><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;33.9%		</td>
-		<td align="right">(281)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- Technically cutting edge (eWallet, MicroPayments etc).</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=23><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;12.0%		</td>
-		<td align="right">(99)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;</b></td>
-		<td width="10%" align="right"><b>828</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q18">18.</A>
-			<b>I would use a version of GnuCash for Microsoft Windows if it was available
-</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>Yes</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=54><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;27.1%		</td>
-		<td align="right">(224)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>No</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=142><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;71.3%		</td>
-		<td align="right">(590)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=196><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;98.3%</b></td>
-		<td width="10%" align="right"><b>828</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q19">19.</A>
-			<b>If you are interested in Windows, which version?
-</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>-- MS Windows 98 base edition</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=8><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;4.2%		</td>
-		<td align="right">(35)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- MS Windows 98 second edition</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=25><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;12.9%		</td>
-		<td align="right">(107)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- MS Windows NT </td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=10><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;5.2%		</td>
-		<td align="right">(43)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- MS Windows 2000 </td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=39><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;19.7%		</td>
-		<td align="right">(163)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- MS Windows ME (Millenium Edition)</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=7><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;4.0%		</td>
-		<td align="right">(33)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=92><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;46.0%</b></td>
-		<td width="10%" align="right"><b>828</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-<tr><td><hr></td></tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q20">20.</A>
-			<h2>Future Features</h2>
-Features I would most like to see in GnuCash
-(sorted by category)
-<br>(1==very important 3==nice to have 5==don't need this)
-<br><br>
-<b>General</b>
-			<blockquote>
-<table border="0">
-	<tr>
-		<td></td>
-		<td align="center" colspan="7">Average rank</td>
-	</tr>
-	<tr>
-		<td></td>
-		<td align="right" width="44">1</td>
-		<td align="right" width="40">2</td>
-		<td align="right" width="40">3</td>
-		<td align="right" width="40">4</td>
-		<td align="right" width="36">5</td>
-		<td width="20"></td>
-		<td></td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Easier to Use</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=107><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(2.7)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Better Documentation</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=89><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(2.2)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Better Support</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=140><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.5)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">More Features</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=84><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(2.1)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Easier Installation</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=114><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(2.9)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Monthly (Paper) Newsletter/Magazine</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=170><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(4.3)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Financial Advice and Information on GnuCash Website</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=153><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.8)</td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q21">21.</A>
-			<b>Home</b>
-<br>(1==very important 3==nice to have 5==don't need this)
-
-			<blockquote>
-<table border="0">
-	<tr>
-		<td></td>
-		<td align="center" colspan="7">Average rank</td>
-	</tr>
-	<tr>
-		<td></td>
-		<td align="right" width="44">1</td>
-		<td align="right" width="40">2</td>
-		<td align="right" width="40">3</td>
-		<td align="right" width="40">4</td>
-		<td align="right" width="36">5</td>
-		<td width="20"></td>
-		<td></td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">More basic/overview reports for home use</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=87><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(2.2)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Home Inventory</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=124><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.1)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Insurance Records Organizer</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=130><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.3)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Scanner/photo support (for attached photos/images   of home inventory, or scanned paper receipts/invoices)</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=145><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.6)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Vital Records Organizer (bank account and investment account   names, addresses, numbers, passport number, D/L number,   insurance policy names, numbers)</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=123><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.1)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Income Tax Return preparation support</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=104><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(2.6)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Online banking (statement review, account reconciliation)</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=86><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(2.2)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Online billpay (pay bills/ authorize transfers)</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=103><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(2.6)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Better integration with online shopping venues (e.g. amazon.com)</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=148><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.7)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Better support for online payment methods (e.g. paypal, Qchex, egold)</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=135><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.4)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Budgeting and budget reports for home use</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=82><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(2.1)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Scheduled/regular/recurring transactions</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=73><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(1.8)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Use of calendar/dayplanner type interface for   scheduled transactions</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=90><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(2.3)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Support for alerts/popups for upcoming transactions</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=98><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(2.5)</td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q22">22.</A>
-			<b>Financial/Investment</b><br>(1==very important 3==nice to have 5==don't need this)
-
-			<blockquote>
-<table border="0">
-	<tr>
-		<td></td>
-		<td align="center" colspan="7">Average rank</td>
-	</tr>
-	<tr>
-		<td></td>
-		<td align="right" width="44">1</td>
-		<td align="right" width="40">2</td>
-		<td align="right" width="40">3</td>
-		<td align="right" width="40">4</td>
-		<td align="right" width="36">5</td>
-		<td width="20"></td>
-		<td></td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Improved support for international currencies</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=127><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.2)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Better support for stock/bond info</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=117><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(2.9)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Support for bonds, mortgages, interest   bearing instruments and accounts.</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=108><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(2.7)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Support for Business-oriented budgets</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=137><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.4)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Support for graphs of prices, moving averages, etc.</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=119><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.0)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Support for volume, beta, buy/sell indicators.</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=144><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.6)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Support for real-time trading abilities</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=157><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.9)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Support for on-line/breaking news access</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=162><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(4.1)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Support for financial research (reports on companies,   historical price graphs, etc).</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=152><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.8)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Investment (Buy/Sell) alerts, limit-order alerts</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=153><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.8)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Cost-basis/FIFO accounting</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=144><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.6)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Simplified split/spinoff/merger support</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=147><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.7)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Enhanced split/spinoff/merger support</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=148><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.7)</td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q23">23.</A>
-			<b>Interoperability</b><br>(1==very important 3==nice to have 5==don't need this)
-
-			<blockquote>
-<table border="0">
-	<tr>
-		<td></td>
-		<td align="center" colspan="7">Average rank</td>
-	</tr>
-	<tr>
-		<td></td>
-		<td align="right" width="44">1</td>
-		<td align="right" width="40">2</td>
-		<td align="right" width="40">3</td>
-		<td align="right" width="40">4</td>
-		<td align="right" width="36">5</td>
-		<td width="20"></td>
-		<td></td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Ability to Import IIF Files (Intuit Interchange Format)</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=134><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.4)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Ability to Export IIF Files (Intuit Interchange Format)</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=140><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.5)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Ability to Export QIF Files (Quicken Interchange Format)</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=110><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(2.8)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Ability to Import QFX Files (Quicken OFX Format)</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=114><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(2.9)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Ability to Export QFX Files (Quicken OFX Format)</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=121><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.0)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Ability to Import Peachtree/comma-delimited files</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=136><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.4)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Ability to Export reports to spreadsheet</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=98><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(2.5)</td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q24">24.</A>
-			<b>Other Import/Export Function</b>
-(write in)
-			<blockquote>
-<table width="90%" border="0" cellpadding="1">
-	<tr><th align="left">#</th><th>Response</th></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Ability to atore report in some word processor format (e.g. AbiWord, OpenOffice, ...) and presentation programs (e.g. impress, MagicPoint, OpenOffice). This  allows for better formating and give it the look you like. Company sometimes have strict design rules for presentations.
-
-This gives the end user a last chance to 'correct' the data, of course ;-)</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Ability to automatically connect to a bank and import QFX files like Quicken does for Discover.  Better QIF import functionality.  For example, allowing keyboard navigation to pick an account when importing.</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Ability to connect to SQL backends on accounting databases like Great Plains</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Ability to export .TXF files.  Or any other method to export tax related information</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Ability to export data to comma delimited and export to gnumeric</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Ability to export in some sort of column delimited format to load to databases and also to ability of gnucash to operate with a database in the backend.</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Ability to export reports to plain text files or to html files.</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Ability to handle weird QIF formats (downloaded from bank for account reconciliation).  Version 1.4 can't handle my bank's files.</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Ability to import archival data in Quicken backup data sets</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Ability to Import From Microsoft Money</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Ability to Import MYOB Accounting file format</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Ability to Import/Export MYOB files</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Ability to read/write a Quicken file from a Windows/DOS partition (provided, of course, that your system was properly set up with both DOS &amp; Linux partitions)... so that I could manage my finances from 'either side of the fence', so to speak, at any moment I chose.</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Ability to synchronize with PocketQuicken</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Able to export to a format TurboTax can read.</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>All Import/Export functionality is of a high priority.  If everyone can use GnuCash seamlessly from their old product, then GnuCash will become standard.</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>All Linux-based programs</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>All major format import/export is important.</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Anything remotely Microsoft related!!</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Barclays Bank Online Export Format</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Being able to import directly from MS Money would be nice.</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>better support for deleting redundant transactions
-imported by QIF</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Better, more colorful, easier to use GUI.  I love the software but it is not pretty to look at.</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Bug fixes</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>CBB  (gnucash 1.6 can't read the qif files I get from cbb 0.8.1)
-
-I want to merge two gnucash files</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Check printing!
-Quicker updated from Ximian for GnuCash (they still don't have 1.6 available yet)</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>client list, vendor list, inventory list, </td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Converting actuel Currency to EURO!!! All my entries are DEM, switching to EURO does not change the value!</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>CSV, common database formats</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Easy &quot;envelope style&quot; budgeting.  So you can allocate $X/month for purpose foo and if you don't spend the full $X, it carries over to the next month.  At any time, you can see how much is in your envelope.  (kindof like savings goals in Quicken)</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Excel format, MS Money and MYOB.</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Export graphs/reports.  I can't get this function to work.  It exports the html, but not with the Guppi plots.  </td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Export to comma-delimited would be very nice</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>export to gnumeric on account basis with an extra sheet for destination accounts (booking categories) one per account</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Export to HTML. Maybe 1.6 allows this but I haven't searched for this feature in 1.6 yet.</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>export to text</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Export to text files for simple scanning by Perl (or other) scripts.</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Export/import (tab,comma) delimited files.</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>External Program to Import/convert an MSMoney file into GNUCash format.</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Exxport of accounts to a file
-Re-Import of those accounts into a different GNU-Cash file!!!</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>from and into MS Money</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Generally be able to import/export data to/from delimited files (.CSV and likes), ability to exchange data with and use RDBMs to
-store data, for example DB2, Oracle, ODBC sources. </td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>german BTX / HBCI</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Get my credit card transcation information from those websites.</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Get zlib compiled in and out for the main xml file, no need to take up 2.8 megs instead of 200k.  You gzip -d it if you need to go into it by hand. Also, gnucash doesn't seem to have an autobackup cleaner.  Perhaps something similar to the logrotate commands would be ideal.  (I am a sysadmin so perhaps this should not be a default).</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Girotel (Dutch online banking system)</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Gnumeric spreadsheet support specifically</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Graphing the effects of scheduled/re-occuring transactions on accounts.</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>I am *desperate* to find a Linux alternative to Peachtree Complete Accounting, which is just too costly on multiple Windows stations. I absolutely will go with GnuCash if you allow easy import!</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>I am not really sure of the name of the interchange format
-I need, I need to exchange with the home version of quicken
-going back about 5 years.</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>I see no reason to abandon QIF, but, generally speaking, it doesn't matter which format you use. The most important thing for me is to mate gnucash with my palm in an easy fashion. Why not write gnucash for palmOS?</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>I want a view like the Portfolio Manager Performance view of the Morningstar.com
-
-And I do want the function to get Japanese stock and mutual fund information from Yahoo.japan automatically. </td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>I would like to have msmoney-96 interface... The lists of accounts make me unsure of how much do I have :-) (Maybe I didn't explore the interface too much , lol)</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>I would really dig a quick fill function to make entering transactions easier.</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>I'd like to see some sort of export to an open exchange format.
-This is really critical.  I'm not sure if QFX is it (I don't know
-enough about it).</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>I've got 8 years of personal data in Quicken now in about 40 accounts. Importing with QIF means generating
-40 different files. It'd be wonderful if Gnucash would inhale the actual quicken data file.</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>If the data was saved in a more human-readable type of ascii than the xml .xac file, that would be nice.  Say straight scheme lists, pretty-printed.  However this is very low in priority.</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>implementing some kind of scripting would allow many more formats
-based on text files in a traditional *NIX sense. I'd really like to be able to do e.g. a &quot;cat myexpenses | awk -f prog.awk | gnucashimport&quot;. This would be real fun!</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>import account statements designed for use with Quicken</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Import crash logs ;-)
-Import online banking data</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Import from Managing Your Money for Windows.</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Import MS Money</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Import MS Money files</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Import MS Money files.</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Import MSMoney .mny Files</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Import MSMoney97 files</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Import old gnucash files, i can open file but i have this error:
-Error: gnc_mbstowcs: bad multi-byte conversion
-Error: gnc_mbstowcs: bad multi-byte conversion
-
-so my old file is not useable :((((</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Import Quickbooks</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Import/Export to Emma files(http://rainbow.mimuw.edu.pl/~la181249/emma/home.php3)</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Import/Export to sql backend
-(can be handled via csv files also...)</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>importing accounts from a gnucash file</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Improved QIF import
-</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Integration with PocketMoney (Palm Pilot)</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>It would be nice to support automatic downloads from online banking institutes - specifically sites like etrade that have alliances with Microsoft Money and Quicken, and don't support simple QIF downloads.</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>M$Money and Business</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Maybe even some sort of 'live update' with Gnumeric.  So if I wanted some feature that wasn't in Gnucash I could have it automatically put certian data into a Gnumeric sheet, and then generate the report from there.  I think that most people understand a spreadsheet better than Scheme (even though personally I really like Scheme)</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Microsoft Money</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Microsoft Money 2000</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Moneydance, kapital</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>More reports. More detailed reports. More complete reports. Easier-to-customize reports. More reports!
-
-Note, I haven't yet use 1.6, so I'm sure these are already better than what I'm using now.</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">5</th><td>MS Money</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>MS Money .dat import and export ability.</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">2</th><td>MSMoney</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>MsMoney can export QIF/QFX as I remember, so QIF/QFX seems to be enough...</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>MSN Money</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Musr be able to universaly inmport/export data</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>My online bank has no functionality at this time to export data - it would be nice to have some ability to define how to extract it from a saved html page.</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>MYOB</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>MYOB
-</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>MySQL database integration to the same level as the PostgreSQL integration</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>mysql import/export--very important</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>NACHA Presumably this might be part of an online system</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>No ultra-deep chains of dependencies.  I stopped downloading/building/installing dependencies after about 4 levels.   Come on!
-
-I want source, but package up all the dependent source with it please.</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Not familiar with above-mentioned formats, but it's essential I can export my data as plain text, or preferably XML. I don't want my data locked up in some binary format.</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>OFX OFX OFX OFX OFX OFX OFX  (not just quicken, banks, too!)
-
-(getting the picture? :)</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>OFX support.. for bank reconciliation</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>OFX...</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Once off Quicken, don't need it!</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Palm Intergration / Multiple Users or Accounts</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Palm Pilot Conduit</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>PalmOS Integration!
-</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Pay more attention to (and try to fix) the array of Quickens. I have been trying to import data from Mac versions of Quicken and
-it is a futile task!</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>PDA Module for Palm Pilot/Handspring Visor</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>PDA Sync. Freecoins (PalmCoins).</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>perhaps export tax information for whatever format turbotax reads. 
-
-</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Perhaps not an import function ... but better report writing tools
-(keep in mind: I am running the first copy od GnuCash I ever received - the Debian Stable 1.3.4-3 version (which I now see as being quite dated).</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Perl interface for writing custom import/export filters.</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Quattro Pro &amp; Star Office 5.x</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Quickbooks</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Reports to PDF</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Sales transactions in XML-RPC</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Some form of XML (or eventually structured text)
-and please! an Euro converter for proprietary file format</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>SQL Database connectivity via unixODBC or better yet Gnome-DB</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>sql databases i.e. postgresql, Interbase</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>SQL import/ export</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>StarMoney</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Subsets of data far managing your current month's worth of data on a Palm or other PDA.</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Support for Gnumeric and Excel exports.  A really easy way of me transfering all my Small Business accounts from Quickbooks Pro to Gnucash.</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Support for mortgages and loans generally, along with recurring transactions and preentry of bills are by far the most important &quot;must haves&quot;.</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Support for on-line banking. ie I can pay bills and transfer money between accounts on-line at Royal Bank of Canada.</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Sync with Palm apps or gnucash mini-app for Palm</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>The ability to export back to quicken has been missing for some time.  If users knew they could export their data back to quicken if they did not like gnucash then I think more people would give gnucash a chance!  This is the one feature I long for!</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>The ability to import/sync with other Schedual/organizer/contactmanagement type programs. on PDA or Windows platform. So payments due and can be entered on the road and imported/synced at home.</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>The thing that is holding me back is that windows based software can integrate databases with a palm pilot.  This is important for the reason that I use the windows based software as my main bd, but when I travel I like to have a mobile version that is easily updated when I come back to the main db.</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>This is for Q25:  The addressbook/contact/todo stuff should be able to use teh stuff from evolutiuon.  I think this is why bonobo was first started. time to make use of it.</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Tool for automatic conversion of existing transaction from one currency to another (i.e. ITL -&gt; EUR).</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>True MSMoney file and not qif. Qif sucks with MSMoney. </td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Use arbitrary gnc-prices Stock sources (like vwd, not only the ones offered from the gui in gnucash 1.4).</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Use of or export/import to/from SQL data base so I can write my own code in SQL instead
-of your scheme interface (looks like that is beta in 1.6).</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Web Interface</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>whatever makes it possible to work with people using mainstream systems.
-Otherwise, they will tell you what to use, and you may have to consider
-switching to MicroSoft products.</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>When Standard formats are supported my bank will be likely to provide its import/export functionality</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Why no QIF import listed?</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Wizard to import an entire Quicken Database &quot;intact&quot; from an existing quicken directory.</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Write the XML standard for Home Accounting Programs.  Be the lead that other programs want to follow.</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>XML</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>XML/ HTML</td></tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q25">25.</A>
-			<b>Traditional Business Accounting:
-</b><br>(1==very important 3==nice to have 5==don't need this)
-
-			<blockquote>
-<table border="0">
-	<tr>
-		<td></td>
-		<td align="center" colspan="7">Average rank</td>
-	</tr>
-	<tr>
-		<td></td>
-		<td align="right" width="44">1</td>
-		<td align="right" width="40">2</td>
-		<td align="right" width="40">3</td>
-		<td align="right" width="40">4</td>
-		<td align="right" width="36">5</td>
-		<td width="20"></td>
-		<td></td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Integrated/interoperable addressbook</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=141><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.5)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Integrated/interoperable contact manager</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=146><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.7)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Integrated todo list</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=142><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.6)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Integrated time-tracker/bill-by-the-hour feature</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=138><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.5)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Accounts Payable</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=119><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.0)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Accounts Receivable</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=119><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.0)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Invoicing/Billing (basic)</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=120><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.0)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Invoicing/Billing (sophisticated)</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=132><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.3)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Shipping/Receiving</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=144><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.6)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Job Cost Estimation/Bids</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=145><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.6)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Job Cost Tracking</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=142><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.6)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Sales Orders/Job Orders/Pick Lists/Packing Lists</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=149><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.7)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Purchase Orders</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=143><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.6)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Inventory Management</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=146><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.7)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Assembly/Manufacturing Inventory</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=158><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(4.0)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">US Payroll</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=155><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.9)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">European Payroll</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=158><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(4.0)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">South American/Asian/Other/Generic Payroll</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=167><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(4.2)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Bill of Materials</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=157><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.9)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">US Depreciation/Amortization Schedules</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=158><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(4.0)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">European Depreciation/Amortization Schedules</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=159><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(4.0)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Generic Depreciation/Amortization Schedules</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=153><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.8)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">US Tax Modules</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=143><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.6)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">European/Other Tax Modules</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=143><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.6)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Accrual Accounting</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=143><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.6)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Cost Accounting</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=143><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.6)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Fund Accounting</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=149><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.7)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Audit Trails</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=138><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.5)</td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q26">26.</A>
-			<b>Modern Business Accounting:
-</b><br>(1==very important 3==nice to have 5==don't need this)
-
-			<blockquote>
-<table border="0">
-	<tr>
-		<td></td>
-		<td align="center" colspan="7">Average rank</td>
-	</tr>
-	<tr>
-		<td></td>
-		<td align="right" width="44">1</td>
-		<td align="right" width="40">2</td>
-		<td align="right" width="40">3</td>
-		<td align="right" width="40">4</td>
-		<td align="right" width="36">5</td>
-		<td width="20"></td>
-		<td></td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Credit Card Processing</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=139><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.5)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Online credit card verification/authorization/debit</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=144><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.6)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Interfaces to other data sources (e.g. ISP customer bandwidth usage)</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=151><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.8)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Streamlined data entry by multiple users</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=142><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.6)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Ability to handle large (>50K transactions) datasets</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=142><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.6)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Sophisticated Reports/Projections</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=129><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.2)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Better multi-user support</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=130><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.3)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Support for SQL databases other than Postgres</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=132><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.3)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Support for on-line purchasing/delivery/billing protocols</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=146><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.7)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">ASP-like Web-based client-server system</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=155><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.9)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">MS Windows Support</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=155><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.9)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Macintosh Support</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=165><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(4.1)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Integration with web shopping carts (e.g. Zelerate/OpenSales)</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=164><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(4.1)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Automated e-mail or web-based bill presentment</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=147><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.7)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Merchant support for paypal/checkfree/banking</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=149><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.7)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Integration with document scanners/image handling features</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=155><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.9)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">Integration with Point-of-Sale systems</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=156><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.9)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Modular, reusable components that can be used in other apps</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=133><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.3)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td align="right">ERP features (e.g. integration with gnuE)</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=152><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.8)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td align="right">Workflow</td>
-		<td align="left" width="220" colspan="6">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9
-				width=153><img src="/phpESP/images/hbar_r.gif" height=9 width=4>		</td>
-		<td align="right" width="60">(3.8)</td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-<tr><td><hr></td></tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q27">27.</A>
-			<h2>Online Banking</h2>
-<b>Would you like to do Online Banking with GnuCash?
-</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>Yes</td>
-		<td align="right" width="60">673</td>
-		<td align="right" width="60">(81.3%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>No</td>
-		<td align="right" width="60">140</td>
-		<td align="right" width="60">(16.9%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td align="right"><b>828</b></td>
-		<td align="right"><b>(98.2%)</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q28">28.</A>
-			<b>Do you know the name of the online banking interface
-you would like to see supported?
-</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>-- OFX (US)
-</td>
-		<td align="right" width="60">240</td>
-		<td align="right" width="60">(29.0%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- HBCI (Germany -- Home Banking Computer Interface)
-</td>
-		<td align="right" width="60">85</td>
-		<td align="right" width="60">(10.3%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- Don't know
-</td>
-		<td align="right" width="60">424</td>
-		<td align="right" width="60">(51.2%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td><b>TOTAL</b></td>
-		<td align="right"><b>828</b></td>
-		<td align="right"><b>(90.5%)</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q29">29.</A>
-			<b>Other banking interface</b>
-<br>(write in)
-			<blockquote>
-<table width="90%" border="0" cellpadding="1">
-	<tr><th align="left">#</th><th>Response</th></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>(don't know - but I'd be willing to move to a bank[UK] that you did support)</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>ABN Amro, Netherlands</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>ABSA - South Africa</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Australian</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Bank of Ameria (I dont know what they use)</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>bank of america &amp; bank of Austria (unknown interfaces)</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Bank of America's</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Barclay Bank (UK)</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Barclays.com  - if it's possible to integrate with it.</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>BofA -- QIF, unknown OFX support</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>BroadwayBank.com</td></tr>
-<tr bgcolor="#ffffff"><th align="left">2</th><td>BTX</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>BTX (DATEX-J, T-Online)</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>BTX (German)</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">3</th><td>BTX (Germany)</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Check Free</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">3</th><td>CheckFree</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Commerce Bank, U.S.</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Commonwealth Bank of Australia Netbank(www.netbank.com.au) it's a web browser interface that works on all browsers and OS's</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Dutch Postbank (Girotel) and Belgian BBL or UN/EDIFACT</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>ESP-Link</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>ETradeBank</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Existing web-based interfaces</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>File download not supported - would have to parse HTML</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>fortis pcbanking (France, Belgium, Netherlands) http://www.fortisbank.be &amp; webbanking</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>France - Banque Populaire</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Föreingssparbanken (sweden), and SEB (sweden too). But they are web interfaces...</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>German T-Online?</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Girotel(Dutch)</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>HTML Form Scraping</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">2</th><td>https</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>I don't think my bank supports online banking yet :-(</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>I would like to like on download for Quicken and have gnucash receive my accounting information. Like Quicken would.</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>I would like to see integration with Swiss Banks, some allow download of SWIFT type files for transactions. UBS is used by Quicken Swiss Edition via http for Stock price infromation (it doesn't work though...)</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>interface into the checkfree system</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Internet PIN/TAN</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Interpay / AbnAmro</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>KeyBank</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>My current bank do not yet have this functionality</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>NACHA</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>new zealand ones</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>No sure of the name, it's used by Canadian credit unions</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Not sure precisely, but my bank (The Bank of Ireland) would be a useful</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Not Sure with current institution</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>OFX (EU)</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>PFM</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>PIN/TAN Germany</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>QIF</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>QIF downloads</td></tr>
-<tr bgcolor="#ffffff"><th align="left">2</th><td>Quicken</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Quicken's QXF (related to OFX I think)</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Rabobank (Netherlands)</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Royal Bank</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>See www.westpac.com.au</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>SSL</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>ssl-support like in StarMoney</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Suncorp (Australia)</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>t-online (German BTX)</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>t-online (germany), web formulars</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>use Royal Bank of Scotland</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>used in Switzerland (UBS-CS,etc.)Consors</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Using PIN/TAN numbers</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Wachovia Bank</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Web based forms</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Web interface (HTTPS)</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>webdox</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Wells Fargo</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Whatever Barclays Bank (UK) use</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Whatever Chase Online is</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Whatever CIBC uses.</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>whatever UK uses</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>whatever university federal credit union uses</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Whatever used in UK</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>www.dcu.org</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>yellownet (swiss post)</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>ZKA(Germany)</td></tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q30">30.</A>
-			<b>Online Banking features that you would most like to see
-in GnuCash
-</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>-- View bank balances
-</td>
-		<td align="right" width="60">671</td>
-		<td align="right" width="60">(81.0%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- Reconcile bank statements
-</td>
-		<td align="right" width="60">611</td>
-		<td align="right" width="60">(73.8%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- Review credit card statements
-</td>
-		<td align="right" width="60">548</td>
-		<td align="right" width="60">(66.2%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- Transfer funds within one bank
-</td>
-		<td align="right" width="60">510</td>
-		<td align="right" width="60">(61.6%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- Wire funds between banks
-</td>
-		<td align="right" width="60">330</td>
-		<td align="right" width="60">(39.9%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- Pay bills online
-</td>
-		<td align="right" width="60">538</td>
-		<td align="right" width="60">(65.0%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- Transfer funds between brokerage/mutual fund and bank
-</td>
-		<td align="right" width="60">231</td>
-		<td align="right" width="60">(27.9%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- Buy/sell mutual funds
-</td>
-		<td align="right" width="60">150</td>
-		<td align="right" width="60">(18.1%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- Buy/sell/place (limit) orders for stocks/options/futures
-</td>
-		<td align="right" width="60">161</td>
-		<td align="right" width="60">(19.4%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- Integrated with retail online shopping (amazon.com, etc).
-</td>
-		<td align="right" width="60">135</td>
-		<td align="right" width="60">(16.3%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td align="right"><b>828</b></td>
-		<td align="right"><b>(469.2%)</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q31">31.</A>
-			<b>Would you be willing to pay a fee for these some of
-these services? How much?</b>
-(Yes, we would all like it to be free, of course, but
-if there was a service charge, what is the most you would pay?)
-
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>-- no</td>
-		<td align="right" width="60">278</td>
-		<td align="right" width="60">(33.6%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- $3 US/month</td>
-		<td align="right" width="60">306</td>
-		<td align="right" width="60">(37.0%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- $10 US/month</td>
-		<td align="right" width="60">161</td>
-		<td align="right" width="60">(19.4%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- $20 US/month</td>
-		<td align="right" width="60">15</td>
-		<td align="right" width="60">(1.8%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td align="right"><b>828</b></td>
-		<td align="right"><b>(91.8%)</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q32">32.</A>
-			<b>Who would you be willing to engage for such a for-fee service?
-</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>-- A dot-com </td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=34><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;17.4%		</td>
-		<td align="right">(144)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- A large, well-known, name-brand company</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=62><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;31.3%		</td>
-		<td align="right">(259)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- My immediate bank/credit card provider only</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=113><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;56.5%		</td>
-		<td align="right">(468)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;</b></td>
-		<td width="10%" align="right"><b>828</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q33">33.</A>
-			<b>I would like to see GnuCash interfaces for the following
-'non-traditional' payment systems:
-</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>-- PayPal</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=61><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;30.6%		</td>
-		<td align="right">(253)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- E-Gold</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=8><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;4.2%		</td>
-		<td align="right">(35)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- Qchex</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=3><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;1.9%		</td>
-		<td align="right">(16)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- Achex</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=3><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;1.6%		</td>
-		<td align="right">(13)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- Checkfree</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=20><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;10.3%		</td>
-		<td align="right">(85)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=97><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;48.6%</b></td>
-		<td width="10%" align="right"><b>828</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q34">34.</A>
-			<b>Other payment system</b>
-<br>(write in)
-
-			<blockquote>
-<table width="90%" border="0" cellpadding="1">
-	<tr><th align="left">#</th><th>Response</th></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>
-Any anonymous, e-cash system.</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>bartering</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Bidpay</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Billpoint (it's a good replacement for paypal that supports Canadian users better)</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>BPay</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>BPay (Used in Australia)</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>BPay. It's used in Australia. See bpay.com.au I think.</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>chek by phone</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Dutch and Belgian payment systems</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>eBucks</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>fatshoe.com</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>GnuCash ... err... GnuDigiCash ... errr... GNU community-backed funny-money.</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>I desperately want an anonymous or psuedononymous payment system to protect my privacy.  I'll gladly pay anyone who can provide such a solution.</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>I didn't understand question #32.
-
-And #38 - I don't use all the features because there are extra charges when I can easily do it on the web for free.</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>I don't know much about this stuff</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>I'm writing here because there's no box later on. I'm running gnome 1.4 on a linuxPPC box, but I bet this goes for x86 users as well. The *first* time gnucash tells me I need to download additional libraries, you've lost half your potential users. A lot of this is caused by the mess that is RPM, and a good bit by Gnome being out of control.
-
-The only solution I see is to sell CDs of gnucash with ALL the needed cruft. A static package. I promise you, whatever faults Quicken has, It never expected me to spend hours chasing down ridiculous, circular RPM dependencies. As a mac/linux user, I'm also pretty much stuck with Ximian for gnome stuff-a bad thing indeed: defacto proprietary, actually.
-
-That having been said, gnucash is looking pretty good. There needs to be docs that don't teach double entry bookkeeping first, but just tell the user how to think Quicken-&gt;gnucash. Something like:
-
-Expenses = Catagories
-
-thanks for reading,
-
-Rloef at interfold.com</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>international payments, as a means of short-circuiting the current bank
-rip-off policies allowed by their respective monopolies.</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Kagi</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>mybills.com</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Not familiar with</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Not sure</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>Paybox</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Print on Quicken 0r MS Money checks</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>SET</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>swiss postcheque
-In Europe many national post offices also offer a kind of banking which is usually very good and cheap for small amounts.</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>There has got to be an XML standard for this typ of thing.  If not., GNUCash should start it.</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>This is actually answering q 38: i do use online banking and bill pay with my bank, not intuit or ms money</td></tr>
-<tr bgcolor="#ffffff"><th align="left">1</th><td>We use PayPal for our website since we feel our customers already trust it. If we could manage our PayPal account with a small/mid-sized business version of GnuCash, I would love you forever and recommend GnuCash to every business owner I meet!!!</td></tr>
-<tr bgcolor="#eeeeee"><th align="left">1</th><td>Yahoo Bill Pay</td></tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q35">35.</A>
-			<b>Have you used Quicken/MSMoney for bill pay or online banking?
-</b>
-
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>Yes</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=52><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;26.4%		</td>
-		<td align="right">(219)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>No</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=139><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;69.6%		</td>
-		<td align="right">(576)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=192><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;96.0%</b></td>
-		<td width="10%" align="right"><b>828</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q36">36.</A>
-			<b>If you use the online banking features in Quicken/MSMoney or
-through a Web interface, how often do you check account balances?
-</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>-- daily
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=28><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;14.0%		</td>
-		<td align="right">(116)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- weekly
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=53><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;26.7%		</td>
-		<td align="right">(221)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- monthly
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=11><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;5.6%		</td>
-		<td align="right">(46)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- never
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=26><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;13.4%		</td>
-		<td align="right">(111)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=119><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;59.7%</b></td>
-		<td width="10%" align="right"><b>828</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q37">37.</A>
-			<b>If you use the online banking features in Quicken/MSMoney or
-through a Web interface, how often do you pay bills or transfer funds?
-</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>-- daily
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=7><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;3.7%		</td>
-		<td align="right">(31)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- weekly
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=44><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;22.1%		</td>
-		<td align="right">(183)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- monthly
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=28><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;14.5%		</td>
-		<td align="right">(120)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- never
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=35><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;17.5%		</td>
-		<td align="right">(145)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=115><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;57.9%</b></td>
-		<td width="10%" align="right"><b>828</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q38">38.</A>
-			<b>If you don't use online banking features now, which of the following
-are your reasons?
-</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>-- I didn't know I could do that
-</td>
-		<td align="right" width="60">28</td>
-		<td align="right" width="60">(3.4%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- I don't care for it/ just plain not interested.
-</td>
-		<td align="right" width="60">62</td>
-		<td align="right" width="60">(7.5%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- My bank does not offer online banking
-</td>
-		<td align="right" width="60">68</td>
-		<td align="right" width="60">(8.2%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- I haven't gotten around to trying it, but would like to.
-</td>
-		<td align="right" width="60">121</td>
-		<td align="right" width="60">(14.6%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- Ease of use (these systems are too complex, not worth the effort).
-</td>
-		<td align="right" width="60">41</td>
-		<td align="right" width="60">(5.0%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- Security concerns (hackers/crackers/theft/fraud)
-</td>
-		<td align="right" width="60">132</td>
-		<td align="right" width="60">(15.9%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- Privacy concerns (others accessing my financial records)
-</td>
-		<td align="right" width="60">126</td>
-		<td align="right" width="60">(15.2%)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- Reliability concerns (lost records, late payments, mistakes, confused billing)
-</td>
-		<td align="right" width="60">120</td>
-		<td align="right" width="60">(14.5%)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td align="right"><b>828</b></td>
-		<td align="right"><b>(84.3%)</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q39">39.</A>
-			<b>Would you use an online-banking feature inside of GnuCash,
-in the future (next 6-24 months) if the above concerns concerns were fixed?
-</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>Yes</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=133><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;66.7%		</td>
-		<td align="right">(552)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>No</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=20><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;10.0%		</td>
-		<td align="right">(83)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=153><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;76.7%</b></td>
-		<td width="10%" align="right"><b>828</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q40">40.</A>
-			<b>If you do use online banking features, do you still have
-some nagging concerns about it?
-</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>-- Security concerns (hackers/crackers/theft/fraud)
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=63><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;31.5%		</td>
-		<td align="right">(261)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- Privacy concerns (other accessing my financial records)
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=56><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;28.0%		</td>
-		<td align="right">(232)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>-- Reliability concerns (lost records, late payments, mistakes, confused billing)
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=58><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;29.5%		</td>
-		<td align="right">(244)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>-- Ease of use (website/special client are confusing/hard to use).
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=32><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;16.4%		</td>
-		<td align="right">(136)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;</b></td>
-		<td width="10%" align="right"><b>828</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-<tr><td><hr></td></tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q41">41.</A>
-			<h2>Personal Profile</h2>
-OK, this is the end of this long survey.
-Tell us about yourself.
-<br><br>
-<b>Sex</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>Male</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=191><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;95.5%		</td>
-		<td align="right">(791)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>Female</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=4><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;2.2%		</td>
-		<td align="right">(18)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=195><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;97.7%</b></td>
-		<td width="10%" align="right"><b>828</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q42">42.</A>
-			<b>Age</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>< 26</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=53><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;26.9%		</td>
-		<td align="right">(223)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>26<36</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=95><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;47.6%		</td>
-		<td align="right">(394)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>36<50</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=37><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;18.7%		</td>
-		<td align="right">(155)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>50<</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=9><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;4.6%		</td>
-		<td align="right">(38)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=195><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;97.8%</b></td>
-		<td width="10%" align="right"><b>828</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q43">43.</A>
-			<b>Education</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>Grade School/Lycee</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=1><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;1.0%		</td>
-		<td align="right">(8)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>High School/Diplomat</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=21><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;10.5%		</td>
-		<td align="right">(87)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>College/Univeristy</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=115><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;57.7%		</td>
-		<td align="right">(478)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>Grad School/Doctorate</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=57><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;28.5%		</td>
-		<td align="right">(236)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=195><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;97.7%</b></td>
-		<td width="10%" align="right"><b>828</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#ffffff">
- 		<td>
-			<A NAME="Q44">44.</A>
-			<b>Occupation</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>Student</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=31><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;15.6%		</td>
-		<td align="right">(129)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>Homemaker</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=1><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;0.7%		</td>
-		<td align="right">(6)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>Administrative/Sales/Service</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=2><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;1.2%		</td>
-		<td align="right">(10)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>Professional (doctor/lawyer/architect/etc)
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=46><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;23.1%		</td>
-		<td align="right">(191)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>Scientist
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=17><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;8.6%		</td>
-		<td align="right">(71)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>Work in startup/small business
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=33><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;16.7%		</td>
-		<td align="right">(138)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>Salaried Employee of midsize/large business
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=54><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;27.3%		</td>
-		<td align="right">(226)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>Executive</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=7><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;3.7%		</td>
-		<td align="right">(31)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=193><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;96.9%</b></td>
-		<td width="10%" align="right"><b>828</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-	<tr xbgcolor="#eeeeee">
- 		<td>
-			<A NAME="Q45">45.</A>
-			<b>Computer/Technical Skills
-</b>
-			<blockquote>
-<table width="90%" border="0">
-	<tr bgcolor="#eeeeee">
-		<td>None/Beginer</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=0><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;0.2%		</td>
-		<td align="right">(2)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>Ordinary user
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=2><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;1.3%		</td>
-		<td align="right">(11)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>Knowledgeable 'power user'/ h4><0r
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=20><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;10.3%		</td>
-		<td align="right">(85)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>Computer hobbyist/Technology enthusiast
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=30><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;15.3%		</td>
-		<td align="right">(127)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td>Scientist/Engineer</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=42><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;21.3%		</td>
-		<td align="right">(176)</td>
-	</tr>
-	<tr bgcolor="#ffffff">
-		<td>Software Programmer
-</td>
-		<td align="left">
-&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=99><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;49.9%		</td>
-		<td align="right">(413)</td>
-	</tr>
-	<tr bgcolor="#eeeeee">
-		<td><b>TOTAL</b></td>
-		<td width="40%"><b>&nbsp;<img src="/phpESP/images/hbar_l.gif" height=9 width=4><img src="/phpESP/images/hbar.gif" height=9 width=196><img src="/phpESP/images/hbar_r.gif" height=9 width=4>&nbsp;98.3%</b></td>
-		<td width="10%" align="right"><b>828</b></td>
-	</tr>
-</table>
-			</blockquote>
-		</td>
-	</tr>
-</table>
-</td></tr></table>
-          </TD>
-        </TR>
-      </TABLE>
-</div>
-<?php include($toppath."/externals/en/footer.phtml"); ?>

Deleted: htdocs/trunk/www/quiz.phtml
===================================================================
--- htdocs/trunk/www/quiz.phtml	2006-02-11 18:37:58 UTC (rev 13208)
+++ htdocs/trunk/www/quiz.phtml	2006-02-11 18:41:24 UTC (rev 13209)
@@ -1,59 +0,0 @@
-<?php 
-$title = "Survey"; 
-include("../emulate_globals_on.php");
-include($toppath."/externals/en/header.phtml");
-include($toppath."/en/menu/menu-main-general.phtml");
-?>
-
-</div>
-<div id="content">
-
-<h1>GnuCash User Survey</h1>
-
-<p><b>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</b>
-</p>
-<p><b>
-The GnuCash Features Survey is now closed.  You can view the results 
-<a href="/en/quiz-results.phtml">here</a>
-</b></p>
-
-<p>
-<b>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</b>
-</p><p>
-<b>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</b>
-</p><p>
-<b>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</b>
-</p><p>
-
-GnuCash is at a cross-roads in its development.  Most of the features one might
-expect in a basic accounting program have been implemented, and the few that
-haven't been will be soon.   After that, there are
-<a href="/en/roadmap.phtml">
-many paths that GnuCash can take</a>.
-But where to?  This survey will help shape that decision.  Of course, GnuCash
-is a project driven by volunteers, and any programmer with an 'itch to scratch'
-can implement any feature they wish for GnuCash.   But maybe the results of this
-survey will help focus the debate and the energies a bit.   This is your chance
-to make your wishes known.
-</p><p>
-Warning: this is a long survey. It has 45 questions, and its broken into 
-six sections:
-</p><ul>
-<li>General
-<li>Commercializing GnuCash
-<li>Using GnuCash
-<li>Future Features
-<li>Online Banking
-<li>Personal Profile
-</ul>
-
-<p>Feel free to skip questions that you
-don't understand, or those that you don't really have an opinion on.
-Skip entire pages if they bore you.
-But please: one vote per person, and no ballot-stuffing.
-</p>
-
-<?php $sid=2;
-       include("/home/httpd/tools/phpESP-1.2beta3/public/handler.php");?> 
-
-<?php include($toppath."/externals/en/footer.phtml"); ?>

Deleted: htdocs/trunk/www/required.phtml
===================================================================
--- htdocs/trunk/www/required.phtml	2006-02-11 18:37:58 UTC (rev 13208)
+++ htdocs/trunk/www/required.phtml	2006-02-11 18:41:24 UTC (rev 13209)
@@ -1,256 +0,0 @@
-<?php $title = "Software Requirements"; ?>
-<?php
-include("../emulate_globals_on.php");
-include($toppath."/externals/en/header.phtml");
-include($toppath."/en/menu/menu-main-general.phtml");
-?>
-
-<div id="content">
-
-<h1>Software Dependencies</h1>
-
-<p>GnuCash depends on a number of important contributing technologies
-in order to implement its major functions.  If you want to compile
-and work on GnuCash, you will need to install a recent version of
-these libraries.
-</p><p>
-Without a good package manager (<i>e.g.</i> Debian <tt>apt-get</tt>),
-it can be quite tedious to find, download and install all of the
-required packages (<i>nightmare</i> is a word that has been used).
-Therefore, if you are not a programmer, and just want to <b>use</b>
-GnuCash, you should stick to the version supplied by your favorite
-Linux distribution (<i>e.g.</i> by installing from the vendor's CDROM),
-and install using that distribution's standard installation methods.
-If you decide that you cannot live with the version that came with your
-distro, and you don't have <tt>apt-get</tt> or a similar tool, then
-be prepared for a rather long and involved install/upgrade proceedure.
-Note that even with <tt>apt-get</tt>, some packages may still need
-to be installed manually.
-</p>
-<p>
-The majority of the GnuCash 1.6.x dependencies are satisfied by installing
-standard <a href="http://www.gnome.org/">Gnome 1.4</a> core libraries.
-The only dependencies beyond a standard Gnome 1.4 installation are
-<a href="#guppi">Guppi</a>, <a
-href="#guile">Guile</a>, <a href="#slib">slib</a> and <a
-href="#gwrap">G-Wrap</a>.
-<br><br>
-
-<div class="tblborder">
-   <table border=0 cellpadding=5 cellspacing=1
-    style="background-color:#cacaf7" width="100%">
-<colgroup><col width="20%">
-<col width="40%">
-<col width="40%"></colgroup>
-   <tr>
-     <td style="background-color:#666699">
-    <b style="color:white">Name</b></td>
-     <td style="background-color:#666699">
-    <b style="color:white">Description</b></td>
-     <td style="background-color:#666699">
-    <b style="color:white">Link</b></td>
-   </tr>
-   <tr>
-     <td colspan=3>
-<B>GUI Toolkits:</B><BR>
-     </td>
-         </tr>
-
-   <tr class="divider">
-     <td>
-    <img src="/images/icons/document.txt.gif" width=16 height=16
-    alt="document icon">&nbsp;Gtk+
-     </td>
-     <td>The Gimp Toolkit</td>
-     <td><a href="http://www.gtk.org/">http://www.gtk.org/</a></td>
-   </tr>
-
-   <tr>
-     <td>
-     <img src="/images/icons/document.txt.gif" width=16 height=16
-     alt="document icon" >&nbsp;Gnome
-     </td>
-     <td>The application infrastructure</td>
-     <td><a href="http://www.gnome.org">http://www.gnome.org</a></td>
-   </tr>
-
-   <tr class="divider">
-     <td>
-     <img src="/images/icons/document.txt.gif" width=16 height=16
-     alt="document icon" >&nbsp;Glade
-     </td>
-     <td>GTK+ User Interface Builder - This is how many
-    of the gnucash GUI's are designed.</td>
-     <td><a href="http://glade.gnome.org">http://glade.gnome.org</a></td>
-   </tr>
-
-   <tr>
-     <td colspan=3>
-     <B>Scripting Interface:</B>
-     </td>
-   </tr>
-
-   <tr class="divider">
-    <td>
-    <img src="/images/icons/document.txt.gif" width=16 height=16
-    alt="document icon" id="guile">&nbsp;Guile
-    </td>
-    <td>A Scheme interpreter with C programming
-    interfaces - This is how gnucash provides 'extension' and rapid
-    implementation capabilities.</td>
-    <td><a href="http://www.gnu.org/software/guile/guile.html">
-    http://www.gnu.org/software/guile/guile.html</a><br> -   You'll need at
-    least 1.3, and 1.6 is strongly recommended.</td>
-    </tr>
-
-   <tr>
-     <td>
-      <img src="/images/icons/document.txt.gif" width=16 height=16
-      alt="document icon" id="gwrap">&nbsp;G-wrap
-     </td>
-     <td>A tool for autogenerating scheme bindings for
-    C lanugage functions, structures &amp; enums.</td>
-     <td><a href="http://www.gnucash.org/pub/g-wrap/">
-    http://http.gnucash.org/pub/g-wrap/</a><br> - You'll want the latest
-    in the 1.3 series (1.3.4 or newer)</td>
-   </tr>
-
-   <tr class="divider">
-     <td>
-      <img src="/images/icons/document.txt.gif" width=16 height=16
-      alt="document icon" id="slib">&nbsp;slib
-     </td>
-     <td>Scheme library - Miscellaneous scheme functions
-        used by GnuCash.</td>
-     <td>
-    <a href="http://www-swiss.ai.mit.edu/~jaffer/SLIB.html">
-    http://www-swiss.ai.mit.edu/~jaffer/SLIB.html</a></td>
-   </tr>
-
-   <tr>
-     <td colspan=3>
-       <B>Web Infrastructure:</B>
-     </td>
-   </tr>
-
-   <tr class="divider">
-     <td>
-      <img src="/images/icons/document.txt.gif" width=16 height=16
-      alt="document icon" >&nbsp;GtkHTML
-     </td>
-     <td>The gtk html layout engine - used by gnucash to
-    display help documentation, reports and graphs.</td>
-     <td>
-    <a href="http://www.advogato.org/proj/GtkHTML/">
-    http://www.advogato.org/proj/GtkHTML/</a></td>
-   </tr>
-
-   <tr>
-     <td>
-       <img src="/images/icons/document.txt.gif" width=16 height=16
-       alt="document icon" >&nbsp;libghttp
-     </td>
-     <td>The HTTP library - used by gnucash to chat to
-    the http protocol to access web servers.</td>
-     <td>
-    <a href="http://www.gnome.org/">http://www.gnome.org/</a></td>
-   </tr>
-
-   <tr class="divider">
-     <td>
-      <img src="/images/icons/document.txt.gif" width=16 height=16
-      alt="document icon" >&nbsp;Gnome XML
-     </td>
-     <td valign=top>The XML parsing library - used by gnucash to read
-    its file format.</td>
-     <td valign=top>
-    <a href="http://xmlsoft.org/">http://xmlsoft.org/</a></td>
-   </tr>
-
-   <tr>
-      <td colspan=3>
-       <B>Other:</B>
-     </td>
-   </tr>
-
-   <tr class="divider">
-     <td>
-      <img src="/images/icons/document.txt.gif" width=16 height=16
-      alt="document icon" >&nbsp;Finance::Quote
-     </td>
-     <td>A perl module to get stock price quotes and
-    currency exchange rates from off the net - This is how gnucash
-    accesses price data on the net. You can use the
-    'update-finance-quote' script included with the distribution to
-    obtain a recent version (CPAN is required).</td>
-     <td>
-    <a href="http://finance-quote.sourceforge.net/">
-    http://finance-quote.sourceforge.net/</a></td>
-   </tr>
-
-   <tr>
-     <td>
-      <img src="/images/icons/document.txt.gif" width=16 height=16
-      alt="document icon" >&nbsp;Finance::QuoteHist
-     </td>
-     <td>A perl module to fetch historical stock prices.</td>
-     <td>
-    <a href="http://sourceforge.net/projects/quotehist/">
-    http://sourceforge.net/projects/quotehist/</a></td>
-   </tr>
-
-   <tr class="divider">
-     <td>
-      <img src="/images/icons/document.txt.gif" width=16 height=16
-      alt="document icon" >&nbsp;LibOFX
-     </td>
-     <td>Library for parsing OFX (Open Financial Exchange)
-    data. Used by many American banks.</td>
-     <td>
-    <a href="http://libofx.sourceforge.net/">
-    http://libofx.sourceforge.net/</a>
-     </td>
-   </tr>
-
-   <tr>
-     <td>
-      <img src="/images/icons/document.txt.gif" width=16 height=16
-      alt="document icon" >&nbsp;OpenHBCI
-     </td>
-     <td>Library for connecting to German banks that
-    support HBCI.</td>
-     <td>
-    <a href="http://openhbci.sourceforge.net/">
-    http://openhbci.sourceforge.net/</a><br>
-     Optional; required only if you want to connect to HBCI banks.</td>
-   </tr>
-
-   <tr class="divider">
-     <td>
-      <img src="/images/icons/document.txt.gif" width=16 height=16
-      alt="document icon" id="guppi">&nbsp;Guppi
-     </td>
-     <td>A graphical plotting and analysis tool - used to generate 
-	and display gnucash charts and plots.</td>
-     <td>
-    <a href="http://www.gnome.org/guppi/">http://www.gnome.org/guppi/</a>
-    <br> - Any recent version will work, but 0.35.5 or later is 
-	required for full functionality.</td>
-   </tr>
-
-   <tr>
-     <td>
-      <img src="/images/icons/document.txt.gif" width=16 height=16
-      alt="document icon" >&nbsp;Gnome Print
-     </td>
-     <td>gnome printing architecture - used by gnucash
-    for check printing &amp; general printing.</td>
-     <td>
-    <a href="http://ftp.gnome.org/pub/GNOME/sources/gnome-print/">
-    http://ftp.gnome.org/pub/GNOME/ sources/gnome-print/</a></td>
-   </tr>
-   </table>
-</div>
-
-</div>
-<?php include($toppath."/externals/en/footer.phtml"); ?>

Deleted: htdocs/trunk/www/roadmap.phtml
===================================================================
--- htdocs/trunk/www/roadmap.phtml	2006-02-11 18:37:58 UTC (rev 13208)
+++ htdocs/trunk/www/roadmap.phtml	2006-02-11 18:41:24 UTC (rev 13209)
@@ -1,230 +0,0 @@
-<?php $title = "Roadmap"; ?>
-<?php
-include("../emulate_globals_on.php");
-include($toppath."/externals/en/header.phtml");
-include($toppath."/en/menu/menu-main-developer.phtml");
-?>
-<div id="content">
-
-<h1>The Road Ahead</h1>
-
-<p>Gnucash is approaching the point where it will soon support most of the 
-basic features one expects from an accounting/financial application.  When
-it gets there, hopefully soon, we will have to contemplate the future.
-What lies ahead?
-</p>
-
-<p>There are several directions that the project can move in.  These
-directions serve different constituencies, different communities of 
-users.  Many of these seem incompatible, and so the tension must be 
-resolved, or a choice must be made.  The list below is ordered along 
-the lines of 'most obvious' to 'far out there'.</p>
-<p>
-We asked for your opinions on this matter back in 2001 in the 
-<a href="/en/quiz.phtml">User Survey</a>.  The responses
-are <a href="/en/quiz-results/phtml">tabulated  here</a>.</p>
-
-<dl>
-<dt><b>Small Business Version</b>
-<dd>This is probably the #1 most requested 'enhancement' to GnuCash.
-    The use of GNU/Linux is sky-rocketing in small businesses; yet there
-    are no easy-to-install, easy-to-administer small-business accounting 
-    programs, at least not of the 'open' kind.  The list of desired features 
-    dates back to the dawn of computing half a century ago: payroll, 
-    accounts-payable &amp; receivable, invoicing, billing.   
-    <p>
-    There are some real problems with moving in this direction.
-    Not the least of these is alienating GnuCash's core constituency: 
-    the casual/home user.  If we build something with whiz-bang features,
-    the home user may conclude that this is an application that is too 
-    complex,  too hard to use, too hard to understand.   They'll go 
-    looking elsewhere, and meanwhile, we will have done GNU/Linux (and *BSD)
-    a dis-service.  The adoption of GNU/Linux by average (home) computer users
-    is gated by the availability of the basic desktop cornerstones.
-    Personal Finance Management is one of those cornerstones.
-    We've got to have a simple, easy-to-install, easy-to-use personal
-    financial manager.
-    <p>
-    
-<dt><b>Sophisticated Investor</b>
-<dd>GnuCash downloads stock prices and currency exchange rates from
-    off the net.   The current version has some basic graphing 
-    capabilities.  How fancy should one get?  The new GnuCash reporting 
-    structure should make it easy, or at least straightforward, to create 
-    a variety of sophisticated graphs, charts and reports.  These might
-    range from simple technical analysis such as 90-day moving averages 
-    trading volume and beta, to arcane indicators like 'Bolton-Tremblay', 
-    'Zweig Thrust' or 'McClellan Oscillator'.
-    <p>
-    Downside?  The 'investor' community is smaller than the home user
-    community.  And stock technical analysis doesn't necessarily require
-    accounting features.  Thus, such needs may be best served by other
-    systems: and there's a 
-    <a href="http://www.gnucash.org/en/links.phtml?linkpage=stock">
-    variety</a> of these to choose from.  Should GnuCash reject 
-    stock-oriented patches? No. Should core developers focus on stock 
-    trading?  Probably not.
-    <p>
-
-<dt><b>The Financial Browser/The Ultimate Home User Experience</b>
-<dd>As the user interface gets slicker, and the druids become more and 
-    more helpful in guiding the novice user, a natural direction for
-    GnuCash would be to become the ultimate home user financial experience. 
-    That is, to build the 'Financial Browser for 
-    the Web', the 'Nautilus of Financial Transactions'.   For starters,
-    this means using OFX and supporting on-line bill-pay and banking.
-    In some distant future, this means integrating with on-line shopping,
-    so that your shopping spree shows up in GnuCash without your having 
-    to hand-enter all those transactions. 
-    <p>
-    Some of this integration is mundane: e.g. using an appointment book
-    to show upcoming bills and budget items, or using a calendar 
-    to enter bills into GnuCash.  
-    More broadly, providing a set of accounting interfaces 
-    such that any other package (for example, a stock technical analysis
-    package) can push data into, and get data out of GnuCash: the holy 
-    grail of desktop integration.
-    <p>
-
-<dt><b>The Financial Browser, Part II: the PDA</b>
-<dd>GnuCash, the Gnome Desktop, and the KDE desktop have been flying in 
-    the face of 'common wisdom': the coming extinction of the 
-    general-purpose PC.  According to this theory, lithe, portable,
-    special-purpose hand-held devices will make PC's irrelevant. 
-    Of course, the theory is flawed:  a large keyboard and a large screen
-    provide convenience that no small palm-top can provide.  None-the-less,
-    one must look over ones shoulder.   Can GnuCash be slimed down
-    and fit onto one of those Linux hand-helds, e.g. the YOPI?
-    Right now, it depends intimately on a large number of packages for 
-    many features, and so a sliming exercise is hard to imagine. 
-    But then, a financial manger is a cornerstone application for 
-    the desktop, it is equally so for the palm-top.  Someday, not
-    too long from now, wireless, hand-held 'financial browser' will
-    be as ubiquitous as the wallet.
-    <p>
-    
-
-<dt><b>The Financial Browser, Part III: the ASP</b>
-<dd>Gnucash has a built-in web browser.  This browser can not only 
-    show standard web pages, but it also understands special markup
-    for interactive graphs, and even embedded checkbook registers
-    (for example, take a look <a href="/surf/guppi-pie-demo.html">
-    this page</a> with a recent build of GnuCash).  GnuCash uses
-    these features to create and display reports.  There is no reason
-    to have these reports be local to the desktop machine: they could
-    be on 'any' website, any server.
-    <p>
-    GnuCash uses XML as a file-format, but this XML could just as 
-    easily be served up by a cgi-bin running on a web server.  
-    There's some prototype demo code in <tt>src/experimental/cgi-bin</tt>,
-    or you can try loading <a href="/surf/demo.gml">this link</a>
-    with GnuCash.  In other words, GnuCash can offer a nice, slick,
-    web-integrated front-end to a web-based financial ASP server. 
-    A front-end that spanks any other financial ASP out there.
-    <p>
-    What's wrong with traditional ASP's?  Hmm, let me count the ways.
-    (1) World Wide Wait.  No desktop app on some old 386 ever took  
-    15 seconds to respond when you hit the 'enter' key.  (2) Those
-    'beautiful' web forms.  They might be pretty enough for asking 
-    you about airline flight info or filling in your name and address,
-    (yes, CSS makes web pages prettier), but they still don't hold
-    a candle to desktop-specific apps.  Imagine being able to use
-    <a href="/images/gnome-1.5/savings-journal.gif">a real ledger 
-    interface</a> for working financial info in a web site.
-    (3) Disconnect from the net.  Even if your ASP never crashes, 
-    and you never lose your network connection, its still conceivable
-    that you might want to fiddle with financial info on your laptop
-    somewhere where there's no handy Internet connection.  
-    We think we know how to make GnuCash work in 'disconnected' mode,
-    using cached data, which can then sync up with the big 'ol server 
-    when it gets back on the net again.  That's what the GnuCash engine
-    is designed to do.  (Demo soon?)
-    <p>
-
-<dt><b>ERP</b>
-<dd>These days, it's inappropriate to talk about business accounting
-    without also mentioning ERP in the conversation.   GnuCash is not,
-    and probably will never be an ERP system, but might become the 
-    component of one.  The basic idea behind ERP is that different
-    businesses have different business practices: no one does things
-    in quite the same way.  And so, there is no 'one-size-fits-all'
-    application; instead, one hopes for a framework with extensibility, 
-    easy integration, and rapid-development features.  The hope is that
-    one can 
-    quickly hook up that brand-new ecommerce package to that decades-old
-    billing application.  GnuCash doesn't do this.  Nor is GnuCash easy
-    to modify, extend, or enhance.  It takes some considerable 
-    sophistication to add new features to GnuCash.  In particular, this
-    means that it's hard to integrate GnuCash into your business processes:
-    you can't just tell it to suck out financial info from here, and 
-    dump it to there.  If you want to do this, go check out 
-    <a href="http://www.gnue.org/">GnuE at http://www.gnue.org/</a>:
-    it was specifically designed for this.
-    <p>
-    On the other hand, the GnuCash infrastructure is becoming general 
-    enough that it wouldn't be hard to mold it into a variety of 
-    related financial tools.  And if GnuCash really is to succeed in the
-    business accounting world, it will have to become savvy in talking to 
-    other systems.
-    <p>
-    
-<dt><b>Napster for Money</b>
-<dd>If you thought the music industry hated Napster, just wait till 
-    you see 
-    <a href="http://slashdot.org/article.pl?sid=01/03/30/1953235&amp;mode=thread">
-    how the feds and the banks react to its financial equivalent</a>.  
-    Suppose there
-    really were an infrastructure for putting secure, anonymous eCash
-    into your eWallet.  Or rather, of giving it to your friend or business
-    partner, and they in turn could spend it on real goods and services.
-    Now, don't confuse the idea of an eWallet with the idea of eMoney.
-    There are any number of efforts underway to create eMoney: some
-    with pretend-money, such as flooz, or frequent flyer miles, some with
-    real money, such as 
-    <a href="http://www.e-gold.com/e-gold.asp?cid=281678">e-Gold</a>,
-    pay-pal, or the latest ecommerce scheme from 
-    your credit-card company.  All of these schemes require a centralized 
-    server (traditionally called a 'Bank').  This centralized server
-    validates your identity, and confirms that you have the money you 
-    claim to have.  And actually moves that money around.  And works
-    in concert with the IRS to make sure you don't have unreported, 
-    taxable income.  And with the DEA, to make sure you're not 
-    money-laundering.  And with... well, that's a matter of 
-    national security.
-    <p>
-    By contrast, my wallet is a 'bank' in the sense of holding money; 
-    it just doesn't charge me a service fee for doing so.  And
-    when I use it for some anonymous peer-to-peer money sharing,
-    such as paying the kid down the block to mow the lawn, it 
-    doesn't tell the IRS that the kid owes 'em money any more than 
-    gnutella tells Metallica about song downloads.  So, where 
-    were we?  Oh yes, now try to imagine an 'eWallet'.   
-    <p>
-    Now, GnuCash will probably never be the Gnutella for money.  
-    For several reasons.  Whatever it is that you exchange on-line, 
-    its just funny-money, the electronic equivalent of chain-store 
-    coupons, until you have a broker, an under-writer, a market-maker 
-    who will guarantee the exchange of your eCash for that other 
-    kind of money that banks accept.  And as you may guess, the 
-    resulting shadow economy would prompt the Federal Reserve Bank
-    to shut down said underwriter faster than Alan Greenspan can say 
-    'the expansion in the M2 Money Supply Index'.  None-the-less,
-    the cypherpunks made a promise in 1995 that someday, everyone
-    really would have an e-Wallet, and this concept is still fun to 
-    think about even as it remains futuristic.
-    
-    <p>
-    
-</dl>
-<div>
-<h1>The Last Word?</h1>
-The above is just a sketch of possible future
-directions.  A more practical, down-to-earth, detailed list
-of planned work items can be reviewed on the 
-<a href="http://www.linas.org/linux/gnucash/projects.html">
-GnuCash Projects</a> page.
-</div>
-
-</div>
-
-<?php include($toppath."/externals/en/footer.phtml"); ?>

Deleted: htdocs/trunk/www/screenshots.phtml
===================================================================
--- htdocs/trunk/www/screenshots.phtml	2006-02-11 18:37:58 UTC (rev 13208)
+++ htdocs/trunk/www/screenshots.phtml	2006-02-11 18:41:24 UTC (rev 13209)
@@ -1,58 +0,0 @@
-<?php $title = "Screenshots"; ?>
-<?php
-include("../emulate_globals_on.php");
-include($toppath."/externals/en/header.phtml");
-include($toppath."/en/menu/menu-main-general.phtml");
-?>
-<div id="content">
-
-<h1>Screenshots</h1>
-
-<div class="tblborder">
-   <table cellpadding=5 cellspacing=1 width="100%">
-   <colgroup><col width="25%"><col width="45%"><col width="30%"></colgroup>
-   <tr>
-     <td class="tblheader"><b>Screenshot</b></td>
-     <td class="tblheader"><b>Description</b></td>
-     <td class="tblheader"><b>Thumbnail</b></td>
-   </tr>
-<?php
-
-	$screenshotpath = "images/gnome-1.6/";
-	$imagesrc =  $screenshotpath;
-	$imagepath = $screenshotpath;
-
-	$d = dir($imagepath);
-	while($entry=$d->read()) {
-	  if(ereg("-thumb", $entry)) { continue; }
-	  if(!ereg("gif$", $entry)) { continue; }
-
-	$file_clean = explode(".", $entry);
-	$entry = $file_clean[0]."-thumb";
-	  
-	$description = implode("", file($imagepath.$entry.".gif.description")); 
-	$name = implode("", file($imagepath.$entry.".gif.name"));
-?>
-   <tr>
-     <td style="text-align:left">
-	<img src="images/icons/search_icon.gif" 
-	width=16 height=16 alt="screenshot icon">&nbsp;<a 
-	href="<?php echo $imagesrc.$file_clean[0].".gif"; ?>"><?php 
-	echo $name; ?></a>
-     </td>
-     <td><?php echo $description; ?></td>
-     <td><a href="<?php echo $imagesrc.$file_clean[0].".gif"; ?>"><img 
-	alt="<?php echo $file_clean[0]; ?>"
-	src="<?php echo $imagesrc.$file_clean[0]."-thumb.gif"; ?>"></a>
-    </td>
-   </tr>
-<?php 
-  }
-  $d->close();
-?>
-
-   </table>
-</div>
-
-</div>
-<?php include($toppath."/externals/en/footer.phtml"); ?>

Deleted: htdocs/trunk/www/search.phtml
===================================================================
--- htdocs/trunk/www/search.phtml	2006-02-11 18:37:58 UTC (rev 13208)
+++ htdocs/trunk/www/search.phtml	2006-02-11 18:41:24 UTC (rev 13209)
@@ -1,140 +0,0 @@
-<?php 
-$title = "Accounting Software for Linux";
-include("../emulate_globals_on.php");
-include($toppath."/externals/en/header.phtml");
-include($toppath."/en/menu/menu-main-search.phtml");
-?>
-<div id="content">
-
-<?php
-
-include($toppath."/en/components/table_top.phtml");
-print "Search results for <b>$words</b>";
-include($toppath."/en/components/table_middle.phtml");
-
-$HTSEARCH_PROG = "$toppath/htdig.sh";
-# $swords = $words;
-$swords = EscapeShellCmd(UrlEncode($words));
-# $swords = UrlEncode(EscapeShellCmd($words));
-# $config = "htdig";
-# $format = "htdig";
-$matchesperpage = 10;
-# $sort = "time";
-
-if(!$page)
-{
-#   $query = "config=$config&format=$format&words=$swords&restrict=$restrict&matchesperpage=$matchesperpage&sort=$sort&exclude=$exclude";
-    $query = "words=$swords&restrict=$restrict&matchesperpage=$matchesperpage&sort=$sort&exclude=$exclude";
-#    $query = "words=$swords&matchesperpage=$matchesperpage";
-    $page = 1; 
-}
-else
-#    $query = "config=$config&format=$format&words=$swords&restrict=$restrict&matchesperpage=$matchesperpage&page=$page&sort=$sort&exclude=$exclude";
-    $query = "words=$swords&restrict=$restrict&matchesperpage=$matchesperpage&page=$page&sort=$sort&exclude=$exclude";
-#    $query = "words=$swords&matchesperpage=$matchesperpage&page=$page";
-
-/**** FUNCTIONS ****/
-
-# function page_list($page, $matches)
-# {
-#    global $matchesperpage, $restrict, $words;
-# 
-#    $TotalPages = (int)($matches / $matchesperpage);
-# 
-#    if($matches % $matchesperpage) $TotalPages++;
-# 
-#    print "<center>\n";
-# 
-#    if($page > 1)
-#    {
-#        print "<a href=\"/search.php3?restrict=".urlencode($restrict)."&words=".urlencode($words)."";
-#        print "&page=".($page-1)."\">"; 
-#        print "<img src=\"/images/prev-yes.jpg\" border=\"0\"></a>\n";
-#    }
-#    else
-#        print "<img src=\"/images/prev-no.jpg\" border=\"0\">";
-#     
-#    if($page < $TotalPages)
-#    {
-#        print "<a href=\"/search.php3?restrict=".urlencode($restrict)."&words=".urlencode($words)."";
-#        print "&page=".($page+1)."\">";
-#        print "<img src=\"/images/next-yes.jpg\" border=\"0\"></a>\n";
-#    }
-#    else
-#        print "<img src=\"/images/next-no.jpg\" border=\"0\">";
-#    
-#    print "</center>\n";
-# }
-
-$command="$HTSEARCH_PROG \"$query\"";
-exec($command,$result);
-
-$rc = count($result);
-
-# if ($rc<3):
-#     echo "There was an error executing this query.  Please try later.\n";
-# elseif ($result[2]=="NOMATCH"):
-#     echo "There were no matches for <B>$words</B> found on the website.<P>&nbsp;";
-#     echo "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\n";
-# elseif ($result[2]=="SYNTAXERROR"):
-#     echo "There is a syntax error in your search for <B>$words</B>:<BR>";
-#     echo "<PRE>" . $result[3] . "</PRE>\n";
-# else:
-#     $matches = $result[2];
-#     $firstdisplayed = $result[3];
-#     $lastdisplayed = $result[4];
-#     $words = $result[5];
-#     $pagelist = $result[6];
-# 
-#     echo "<center><h3>Search for <B>'$words'</B> returned <B>$matches</B> match";
-#     echo ($matches==1) ? "" : "es";
-#     echo "</h3></center>";
-# 
-#     //page_list($page, $matches);
-# 
-#     $i=7;
-# 
-#     print "<br><br>";
-
-    $i=1;
- 
-    while($i<$rc) 
-    {
-        echo $result[$i] . "\n";
-        $i = $i + 1;
-    }
-    
-#this is broken
-#     while($i<$rc) 
-#     {
-# 
-#         # grab the match information
-# 
-#         $title = $result[$i];
-#         $url = $result[$i+1];
-#         $percent = $result[$i+2];
-#         $excerpt = $result[$i+3];
-# 
-#         # output the match information
-#         # append session id if necessary!
-# 
-# echo "<hr>Duude<hr>\n";
-# echo $title . $url . $percent . $excerpt . "\n";
-# #        echo "<font size=-1><A HREF=\"$url\">$title</A>\n";
-# #        echo "<font size=-2><b>(" . $percent . "% match)</b></font><BR>\n";
-# #        echo "<blockquote>" . $excerpt . "</blockquote><BR>\n";
-# 
-#         # move to the next match
-# 
-#         $i = $i + 4;
-#     }
-# endif;
-
-# page_list($page, $matches);
-
-include($toppath."/en/components/table_bottom.phtml");
-
-?>
-</div>
-
-<?php include($toppath."/externals/en/footer.phtml"); ?>

Deleted: htdocs/trunk/www/state_of_the_gnucash_project.phtml
===================================================================
--- htdocs/trunk/www/state_of_the_gnucash_project.phtml	2006-02-11 18:37:58 UTC (rev 13208)
+++ htdocs/trunk/www/state_of_the_gnucash_project.phtml	2006-02-11 18:41:24 UTC (rev 13209)
@@ -1,73 +0,0 @@
-<?php $title = "Roadmap"; ?>
-<?php 
-include("../emulate_globals_on.php");
-include($toppath."/externals/en/header.phtml");
-include($toppath."/en/menu/menu-main-developer.phtml");
-?>
-</div>
-<div id="content">
-
-<h1>State of the GnuCash project, a call for help</h1>
-
-<p>The GnuCash project is having a hard time.  I think most everyone agrees that GnuCash is a critical piece of software for the GNU/Linux desktop.  It's also one the largest free software projects.  How big is it?  GnuCash currently has 287,853 physical source lines of code (SLOC).  For example, had the current GnuCash CVS been included in RedHat 7.1, it would come in 21st position in code size (see <a href="http://www.dwheeler.com/sloc/">http://www.dwheeler.com/sloc/</a>).  At that time,  the current GnuCash CVS source would have been pretty similar in size to qt, postgresql or perl, about 60% of Gimp and between 12% and 16% of Xfree, Mozilla or the Linux kernel.  Although GnuCash comes up in every discussion of needed software to get GNU/Linux on the desktop, the GnuCash project currently has only about seven active developers (active being used very loosely here, considering I included myself) and enjoys far less exposure than many projects of a similar size.</p>
-
-<p>We may be headed for a dead end if we don't reorganize and refocus our efforts.  GnuCash badly needs more manpower (not just developers), and needs to get it quickly.</p>
-
-
-<h2>How did we get here</h2>
-
-<p>Of course, every project could always use more developers, but the consecutive demise of both Gnumatic and Linux Developers Group caused the loss of most of GnuCash's core developers two years ago.  The few volunteers that were left focused on new features, in the hopes of attracting users and hopefully also developers.  We've managed to take it to 1.8.5 (to be released in a few days), and in the process GnuCash gained Small Business features, Scheduled Transactions, a completely new import UI with Bayesian filtering, OFX and HBCI support, Mortage and Loan Repayment druid, and many, many others.  We are very proud of it and we clearly have more users judging from traffic on gnucash-users, and all should now be well in GnuCash-land.</p>
-
-<p>Not quite.  We didn't attract many new developers and all those new features have to be maintained and debugged.  They also represent a huge tech support burden, since most of  the features were not documented properly due to time constraints.  GnuCash has grown too large for the current developers to properly debug and maintain the current code base, add new features and write documentation, all at the same time.</p>
-
-<p>I hate to admit it, but in our quest for new features,  choices had to be made and a lot of important things are currently being neglected.  If the GnuCash project can't manage to attract more contributors and refocus the efforts of those it already has, it's going to become unmanageable.  We often say that Linux would survive even if Linus got hit by a bus.  Well, right now I am not too certain that GnuCash would currently survive if Derek Atkins got hit by a bus.</p>
-
-<p>So now I'll try to suggest some solutions.</p>
-
-
-<h2>What core developers should do to help future developers</h2>
-
-<p>There are many reasons for our difficulties to attract developers and other contributors, but it all comes back to the same problem:  real or perceived, the barrier to entry is too high.  To get more developers, we must make it easier to contribute to GnuCash.  "Casual" hacking on GnuCash to scratch an itch is much to hard, even for an experienced developer.</p>
-
-<h3>Work on the developer documentation problem</h3>
-<p>There is no complete and current architecture and API reference.  Now that we've put the doxygen plumbing in place, we must make sure that ALL functions that are in public headers ARE documented, even if only by saying "Document me!", so the doxygen docs become truly authoritative.  Then put the docs on the web site.
-We must also write a report writing Howto:  We already have some very powerful reports, but this is the single most common offer for help we receive "Hi, I'd like to write "foo" report for GnuCash, can someone help me or point me to documentation on that subject".  Sometimes I wonder if anyone knows anymore...  So the answer is always the same:  'there isn't any; use the source Luke'.  We are wasting the chance to hook countless new developers.</p>
-
-<h3>Fix core capabilities in the engine</h3>
-<p>Existing developers should focus on architecture issues and completing existing core features that only they can realistically tackle, such as Lots (which are needed to support accounting periods) or fixing the problems in the scheduled transactions, so that new developers can build on that functionality.</p>
-
-<h3>Improve interoperability with other software or new modules</h3>
-<p>GnuCash has a great, powerful multi-user financial engine that many people ask to plug into.  Unfortunately much of this power is locked away.  There is no way to interface with a running GnuCash (the RPC backend and perl bindings have bitrotted), there is no way to start a new instance  while passing parameters like "import this file".  We need a wrapper that will start GnuCash if it isn't already started and pass API requests to it, with or without GUI.  The current module system needs to be completed or replaced.  It's hard for new developers to integrate new modules in the build and menu system (we need a howto on that too...).  Also, data import isn't enough, we must also support export to inter-operate with other software.  (<a href="http://libofx.sf.net">LibOfx</a> should get us there if I can just find time to work on it).</p>
-
-<p>I think fixing/developing external interfaces and writing additional import and export support should greatly help our developer crunch in the medium term, by consolidating part of financial software development in the free software ecosystem.  We have received many, many inquiries from people wanting to integrate gnucash with (name of web system, database, payroll, kde front end or whatever).  We can't afford to loose these people, whether or not the core developers like their pet project.  We must use the gnome 2 port as an opportunity to finish/cleanup/document our interfaces and from then on answer "I don't know if your idea will work, but you're welcome to try; here's the relevant documents to get you started."</p>
-
-
-<h2>What developers should do to help users and decrease developer load</h2>
-
-<h3>Make sure the mailing lists are easily searchable</h3>
-And/or document how to properly search them (Google isn't cutting it).
-
-<h3>Get more people write access to the website</h3>
-<p>We have received many offers to help, but turned most of them down for no good reason.  The website is nice, but it isn't up to date, it's a source of frustration, misleading to users and future developers, and pointlessly increases traffic on gnucash-user and the #gnucash IRC channel.</p>
-
-<h3>Quickly implement a Wiki or similar system</h3>
-<p>This will allow us to have an effective place to point users on gnucash-users and #gnucash instead of writing the same answers over and over again.  It will also allow us to document bugs/workarounds for specific versions.</p>
-
-<h3>Spend less time answering some types of questions</h3>
-<p>Considering the current developer crunch, core developers should plan to at least halve their time spent justifying the absence or incompleteness of feature X, or answering basic user questions directly on mailing lists and IRC.  Yes, it will decrease the level of service to our users, but diverting so much time for the few core developers is doing them a long term disservice.  And if the website is kept up to date, the Wiki is implemented and fed by developers every time an interesting question comes up, and the mailing list can be searched easily, it's should be easy for other users to fill in.</p>
-
-
-<h2>What users should do</h2>
-
-<p>You can help developers a great deal by helping each other!  Hang on #gnucash on irg.gnome.org, subscribe to gnucash-users (and gnucash-devel if you like to follow development) at <a href="/en/lists.phtml">the lists page</a>.  Try to answer questions there.  Developers do not have time to answer every single question and many are left unanswered.  Don't be afraid to look stupid, if your are not sure start with "I think" and if your answer is incorrect, don't worry, the developers do monitor those channels and will correct you.</p>
-
-
-<h2>Conclusion</h2>
-
-<p>I am optimistic that everything will work out.  Not everything is dim, much of what I mentioned is beginning to be worked on, and new contributors have recently started to work on various parts of the GnuCash project.  My goal by writing this piece is to convince current developers that after 1.8.5 we must pause to do some much needed project management, and to inform our users and potential developers that we badly need their help.</p>
-
-<p>Very soon, I will write a second article to list specific projects where you can contribute.  Regardless of your skill set, there will be one for you...</p>
-
-<p><a href="mailto:bock at step.polymtl.ca">Benoit Gr&eacute;goire</a></p>
-
-<?php include($toppath."/externals/en/footer.phtml"); ?>



More information about the gnucash-changes mailing list