<?xml version="1.0" encoding="ISO-8859-1" ?> 
<learningGuide>

<!-- 
  The first several sections below define and explain attributes that can be applied to 
  elements of the content. These attributes will make the element appear or not appear
  based on the current value corresponding to the attribute. The attributes can be applied
  to any element. You can use this to simply hide/show an individual element. You can also
  use this to specify different versions of the same element.

  When you add one of these attributes to an element, also give the element an "id" attribute
  with a unique value. The "id" value will get logged with OpsManager when the element is 
  hidden. This gives QA a way to verify conditions and the resulting Parachute content.
-->

<!--
  Definition of enabled features.
  Used to specify elements that are specific to particular features. This can be used to turn
  an element on or off based on a feature being enabled in this version of QuickBooks.
  To turn ON an element, the feature name is used with the "ifFeaturesEnabled" attribute,
  which specifies a comma-separated list of features. For example:
       <section ifFeaturesEnabled="estimates,timetracking">
  To turn OFF an element, the feature name is used with the "ifNotFeaturesEnabled" attribute,
  which also specifies a comma-separated list of features. For example:
       <section ifNotFeaturesEnabled="salesorders,pricelevels">
  Both "ifFeaturesEnabled" and "ifNotFeaturesEnabled" can be combined on the same element:
       <section ifFeaturesEnabled="estimates" ifNotFeaturesEnabled="salesorders">
  Note: These values specify features enabled by a Flavor of QB, regardless of whether or not 
        the feature is turned on by the user. 
-->
<features>
  <feature name="estimates">
    <expression>QBOL('Tej')</expression>
  </feature>
  <feature name="timetracking">
    <expression>QBOL('Tej')</expression>
  </feature>
  <feature name="advancedbudget">
    <expression>QBOL("Features.BUD_AdvancedBudget='enabled'")</expression>
  </feature>
  <feature name="assemblyitems">
    <expression>QBOL("Features.ITM_AssemblyItem='enabled'")</expression>
  </feature>
  <feature name="changeorders">
    <expression>QBOL("Features.EST_ChangeOrders='enabled'")</expression>
  </feature>
  <feature name="salesorders">
    <expression>QBOL("Features.SOT_SalesOrderTracking='enabled'")</expression>
  </feature>
  <feature name="salesorderfulfillmentworksheet">
    <expression>QBOL("Features.FEA_SalesOrderFulfillmentWorksheet='enabled'")</expression>
  </feature>
  <feature name="pricelevels">
    <expression>QBOL("Features.ITM_PriceLevelsPerItem='enabled'")</expression>
  </feature>
  <feature name="unitofmeasuresingle">
    <expression>QBOL("Features.INV_UnitOfMeasureSimple='enabled'")</expression>
  </feature>
  <feature name="unitofmeasuremultiple">
    <expression>QBOL("Features.INV_UnitOfMeasureAdvanced='enabled'")</expression>
  </feature>
</features>

<!--
  Definition of user-set preferences.
  Used to hide/show elements based on the status of user preferences.
  To turn ON an element, the preference is used with the "includePreference" attribute,
  which specifies a comma-separated list of preference names. For example:
       <section includePreference="inventory">
  To turn OFF an element, the preference is used with the "excludePreference" attribute,
  which also specifies a comma-separated list of preferences. For example:
       <item excludePreference="payroll,1099">
  Both "includePreference" and "excludePreference" can be combined on the same element.
-->
<preferences>
  <preference name="salestax">
    <expression>QBOL("SalesTax")</expression>
  </preference>
  <preference name="payroll">
    <expression>QBOL("AnyPayroll")</expression>
  </preference>
  <preference name="inventory">
    <expression>QBOL("Inventory")</expression>
  </preference>
  <preference name="salesorders">
    <expression>QBOL("SalesOrders")</expression>
  </preference>
  <preference name="estimates">
    <expression>QBOL("Estimating")</expression>
  </preference>
  <preference name="timetracking">
    <expression>QBOL("TrackingTime")</expression>
  </preference>
  <preference name="1099">
    <expression>Ten99Enabled</expression>
  </preference>
  <preference name="creditcardsprospect">
    <expression>QBOL("XSell.CreditCardsProspect and !XSell.CreditCardsAccepted")</expression>
  </preference>
  <preference name="creditcardsaccepted">
    <expression>QBOL("XSell.CreditCardsAccepted")</expression>
  </preference>
</preferences>

<!--
  Definition of industries.
  Used to specify elements that are specific to particular industry. This can be used to turn
  an element on or off based on the industry selected for the data file.
  To turn ON an element, the industry is used with the "includeIndustry" attribute,
  which specifies a comma-separated list of industries. For example:
       <section includeIndustry="accounting">
  To turn OFF an element, the industry is used with the "exclude" attribute,
  which also specifies a comma-separated list of industries. For example:
       <section excludeIndustry="accounting,consulting">
  Both "includeIndustry" and "excludeIndustry" can be combined on the same element:
-->
<industries>
  <industry name="accounting">
    <expression>QBOL("Company.Industry='Accounting/CPA'")</expression>
  </industry>
  <industry name="advertising">
    <expression>QBOL("Company.Industry='Advertising/PR'")</expression>
  </industry>
  <industry name="architecture">
    <expression>QBOL("Company.Industry='Architecture'")</expression>
  </industry>
  <industry name="construction">
    <expression>QBOL("Company.Industry='Construction/Contracting' OR Company.Industry='contractor'")</expression>
  </industry>
  <industry name="consulting">
    <expression>QBOL("Company.Industry='Consulting'")</expression>
  </industry>
  <industry name="farming">
    <expression>QBOL("Company.Industry='Farming/Ranching'")</expression>
  </industry>
  <industry name="graphics">
    <expression>QBOL("Company.Industry='Graphic Design/Printing'")</expression>
  </industry>
  <industry name="healthcare">
    <expression>QBOL("Company.Industry='Healthcare: General'")</expression>
  </industry>
  <industry name="insurance">
    <expression>QBOL("Company.Industry='Insurance' OR Company.Industry='Insurance Agency'")</expression>
  </industry>
  <industry name="legal">
    <expression>QBOL("Company.Industry='Legal'")</expression>
  </industry>
  <industry name="manufacturing">
    <expression>QBOL("Company.Industry='Manufacturing'")</expression>
  </industry>
  <industry name="rep">
    <expression>QBOL(Company.Industry='Manufacturer's Rep/Sales Rep' OR Company.Industry='Mfr's Rep/Sales Rep'")</expression>
  </industry>
  <industry name="member">
    <expression>QBOL("Company.Industry='Member Organization'")</expression>
  </industry>
  <industry name="nonprofit">
    <expression>QBOL("Company.Industry='Nonprofit Organization'")</expression>
  </industry>
  <industry name="professional">
    <expression>QBOL("Company.Industry='professional'")</expression>
  </industry>
  <industry name="property">
    <expression>QBOL("Company.Industry='Property Management'")</expression>
  </industry>
  <industry name="realestate">
    <expression>QBOL("Company.Industry='Real Estate Broker' OR Company.Industry='Real Estate Brokerage'")</expression>
  </industry>
  <industry name="restaurant">
    <expression>QBOL("Company.Industry='Restaurant'")</expression>
  </industry>
  <industry name="retail">
    <expression>QBOL("Company.Industry='Retail: General' OR Company.Industry='retail'")</expression>
  </industry>
  <industry name="service">
    <expression>QBOL("Company.Industry='Service Business'")</expression>
  </industry>
  <industry name="usergroup">
    <expression>QBOL("Company.Industry='User Group'")</expression>
  </industry>
  <industry name="wholesale">
    <expression>QBOL("Company.Industry='Wholesale/Distribution'")</expression>
  </industry>
  <industry name="artist">
    <expression>QBOL("Company.Industry='Writer/Artist' OR Company.Industry='Writer/Photographer/Other Artist'")</expression>
  </industry>
  <industry name="other">
    <expression>
      QBOL("Company.Industry='Other' OR Company.Industry='General Business' OR Company.Industry='(No Type)'")
    </expression>
  </industry>
</industries>

<!--
  Definition of how data file was opened.
  This is used to display elements based on the type of user. To display an element for a certain
  type of user, the user type is used with the "howFileWasOpened" attribute. For example:
       <section howFileWasOpened="newuser">
-->
<howfilewasopened>
  <status name="unset">
    <expression>QBOL("WelcomeScreen.HowFileWasOpened='0'")</expression>
  </status>
  <status name="unknown">
    <expression>QBOL("WelcomeScreen.HowFileWasOpened='unknown'")</expression>
  </status>
  <status name="newuser">
    <expression>QBOL("WelcomeScreen.HowFileWasOpened='newuser' AND WelcomeScreen.PreviousVersion=0")</expression>
  </status>
  <status name="upgrade">
    <expression>QBOL("WelcomeScreen.HowFileWasOpened='upgrade' OR WelcomeScreen.PreviousVersion>0")</expression>
  </status>
  <status name="quicken">
    <expression>QBOL("WelcomeScreen.HowFileWasOpened='quicken'")</expression>
  </status>
  <status name="trial">
    <expression>QBOL("WelcomeScreen.HowFileWasOpened='trial'")</expression>
  </status>
</howfilewasopened>

<!-- 
  Varying content based on flavor.
    The list of flavors below may be used to show and hide elements based on the current flavor
    of QuickBooks. Elements are shown only for a flavor or set of flavors using the "includFlavor"
    attribute. Elements are hidden for a flavor or set of flavors using the "excludeFlavor" 
    attribute. These attributes can be combined on the same element. For example:
       <tab>
         <title includeFlavor="contractor,belcontractor">Contractor Tab</title>
         <title excludeFlavor="contractor,belcontractor">Everything Else Tab</title>
         ...
       </tab>

    Flavor strings:
      basic
      pro
      superpro
      accountant
      contractor
      nonprofit
      wholesale
      retail
      professional
      bel
      belacct
      belcontractor
      belnonprofit
      belwholesale
      belretail
      belprofessional
-->

<!-- 
  Varying content based on QB version.
  The attribute "newForVersion" can be added to an element to indicate that element is new for
  a certain version of QuickBooks. The value of the attribute is an integer corresponding to the 
  version of QuickBooks. The element will be shown for users upgrading from an earlier version
  of QuickBooks. For example:
      <section newForVersion="14">
  would display the section for users upgrading from any version prior to "14.0".
-->

<!--
Structure of content:

// Main container for content.
<tabs>
  // Repeatable element, one for each tab.
  <tab>
    // REQUIRED id of tab (used to select tab)
    <id>id</id>
    // Main name of tab, displayed in tab (left side of page) and at top of page when this tab is selected.
    // If the text is specified with multiple lines in this file, the line breaks will be used to 
    // format the text on the tab (left side of page). The line breaks will be ignored when displaying
    // the text as the content title at the top of the page when the tab is selected. In other words,
    // the tab text can have line breaks, the page title cannot.
    <title>text</title>
    // Optional secondary description of tab, displayed under main title at top of page when this tab is active.
    <subtitle>text</subtitle>
    // Filename (base filename with no path) of image to display in tab (left side of page).
    <icon>filename</icon>
    // Repeatable element, one for each section of tab content.
    // The "spacing" attribute is optional. By default, each section is preceded by a 10px blank line. 
    // Add the spacing attribute to change this value.
    // The "hideIfNoItems" attribute is optional. Set it's value to "Y" if you want to hide the entire
    // section if all of its items get hidden due to the conditional attributes explained above.
    <section spacing="10" hideIfNoItems="N">
      // Optional, title for section.
      // The "indent" attribute is optional and will add the specified number of pixels of indentation.
      <title indent="20">text</title>
      // Optional free-form text for section.
      // If the text is specified with line breaks in this file, the line breaks will be used to
      // format the text when it is displayed. Note that this is different from the <text> element
      // below where a <linebreak> element is required for "hard" line breaks in the display.
      // The "indent" attribute is optional and will add the specified number of pixels of indentation.
      <text indent="20">text</text>
      // Optional text formatted with attributes and line breaks.
      //   The "text" and "linebreak" elements may be repeated as many times as necessary and will be
      //   concatenated together, in the order specified, to construct the final text. Linebreaks will
      //   occur in the displayed text only where the <linebreak> element is used in this file or where
      //   natural word wrapping occurs in the display area.
      //   Important: No blank space is added between the elements when they are concatenated together.
      //              So be sure to begin or end each element's text with a blank space as needed.
      // The "indent" attribute is optional and will add the specified number of pixels of indentation.
      <formattext indent="20">
        // Use different "text" elements for differently formatted text. The attributes are all 
        // optional and may be combined in any manner.        
        <text bold="Y" italics="Y" underline="Y">text</text>
        // Any line breaks in the "text" element will be ignored. Instead, use the "linebreak" element where needed.
        // Otherwise, the text will just word wrap as necessary to fit the display area.
        <linebreak />
      </formattext>
      // Optional, definable spacing between section elements.
      //   Use "height" attribute to specify number of pixels of spacing.
      <blankline height="10" />
      // Optional line drawn across entire display area for section.
      <drawline />
      // Optional, repeatable bulleted item.
      //    Specifying the "file" element will make this a clickable tutorial link that gets tracked with a check mark.
      //    Important: Within an "item" there should be either a "text" OR a "formattext" OR a "textwithlinks"
      //               element but NOT any of these together.
      <item>
        // Text to display for this item.
        // IMPORTANT: If you use this, do not use the "formattext" or "textwithlinks" elements.
        <text>text</text>
        // See comments for the "formattext" element above (this one is identical). However, if a "file"
        // element is specified, making this a link, all text will already be bold and underline, so
        // the "italics" attribute is the only one that will have an affect.
        // IMPORTANT: If you use this, do not use the "text" or "textwithlinks" elements.
        <formattext>
          <text bold="Y" italics="Y" underline="Y">text</text>
          <linebreak />
        </formattext>
        // Combined normal text with link inside of it. See full documentation a few lines below.
        // IMPORTANT: If you use this, do not use the "text" or "formattext" elements. Also, do
        //            not use the "file" element.
        <textwithlinks>...</textwithlinks>
        // Optional, filename (base filename with no path) of video to play when this link is clicked.
        <file>filename</file>
        // Optional, help id of QB help item to display.
        //   This is a numeric value.
        <helpid>id</helpid>
        // Optional, help string of QB help item to display.
        //   This is a help string like this: Pro.chm::/new_p/12_pro_new_loan_manager.html
        <helpstring>string</helpstring>
        // Optional, Total time of video.
        <time>text</time>
      </item>
      // Mixed free-form text with clickable links.
      // Component text and links are repeated and specified in the order needed to build the resulting text.
      // The "indent" attribute is optional and will add the specified number of pixels of indentation.
      <textwithlinks indent="20">
        // Repeatable text component for the paragraph.
        <text>text</text>
        // Repeatable: Any line breaks in the "text" element will be ignored. Instead, 
        // use the "linebreak" element where needed.
        <linebreak />
        // Repeatable: Adds spacing between text elements on a line. This is necessary because multiple
        // consecutive spaces are collapsed into a single space. Width specifies the number of pixels.
        // If width is not specificed, the default value is 10.
        <linepadding width="10" />
        // Repeatable: See comments for the "formattext" element above (this one is identical).
        <formattext>
          <text bold="Y" italics="Y" underline="Y">text</text>
          <linebreak />
        </formattext>
        // Repeatable link component for the paragraph.
        // There should be one "file" element OR "helpid" element OR "helpstring" element.
        // The external="Y" parameter is optional and will cause a lightning bolt image to
        // be displayed next to the link. Use this for external URL's, per the QB privacy 
        // policy.
        <link external="Y">
          // Text to display for the link.
          <text>text</text>
          // URL to invoke when text is clicked. This will launch an external browser.
          <file>url</file>
          // Optional, help id of QB help item to display.
          //   This is a numeric value.
          <helpid>id</helpid>
          // Optional, help string of QB help item to display.
          //   This is a help string like this: Pro.chm::/new_p/12_pro_new_loan_manager.html
          <helpstring>string</helpstring>
        </link>
      </textwithlinks>
    </section>
  </tab>
</tabs>
-->

<!-- 
  Content definition.
-->
<tabs>

  <!-- Welcome to QuickBooks -->
  <tab>
    <id>welcome</id>
    <title>
       Overview &amp; Setup
    </title>

    <icon>tab_welcome.gif</icon>

     <!-- Welcome content -->

    <section spacing="3">
     <text indent="15">Some tutorials may require an Internet connection.</text>
     <blankline height="3" />
     <drawline />
     <blankline height="20" />
     <title>New to QuickBooks?</title>
      <item excludeFlavor="nonprofit,belnonprofit">
        <text>QuickBooks overview</text>
        <file>qb_overview.swf</file>
        <time>4:14</time>
      </item>
      <item includeFlavor="nonprofit,belnonprofit">
        <text>QuickBooks nonprofit overview</text>
        <file>np_overview.swf</file>
        <time>4:20</time>
      </item>
    </section>

    <section>
      <blankline height="7" />
      <title>Learn how to set up the basics </title>
      <text>Master a few basic concepts now, and you'll spend less time managing QuickBooks and more time managing your business.</text>
      <item excludeFlavor="nonprofit,belnonprofit">
        <text>Overview of QuickBooks accounts</text>
        <file>act_overview.swf</file>
        <time>5:23</time>
      </item>
      <item excludeFlavor="nonprofit,belnonprofit">
        <text> Adding and using QuickBooks accounts</text>
        <file>add_acct.swf</file>
        <time>3:04</time>
      </item>
      <item includeFlavor="nonprofit,belnonprofit">
        <text>Overview of QuickBooks accounts for Nonprofits</text>
        <file>np_accounts.swf</file>
        <time>5:33</time>
      </item>
      <item includeFlavor="nonprofit,belnonprofit">
        <text> Adding and using QuickBooks accounts for Nonprofits</text>
        <file>np_add_act.swf</file>
        <time>3:07</time>
      </item>
      <item excludeFlavor="nonprofit,belnonprofit">
        <text> Items (products &amp; services you sell)</text>
        <file>item_setup.swf</file>
        <time>5:18</time>
      </item>
      <item includeFlavor="nonprofit,belnonprofit">
        <text> Items (products &amp; services you sell)</text>
        <file>np_items.swf</file>
        <time>5:15</time>
      </item>
      <item excludeFlavor="nonprofit,belnonprofit">
        <text> Customers</text>
        <file>customers.swf</file>
        <time>2:21</time>
      </item>
      <item includeFlavor="nonprofit,belnonprofit">
        <text> Donors, members, and students</text>
        <file>np_setdonor.swf</file>
        <time>4:47</time>
      </item>
      <item includeFlavor="nonprofit,belnonprofit">
        <text> Grants</text>
        <file>np_grants.swf</file>
        <time>8:33</time>
      </item>
      <item>
	<text> Vendors</text>
        <file>vendors.swf</file>
        <time>2:25</time>
      </item>
      <item>
        <text> Reports</text>
        <file>rpt_overview.swf</file>
        <time>3:09</time>
      </item>
      <item includeFlavor="bel,belacct,belnonprofit,belcontractor,belwholesale,belretail,belprofessional">
        <text>
          Controlling users' access to the company file
        </text>
        <file>enterprise_permissions.swf</file>
        <time>6:16</time>
      </item>
    </section>
  
    <section spacing="20">
      <formattext>
        <text bold="Y" highlight="Y">Return to the Learning Center anytime</text>
        <text> by choosing </text>
	<text bold="Y">Learning Center Tutorials</text>
	<text> in the </text>
	<text bold="Y">Help</text>
        <text> menu. </text>
      </formattext>
    </section> 
    <section spacing="5">
      <formattext>
        <text>Ready to dive in? Click </text>
        <text bold="Y">Begin Using QuickBooks</text>
	<text>. </text>
      </formattext>
    </section> 
    <section> 
      <textwithlinks>
        <link external="Y">
          <text> Connect with other QuickBooks users and experts</text>
          <file>http://qbinproduct.com/lava/QB/qbgroups</file>
        </link>
        <text> to find answers and share advice</text>
      </textwithlinks>
    </section> 
  </tab>

  <!-- Job Costing (contractor-only) tab in Contractor skus -->
  <tab includeFlavor="contractor,belcontractor">
    <id>jobcost</id>
    <title>Job Costing</title>
    <icon>tab_jobcosting.gif</icon>
    <section spacing="3">
     <text indent="15">Some tutorials may require an Internet connection.</text>
     <blankline height="3" />
      <drawline />
      <blankline height="5" />
      <text>As a contractor, your entire business is job-based and your success depends on how well you manage each and every customer job. QuickBooks offers a number of tools to help you track job expenses and profitability before, during, and even after job completion. 
      </text>
    </section>
    <section spacing="0">
      <title> </title>
      <item>
        <text>Job costing overview</text>
        <file>con_overviewjobcost.swf</file>
        <time>4:07</time>
      </item>
      <item>
        <text>Using job costing reports</text>
        <file>con_trackjobcost.swf</file>
        <time>4:32</time>
      </item>
      <item>
        <text>Job costing set-up and data entry</text>
        <file>con_setupjobcost.swf</file>
        <time>4:32</time>
      </item>
    </section>
    <section spacing="20">
      <title>Recommended first steps in QuickBooks</title>
      <item><text>Create a job</text></item>
      <item><text>Assign revenue and expenses to jobs</text></item>
      
    </section>
  </tab> 

  <!-- Job Costing (contractor-only) tab in vanilla Premier sku if industry is "contractor" -->
  <tab includeFlavor="superpro" includeIndustry="construction">
    <id>jobcost</id>
    <title>Job Costing</title>
    <icon>tab_jobcosting.gif</icon>
    <section spacing="3">
     <text indent="15">Some tutorials may require an Internet connection.</text>
     <blankline height="3" />
      <drawline />
      <blankline height="5" />
      <text>As a contractor, your entire business is job-based and your success depends on how well you manage each and every customer job. QuickBooks offers a number of tools to help you track job expenses and profitability before, during, and even after job completion. 
      </text>
    </section>
    <section spacing="0">
      <title> </title>
      <item>
        <text>Job costing overview</text>
        <file>con_overviewjobcost.swf</file>
        <time>4:07</time>
      </item>
      <item>
        <text>Using job costing reports</text>
        <file>con_trackjobcost.swf</file>
        <time>4:32</time>
      </item>
      <item>
        <text>Job costing set-up and data entry</text>
        <file>con_setupjobcost.swf</file>
        <time>4:32</time>
      </item>
    </section>
    <section spacing="20">
      <title>Recommended first steps in QuickBooks</title>
      <item><text>Create a job</text></item>
      <item><text>Assign revenue and expenses to jobs</text></item>
      
    </section>
  </tab> 

  <!-- A/R (aka Money In) tab (for all versions except Nonprofit/BelNonprofit) --> 
  <tab excludeFlavor="nonprofit,belnonprofit">
    <id>ar</id>
    <title>Customers &amp; Sales</title>
    <icon>tab_moneyin.gif</icon>
    <section spacing="3">
     <text indent="15">Some tutorials may require an Internet connection.</text>
     <blankline height="3" />
      <drawline />
      <blankline height="5" />
      <text>The quicker you can bill your customers, the quicker you can get paid. Learn how to create estimates, invoices, sales receipts and more, as well as how to customize QuickBooks to meet your needs.</text>
    </section>
    <section spacing="3">
      <item>
	<text>Introducing the Customer Center</text>
        <file>customer_center.swf</file>
        <time>4:18</time>
      </item>
    </section>
    <section>
      <title>Understanding customer transactions</title>
      <item>
        <text>Prepare an estimate</text>
        <file>estimates_1.swf</file>
        <time>4:17</time>
      </item>
      <item>
        <text>Create an invoice</text>
        <file>invoicing.swf</file>
        <time>4:57</time>
      </item>
      <item>
        <text>Generate a sales receipt</text>
        <file>sales_recpts.swf</file>
        <time>4:20</time>
      </item>
      <item>
        <text>Create a statement</text>
        <file>statements.swf</file>
        <time>4:17</time>
      </item>
      <item>
        <text>Enter and deposit customer payments</text>
        <file>payments.swf</file>
        <time>4:17</time>
      </item>
    </section>
    <section>
      <title>Flexibility, Power, Control</title>
      <item>
        <text>Customize sales forms</text>
        <file>customize_forms.swf</file>
        <time>4:08</time>
      </item>
      <item>
        <text>Track upfront deposits and retainers</text>
        <file>retainers.swf</file>
        <time>5:15</time>
      </item>
      <item includeFlavor="pro,accountant,belacct,professional,belprofessional">
        <text>Time and billing</text>
        <file>time_billing.swf</file>
        <time>4:11</time>
      </item>
    </section>
    <section spacing="20">
      <title>Recommended first steps in QuickBooks</title>
      <item><text>Create your customer list</text></item>
      <item><text>Create invoices for customer sales</text></item>
    </section>
  </tab>

  <!-- A/R (aka Money In) tab (for Nonprofit versions) --> 
  <tab includeFlavor="nonprofit,belnonprofit">
    <id>ar</id>
    <title>
      Fund Raising &amp;
      Revenue
    </title>
    <icon>tab_moneyin.gif</icon>
    <section spacing="3">
     <text indent="15">Some tutorials may require an Internet connection.</text>
     <blankline height="3" />
      <drawline />
      <blankline height="5" />
      <text>QuickBooks has many capabilities to help you manage fund raising and revenue. View the tutorials below to see how to match QuickBooks to the way your organization works.</text>
    </section>
    <section>
      <title>Start with the basics</title>
      <item>
	<text>Revenue tracking overview</text>
        <file>np_trackrevenue.swf</file>
        <time>2:01</time>
      </item>
      <item>
        <text>Overview of nonprofit reports</text>
        <file>np_reportoverview.swf</file>
        <time>3:28</time>
      </item>
      <item>
        <text>Setting up donors, members, and students</text>
        <file>np_setdonor.swf</file>
        <time>4:47</time>
      </item>
    </section>
    <section>
      <title>Managing donations</title>
      <item>
        <text>Entering donations</text>
        <file>np_donations.swf</file>
        <time>5:14</time>
      </item>
      <item>
        <text>Entering pledges</text>
        <file>np_pledges.swf</file>
        <time>4:54</time>
      </item>
      <item>
        <text>Managing membership dues &amp; renewals</text>
        <file>np_memberdues.swf</file>
        <time>4:50</time>
      </item>
      <item>
        <text>Managing grants</text>
        <file>np_grants.swf</file>
        <time>8:33</time>
      </item>
    </section>
    <section>
      <title>Other revenue-related tasks</title>
      <item>
        <text>Customizing sales forms for your business</text>
        <file>customize_forms.swf</file>
        <time>4:08</time>
      </item>
      <item>
        <text>How to enter and deposit customer payments</text>
        <file>payments.swf</file>
        <time>4:17</time>
      </item>
      <item>
        <text>Tracking programs/activities</text>
        <file>np_trackprograms.swf</file>
        <time>3:16</time>
      </item>
    </section>
    <section spacing="15">
      <title>Recommended first steps in QuickBooks</title>
      <item><text>Create your donor list</text></item>
      <item><text>Enter donations to receive contributions</text></item>
      
    </section>
  </tab>

  
  <!-- A/P (aka Money Out) tab -->
  <tab>
    <id>ap</id>
    <title>Vendors &amp; Expenses</title>
    <icon>tab_moneyout.gif</icon>
    <section spacing="3">
     <text indent="15">Some tutorials may require an Internet connection.</text>
     <blankline height="3" />
      <drawline />
      <blankline height="5" />
      <text>Pay your bills. Track your credit cards. Write checks. Learn how QuickBooks can help you track and manage your expenses.</text>
    </section>
    <section spacing="3">
      <item>
	<text>Introducing the Vendor Center</text>
        <file>Vendor_center.swf</file>
        <time>3:57</time>
      </item>
    </section>
    <section>
      <title>Understanding vendor expenses</title>
      <item>
        <text>Write checks and enter expenses</text>
        <file>write_checks.swf</file>
        <time>3:15</time>
      </item>
      <item>
        <text>Enter bills</text>
        <file>enter_bills.swf</file>
        <time>3:38</time>
      </item>
      <item>
        <text>Pay bills</text>
        <file>pay_bills.swf</file>
        <time>3:50</time>
      </item>
    </section>
    <section>
        <title>Paying taxes</title>      
        <item>
        <text>Track and pay sales tax</text>
        <file>sales_tax.swf</file>
        <time>5:04</time>
      </item>
    </section>
    <section spacing="20">
     <title>Recommended first steps in QuickBooks</title>
     <item><text>Create your vendor list</text></item>
     <item><text>Enter your recent bills</text></item>
    </section>
  </tab>

  <!-- Inventory tab -->
  <tab>
    <id>inventory</id>
    <title>Inventory</title>
    <icon>tab_inventory.gif</icon>
    <section spacing="3">
     <text indent="15">Some tutorials may require an Internet connection.</text>
     <blankline height="3" />
      <drawline />
      <blankline height="5" />
      <text excludeFlavor="nonprofit,belnonprofit">
        Manage your inventory and track your stock on hand. Learn how to run your business efficiently using the Inventory feature.</text>
      <text includeFlavor="nonprofit,belnonprofit">
        Manage your inventory and track your stock on hand. Learn how to run your organization efficiently using the Inventory feature.</text>
    </section>
    <section>
        <title>Inventory basics</title>      
        <item>
        <text>Overview</text>
        <file>inventory_overview.swf</file>
        <time>2:05</time>
      </item>
      <item>
        <text>Set up</text>
        <file>inv_setup.swf</file>
        <time>5:23</time>
      </item>
    </section>      
    <section>
      <title>Managing inventory</title>
      <item>
        <text>Buying and selling inventory</text>
        <file>inv_buyandsell.swf</file>
        <time>7:19</time>
      </item>
      <item>
        <text>Using reports to manage inventory</text>
        <file>inv_reports.swf</file>
        <time>2:44</time>
      </item>
      <item ifFeaturesEnabled="unitofmeasuremultiple,unitofmeasuresingle">
        <text>Adding units of measure to items</text>
        <file>add_units_measure.swf</file>
        <time>5:21</time>
      </item>
      <item ifFeaturesEnabled="unitofmeasuremultiple">
        <text>Using units of measure on transactions</text>
        <file>use_units_measure.swf</file>
        <time>2:26</time>
      </item>
      <item ifFeaturesEnabled="salesorderfulfillmentworksheet">
        <text>Sales Order Fulfillment Worksheet overview</text>
        <file>so_fulfill_worksheet.swf</file>
        <time>4:32</time>
      </item>
      <item ifFeaturesEnabled="salesorderfulfillmentworksheet">
        <text>Creating an invoice from the Sales Order Fulfillment Worksheet</text>
        <file>so_fulfill_invoice.swf</file>
        <time>2:36</time>
      </item>
    </section>
    <section spacing="20">
      <title>Recommended first steps in QuickBooks</title>
      <item><text>Enable the inventory feature</text></item>
      <item><text>Set up your inventory items</text></item>
    </section>
  </tab>

  <!-- Payroll tab -->
  <tab>
    <id>payroll</id>
    <title>Payroll</title>
    <icon>tab_payroll.gif</icon>
    <section spacing="3">
     <text indent="15">Some tutorials may require an Internet connection.</text>
     <blankline height="3" />
      <drawline />
      <blankline height="5" />
      <text>
          Learn how to pay your employees, pay payroll taxes and liabilities, and file tax forms.*</text>
    </section>
    <section>
      <title>Payroll basics</title>
      <item>
        <text>Payroll overview</text>
        <file>pr_overview.swf</file>
        <time>3:05</time>
      </item>
      <item>
        <text>Information needed to set up payroll</text>
        <helpstring>Setup_n.chm::/learncenter_n/payroll_setup_checklist.html</helpstring>
      </item>
    </section>
    <section>
      <title>Run payroll right</title>
      <item>
        <text>Paying employees</text>
        <file>pr_payemp.swf</file>
        <time>4:55</time>
      </item>
      <item>
        <text>Paying taxes and liabilities</text>
        <file>pr_payliab.swf</file>
        <time>4:37</time>
      </item>
      <item external="y">
        <text> Filing tax forms</text>
        <file>http://www.quickbooks.com/support/payroll/lesson/fileforms</file>
      </item>
      <item>
        <text>After-the-fact payroll for accountants</text>
        <file>pr_atf.swf</file>
        <time>4:29</time>
      </item>
    </section>
    <section spacing="20">
      <title>Recommended first step in QuickBooks</title>
      <item>
        <text>Complete payroll setup</text>
      </item>
    </section>
    <section spacing="100">
      <textwithlinks>
        <text>* For Payroll Subscribers (additional fees apply) </text>
          <linepadding width="2"></linepadding>
        <link external="Y">
          <text>Learn more...</text>
          <file>http://quickbooks.intuit.com/product/add_ons/payroll_software_and_services/</file>
        </link>
      </textwithlinks>
    </section>
  </tab>

  <!-- What's New tab -->
  <tab>
    <id>whatsnew</id>
    <title>What's New</title>
    <icon>tab_info.gif</icon>
    <section>
      <!-- Since this tab does not have a subtitle, we need some spacing to match the other tabs -->
      <blankline height="11" />     
      <drawline />
    </section>

    <!-- Message for older upgraders, for non-Enterprise only -->
    <section spacing="15" excludeFlavor="bel,belacct,belnonprofit,belcontractor,belwholesale,belretail,belprofessional">
      <textwithlinks>
        <formattext>
          <text bold="Y">Upgrading from QuickBooks 2005 or earlier? </text>
        </formattext>
        <link>
          <formattext>
            <text bold="Y">Watch this tutorial</text>
          </formattext>
          <file>migration.swf</file>
        </link>
        <linepadding width="8" />
        <formattext>
          <text>7:20</text>
        </formattext>
      </textwithlinks>
      <item>
        <textwithlinks>
          <text>Use the Home page to start key tasks with just one click. </text>
          <link>
            <text>Learn more...</text>
            <helpid>19400</helpid>
          </link>
        </textwithlinks>
      </item>
      <item>
        <textwithlinks>
          <text>The Customer, Vendor, and Employee Centers consolidate your lists, contact information, </text>
	  <linebreak />
	  <text>and transactions on one simple screen. </text>
          <link>
            <text>Learn more...</text>
            <helpid>19401</helpid>
          </link>
        </textwithlinks>
      </item>
    </section>


    <!-- New features common to all non-Enterprise flavors -->
    <section spacing="20" excludeFlavor="bel,belacct,belnonprofit,belcontractor,belwholesale,belretail,belprofessional">
      <textwithlinks>
        <formattext>
          <text bold="Y">What's new in QuickBooks 2007? </text>
        </formattext>
        <link>
          <formattext>
            <text bold="Y">Watch this tutorial</text>
          </formattext>
          <file>whats_different_2007.swf</file>
        </link>
        <linepadding width="8" />
        <formattext>
          <text>7:20</text>
        </formattext>
      </textwithlinks>
      <item>
        <textwithlinks>
          <text>Find info easily in QuickBooks with Google Desktop&#8482; and easily acquire new customers </text>
          <linebreak />
          <text>with Google Marketing tools.</text>
          <link>
            <text>Learn more...</text>
            <helpid>19402</helpid>
          </link>
        </textwithlinks>
      </item>
      <item>
        <textwithlinks>
          <text>Keep your Microsoft Outlook&#8482; and QuickBooks contacts synchronized. </text>
          <link>
            <text>Learn more...</text>
            <helpid>19403</helpid>
          </link>
        </textwithlinks>
      </item>
      <item includeFlavor="nonprofit">
        <textwithlinks>
          <text>The new Donor Contribution Summary report helps you determine&#8212;at a glance&#8212;which </text>
          <linebreak />
          <text>of your donors need IRS notification letters. </text>
          <link>
            <text>Learn more...</text>
            <helpid>19408</helpid>
          </link>
        </textwithlinks>
      </item>
      <item>
        <textwithlinks>
          <text>Easy expense classification by learning from previous transactions. </text>
          <link>
            <text>Learn more...</text>
            <helpid>19405</helpid>
          </link>
        </textwithlinks>
      </item>
      <item includeFlavor="contractor">
        <textwithlinks>
          <text>QuickBooks ensures that your subcontractors' insurance policies are up to date. </text>
          <link>
            <text>Learn more...</text>
            <helpid>19409</helpid>
          </link>
        </textwithlinks>
      </item>
      <item includeFlavor="professional,accountant">
        <textwithlinks>
          <text>It's now even easier to transfer billable time and expenses to your invoices. </text>
          <link>
            <text>Learn more...</text>
            <helpid>19406</helpid>
          </link>
        </textwithlinks>
      </item>
      <item includeFlavor="contractor,professional">
        <textwithlinks>
          <text>QuickBooks now allows customer-specific price levels for services and items you </text>
          <linebreak />
          <text>place on estimates. </text>
          <link>
            <text>Learn more...</text>
            <helpid>19410</helpid>
          </link>
        </textwithlinks>
      </item>
      <item>
        <textwithlinks>
          <text>New and improved features and workflows for payroll subscribers. </text>
          <link>
            <text>Learn more...</text>
            <helpid>19407</helpid>
          </link>
        </textwithlinks>
      </item>
    </section>

    <!-- New features common to all Enterprise flavors -->
    <section spacing="20" includeFlavor="bel,belacct,belnonprofit,belcontractor,belwholesale,belretail,belprofessional">
      <textwithlinks>
        <formattext>
          <text bold="Y">What's new in QuickBooks Enterprise Solutions 7.0? </text>
        </formattext>
        <link>
          <formattext>
            <text bold="Y">Watch this tutorial</text>
          </formattext>
          <file>whats_different_2007.swf</file>
        </link>
        <linepadding width="8" />
        <formattext>
          <text>7:20</text>
        </formattext>
      </textwithlinks>
      <item>
        <textwithlinks>
          <text>Grow your business by taking advantage of increased list capacity. </text>
          <link>
            <text>Learn more...</text>
            <helpid>19416</helpid>
          </link>
        </textwithlinks>
      </item>
      <item>
        <textwithlinks>
          <text>Purchase, stock, and sell the same inventory item in different units of measure. </text>
          <link>
            <text>Learn more...</text>
            <helpid>19417</helpid>
          </link>
        </textwithlinks>
      </item>
      <item>
        <textwithlinks>
          <text>Process and exchange your transactions with an Electronic Data Interchange (EDI) solution </text>
          <linebreak />
          <text>that is easy to set up and use with Enterprise Solutions. (Sold separately) </text>
          <link>
            <text>Learn more...</text>
            <helpid>19418</helpid>
          </link>
        </textwithlinks>
      </item>
      <item excludeFlavor="belnonprofit">
        <textwithlinks>
          <text>Create estimates using different price levels and convert easily to sales orders </text>
          <linebreak />
          <text>and invoices. </text>
          <link>
            <text>Learn more...</text>
            <helpid>19419</helpid>
          </link>
        </textwithlinks>
      </item>
      <item>
        <textwithlinks>
          <text>Track changes and find errors with the audit trail and closing date </text>
          <linebreak />
          <text>exception reports. </text>
          <link>
            <text>Learn more...</text>
            <helpid>19420</helpid>
          </link>
        </textwithlinks>
      </item>
      <item includeFlavor="belnonprofit">
        <textwithlinks>
          <text>The new Donor Contribution Summary report helps you determine&#8212;at a glance&#8212;which </text>
          <linebreak />
          <text>of your donors need IRS notification letters. </text>
          <link>
            <text>Learn more...</text>
            <helpid>19408</helpid>
          </link>
        </textwithlinks>
      </item>
      <item includeFlavor="belcontractor">
        <textwithlinks>
          <text>QuickBooks ensures that your subcontractors' insurance policies are up to date. </text>
          <link>
            <text>Learn more...</text>
            <helpid>19409</helpid>
          </link>
        </textwithlinks>
      </item>
      <item includeFlavor="belprofessional,belacct">
        <textwithlinks>
          <text>It's now even easier to transfer billable time and expenses to your invoices. </text>
          <link>
            <text>Learn more...</text>
            <helpid>19406</helpid>
          </link>
        </textwithlinks>
      </item>
    </section>


    <!-- "More improvements" link for all flavors -->
    <section spacing="0">
      <item>
        <textwithlinks>
          <text>We've made other improvements, too. </text>
          <link external="Y">
            <text>Learn more... </text>
            <file>http://www.quickbooksgroup.com/betterbecauseofyou/index.html</file>
          </link>
        </textwithlinks>
      </item>
    </section>

    <!-- Additional Resources, for non-Enterprise only -->
    <section excludeFlavor="bel,belacct,belnonprofit,belcontractor,belwholesale,belretail,belprofessional">
      <blankline height="15" />
      <title>Additional resources</title>
      <blankline height="3" />
      <item>
        <textwithlinks>
          <text>Help from QuickBooks support experts (FREE for 30 days after registration). </text>
          <link external="Y">
            <text>Learn more...</text>
          <file>http://www.quickbooks.com/support</file>
          </link>
        </textwithlinks>
      </item>
      <item>
        <textwithlinks>
          <text>Contact other QuickBooks users and experts to find answers and share advice. </text>
          <link external="Y">
            <text>Learn more...</text>
          <file>http://qbinproduct.com/lava/QB/qbgroups</file>
          </link>
        </textwithlinks>
      </item>
    </section>
  </tab>
 
<!-- Uncomment this section to see how different tags work -->
<!--
  <tab>
    <id>test</id>
    <title>Format Test</title>
    <subtitle>Display of available text formatting</subtitle>
    <icon>tab_info.gif</icon>
    <section>
      <drawline />
    </section>
    <section> 
      <title>Section Title</title>
      <text>
        Section text: This is free form paragraph text with no formatting. This 
        text line breaks based on line breaks within the XML definition.
      </text>
      <item>
        <text>Tutorial video link 1</text>
        <file>a.swf</file>
      </item>
      <item>
        <text>Tutorial video link 2</text>
        <file>b.swf</file>
      </item>
      <blankline height="20" />
      <formattext>
        <text bold="Y">FormatText:</text>
        <text> This is free form paragraph text </text>
        <text italics="Y" underline="Y">with</text>
        <text> formatting. This text does not use line breaks in the XML text, but word wraps based on the section width. You can specify a special tag to force a</text>
        <linebreak />
        <text>line break.</text>
      </formattext>
      <item>
        <textwithlinks>
          <text>Link to help topic </text>
          <link>
            <text>Learn more</text>
            <helpid>0</helpid>
          </link>
        </textwithlinks>
      </item>
      <item>
        <textwithlinks>
          <text>Link to another help topic </text>
          <link>
            <text>Learn more</text>
            <helpid>0</helpid>
          </link>
        </textwithlinks>
      </item>
      <item>
        <textwithlinks>
          <formattext>
            <text bold="Y">Formatted </text>
            <text> link to </text>
            <text underline="Y">another</text>
            <text> help topic </text>
          </formattext>
          <link>
            <text>Learn more</text>
            <helpid>0</helpid>
          </link>
        </textwithlinks>
      </item>
      <blankline height="20" />
      <textwithlinks>
        <formattext>
          <text underline="Y">Text with links:</text>
        </formattext>
        <text> Need more help? Visit the </text>
        <link>
          <text>Nonprofit Help Center</text>
          <helpid>0</helpid>
        </link>
        <text> for more information on managing your nonprofit organization.</text>
      </textwithlinks>
    </section>
  </tab>
-->

</tabs>

</learningGuide>
