home *** CD-ROM | disk | FTP | other *** search
/ The Electronic Whole Earth Catalog / ElectronicWholeEarthCatalog.img / LEARNING / card_378691.txt < prev    next >
Text File  |  1989-02-07  |  35KB  |  2,128 lines

  1. -- card: 378691 from stack: in
  2. -- bmap block id: 0
  3. -- flags: 4000
  4. -- background id: 383049
  5. -- name: Contents
  6. ----- HyperTalk script -----
  7. -- do not remove
  8. -- cd Contents script
  9. on showMover
  10.   show btn "Put Article"
  11.   show btn "After"
  12.   show btn "PushMover"
  13.   show btn "To Other Stack"
  14.   show btn "Do It"
  15.   show btn "Un/Lock"
  16.   show bg fld "theMover"
  17.   show bg fld "theTarget"
  18. end showMover
  19.  
  20. on hideMover
  21.   hide btn "Put Article"
  22.   hide btn "After"
  23.   hide btn "PushMover"
  24.   hide btn "To Other Stack"
  25.   hide btn "Do It"
  26.   hide btn "Un/Lock"
  27.   hide bg fld "theMover"
  28.   hide bg fld "theTarget"
  29. end hideMover
  30.  
  31.  
  32.  
  33. -- part 49 (button)
  34. -- low flags: 80
  35. -- high flags: 8002
  36. -- rect: left=12 top=0 right=17 bottom=87
  37. -- title width / last selected line: 0
  38. -- icon id / first selected line: 0 / 0
  39. -- text alignment: 1
  40. -- font id: 0
  41. -- text size: 12
  42. -- style flags: 0
  43. -- line height: 16
  44. -- part name: Put Article
  45. ----- HyperTalk script -----
  46. on mouseUp
  47.   put value( the selectedLine ) into bg field "theMover"
  48. end mouseUp
  49.  
  50.  
  51.  
  52. -- part 50 (button)
  53. -- low flags: 80
  54. -- high flags: 8002
  55. -- rect: left=12 top=20 right=38 bottom=53
  56. -- title width / last selected line: 0
  57. -- icon id / first selected line: 0 / 0
  58. -- text alignment: 1
  59. -- font id: 0
  60. -- text size: 12
  61. -- style flags: 0
  62. -- line height: 16
  63. -- part name: After
  64. ----- HyperTalk script -----
  65. on mouseUp
  66.   put value( the selectedLine) into bg field "theTarget"
  67. end mouseUp
  68.  
  69.  
  70.  
  71. -- part 51 (button)
  72. -- low flags: 80
  73. -- high flags: 0000
  74. -- rect: left=380 top=0 right=31 bottom=404
  75. -- title width / last selected line: 0
  76. -- icon id / first selected line: 2730 / 2730
  77. -- text alignment: 1
  78. -- font id: 0
  79. -- text size: 12
  80. -- style flags: 0
  81. -- line height: 16
  82. -- part name: pushMover
  83. ----- HyperTalk script -----
  84. on mouseUp
  85.   put bg field "theMover" into bg field "theTarget"
  86. end mouseUp
  87.  
  88.  
  89.  
  90. -- part 52 (button)
  91. -- low flags: 80
  92. -- high flags: A004
  93. -- rect: left=406 top=0 right=16 bottom=512
  94. -- title width / last selected line: 0
  95. -- icon id / first selected line: 0 / 0
  96. -- text alignment: 1
  97. -- font id: 0
  98. -- text size: 12
  99. -- style flags: 0
  100. -- line height: 16
  101. -- part name: To Other Stack
  102. ----- HyperTalk script -----
  103. on mouseUp
  104.   global lastStack, stackList
  105.   put bkgnd field "theMover" into sourceTitle
  106.   if sourceTitle is empty then
  107.     beep
  108.     put "No Source Title given!"
  109.     exit mouseUp
  110.   end if
  111.   put bkgnd field "theTarget" into targetTitle
  112.   if targetTitle is empty then
  113.     --   beep
  114.     put "No Target Title given!"
  115.     --   exit mouseUp
  116.   end if
  117.   go to first card in background "Review"
  118.   find sourceTitle in bkgnd field "theTitle"
  119.   if the result is "not found" then
  120.     go to card "Contents"
  121.     beep
  122.     put "Source Title not found!" into msg
  123.     exit mouseUp
  124.   end if
  125.   put bkgnd field "theTitle" into sourceTitle2
  126.   put empty into sourceIds
  127.   repeat while sourceTitle2 is in bkgnd field "theTitle"
  128.     get the id of this card
  129.     put it & return after sourceIds
  130.     go to next card
  131.     if number of this card is 1 then exit repeat
  132.   end repeat
  133.   repeat
  134.     go to card "Contents"
  135.     answer "Found" && number of lines in sourceIds && "cards to move." with "Cancel" or "Review" or "OK"
  136.     if it is "Cancel" then exit mouseUp
  137.     if it is "OK" then exit repeat
  138.     repeat with thisID = 1 to number of lines in sourceIds
  139.       go to (line thisID of sourceIds)
  140.     end repeat
  141.   end repeat
  142.   -- start new code
  143.   repeat
  144.     Ask "Domain Number of target stack?" with lastStack
  145.     if it is empty then exit mouseUp
  146.     put it into targStackNum
  147.     if length( targStackNum ) < 2 then put "0" before targStackNum
  148.     put item it of stackList into targetStack
  149.     put it into lastStack
  150.     put id of this card into testID
  151.     push card
  152.     go to stack targetStack
  153.     if id of this card is testID then
  154.       beep
  155.       put "Stack not found"
  156.       pop card
  157.     else
  158.       exit repeat
  159.     end if
  160.   end repeat
  161.   go to first card in background "Review"
  162.   if targetTitle is empty then
  163.     go to last card
  164.     put field "theTitle" into targetTitle
  165.   else
  166.     find targetTitle in bkgnd field "theTitle"
  167.     if the result is "not found" then
  168.       go to card "Contents"
  169.       beep
  170.       put "Target Title not found!" into msg
  171.       pop card
  172.       exit mouseUp
  173.     end if
  174.   end if
  175.   put bkgnd field "theTitle" into targetTitle2
  176.   repeat while bkgnd field "theTitle" is targetTitle2
  177.     get the id of this card
  178.     put it into targetID
  179.     go to next card
  180.     if number of this card is 1 then exit repeat
  181.   end repeat
  182.   go to (targetId)
  183.   answer "Put them after this card?" with "Cancel" or "OK"
  184.   if it is "Cancel" then
  185.     pop card
  186.     exit mouseUp
  187.   end if
  188.  
  189.   pop card
  190.   -- now to actually move the cards
  191.   repeat with thisId = 1 to number of lines in sourceIds
  192.     put (line thisId of sourceIds) into srcCard
  193.     go to srcCard
  194.     lock screen
  195.     put the short name of this bkgnd into thisBkgnd
  196.     put getFields() into fieldCount
  197.     put "fc: " & fieldCount
  198.  
  199.     push card
  200.  
  201.     -- go get blank template card for this bg
  202.     do ("go to first card of bkgnd" && thisBkgnd && "of stack" && targetStack)
  203.     doMenu Copy Card
  204.     go to targetId
  205.     doMenu Paste Card
  206.     get the long id of this card
  207.     put it into targetId
  208.  
  209.     putFields fieldCount
  210.     put targetStack into bg field "theTopic"
  211.     put targStackNum & char 3 to length( field accession) of field accession into field accession
  212.  
  213.     if field "theIdent" is "access" then
  214.       if field surveyAccession is not empty then
  215.         put targStackNum & char 3 to length( field surveyAccession) of field surveyAccession into field surveyAccession
  216.       end if
  217.     end if
  218.     -- move graphic, if appropriate
  219.     if thisBkgnd is in "access,picture" then
  220.       pop card
  221.       -- horrible kluge...
  222.       -- make a speck on the card picture, so we never copy a blank pict
  223.       choose pencil tool
  224.       click at 280,180  -- where there's prob'ly some graphic already
  225.       -- we unmake the speck with another pencil click
  226.       -- our card looks the same as originally, but is guaranteed to
  227.       -- have a nonempty card picture
  228.       click at 280,180
  229.       choose select tool
  230.       domenu "Select All"
  231.       doMenu "Copy Picture"
  232.       push card
  233.       go to targetId
  234.       doMenu "Paste Picture"
  235.       choose browse tool
  236.       -- make it transparent in all cases EXCEPT when fullScreen picture
  237.       put no into decision
  238.       if thisBkgnd is "access"
  239.       then put yes into decision
  240.     else if thisBkgnd is "picture" then
  241.       -- put "fs: " & field "fullScreen"
  242.       if field "fullScreen" is empty
  243.       then put yes into decision
  244.     end if
  245.     if decision is "yes" then
  246.       choose select tool
  247.       domenu "Select All"
  248.       doMenu "transparent"
  249.       choose browse tool
  250.     end if
  251.   end if
  252.   unlock screen
  253.   pop card
  254. end repeat
  255.  
  256. -- update both TOC
  257. go to card "Contents"
  258. put offset (sourceTitle, bkgnd field "theContents") into sourceOff
  259. if sourceOff is 0 then
  260.   beep
  261.   put "Regenerate Contents of Source!"
  262. else
  263.   delete char sourceOff to (sourceOff + length(sourceTitle) - 1) of bkgnd field "theContents"
  264.   if char sourceOff of bkgnd field "theContents" is return then
  265.     delete char sourceOff of bkgnd field "theContents"
  266.   end if
  267.   if last char of sourceTitle is not return then put return after sourceTitle
  268. end if
  269. push card
  270. go to card "Contents" of stack targetStack
  271. put offset(targetTitle, bkgnd field "theContents") into targetOff
  272. if targetOff is 0 then
  273.   beep
  274.   put "Regenerate Contents of Target!"
  275.   pop card
  276.   exit mouseUp
  277. end if
  278. add length(targetTitle) to targetOff
  279. if char targetOff of bkgnd field "theContents" is return then add 1 to targetOff
  280. put sourceTitle before char targetOff of bkgnd field "theContents"
  281. pop card
  282. end mouseUp
  283.  
  284. function getFields
  285. global nameList
  286. global fContents
  287.  
  288. put empty into nameList
  289. put empty into fContents
  290.  
  291. put the number of bg fields into bgfc
  292. repeat with f = 1 to bgfc
  293.   put the name of bg field f & tab after nameList
  294.   put bg field f & tab after fContents
  295. end repeat
  296.  
  297. put the number of card fields into crdfc
  298. repeat with f = 1 to crdfc
  299.   put the name of card field f & tab after nameList
  300.   put card field f & tab after fContents
  301. end repeat
  302.  
  303. return bgfc + crdfc
  304. end getFields
  305.  
  306. on putFields fCounts
  307.   global nameList
  308.   global fContents
  309.  
  310.   put first item of fCounts into bgfc
  311.   put last item of fCounts into crdfc
  312.   repeat with f = 1 to bgfc
  313.     put pullName() into fName
  314.     put fName
  315.     do "put pullContents() into " & fName
  316.   end repeat
  317.  
  318. end putFields
  319.  
  320. function pullContents
  321. -- returns tab-delimited chunk from global fContents
  322. -- deletes it from global fContents, too
  323. global fContents
  324. put offset( tab, fContents ) into tabSpot
  325. if tabSpot > 0 then
  326.   get char 1 to tabSpot-1 of fContents
  327.   delete char 1 to tabSpot of fContents
  328.   return it
  329. end if
  330. return empty
  331. end pullContents
  332.  
  333. function pullName
  334. -- returns tab-delimited chunk from global nameList
  335. -- deletes it from global nameList, too
  336. global nameList
  337. put offset( tab, nameList ) into tabSpot
  338. if tabSpot > 0 then
  339.   get char 1 to tabSpot-1 of nameList
  340.   delete char 1 to tabSpot of nameList
  341.   return it
  342. end if
  343. return empty
  344. end pullName
  345.  
  346.  
  347.  
  348.  
  349. -- part 53 (button)
  350. -- low flags: 80
  351. -- high flags: A004
  352. -- rect: left=406 top=16 right=32 bottom=512
  353. -- title width / last selected line: 0
  354. -- icon id / first selected line: 0 / 0
  355. -- text alignment: 1
  356. -- font id: 0
  357. -- text size: 12
  358. -- style flags: 0
  359. -- line height: 16
  360. -- part name: Do It
  361. ----- HyperTalk script -----
  362. on mouseUp
  363.   put bkgnd field "theMover" into sourceTitle
  364.   if sourceTitle is empty then
  365.     beep
  366.     put "No Source Title given!"
  367.     exit mouseUp
  368.   end if
  369.   put bkgnd field "theTarget" into targetTitle
  370.   if targetTitle is empty then
  371.     beep
  372.     put "No Target Title given!"
  373.     exit mouseUp
  374.   end if
  375.   go to first card in background "Review"
  376.   find sourceTitle in bkgnd field "theTitle"
  377.   if the result is "not found" then
  378.     go to card "Contents"
  379.     beep
  380.     put "Source Title not found!" into msg
  381.     exit mouseUp
  382.   end if
  383.   put bkgnd field "theTitle" into sourceTitle2
  384.   put empty into sourceIds
  385.   repeat while sourceTitle2 is in bkgnd field "theTitle"
  386.     get the id of this card
  387.     put it & return after sourceIds
  388.     go to next card
  389.     if number of this card is 1 then exit repeat
  390.   end repeat
  391.   repeat
  392.     go to card "Contents"
  393.     answer "Found" && number of lines in sourceIds && "cards to move." with "Cancel" or "Review" or "OK"
  394.     if it is "Cancel" then exit mouseUp
  395.     if it is "OK" then exit repeat
  396.     repeat with thisID = 1 to number of lines in sourceIds
  397.       go to (line thisID of sourceIds)
  398.     end repeat
  399.   end repeat
  400.   go to first card in background "Review"
  401.   find targetTitle in bkgnd field "theTitle"
  402.   if the result is "not found" then
  403.     go to card "Contents"
  404.     beep
  405.     put "Target Title not found!" into msg
  406.     exit mouseUp
  407.   end if
  408.   put bkgnd field "theTitle" into targetTitle2
  409.   repeat while bkgnd field "theTitle" is targetTitle2
  410.     get the id of this card
  411.     put it into targetID
  412.     go to next card
  413.     if number of this card is 1 then exit repeat
  414.   end repeat
  415.   go to (targetId)
  416.   answer "Put them after this card?" with "Cancel" or "OK"
  417.   if it is "Cancel" then exit mouseUp
  418.   push card
  419.   repeat with thisId = 1 to number of lines in sourceIds
  420.     go to (line thisId of sourceIds)
  421.     doMenu Cut Card
  422.     pop card
  423.     doMenu Paste Card
  424.     push card
  425.   end repeat
  426.   pop card
  427.   go to card "Contents"
  428.   put offset (sourceTitle, bkgnd field "theContents") into sourceOff
  429.   if sourceOff is 0 then
  430.     beep
  431.     put "Regenerate Contents!"
  432.     exit mouseUp
  433.   end if
  434.   delete char sourceOff to (sourceOff + length(sourceTitle) - 1) of bkgnd field "theContents"
  435.   if char sourceOff of bkgnd field "theContents" is return then
  436.     delete char sourceOff of bkgnd field "theContents"
  437.   end if
  438.   if last char of sourceTitle is not return then put return after sourceTitle
  439.   put offset(targetTitle, bkgnd field "theContents") into targetOff
  440.   if targetOff is 0 then
  441.     beep
  442.     put "Regenerate Contents!"
  443.     exit mouseUp
  444.   end if
  445.   add length(targetTitle) to targetOff
  446.   if char targetOff of bkgnd field "theContents" is return then add 1 to targetOff
  447.   put sourceTitle before char targetOff of bkgnd field "theContents"
  448. end mouseUp
  449.  
  450.  
  451.  
  452. -- part 54 (button)
  453. -- low flags: 80
  454. -- high flags: A004
  455. -- rect: left=406 top=32 right=48 bottom=512
  456. -- title width / last selected line: 0
  457. -- icon id / first selected line: 0 / 0
  458. -- text alignment: 1
  459. -- font id: 0
  460. -- text size: 12
  461. -- style flags: 0
  462. -- line height: 16
  463. -- part name: Un/Lock
  464. ----- HyperTalk script -----
  465. on mouseUp
  466.   get the lockText of fld "theContents"
  467.   if it is false then
  468.     set the lockText of fld "theContents" to true
  469.   else
  470.     set the lockText of fld "theContents" to false
  471.   end if
  472. end mouseUp
  473.  
  474.  
  475.  
  476. -- part contents for background part 6
  477. ----- text -----
  478. Contents
  479.  
  480. -- part contents for background part 11
  481. ----- text -----
  482. Menu
  483.  
  484. -- part contents for background part 17
  485. ----- text -----
  486. LEARNING CONTENTS
  487.  
  488. -- part contents for background part 33
  489. ----- text -----
  490. card id 7500
  491. card id 11106
  492. card id 46901
  493. card id 194372
  494. card id 119369
  495. card id 195740
  496. card id 184403
  497. card id 196748
  498. card id 182765
  499. card id 183056
  500. card id 21232
  501. card id 24994
  502. card id 26203
  503. card id 26974
  504. card id 197702
  505. card id 198841
  506. card id 199997
  507. card id 201126
  508. card id 201810
  509. card id 28424
  510. card id 161100
  511. card id 162517
  512. card id 163485
  513. card id 30540
  514. card id 203295
  515. card id 140577
  516. card id 185513
  517. card id 12040
  518. card id 9662
  519. card id 170839
  520. card id 171959
  521. card id 172919
  522. card id 173915
  523. card id 175068
  524. card id 46626
  525. card id 186740
  526. card id 188064
  527. card id 189031
  528. card id 191192
  529. card id 193458
  530. card id 55680
  531. card id 89971
  532. card id 102344
  533. card id 54608
  534. card id 17160
  535. card id 113963
  536. card id 119195
  537. card id 55106
  538. card id 54170
  539. card id 57013
  540. card id 88155
  541. card id 139208
  542. card id 89341
  543. card id 47179
  544. card id 192387
  545. card id 176610
  546. card id 189999
  547. card id 47777
  548. card id 180558
  549. card id 256949
  550. card id 73126
  551. card id 169757
  552. card id 167485
  553. card id 168597
  554. card id 166564
  555. card id 48121
  556. card id 165551
  557. card id 177648
  558. card id 178583
  559. card id 178797
  560. card id 60696
  561. card id 61243
  562. card id 179691
  563. card id 179875
  564. card id 276601
  565. card id 277245
  566. card id 277354
  567. card id 48498
  568. card id 211014
  569. card id 212379
  570. card id 213448
  571. card id 214381
  572. card id 215389
  573. card id 257784
  574. card id 49028
  575. card id 31323
  576. card id 235550
  577. card id 236859
  578. card id 237174
  579. card id 289864
  580. card id 237855
  581. card id 316250
  582. card id 36411
  583. card id 49342
  584. card id 153965
  585. card id 156185
  586. card id 155121
  587. card id 220889
  588. card id 221418
  589. card id 278490
  590. card id 252540
  591. card id 49582
  592. card id 71457
  593. card id 72051
  594. card id 207768
  595. card id 49969
  596. card id 208684
  597. card id 209351
  598. card id 210264
  599. card id 56539
  600. card id 341282
  601. card id 290898
  602. card id 38892
  603. card id 50328
  604. card id 70405
  605. card id 66202
  606. card id 206729
  607. card id 205618
  608. card id 33370
  609. card id 351883
  610. card id 349777
  611. card id 349182
  612. card id 347855
  613. card id 346624
  614. card id 336884
  615. card id 327056
  616. card id 293236
  617. card id 289705
  618. card id 50511
  619. card id 7143
  620. card id 135716
  621. card id 157698
  622. card id 34472
  623. card id 50977
  624. card id 89397
  625. card id 97263
  626. card id 97495
  627. card id 75074
  628. card id 99199
  629. card id 51378
  630. card id 94681
  631. card id 98190
  632. card id 98542
  633. card id 180374
  634. card id 96074
  635. card id 92495
  636. card id 93466
  637. card id 39966
  638. card id 51459
  639. card id 111819
  640. card id 132108
  641. card id 116328
  642. card id 122226
  643. card id 258650
  644. card id 259100
  645. card id 260888
  646. card id 261973
  647. card id 262526
  648. card id 262854
  649. card id 51845
  650. card id 137511
  651. card id 138708
  652. card id 139731
  653. card id 194042
  654. card id 265129
  655. card id 52267
  656. card id 143659
  657. card id 144815
  658. card id 266143
  659. card id 136580
  660. card id 136929
  661. card id 317045
  662. card id 317351
  663. card id 267976
  664. card id 145719
  665. card id 146029
  666. card id 67458
  667. card id 146928
  668. card id 52546
  669. card id 270360
  670. card id 3465
  671. card id 115440
  672. card id 123202
  673. card id 120858
  674. card id 125524
  675. card id 126574
  676. card id 52875
  677. card id 147938
  678. card id 149301
  679. card id 150566
  680. card id 263618
  681. card id 352150
  682. card id 20359
  683. card id 151955
  684. card id 53354
  685. card id 128929
  686. card id 264167
  687. card id 271528
  688. card id 98990
  689. card id 179998
  690. card id 181112
  691. card id 133158
  692. card id 181340
  693. card id 183507
  694. card id 274220
  695. card id 252896
  696. card id 185712
  697. card id 186281
  698. card id 111520
  699. card id 91391
  700. card id 189456
  701. card id 190581
  702. card id 190910
  703. card id 192980
  704. card id 194303
  705. card id 34283
  706. card id 110264
  707. card id 277608
  708. card id 134366
  709. card id 279882
  710. card id 129910
  711. card id 130965
  712. card id 62618
  713. card id 37482
  714. card id 42699
  715. card id 282368
  716. card id 2115
  717. card id 194690
  718. card id 195119
  719. card id 4618
  720. card id 14230
  721. card id 288215
  722. card id 286896
  723. card id 273225
  724. card id 264911
  725. card id 382130
  726. card id 384827
  727. card id 357605
  728. card id 178294
  729. card id 301433
  730. card id 293575
  731. card id 287546
  732. card id 275061
  733. card id 36962
  734. card id 77266
  735. card id 77328
  736. card id 390555
  737. card id 290768
  738. card id 40783
  739. card id 202816
  740. card id 78281
  741. card id 78460
  742. card id 202001
  743. card id 37209
  744. card id 15405
  745. card id 16273
  746. card id 283063
  747. card id 283467
  748. card id 294431
  749. card id 13822
  750. card id 27962
  751. card id 355745
  752. card id 355306
  753. card id 355505
  754. card id 265675
  755. card id 357748
  756. card id 359348
  757. card id 368017
  758. card id 368522
  759. card id 252980
  760. card id 277964
  761. card id 279467
  762. card id 301102
  763. card id 383888
  764. card id 360065
  765. card id 296917
  766. card id 299846
  767. card id 42121
  768. card id 37864
  769. card id 17646
  770. card id 18481
  771. card id 60583
  772. card id 284228
  773. card id 259659
  774. card id 253617
  775. card id 315301
  776. card id 314051
  777. card id 101921
  778. card id 280102
  779. card id 43839
  780. card id 40291
  781. card id 76195
  782. card id 80281
  783. card id 80964
  784. card id 376611
  785. card id 24493
  786. card id 303268
  787. card id 112320
  788. card id 112619
  789. card id 353382
  790. card id 40579
  791. card id 25478
  792. card id 26401
  793. card id 26835
  794. card id 321840
  795. card id 321334
  796. card id 322114
  797. card id 67065
  798. card id 23504
  799. card id 30088
  800. card id 29129
  801. card id 41876
  802. card id 65818
  803. card id 276772
  804. card id 75463
  805. card id 384024
  806. card id 218494
  807. card id 297394
  808. card id 107972
  809. card id 109753
  810. card id 366336
  811. card id 367082
  812. card id 367132
  813. card id 44104
  814. card id 298199
  815. card id 307689
  816. card id 299250
  817. card id 300076
  818. card id 309102
  819. card id 310631
  820. card id 44745
  821. card id 181904
  822. card id 82123
  823. card id 311609
  824. card id 44940
  825. card id 295134
  826. card id 296064
  827. card id 44534
  828. card id 67960
  829. card id 56644
  830. card id 57909
  831. card id 58962
  832. card id 68597
  833. card id 45655
  834. card id 85791
  835. card id 86206
  836. card id 87762
  837. card id 2445
  838. card id 62788
  839. card id 312592
  840. card id 65127
  841. card id 65289
  842. card id 45395
  843. card id 45875
  844. card id 275233
  845. card id 182186
  846. card id 267023
  847. card id 268065
  848. card id 271871
  849. card id 114431
  850. card id 46152
  851. card id 48375
  852. card id 12500
  853. card id 224099
  854. card id 225157
  855. card id 50825
  856. card id 19691
  857. card id 33261
  858. card id 39721
  859. card id 88566
  860. card id 408900
  861. card id 43448
  862. card id 62073
  863. card id 62317
  864. card id 67652
  865. card id 69748
  866. card id 53078
  867. card id 9755
  868. card id 38616
  869. card id 11358
  870. card id 8175
  871. card id 8569
  872. card id 59319
  873. card id 101514
  874. card id 102847
  875. card id 100298
  876. card id 103909
  877. card id 104732
  878. card id 59584
  879. card id 231562
  880. card id 234329
  881. card id 232785
  882. card id 59679
  883. card id 106841
  884. card id 105958
  885. card id 105999
  886. card id 416629
  887. card id 108269
  888. card id 109154
  889. card id 60186
  890. card id 221900
  891. card id 222918
  892. card id 90571
  893. card id 255481
  894.  
  895.  
  896. -- part contents for background part 34
  897. ----- text -----
  898. 06053003
  899. 06045003
  900. 06045105
  901. 06045116
  902. 06045127
  903. 06045138
  904. 06045149
  905. 06045150
  906. 06045218
  907. 06101513
  908. 06101488
  909. 06101455
  910. 06103060
  911. 06045309
  912. 06045310
  913. 06045321
  914. 06045332
  915. 06045343
  916. 06045354
  917. 06045401
  918. 06045412
  919. 06045423
  920. 06045434
  921. 06045503
  922. 06045514
  923. 06048244
  924. 06045536
  925. 06046004
  926. 06046106
  927. 06046117
  928. 06046128
  929. 06046139
  930. 06046140
  931. 06046151
  932. 06046208
  933. 06046219
  934. 06046220
  935. 06046231
  936. 06046242
  937. 06046253
  938. 06103004
  939. 06046446
  940. 06102081
  941. 06046300
  942. 06046311
  943. 06046322
  944. 06046333
  945. 06046344
  946. 06046355
  947. 06046366
  948. 06108554
  949. 06108565
  950. 06108576
  951. 06046402
  952. 06046413
  953. 06046424
  954. 06046435
  955. 06046504
  956. 06046515
  957. 06100512
  958. 06046526
  959. 06046537
  960. 06046548
  961. 06046651
  962. 06046559
  963. 06046606
  964. 06046617
  965. 06046628
  966. 06046639
  967. 06113835
  968. 06101579
  969. 06101546
  970. 06046640
  971. 06108510
  972. 06108521
  973. 06108532
  974. 06108543
  975. 06046708
  976. 06046719
  977. 06046720
  978. 06046731
  979. 06046742
  980. 06046753
  981. 06101524
  982. 06046902
  983. 06046913
  984. 06046924
  985. 06102843
  986. 06046935
  987. 06101148
  988. 06046946
  989. 06043727
  990. 06047005
  991. 06047107
  992. 06047118
  993. 06047130
  994. 06047129
  995. 06047141
  996. 06108587
  997. 06108598
  998. 06047152
  999. 06047209
  1000. 06047210
  1001. 06047221
  1002. 06047232
  1003. 06047301
  1004. 06047312
  1005. 06103117
  1006. 06047323
  1007. 06103128
  1008. 06102785
  1009. 06047334
  1010. 06047345
  1011. 06047403
  1012. 06047414
  1013. 06108747
  1014. 06047436
  1015. 06047447
  1016. 06047458
  1017. 06069409
  1018. 06069318
  1019. 06069329
  1020. 06069330
  1021. 06069341
  1022. 06069410
  1023. 06069421
  1024. 06069432
  1025. 06109011
  1026. 06047505
  1027. 06047516
  1028. 06047527
  1029. 06047538
  1030. 06047549
  1031. 06047607
  1032. 06047618
  1033. 06047629
  1034. 06101693
  1035. 06101728
  1036. 06047630
  1037. 06047709
  1038. 06047710
  1039. 06047721
  1040. 06114369
  1041. 06114176
  1042. 06047732
  1043. 06047743
  1044. 06047754
  1045. 06048006
  1046. 06048108
  1047. 06048119
  1048. 06048120
  1049. 06048131
  1050. 06048142
  1051. 06114994
  1052. 06102014
  1053. 06102047
  1054. 06102321
  1055. 06102161
  1056. 06102194
  1057. 06048200
  1058. 06048211
  1059. 06048222
  1060. 06048233
  1061. 06108758
  1062. 06108769
  1063. 06048302
  1064. 06048313
  1065. 06048324
  1066. 06108770
  1067. 06048620
  1068. 06108974
  1069. 06108985
  1070. 06108996
  1071. 06108781
  1072. 06048335
  1073. 06109975
  1074. 06109942
  1075. 06048346
  1076. 06048404
  1077. 06108792
  1078. 06048415
  1079. 06048426
  1080. 06048437
  1081. 06048448
  1082. 06048153
  1083. 06048459
  1084. 06048506
  1085. 06048517
  1086. 06048528
  1087. 06048539
  1088. 06101682
  1089. 06012640
  1090. 06012639
  1091. 06048540
  1092. 06048608
  1093. 06048619
  1094. 06101955
  1095. 06108816
  1096. 06102387
  1097. 06101717
  1098. 06101740
  1099. 06101864
  1100. 06101897
  1101. 06101922
  1102. 06108827
  1103. 06104301
  1104. 06114052
  1105. 00000000
  1106. 06101831
  1107. 06065267
  1108. 06102354
  1109. 06102003
  1110. 06102150
  1111. 06102183
  1112. 06102218
  1113. 06048700
  1114. 06048711
  1115. 06108838
  1116. 06048642
  1117. 06108849
  1118. 06048722
  1119. 06048733
  1120. 06048744
  1121. 06048755
  1122. 06049007
  1123. 06104403
  1124. 06111877
  1125. 06101999
  1126. 06102025
  1127. 06102058
  1128. 06104505
  1129. 06062311
  1130. 06062322
  1131. 06062333
  1132. 06062344
  1133. 06109760
  1134. 06062355
  1135. 06109204
  1136. 06062366
  1137. 06101091
  1138. 06108872
  1139. 06114267
  1140. 06062117
  1141. 06049109
  1142. 06049110
  1143. 06114278
  1144. 06114212
  1145. 06108850
  1146. 06049121
  1147. 06101988
  1148. 06049132
  1149. 06108612
  1150. 06101499
  1151. 06049201
  1152. 06049212
  1153. 06101795
  1154. 06101820
  1155. 06101853
  1156. 06108883
  1157. 06049223
  1158. 06049245
  1159. 06108805
  1160. 06012719
  1161. 06100670
  1162. 06114392
  1163. 06012720
  1164. 06012731
  1165. 06012628
  1166. 06115246
  1167. 06115257
  1168. 06115268
  1169. 06115235
  1170. 06114198
  1171. 06114381
  1172. 06012742
  1173. 06108894
  1174. 06108918
  1175. 06049234
  1176. 06049303
  1177. 06049314
  1178. 06049325
  1179. 06052900
  1180. 06052911
  1181. 06052922
  1182. 06102116
  1183. 06102149
  1184. 06102172
  1185. 06102230
  1186. 06052933
  1187. 06050000
  1188. 06050102
  1189. 06050113
  1190. 06050124
  1191. 06114234
  1192. 06114223
  1193. 06050135
  1194. 06100410
  1195. 06101875
  1196. 06100896
  1197. 06016713
  1198. 06050204
  1199. 06050215
  1200. 06050533
  1201. 06102887
  1202. 06101295
  1203. 06100669
  1204. 06101320
  1205. 06050544
  1206. 06050226
  1207. 06050237
  1208. 06050248
  1209. 06050306
  1210. 06050317
  1211. 06050340
  1212. 06050339
  1213. 06050328
  1214. 06050351
  1215. 06108690
  1216. 06108714
  1217. 06108725
  1218. 06115213
  1219. 06115199
  1220. 06115224
  1221. 06050408
  1222. 06050419
  1223. 06101911
  1224. 06050420
  1225. 06050431
  1226. 06101944
  1227. 06101977
  1228. 06050500
  1229. 06050511
  1230. 06050522
  1231. 06108929
  1232. 06050602
  1233. 06050613
  1234. 06050624
  1235. 06051001
  1236. 06051205
  1237. 06051216
  1238. 06051227
  1239. 06051238
  1240. 06051249
  1241. 06051307
  1242. 06051318
  1243. 06108736
  1244. 06051329
  1245. 06034544
  1246. 06051330
  1247. 06100863
  1248. 06051114
  1249. 06114347
  1250. 06114358
  1251. 06051409
  1252. 06051410
  1253. 06051421
  1254. 06051432
  1255. 06051512
  1256. 06051523
  1257. 06051534
  1258. 06052002
  1259. 06052104
  1260. 06052115
  1261. 06052126
  1262. 06052137
  1263. 06052206
  1264. 06052217
  1265. 06114336
  1266. 06052228
  1267. 06052331
  1268. 06052342
  1269. 06052239
  1270. 06109577
  1271. 06052240
  1272. 06052319
  1273. 06052320
  1274. 06052400
  1275. 06052411
  1276. 06052422
  1277. 06052433
  1278. 06052444
  1279. 06052455
  1280. 06052502
  1281. 06052513
  1282. 06052535
  1283. 06052524
  1284. 06052546
  1285. 06052557
  1286. 06052604
  1287. 06052615
  1288. 06052626
  1289. 06052637
  1290. 06052706
  1291. 06052717
  1292. 06052728
  1293. 06114370
  1294. 06114187
  1295. 06052739
  1296. 06052740
  1297. 06052808
  1298. 06052819
  1299. 06052820
  1300. 06052842
  1301. 06052831
  1302.  
  1303.  
  1304. -- part contents for background part 35
  1305. ----- text -----
  1306. 1
  1307. 2
  1308. 3
  1309. 4
  1310. 4
  1311. 4
  1312. 4
  1313. 4
  1314. 4
  1315. 5
  1316. 5
  1317. 5
  1318. 5
  1319. 3
  1320. 4
  1321. 4
  1322. 4
  1323. 4
  1324. 4
  1325. 3
  1326. 4
  1327. 4
  1328. 4
  1329. 3
  1330. 4
  1331. 4
  1332. 4
  1333. 2
  1334. 3
  1335. 4
  1336. 4
  1337. 4
  1338. 4
  1339. 4
  1340. 3
  1341. 4
  1342. 4
  1343. 4
  1344. 4
  1345. 4
  1346. 3
  1347. 4
  1348. 4
  1349. 3
  1350. 4
  1351. 4
  1352. 4
  1353. 4
  1354. 4
  1355. 4
  1356. 5
  1357. 5
  1358. 5
  1359. 3
  1360. 4
  1361. 4
  1362. 4
  1363. 3
  1364. 4
  1365. 4
  1366. 4
  1367. 4
  1368. 4
  1369. 4
  1370. 4
  1371. 3
  1372. 4
  1373. 4
  1374. 4
  1375. 5
  1376. 5
  1377. 5
  1378. 4
  1379. 5
  1380. 5
  1381. 5
  1382. 5
  1383. 3
  1384. 4
  1385. 4
  1386. 4
  1387. 4
  1388. 4
  1389. 4
  1390. 3
  1391. 4
  1392. 4
  1393. 4
  1394. 5
  1395. 5
  1396. 4
  1397. 4
  1398. 2
  1399. 3
  1400. 4
  1401. 4
  1402. 4
  1403. 4
  1404. 5
  1405. 5
  1406. 4
  1407. 3
  1408. 4
  1409. 4
  1410. 4
  1411. 3
  1412. 4
  1413. 5
  1414. 5
  1415. 5
  1416. 5
  1417. 4
  1418. 4
  1419. 3
  1420. 4
  1421. 4
  1422. 4
  1423. 4
  1424. 4
  1425. 3
  1426. 4
  1427. 4
  1428. 4
  1429. 4
  1430. 4
  1431. 4
  1432. 4
  1433. 4
  1434. 3
  1435. 4
  1436. 4
  1437. 4
  1438. 4
  1439. 3
  1440. 4
  1441. 4
  1442. 5
  1443. 5
  1444. 4
  1445. 3
  1446. 4
  1447. 4
  1448. 5
  1449. 5
  1450. 4
  1451. 4
  1452. 4
  1453. 2
  1454. 3
  1455. 4
  1456. 4
  1457. 4
  1458. 4
  1459. 4
  1460. 5
  1461. 5
  1462. 4
  1463. 5
  1464. 5
  1465. 3
  1466. 4
  1467. 4
  1468. 4
  1469. 4
  1470. 4
  1471. 3
  1472. 4
  1473. 4
  1474. 4
  1475. 4
  1476. 5
  1477. 5
  1478. 5
  1479. 4
  1480. 4
  1481. 5
  1482. 5
  1483. 4
  1484. 3
  1485. 4
  1486. 4
  1487. 4
  1488. 4
  1489. 4
  1490. 4
  1491. 4
  1492. 3
  1493. 4
  1494. 4
  1495. 4
  1496. 4
  1497. 4
  1498. 4
  1499. 4
  1500. 3
  1501. 4
  1502. 4
  1503. 4
  1504. 4
  1505. 5
  1506. 5
  1507. 4
  1508. 4
  1509. 4
  1510. 4
  1511. 3
  1512. 4
  1513. 5
  1514. 5
  1515. 4
  1516. 4
  1517. 5
  1518. 5
  1519. 5
  1520. 5
  1521. 3
  1522. 4
  1523. 4
  1524. 4
  1525. 4
  1526. 4
  1527. 4
  1528. 4
  1529. 4
  1530. 2
  1531. 3
  1532. 4
  1533. 4
  1534. 4
  1535. 4
  1536. 3
  1537. 4
  1538. 4
  1539. 4
  1540. 4
  1541. 4
  1542. 4
  1543. 3
  1544. 4
  1545. 4
  1546. 4
  1547. 4
  1548. 4
  1549. 3
  1550. 4
  1551. 5
  1552. 5
  1553. 4
  1554. 4
  1555. 4
  1556. 4
  1557. 5
  1558. 5
  1559. 3
  1560. 4
  1561. 5
  1562. 5
  1563. 5
  1564. 4
  1565. 4
  1566. 4
  1567. 3
  1568. 4
  1569. 5
  1570. 5
  1571. 4
  1572. 4
  1573. 4
  1574. 5
  1575. 5
  1576. 5
  1577. 5
  1578. 5
  1579. 5
  1580. 4
  1581. 4
  1582. 4
  1583. 4
  1584. 3
  1585. 4
  1586. 4
  1587. 3
  1588. 4
  1589. 4
  1590. 4
  1591. 4
  1592. 4
  1593. 4
  1594. 4
  1595. 2
  1596. 3
  1597. 4
  1598. 4
  1599. 5
  1600. 5
  1601. 4
  1602. 4
  1603. 4
  1604. 4
  1605. 4
  1606. 3
  1607. 4
  1608. 4
  1609. 5
  1610. 5
  1611. 5
  1612. 5
  1613. 4
  1614. 4
  1615. 4
  1616. 4
  1617. 3
  1618. 4
  1619. 5
  1620. 5
  1621. 5
  1622. 4
  1623. 5
  1624. 5
  1625. 5
  1626. 5
  1627. 5
  1628. 5
  1629. 3
  1630. 4
  1631. 4
  1632. 4
  1633. 4
  1634. 4
  1635. 4
  1636. 3
  1637. 4
  1638. 4
  1639. 4
  1640. 3
  1641. 4
  1642. 4
  1643. 2
  1644. 3
  1645. 4
  1646. 4
  1647. 4
  1648. 4
  1649. 3
  1650. 4
  1651. 5
  1652. 5
  1653. 4
  1654. 4
  1655. 4
  1656. 4
  1657. 5
  1658. 5
  1659. 3
  1660. 4
  1661. 4
  1662. 4
  1663. 4
  1664. 4
  1665. 4
  1666. 2
  1667. 3
  1668. 4
  1669. 4
  1670. 4
  1671. 3
  1672. 4
  1673. 4
  1674. 5
  1675. 5
  1676. 5
  1677. 4
  1678. 4
  1679. 5
  1680. 5
  1681. 4
  1682. 3
  1683. 4
  1684. 4
  1685. 4
  1686. 4
  1687. 4
  1688. 3
  1689. 4
  1690. 4
  1691. 4
  1692. 4
  1693. 4
  1694. 3
  1695. 4
  1696. 4
  1697. 4
  1698. 3
  1699. 4
  1700. 4
  1701. 5
  1702. 5
  1703. 4
  1704. 4
  1705. 3
  1706. 4
  1707. 4
  1708. 4
  1709. 4
  1710.  
  1711.  
  1712. -- part contents for background part 18
  1713. ----- text -----
  1714. LEARNING
  1715.   CHILDREN
  1716.     Newborns
  1717.       The Amazing Newborn
  1718.       The Womanly Art of Breastfeeding
  1719.       Crying Baby, Sleepless Nights
  1720.       The Affordable Baby
  1721.       Birth & Life Bookstore
  1722.       BABY SUPPLIES
  1723.         Nikky Diaper Covers 
  1724.         Hanna Andersson 
  1725.         Biobottoms 
  1726.         Snugli Baby Carrier 
  1727.     Parenting
  1728.       Whole Child, Whole Parent
  1729.       Creative Parenting
  1730.       How To Talk So Kids Will Listen . . . 
  1731.       Mothering 
  1732.       Taking Care of Your Child
  1733.     Single Parenting
  1734.       Parents Without Partners Sourcebook
  1735.       The Difficult Child
  1736.       On Being Father 
  1737.     Family
  1738.       Festivals, Family and Food
  1739.       Chase‚Äôs Annual Events
  1740.       The Family Bed
  1741.   PLAYING
  1742.     Playthings
  1743.       Creative Publications 
  1744.       Child Life Play Specialties
  1745.       Community Playthings
  1746.       Constructive Playthings
  1747.       Educational Teaching Aids
  1748.     Games
  1749.       Games Magazine
  1750.       Children‚Äôs Games in Street and Playground
  1751.       Games
  1752.       New Games
  1753.       Playfair
  1754.     Serious Games
  1755.       Serious Games
  1756.       Homo Ludens 
  1757.     Play-By-Mail Games
  1758.       PLAY-BY-MAIL GAMES INTRODUCTION
  1759.       Feudal Lords
  1760.       Heroic Fantasy
  1761.       StarWeb
  1762.       Play-By-Mail Association 
  1763.       DIPLOMACY BY MAIL
  1764.         Diplomacy
  1765.         The Gamer‚Äôs Guide to Diplomacy
  1766.         Diplomacy World Magazine
  1767.     Game Supplies
  1768.       Boffers
  1769.       World Wide Games
  1770.       According to Hoyle
  1771.     Toymaking
  1772.       The Modelmaker‚Äôs Handbook 
  1773.       Micro Mark
  1774.       The Complete Dollmaker
  1775.       Making Things
  1776.       Steve Caney‚Äôs Toy Book
  1777.       Cherry Tree Toys
  1778.       Woodworking with Kids
  1779.     Toy Supplies
  1780.       Animal Town Game Company
  1781.       The Johnson Smith Catalog 
  1782.       MAIL-ORDER FIREWORKS
  1783.         Blue Angel Fireworks 
  1784.         Neptune Fireworks 
  1785.         Olde Glory Fireworks 
  1786.       America‚Äôs Hobby Center
  1787.         Model Airplanes Catalog
  1788.         HO and N Gauge Model Railroads Catalog
  1789.         Model Wood and Plastic Ships Catalog
  1790.         Model Cars Catalog
  1791.     Flying Objects
  1792.       Boomerang
  1793.       Many Happy Returns
  1794.       The Penguin Book of Kites
  1795.       KiteLines
  1796.       Paper Flight
  1797.       The Flying Apparatus Klutz Catalogue
  1798.     Magic and Clowns
  1799.       Dube Juggling Equipment
  1800.       Clown for Circus & Stage 
  1801.       TANNEN‚ÄôS MAGIC
  1802.         Louis Tannen‚Äôs Catalog of Magic
  1803.         Tannen‚Äôs Magic Manuscript
  1804.       Hank Lee‚Äôs Catalog of Magic
  1805.       A. Brill‚Äôs Bible of Building Plans
  1806.   SCHOOLING
  1807.     Adventure Learning
  1808.       Outward Bound
  1809.       The National Outdoor Leadership School 
  1810.       Directory of Sail Training Ships and Programs 
  1811.       National Audubon Society Expedition Institute
  1812.         Audubon Expedition School
  1813.         Lesley College 
  1814.       Helping Out in the Outdoors 
  1815.     Apprenticeships
  1816.       Getting Skilled 
  1817.       Handbook of Trade and Technical Careers
  1818.       Apprenticeship in Craft
  1819.     Unconventional Schools
  1820.       The Tracker
  1821.         The Tracker School
  1822.         The Tracker 
  1823.         The Search 
  1824.         The Vision
  1825.       WoodenBoat School
  1826.       Ringling Bros. and Barnum & Bailey Clown College
  1827.     Lifelong Learning
  1828.       LIFELONG LEARNING INTRODUCTION
  1829.       The Lifelong Learner
  1830.       The Naropa Institute
  1831.       The Esalen Catalog
  1832.       Wishcraft
  1833.     Cultural Exchange
  1834.       Transitions Abroad
  1835.       Culturgram
  1836.       Living in the U.S.A.
  1837.       International Workcamps
  1838.       Kibbutz Aliya Desk 
  1839.       International Youth Exchange
  1840.       Experiment in International Living
  1841.       Home Exchanging
  1842.     College Equivalents
  1843.       The Independent Scholar‚Äôs Handbook
  1844.       Bear‚Äôs Guide to Finding Money For College
  1845.       Bear‚Äôs Guide to Earning Non-Traditional College Degrees
  1846.       Young Person‚Äôs Guide To Military Service
  1847.     Radical Education
  1848.       Liberated Parents, Liberated Children
  1849.       How Children Fail ‚Ä¢ How Children Learn
  1850.         How Children Fail 
  1851.         How Children Learn 
  1852.       The Paideia Proposal
  1853.     Home Schooling
  1854.       The New Big Book of Home Learning
  1855.       Deschooling Society
  1856.         Deschooling Society
  1857.         Deschooled Society 
  1858.       Better Than School
  1859.       Growing Without Schooling 
  1860.       John Holt‚Äôs Book and Music Store 
  1861.   RESEARCH
  1862.     Reference Books I
  1863.       GREAT REFERENCE BOOKS INTRODUCTION
  1864.       The World Almanac
  1865.       World Book Encyclopedia
  1866.       The Oxford-Duden Pictorial English Dictionary 
  1867.       What‚Äôs What ‚Ä¢ Facts on File Visual Dictionary
  1868.         What‚Äôs What
  1869.         Facts on File Visual Dictionary
  1870.       CITATION INDEXING
  1871.         Citation Indexing
  1872.         Journal Citation Reports
  1873.     Reference Books II
  1874.       Encyclopedia of Associations
  1875.       Statistical Abstract of the United States
  1876.       Statesman‚Äôs Year-Book
  1877.       Current Biography Yearbook
  1878.       Personal Name Index
  1879.     Reference Books III
  1880.       Whole Again Resource Guide
  1881.       National Five-Digit Zip Code and Post Office Directory 
  1882.       National Directory of Addresses & Telephone Nos.
  1883.       Yellow Pages
  1884.         Manhattan Consumer Yellow Pages
  1885.         New York County Business-to-Business Directory
  1886.         International Yellow Pages
  1887.       Thomas‚Äô Register of American Manufacturers
  1888.       CITATION INDICES
  1889.         Social Science Citation Index 
  1890.         Science Citation Index
  1891.       Harvard Encyclopedia of American Ethnic Groups 
  1892.     Dictionaries
  1893.       Word Finder: Phonic Key to the Dictionary
  1894.       American Heritage Dictionary 
  1895.       Brewer‚Äôs Dictionary of Phrase and Fable
  1896.       Scott, Foresman Beginning Dictionary 
  1897.       Bartlett‚Äôs Familiar Quotations
  1898.       The Synonym Finder
  1899.       Origins
  1900.     News
  1901.       MAGAZINE SCANNING
  1902.       Wall Street Journal
  1903.       Utne Reader 
  1904.       Pacific News Service
  1905.       Manas
  1906.       The Sun
  1907.       Whole Earth Review
  1908.     Research Tools
  1909.       Finding Facts Fast
  1910.       Knowing  Where To Look
  1911.       Prompt
  1912.       PRESS CLIPPINGS
  1913.         Luce Press Clippings
  1914.         Burrelle‚Äôs Press Clippings
  1915.       NewsNet
  1916.       Executive News Service
  1917.       Automatic Subject Citation Alert
  1918.       Research Centers Directory
  1919.     On Line Databases
  1920.       Online ‚Ä¢ Database
  1921.         Online
  1922.         Database 
  1923.       How To Look It Up Online
  1924.       GOVERNMENT DATABASES
  1925.         Congressional Record
  1926.         Federal Register
  1927.         Weekly Compilation of Presidential Documents
  1928.         Federal Database Finder
  1929.     Libraries
  1930.       LIBRARIES INTRODUCTION
  1931.       HOW TO USE YOUR LIBRARY
  1932.       Magazine Index (on Microfilm)
  1933.       Directory of Special Libraries . . .
  1934.       Library Journal
  1935.       Current Contents 
  1936.       Science Books & Films   
  1937.       Daedalus Books
  1938.   KNOWLEDGE
  1939.     Creativity
  1940.       Oblique Strategies
  1941.       A Whack on the Side of the Head
  1942.       Playful Perception
  1943.       The Act of Creation
  1944.     Books on Tape I
  1945.       BOOKS ON CASSETTE INTRODUCTION
  1946.       Books on Tape
  1947.       Listen for Pleasure
  1948.       Recorded Books
  1949.       Brilliance Corporation
  1950.       Caedmon
  1951.     Books on Tape II
  1952.       The Mind‚Äôs Eye
  1953.       The Audio Press
  1954.       American Audio Prose Library
  1955.       Audio Forum
  1956.       On Cassette
  1957.     Memory
  1958.       Super-Learning
  1959.         Super-Learning
  1960.         Super-Learning Tape Version
  1961.       Mind Food and Smart Pills 
  1962.       The Memory Book 
  1963.       The Mind of a Mnemonist
  1964.       Rules of Thumb
  1965.         Rules of Thumb
  1966.         Rules of Thumb 2
  1967.     Folklore
  1968.       URBAN LEGENDS
  1969.         The Vanishing Hitchhiker
  1970.         The Choking Doberman
  1971.         The Mexican Pet
  1972.       Rumor!
  1973.       Pantheon Fairy Tale and Folklore Library
  1974.       Paddle-to-the-Sea
  1975.     Storytelling
  1976.       Preservation and Perpetuation of Storytelling
  1977.         National Assoc. for the Preservation and Perpetuation . . .
  1978.         The National Storytelling Journal
  1979.       World Tales 
  1980.       The World Treasury of Children‚Äôs Literature
  1981.       Lord of the Rings, etc.
  1982.         The Hobbit  
  1983.         The Lord of the Rings
  1984.         The Hobbit and the Lord of the Rings
  1985.         Lord of the Rings Tape Version
  1986.         The Hobbit and The Fellowship of the Ring Tape Version
  1987.         The Hobbit Tape Version
  1988.       The Horn Book Magazine 
  1989.       Family Storytelling Handbook
  1990.       Just Enough to Make a Story
  1991.       News from Lake Wobegon
  1992.     Myths
  1993.       Parabola
  1994.       Primal Myths
  1995.     Dreams
  1996.       Memories, Dreams, Reflections
  1997.       C.G. Jung: Word and Image 
  1998.       Symbols of Transformation in Dreams
  1999.       Dreams, Visions of the Night
  2000.       Dreams, Illusion and Other Realities
  2001.       Dreams and Spiritual Growth
  2002.       The Hero with a Thousand Faces
  2003.   BEGINNING MIND
  2004.     How to Learn
  2005.       HOW TO LEARN THINGS:  A HANDY TIP
  2006.       Foxfire
  2007.         Foxfire-the magazine
  2008.         Sometimes A Shining Moment
  2009.       Golden Guides
  2010.       Family Guide to Educational Software
  2011.       Drawing With Children
  2012.       Visual Thinking
  2013.       Exhibits for the Small Museum 
  2014.     Nature
  2015.       Sharing Nature with Children 
  2016.       RANGER RICK & ASSOC. WILDLIFE MAGAZINES
  2017.         Ranger Rick
  2018.         Your Big Backyard
  2019.         International Wildlife 
  2020.         National Wildlife
  2021.       Zoobooks 
  2022.       Care of the Wild Feathered and Furred
  2023.       Nature at Work 
  2024.       Man In Nature 
  2025.     Physics
  2026.       PHYSICS INTRODUCTION
  2027.         Conceptual Physics
  2028.         Thinking Physics
  2029.         Relativity Visualized
  2030.       The Exploratorium
  2031.         Exploratorium Membership
  2032.         Exploratorium Cookbook I
  2033.         Exploratorium Cookbook II 
  2034.         Exploratorium Cookbook III
  2035.         Individual Exploratorium Cookbook Recipes
  2036.         Exploratorium Quarterly
  2037.     Learning Math
  2038.       Mathematics  A Human Endeavor 
  2039.       Survival Mathematics
  2040.       Here‚Äôs Looking at Euclid
  2041.       Prof. E. McSquared‚Äôs Calculus Primer
  2042.       Understanding Calculator Math
  2043.       Math Aids
  2044.     Science
  2045.       The Science Book
  2046.       The Brown Paper School Books
  2047.       Cartoon Guide to Genetics
  2048.     Supplies
  2049.       Edmund Scientific
  2050.       Nasco Science
  2051.   INQUIRY
  2052.     Science Magazines
  2053.       Scientific American
  2054.       New Scientist
  2055.       Science News
  2056.       Science 
  2057.     Philosophy
  2058.       The Don Juan Books of Carlos Castaneda
  2059.         The Teachings of Don Juan
  2060.         A Separate Reality 
  2061.       Wizard of the Upper Amazon
  2062.       Zen and the Art of Motorcycle Maintenance 
  2063.       Phenomenon of Man
  2064.       PHILOSOPHY OF SCIENCE
  2065.         Against Method  
  2066.         The Structure of Scientific Revolutions  
  2067.     Skepticism
  2068.       Science and the Paranormal
  2069.       The Skeptical Inquirer 
  2070.       Fads and Fallacies in the Name of Science
  2071.       Fortean Times
  2072.       Mysteries of the Unexplained 
  2073.       The Sourcebook Project
  2074.   SPIRITUAL PATHS
  2075.     Animism and Paganism
  2076.       The Way of the Animal Powers
  2077.       Drawing Down the Moon
  2078.       Circle Network News
  2079.     Buddhism 
  2080.       BOOKS ON BUDDHISM INTRODUCTION 
  2081.       ZEN MIND
  2082.         Meditation in Action
  2083.         Zen Mind, Beginner‚Äôs Mind
  2084.         The Miracle of Mindfulness
  2085.       International Buddhist Directory
  2086.       NONACADEMIC BUDDHISM
  2087.         What the Buddha Taught
  2088.         Buddhism: A Way of Life and Thought
  2089.       Taking the Path of Zen
  2090.     Yoga
  2091.       YOGA INTRODUCTION
  2092.       How to Know God
  2093.       Yoga Journal
  2094.       Integral Yoga Hatha 
  2095.       Light on Yoga 
  2096.     Judaism and Islam
  2097.       KORAN INTRODUCTION
  2098.       The Holy Qur‚Äôan
  2099.       Back to the Sources
  2100.       The Koran Interpreted
  2101.       Ideals and Realities of Islam
  2102.     Gnosticism
  2103.       The Other Bible
  2104.       The Classics of Western Spirituality
  2105.       Gnosis
  2106.     Christianity
  2107.       Good News Bible
  2108.       Mere Christianity
  2109.         Mere Christianity
  2110.         Mere Christianity Tape Version
  2111.       The Living Testament
  2112.       Sojourners
  2113.     Mysticism
  2114.       Mysticism
  2115.       Breakthrough 
  2116.       The Light Beyond
  2117.       The I Ching
  2118.  
  2119.  
  2120. -- part contents for background part 38
  2121. ----- text -----
  2122. ‚Ä¢ WHOLE EARTH
  2123.  ‚Ä¢ LEARNING
  2124.  
  2125. -- part contents for background part 39
  2126. ----- text -----
  2127. stack "WHOLE EARTH"
  2128. stack "LEARNING"