From 6b0ee5525b69994ede2db604fea17186085fe8a6 Mon Sep 17 00:00:00 2001 From: tipaul Date: Mon, 20 Jun 2005 14:10:00 +0000 Subject: [PATCH] synch'ing 2.2 and head --- C4/Accounts2.pm | 6 - C4/Acquisition.pm | 16 +- C4/Auth.pm | 2 +- C4/Auth_with_ldap.pm | 8 +- C4/AuthoritiesMarc.pm | 10 +- C4/Biblio.pm | 27 +- C4/Bull.pm | 115 ++++- C4/Circulation/Circ2.pm | 37 +- C4/Circulation/Fines.pm | 3 +- C4/Members.pm | 12 +- C4/Output.pm | 1 + C4/SearchMarc.pm | 9 +- .../default/en/acqui.simple/addbiblio.tmpl | 11 +- .../default/en/acqui.simple/additem.tmpl | 5 +- .../default/en/acqui.simple/isbnsearch.tmpl | 76 +-- .../default/en/acqui/acqui-home.tmpl | 12 +- .../default/en/acqui/basket.tmpl | 85 +++- .../default/en/acqui/histsearch.tmpl | 60 +++ .../default/en/authorities/authorities.tmpl | 24 +- .../default/en/authorities/detail.tmpl | 2 +- .../default/en/catalogue/MARCdetail.tmpl | 20 +- .../default/en/catalogue/detail.tmpl | 9 +- .../default/en/catalogue/searchresults.tmpl | 2 +- .../default/en/circ/branchtransfers.tmpl | 32 +- .../default/en/circ/circulation.tmpl | 3 + .../default/en/circ/selectbranchprinter.tmpl | 4 +- .../help/admin/marc_subfields_structure.tmpl | 7 +- .../default/en/help/circ/circulation.tmpl | 11 + .../default/en/help/circ/returns.tmpl | 10 + .../default/en/help/export/marc.tmpl | 8 + .../default/en/includes/acquisitions-top.inc | 10 + .../default/en/includes/common-print.css | 4 +- .../default/en/includes/common-style.css | 1 + .../default/en/includes/intranet-main.css | 76 ++- .../default/en/includes/marc-top.inc | 4 +- .../default/en/members/memberentry.tmpl | 13 +- .../intranet-tmpl/default/en/members/pay.tmpl | 42 +- .../default/en/parameters/admin-home.tmpl | 15 - .../default/en/parameters/checkmarc.tmpl | 27 + .../parameters/marc_subfields_structure.tmpl | 68 ++- .../en/parameters/marctagstructure.tmpl | 117 +++-- .../default/en/parameters/printers.tmpl | 366 +++++++------ .../default/en/parameters/z3950servers.tmpl | 2 +- .../default/en/reports/borrowers_out.tmpl | 16 + .../opac-tmpl/css/en/images/filefind.png | Bin 0 -> 1786 bytes .../opac-tmpl/css/en/includes/opac-top.inc | 17 +- koha-tmpl/opac-tmpl/css/en/includes/opac.css | 75 ++- .../opac-tmpl/css/en/opac-MARCdetail.tmpl | 4 +- koha-tmpl/opac-tmpl/css/en/opac-auth.tmpl | 69 +-- koha-tmpl/opac-tmpl/css/en/opac-detail.tmpl | 53 +- .../opac-tmpl/css/en/opac-dictionary.tmpl | 166 ++++++ .../css/en/opac-full-serial-issues.tmpl | 64 +++ koha-tmpl/opac-tmpl/css/en/opac-main.tmpl | 6 +- koha-tmpl/opac-tmpl/css/en/opac-search.tmpl | 74 ++- .../opac-tmpl/css/en/opac-searchresults.tmpl | 21 +- .../opac-tmpl/css/en/opac-serial-issues.tmpl | 63 ++- koha-tmpl/opac-tmpl/css/en/opac-user.tmpl | 136 ++--- .../opac-tmpl/css/en/opac-userupdate.tmpl | 17 +- localfile/modified_authorities/DO_NOT_REMOVE | 1 + members/memberentry.pl | 12 +- misc/Install.pm | 20 +- misc/overduenotices.pl | 21 +- misc/release notes/release_notes_223.txt | 479 ++++++++++++++++++ misc/sql-datas/english/sample_usmarc.mrc | 1 + misc/sql-datas/english/sample_usmarc.readme | 12 + 65 files changed, 1933 insertions(+), 766 deletions(-) create mode 100644 koha-tmpl/intranet-tmpl/default/en/help/circ/circulation.tmpl create mode 100644 koha-tmpl/intranet-tmpl/default/en/help/circ/returns.tmpl create mode 100644 koha-tmpl/intranet-tmpl/default/en/help/export/marc.tmpl create mode 100644 koha-tmpl/opac-tmpl/css/en/images/filefind.png create mode 100644 koha-tmpl/opac-tmpl/css/en/opac-dictionary.tmpl create mode 100644 koha-tmpl/opac-tmpl/css/en/opac-full-serial-issues.tmpl create mode 100644 localfile/modified_authorities/DO_NOT_REMOVE create mode 100644 misc/release notes/release_notes_223.txt create mode 100644 misc/sql-datas/english/sample_usmarc.mrc create mode 100644 misc/sql-datas/english/sample_usmarc.readme diff --git a/C4/Accounts2.pm b/C4/Accounts2.pm index 06d485bc16..bb2a1ccae8 100755 --- a/C4/Accounts2.pm +++ b/C4/Accounts2.pm @@ -301,11 +301,6 @@ sub manualinvoice{ $amountleft=refund('',$bornum,$amount); } if ($itemnum ne ''){ -#FIXME to use ? before uncommenting -# my $sth=$dbh->prepare("Select * from items where barcode='$itemnum'"); -# $sth->execute; -# my $data=$sth->fetchrow_hashref; -# $sth->finish; $desc.=" ".$itemnum; my $sth=$dbh->prepare("INSERT INTO accountlines (borrowernumber, accountno, date, amount, description, accounttype, amountoutstanding, itemnumber) @@ -313,7 +308,6 @@ sub manualinvoice{ # $sth->execute($bornum, $accountno, $amount, $desc, $type, $amountleft, $data->{'itemnumber'}); $sth->execute($bornum, $accountno, $amount, $desc, $type, $amountleft, $itemnum); } else { - $desc=$dbh->quote($desc); my $sth=$dbh->prepare("INSERT INTO accountlines (borrowernumber, accountno, date, amount, description, accounttype, amountoutstanding) VALUES (?, ?, now(), ?, ?, ?, ?)"); diff --git a/C4/Acquisition.pm b/C4/Acquisition.pm index ddebef8b74..7a4098d6b7 100644 --- a/C4/Acquisition.pm +++ b/C4/Acquisition.pm @@ -104,7 +104,7 @@ number of elements in C<@orders>. sub getbasketcontent { my ($basketno,$supplier,$orderby)=@_; my $dbh = C4::Context->dbh; - my $query="Select *,biblio.title,aqorders.ordernumber from aqorders,biblio,biblioitems + my $query="Select biblio.*,biblioitems.*,aqorders.*,aqorderbreakdown.*,biblio.title from aqorders,biblio,biblioitems left join aqorderbreakdown on aqorderbreakdown.ordernumber=aqorders.ordernumber where basketno='$basketno' and biblio.biblionumber=aqorders.biblionumber and biblioitems.biblioitemnumber @@ -562,7 +562,7 @@ sub ordersearch { my @searchterms = ($id); map { push(@searchterms,"$_%","% $_%") } @data; push(@searchterms,$search,$search,$biblio); - my $sth=$dbh->prepare("Select *,biblio.title from aqorders,biblioitems,biblio,aqbasket + my $sth=$dbh->prepare("Select biblio.*,biblioitems.*,aqorders.*,aqbasket.*,biblio.title from aqorders,biblioitems,biblio,aqbasket where aqorders.biblioitemnumber = biblioitems.biblioitemnumber and aqorders.basketno = aqbasket.basketno and aqbasket.booksellerid = ? @@ -597,15 +597,17 @@ sub ordersearch { sub histsearch { - my ($title,$author,$name)=@_; + my ($title,$author,$name,$from_placed_on,$to_placed_on)=@_; my $dbh= C4::Context->dbh; - my $query = "select biblio.title,aqorders.basketno,name,aqbasket.creationdate,aqorders.datereceived, aqorders.quantity, aqorders.ecost - from aqorders,aqbasket,aqbooksellers,biblio - where aqorders.basketno=aqbasket.basketno and aqbasket.booksellerid=aqbooksellers.id and - biblio.biblionumber=aqorders.biblionumber"; + my $query = "select biblio.title,aqorders.basketno,name,aqbasket.creationdate,aqorders.datereceived, aqorders.quantity, aqorders.ecost from aqorders,aqbasket,aqbooksellers,biblio +where aqorders.basketno=aqbasket.basketno and aqbasket.booksellerid=aqbooksellers.id and +biblio.biblionumber=aqorders.biblionumber"; $query .= " and biblio.title like ".$dbh->quote("%".$title."%") if $title; $query .= " and biblio.author like ".$dbh->quote("%".$author."%") if $author; $query .= " and name like ".$dbh->quote("%".$name."%") if $name; + $query .= " and creationdate >" .$dbh->quote($from_placed_on) if $from_placed_on; + $query .= " and creationdate<".$dbh->quote($to_placed_on) if $to_placed_on; + warn "C4:Acquisition : ".$query; my $sth = $dbh->prepare($query); $sth->execute; my @order_loop; diff --git a/C4/Auth.pm b/C4/Auth.pm index 0f85d3cd9e..fd41470011 100644 --- a/C4/Auth.pm +++ b/C4/Auth.pm @@ -399,7 +399,7 @@ sub checkauth { $template->param(loginprompt => 1) unless $info{'nopermission'}; my $self_url = $query->url(-absolute => 1); - $template->param(url => $self_url); + $template->param(url => $self_url, LibraryName=> => C4::Context->preference("LibraryName"),); $template->param(\%info); $cookie=$query->cookie(-name => 'sessionID', -value => $sessionID, diff --git a/C4/Auth_with_ldap.pm b/C4/Auth_with_ldap.pm index eee1ac58be..27aaf53ade 100644 --- a/C4/Auth_with_ldap.pm +++ b/C4/Auth_with_ldap.pm @@ -137,7 +137,6 @@ sub get_template_and_user { $bordat[0] = $borr; $template->param(USER_INFO => \@bordat, ); - # We are going to use the $flags returned by checkauth # to create the template's parameters that will indicate # which menus the user can access. @@ -163,29 +162,36 @@ sub get_template_and_user { if ($flags->{catalogue} == 1) { $template->param(CAN_user_catalogue => 1); } + if ($flags->{parameters} == 1) { $template->param(CAN_user_parameters => 1); $template->param(CAN_user_management => 1); $template->param(CAN_user_tools => 1); } + if ($flags->{borrowers} == 1) { $template->param(CAN_user_borrowers => 1); } + if ($flags->{permissions} == 1) { $template->param(CAN_user_permission => 1); } if ($flags->{reserveforothers} == 1) { $template->param(CAN_user_reserveforothers => 1); } + if ($flags->{borrow} == 1) { $template->param(CAN_user_borrow => 1); } + if ($flags->{reserveforself} == 1) { $template->param(CAN_user_reserveforself => 1); } + if ($flags->{editcatalogue} == 1) { $template->param(CAN_user_editcatalogue => 1); } + if ($flags->{updatecharges} == 1) { $template->param(CAN_user_updatecharge => 1); } diff --git a/C4/AuthoritiesMarc.pm b/C4/AuthoritiesMarc.pm index be598d1e3b..875ee35809 100644 --- a/C4/AuthoritiesMarc.pm +++ b/C4/AuthoritiesMarc.pm @@ -666,7 +666,9 @@ sub AUTHhtml2marc { $indicators{@$rtags[$i]}.=' '; if (@$rtags[$i] <10) { $prevvalue= @$rvalues[$i]; + undef $field; } else { + undef $prevvalue; $field = MARC::Field->new( (sprintf "%03s",@$rtags[$i]), substr($indicators{@$rtags[$i]},0,1),substr($indicators{@$rtags[$i]},1,1), @$rsubfields[$i] => @$rvalues[$i]); } $prevtag = @$rtags[$i]; @@ -674,7 +676,7 @@ sub AUTHhtml2marc { if (@$rtags[$i] <10) { $prevvalue=@$rvalues[$i]; } else { - if (@$rvalues[$i]) { + if (length(@$rvalues[$i])>0) { $field->add_subfields(@$rsubfields[$i] => @$rvalues[$i]); } } @@ -682,8 +684,7 @@ sub AUTHhtml2marc { } } # the last has not been included inside the loop... do it now ! - $record->add_fields($field); -# warn $record->as_formatted; + $record->add_fields($field) if $field; return $record; } @@ -921,6 +922,9 @@ Paul POULAIN paul.poulain@free.fr # $Id$ # $Log$ +# Revision 1.19 2005/06/20 14:10:00 tipaul +# synch'ing 2.2 and head +# # Revision 1.18 2005/06/07 10:00:47 tipaul # adding $b to mainentry (in UNIMARC, for personal names, $a is the surname, $b is the firstname) # diff --git a/C4/Biblio.pm b/C4/Biblio.pm index 602027483a..8f75db95d9 100644 --- a/C4/Biblio.pm +++ b/C4/Biblio.pm @@ -58,6 +58,7 @@ $VERSION = 0.01; &NEWnewbiblio &NEWnewitem &NEWmodbiblio &NEWmoditem &NEWdelbiblio &NEWdelitem + &NEWmodbiblioframework &MARCaddbiblio &MARCadditem &MARCmodsubfield &MARCaddsubfield @@ -929,14 +930,14 @@ sub MARCkoha2marcBiblio { &MARCkoha2marcOnefield( $sth, $record, "additionalauthors.author", $row->{'author'},'' ); } - my $sth2 = + $sth2 = $dbh->prepare(" SELECT subject FROM bibliosubject WHERE biblionumber=?"); $sth2->execute($biblionumber); while ( my $row = $sth2->fetchrow_hashref ) { &MARCkoha2marcOnefield( $sth, $record, "bibliosubject.subject", $row->{'subject'},'' ); } - my $sth2 = + $sth2 = $dbh->prepare( " SELECT subtitle FROM bibliosubtitle WHERE biblionumber=?"); $sth2->execute($biblionumber); @@ -1043,7 +1044,9 @@ sub MARChtml2marc { $indicators{@$rtags[$i]}.=' '; if (@$rtags[$i] <10) { $prevvalue= @$rvalues[$i]; + undef $field; } else { + undef $prevvalue; $field = MARC::Field->new( (sprintf "%03s",@$rtags[$i]), substr($indicators{@$rtags[$i]},0,1),substr($indicators{@$rtags[$i]},1,1), @$rsubfields[$i] => @$rvalues[$i]); # warn "1=>".@$rtags[$i].@$rsubfields[$i]." = ".@$rvalues[$i].": ".$field->as_formatted; } @@ -1061,7 +1064,7 @@ sub MARChtml2marc { } } # the last has not been included inside the loop... do it now ! - $record->add_fields($field); + $record->add_fields($field) if $field; # warn "HTML2MARC=".$record->as_formatted; return $record; } @@ -1100,7 +1103,7 @@ sub MARCmarc2koha { $result->{'copyrightdate'} = $1; } # modify publicationyear to keep only the 1st year found - my $temp = $result->{'publicationyear'}; + $temp = $result->{'publicationyear'}; $temp =~ m/c(\d\d\d\d)/; # search cYYYY first if ($1>0) { $result->{'publicationyear'} = $1; @@ -1274,6 +1277,12 @@ sub NEWnewbiblio { return ( $bibid, $oldbibnum, $oldbibitemnum ); } +sub NEWmodbiblioframework { + my ($dbh,$bibid,$frameworkcode) =@_; + my $sth = $dbh->prepare("Update marc_biblio SET frameworkcode=? WHERE bibid=$bibid"); + $sth->execute($frameworkcode); + return 1; +} sub NEWmodbiblio { my ($dbh,$record,$bibid,$frameworkcode) =@_; $frameworkcode="" unless $frameworkcode; @@ -1347,7 +1356,7 @@ sub NEWnewitem { my ( $itemnumber, $error ) = &OLDnewitems( $dbh, $item, $item->{barcode} ); # add itemnumber to MARC::Record before adding the item. - my $sth = + $sth = $dbh->prepare( "select tagfield,tagsubfield from marc_subfield_structure where frameworkcode=? and kohafield=?" ); @@ -1457,13 +1466,14 @@ sub OLDnewbiblio { $sth->finish; $sth = $dbh->prepare( -"insert into biblio set biblionumber = ?, title = ?, author = ?, copyrightdate = ?, serial = ?, seriestitle = ?, notes = ?, abstract = ?" +"insert into biblio set biblionumber = ?, title = ?, author = ?, copyrightdate = ?, serial = ?, seriestitle = ?, notes = ?, abstract = ?, unititle = ?" ); $sth->execute( $bibnum, $biblio->{'title'}, $biblio->{'author'}, $biblio->{'copyrightdate'}, $biblio->{'serial'}, $biblio->{'seriestitle'}, - $biblio->{'notes'}, $biblio->{'abstract'} + $biblio->{'notes'}, $biblio->{'abstract'}, + $biblio->{'unititle'}, ); $sth->finish; @@ -2671,6 +2681,9 @@ Paul POULAIN paul.poulain@free.fr # $Id$ # $Log$ +# Revision 1.121 2005/06/20 14:10:00 tipaul +# synch'ing 2.2 and head +# # Revision 1.120 2005/06/15 16:09:43 hdl # Displaying dashed isbn. # diff --git a/C4/Bull.pm b/C4/Bull.pm index 2bbc0a9b91..2eedc274ea 100755 --- a/C4/Bull.pm +++ b/C4/Bull.pm @@ -46,6 +46,7 @@ Give all XYZ functions @ISA = qw(Exporter); @EXPORT = qw(&newsubscription &modsubscription &delsubscription &getsubscriptions &getsubscription &getsubscriptionfrombiblionumber &get_subscription_list_from_biblionumber + &get_full_subscription_list_from_biblionumber &modsubscriptionhistory &newissue &getserials &serialchangestatus &Find_Next_Date, &Get_Next_Seq @@ -100,6 +101,7 @@ sub GetLateIssues { } return @issuelist; } + sub newsubscription { my ($auser,$aqbooksellerid,$cost,$aqbudgetid,$biblionumber, $startdate,$periodicity,$dow,$numberlength,$weeklength,$monthlength, @@ -139,6 +141,7 @@ sub newsubscription { $sth->execute($serialseq, $subscriptionid, $val->{'biblionumber'}, 1, format_date_in_iso($startdate)); return $subscriptionid; } + sub getsubscription { my ($subscriptionid) = @_; my $dbh = C4::Context->dbh; @@ -166,7 +169,7 @@ sub getsubscriptionfrombiblionumber { sub get_subscription_list_from_biblionumber { my ($biblionumber) = @_; my $dbh = C4::Context->dbh; - my $sth = $dbh->prepare('select subscription.*,subscriptionhistory.*,aqbudget.bookfundid,aqbooksellers.name as aqbooksellername,biblio.title as bibliotitle + my $sth = $dbh->prepare('select subscription.*,subscriptionhistory.*, aqbudget.bookfundid,aqbooksellers.name as aqbooksellername,biblio.title as bibliotitle from subscription left join subscriptionhistory on subscription.subscriptionid=subscriptionhistory.subscriptionid left join aqbudget on subscription.aqbudgetid=aqbudget.aqbudgetid @@ -177,14 +180,85 @@ sub get_subscription_list_from_biblionumber { my @res; while (my $subs = $sth->fetchrow_hashref) { $subs->{startdate} = format_date($subs->{startdate}); + $subs->{histstartdate} = format_date($subs->{histstartdate}); $subs->{opacnote} =~ s/\n/\/g; $subs->{missinglist} =~ s/\n/\/g; $subs->{recievedlist} =~ s/\n/\/g; + $subs->{"periodicity".$subs->{periodicity}} = 1; + if ($subs->{enddate} eq '0000-00-00') { + $subs->{enddate}=''; + } else { + $subs->{enddate} = format_date($subs->{enddate}); + } push @res,$subs; } return \@res; } +sub get_full_subscription_list_from_biblionumber { + my ($biblionumber) = @_; + my $dbh = C4::Context->dbh; + my $sth = $dbh->prepare('select serial.serialseq, serial.planneddate, serial.status, year(serial.planneddate) as year,subscription.*, aqbudget.bookfundid,aqbooksellers.name as aqbooksellername,biblio.title as bibliotitle + from serial left join subscription on (serial.subscriptionid=subscription.subscriptionid and subscription.biblionumber=serial.biblionumber) + left join aqbudget on subscription.aqbudgetid=aqbudget.aqbudgetid + left join aqbooksellers on subscription.aqbooksellerid=aqbooksellers.id + left join biblio on biblio.biblionumber=subscription.biblionumber + where subscription.biblionumber = ? order by year,serial.planneddate'); + $sth->execute($biblionumber); + my @res; + my $year; + my $startdate; + my $aqbooksellername; + my $bibliotitle; + my @loopissues; + my $first; + while (my $subs = $sth->fetchrow_hashref) { +# my $sth2 = $dbh->prepare('select * from serial where serial.biblionumber = ? and serial.subscriptionid=? order by serial.planneddate'); +# $sth2->execute($biblionumber,$subs->{'subscriptionid'}); +# while (my $issues = $sth2->fetchrow_hashref){ +# warn "planneddate ".$issues->{'planneddate'}; +# warn "serialseq".$issues->{'serialseq'}; +# } + if ($year and ($year==$subs->{year})){ + if ($first eq 1){$first=0;} + my $temp=$res[scalar(@res)-1]->{'serials'}; + push @$temp, + {'planneddate' => format_date($subs->{'planneddate'}), + 'serialseq' => $subs->{'serialseq'}, + 'status1' => $subs->{'status'}==1, + 'status2' => $subs->{'status'}==2, + 'status3' => $subs->{'status'}==3, + 'status4' => $subs->{'status'}==4, + }; + }else { + $first=1 if (not $year); + $year= $subs->{'year'}; + $startdate= format_date($subs->{'startdate'}); + $aqbooksellername= $subs->{'aqbooksellername'}; + $bibliotitle= $subs->{'bibliotitle'}; + my @temp; + push @temp, + {'planneddate' => format_date($subs->{'planneddate'}), + 'serialseq' => $subs->{'serialseq'}, + 'status1' => $subs->{'status'}==1, + 'status2' => $subs->{'status'}==2, + 'status3' => $subs->{'status'}==3, + 'status4' => $subs->{'status'}==4, + }; + + push @res,{ + 'year'=>$year, + 'startdate'=>$startdate, + 'aqbooksellername'=>$aqbooksellername, + 'bibliotitle'=>$bibliotitle, + 'serials'=>\@temp, + 'first'=>$first + }; + } + } + return \@res; +} + sub modsubscription { my ($auser,$aqbooksellerid,$cost,$aqbudgetid,$startdate, @@ -300,25 +374,10 @@ sub getlatestserials{ $line->{"planneddate"} = format_date($line->{"planneddate"}); push @serials,$line; } - return \@serials; -} - -sub serialdelete { - my ($serialid,$serialseq)=@_; - my $dbh = C4::Context->dbh; - my $sth = $dbh->prepare("select subscriptionid,status from serial where serialid=?"); - $sth->execute($serialid); - my ($subscriptionid,$oldstatus) = $sth->fetchrow; - # change status & update subscriptionhistory - my $sth = $dbh->prepare("delete * from serial where serialid = ?"); - $sth->execute($serialid); - $sth = $dbh->prepare("select missinglist,recievedlist from subscriptionhistory where subscriptionid=?"); + $sth=$dbh->prepare("select count(*) from serial where subscriptionid=?"); $sth->execute($subscriptionid); - my ($missinglist,$recievedlist) = $sth->fetchrow; - $recievedlist =~ s/",$serialseq"//; - $missinglist =~ s/",$serialseq"//; - $sth=$dbh->prepare("update subscriptionhistory set recievedlist=?, missinglist=? where subscriptionid=?"); - $sth->execute($recievedlist,$missinglist,$subscriptionid); + my ($totalissues) = $sth->fetchrow; + return ($totalissues,@serials); } sub serialchangestatus { @@ -369,13 +428,17 @@ sub newissue { my $dbh = C4::Context->dbh; my $sth = $dbh->prepare("insert into serial (serialseq,subscriptionid,biblionumber,status, planneddate) values (?,?,?,?,?)"); $sth->execute($serialseq,$subscriptionid,$biblionumber,$status, $planneddate); -} - -sub delissue { - my ($serialseq,$subscriptionid) = @_; - my $dbh = C4::Context->dbh; - my $sth = $dbh->prepare("delete from serial where serialseq= ? and subscriptionid= ? "); - $sth->execute($serialseq,$subscriptionid); + $sth = $dbh->prepare("select missinglist,recievedlist from subscriptionhistory where subscriptionid=?"); + $sth->execute($subscriptionid); + my ($missinglist,$recievedlist) = $sth->fetchrow; + if ($status eq 2) { + $recievedlist .= ",$serialseq"; + } + if ($status eq 4) { + $missinglist .= ",$serialseq"; + } + $sth=$dbh->prepare("update subscriptionhistory set recievedlist=?, missinglist=? where subscriptionid=?"); + $sth->execute($recievedlist,$missinglist,$subscriptionid); } sub Get_Next_Date(@) { diff --git a/C4/Circulation/Circ2.pm b/C4/Circulation/Circ2.pm index a0d535da21..d5ea79be8d 100755 --- a/C4/Circulation/Circ2.pm +++ b/C4/Circulation/Circ2.pm @@ -608,7 +608,7 @@ sub TooMany ($$){ # check the 3 parameters $sth->execute($cat_borrower, $type, $branch_borrower); my $result = $sth->fetchrow_hashref; -# warn "==>".$result->{maxissueqty}; +# warn "==>".$result->{maxissueqty}; if (defined($result)) { $sth2->execute($borrower->{'borrowernumber'}, "%$type%"); my $alreadyissued = $sth2->fetchrow; @@ -627,7 +627,8 @@ sub TooMany ($$){ my $result = $sth->fetchrow_hashref; if (defined($result)) { $sth3->execute($borrower->{'borrowernumber'}); - my $alreadyissued = $sth2->fetchrow; + my ($alreadyissued) = $sth3->fetchrow; + warn "HERE : $alreadyissued / ($result->{maxissueqty} for $borrower->{'borrowernumber'}"; return ("c $alreadyissued / ".($result->{maxissueqty}+0)) if ($result->{'maxissueqty'} <= $alreadyissued); } #check for borrowertype=* @@ -643,7 +644,7 @@ sub TooMany ($$){ my $result = $sth->fetchrow_hashref; if (defined($result)) { $sth3->execute($borrower->{'borrowernumber'}); - my $alreadyissued = $sth2->fetchrow; + my $alreadyissued = $sth3->fetchrow; return ("e $alreadyissued / ".($result->{maxissueqty}+0)) if ($result->{'maxissueqty'} <= $alreadyissued); } @@ -667,7 +668,7 @@ sub TooMany ($$){ my $result = $sth->fetchrow_hashref; if (defined($result)) { $sth3->execute($borrower->{'borrowernumber'}); - my $alreadyissued = $sth2->fetchrow; + my $alreadyissued = $sth3->fetchrow; return ("h $alreadyissued / ".($result->{maxissueqty}+0)) if ($result->{'maxissueqty'} <= $alreadyissued); } return; @@ -698,6 +699,9 @@ sub canbookbeissued { if ($borrower->{flags}->{'DBARRED'}) { $issuingimpossible{DEBARRED} = 1; } + if (&Date_Cmp(&ParseDate($borrower->{expiry}),&ParseDate("today"))<0) { + $issuingimpossible{EXPIRED} = 1; + } # # BORROWER STATUS # @@ -766,7 +770,7 @@ sub canbookbeissued { my $branches = getbranches(); my $branchname = $branches->{$res->{'branchcode'}}->{'branchname'}; $needsconfirmation{RESERVE_WAITING} = "$resborrower->{'firstname'} $resborrower->{'surname'} ($resborrower->{'cardnumber'}, $branchname)"; - CancelReserve(0, $res->{'itemnumber'}, $res->{'borrowernumber'}); + # CancelReserve(0, $res->{'itemnumber'}, $res->{'borrowernumber'}); Doesn't belong in a checking subroutine. } elsif ($restype eq "Reserved") { # The item is on reserve for someone else. my ($resborrower, $flags)=getpatroninformation($env, $resbor,0); @@ -841,7 +845,9 @@ sub issuebook { my ($resborrower, $flags)=getpatroninformation($env, $resbor,0); my $branches = getbranches(); my $branchname = $branches->{$res->{'branchcode'}}->{'branchname'}; - CancelReserve(0, $res->{'itemnumber'}, $res->{'borrowernumber'}); + if ($cancelreserve){ + CancelReserve(0, $res->{'itemnumber'}, $res->{'borrowernumber'}); + } } elsif ($restype eq "Reserved") { warn "Reserved"; # The item is on reserve for someone else. @@ -852,11 +858,11 @@ sub issuebook { # cancel reserves on this item CancelReserve(0, $res->{'itemnumber'}, $res->{'borrowernumber'}); # also cancel reserve on biblio related to this item - my $st_Fbiblio = $dbh->prepare("select biblionumber from items where itemnumber=?"); - $st_Fbiblio->execute($res->{'itemnumber'}); - my $biblionumber = $st_Fbiblio->fetchrow; - CancelReserve($biblionumber,0,$res->{'borrowernumber'}); - warn "CancelReserve $res->{'itemnumber'}, $res->{'borrowernumber'}"; + #my $st_Fbiblio = $dbh->prepare("select biblionumber from items where itemnumber=?"); + #$st_Fbiblio->execute($res->{'itemnumber'}); + #my $biblionumber = $st_Fbiblio->fetchrow; + #CancelReserve($biblionumber,0,$res->{'borrowernumber'}); + #warn "CancelReserve $res->{'itemnumber'}, $res->{'borrowernumber'}"; } else { # my $tobrcd = ReserveWaiting($res->{'itemnumber'}, $res->{'borrowernumber'}); # transferbook($tobrcd,$barcode, 1); @@ -1618,6 +1624,15 @@ sub renewstatus { $renewokay = 1; } $sth2->finish; + my ($resfound, $resrec) = CheckReserves($itemno); + if ($resfound) { + $renewokay = 0; + } + my ($resfound, $resrec) = CheckReserves($itemno); + if ($resfound) { + $renewokay = 0; + } + } $sth1->finish; return($renewokay); diff --git a/C4/Circulation/Fines.pm b/C4/Circulation/Fines.pm index 4ac2279207..8ff1a96ceb 100644 --- a/C4/Circulation/Fines.pm +++ b/C4/Circulation/Fines.pm @@ -151,8 +151,7 @@ sub CalcFine { and items.biblioitemnumber=biblioitems.biblioitemnumber and biblioitems.itemtype=itemtypes.itemtype and categoryitem.itemtype=itemtypes.itemtype and - categoryitem.categorycode=? and - (items.itemlost <> 1 or items.itemlost is NULL)"); + categoryitem.categorycode=? and (items.itemlost <> 1 or items.itemlost is NULL)"); # print $query; $sth->execute($itemnumber,$bortype); my $data=$sth->fetchrow_hashref; diff --git a/C4/Members.pm b/C4/Members.pm index 560f1d4557..a510e4b1c5 100644 --- a/C4/Members.pm +++ b/C4/Members.pm @@ -99,13 +99,12 @@ sub modmember { my (%data) = @_; my $dbh = C4::Context->dbh; $data{'dateofbirth'}=format_date_in_iso($data{'dateofbirth'}); - $data{'joining'}=format_date_in_iso($data{'joining'}); $data{'expiry'}=format_date_in_iso($data{'expiry'}); my $query="update borrowers set title='$data{'title'}',expiry='$data{'expiry'}', cardnumber='$data{'cardnumber'}',sex='$data{'sex'}',ethnotes='$data{'ethnicnotes'}', streetaddress='$data{'streetaddress'}',faxnumber='$data{'faxnumber'}',firstname='$data{'firstname'}', altnotes='$data{'altnotes'}',dateofbirth='$data{'dateofbirth'}',contactname='$data{'contactname'}', - emailaddress='$data{'emailaddress'}',dateenrolled='$data{'joining'}',streetcity='$data{'streetcity'}', + emailaddress='$data{'emailaddress'}',streetcity='$data{'streetcity'}', altrelationship='$data{'altrelationship'}',othernames='$data{'othernames'}',phoneday='$data{'phoneday'}', categorycode='$data{'categorycode'}',city='$data{'city'}',area='$data{'area'}',phone='$data{'phone'}', borrowernotes='$data{'borrowernotes'}',altphone='$data{'altphone'}',surname='$data{'surname'}', @@ -130,7 +129,16 @@ sub newmember { my (%data) = @_; my $dbh = C4::Context->dbh; $data{'dateofbirth'}=format_date_in_iso($data{'dateofbirth'}); + $data{'joining'} = &ParseDate("today") unless $data{'joining'}; $data{'joining'}=format_date_in_iso($data{'joining'}); + # if expirydate is not set, calculate it from borrower category subscription duration + unless ($data{'expiry'}) { + my $sth = $dbh->prepare("select enrolmentperiod from categories where categorycode=?"); + $sth->execute($data{'categorycode'}); + my ($enrolmentperiod) = $sth->fetchrow; + $enrolmentperiod = 12 unless ($enrolmentperiod); + $data{'expiry'} = &DateCalc($data{'joining'},"$enrolmentperiod years"); + } $data{'expiry'}=format_date_in_iso($data{'expiry'}); # $data{'borrowernumber'}=NewBorrowerNumber(); my $query="insert into borrowers (title,expiry,cardnumber,sex,ethnotes,streetaddress,faxnumber, diff --git a/C4/Output.pm b/C4/Output.pm index 60d34ffbce..343326f832 100644 --- a/C4/Output.pm +++ b/C4/Output.pm @@ -83,6 +83,7 @@ if (!$query){ interface => ($opac ne 'intranet'? '/opac-tmpl': '/intranet-tmpl'), theme => $theme, opacstylesheet => $opacstylesheet, + opacsmallimage => C4::Context->preference('opacsmallimage'), lang => $lang); diff --git a/C4/SearchMarc.pm b/C4/SearchMarc.pm index 20aa79b1f4..73500fc5fb 100644 --- a/C4/SearchMarc.pm +++ b/C4/SearchMarc.pm @@ -339,7 +339,7 @@ sub catalogsearch { my $counter = $offset; # HINT : biblionumber as bn is important. The hash is fills biblionumber with items.biblionumber. # so if you dont' has an item, you get a not nice empty value. - $sth = $dbh->prepare("SELECT biblio.biblionumber as bn,biblio.*, biblioitems.*,marc_biblio.bibid,itemtypes.notforloan,itemtypes.description + $sth = $dbh->prepare("SELECT biblio.biblionumber as bn,biblioitems.*,biblio.*, marc_biblio.bibid,itemtypes.notforloan,itemtypes.description FROM biblio, marc_biblio LEFT JOIN biblioitems on biblio.biblionumber = biblioitems.biblionumber LEFT JOIN itemtypes on itemtypes.itemtype=biblioitems.itemtype @@ -350,7 +350,12 @@ sub catalogsearch { my $totalitems=0; my $oldline; my ($oldbibid, $oldauthor, $oldtitle); - my $sth_itemCN = $dbh->prepare("select items.* from items where biblionumber=?"); + my $sth_itemCN; + if (C4::Context->preference('hidelostitem')) { + $sth_itemCN = $dbh->prepare("select items.* from items where biblionumber=? and (itemlost = 0 or itemlost is NULL)"); + } else { + $sth_itemCN = $dbh->prepare("select items.* from items where biblionumber=?"); + } my $sth_issue = $dbh->prepare("select date_due,returndate from issues where itemnumber=?"); # parse all biblios between start & end. while (($counter <= $#result) && ($counter <= ($offset + $length))) { diff --git a/koha-tmpl/intranet-tmpl/default/en/acqui.simple/addbiblio.tmpl b/koha-tmpl/intranet-tmpl/default/en/acqui.simple/addbiblio.tmpl index 1941115832..56e85a377c 100644 --- a/koha-tmpl/intranet-tmpl/default/en/acqui.simple/addbiblio.tmpl +++ b/koha-tmpl/intranet-tmpl/default/en/acqui.simple/addbiblio.tmpl @@ -1,7 +1,7 @@
-

Biblionumber :

+

Biblionumber : With Framework :

@@ -404,7 +404,10 @@ function active(numlayer) document.getElementById(link).style.color="#FFFFFF"; } else { document.getElementById(ong).style.visibility="hidden"; - document.getElementById(link).style.color="#000000"; + if (document.getElementById(link)) + { + document.getElementById(link).style.color="#000000"; + } } } } @@ -514,6 +517,10 @@ function PopupZ3950() { } newin=window.open("../z3950/search.pl?bibid="+strQuery,"z3950search",'width=800,height=400,toolbar=false,scrollbars=yes'); } +function Changefwk(FwkList) { + var fwk = FwkList.options[FwkList.selectedIndex].value; + window.location = "addbiblio.pl?oldbiblionumber=&frameworkcode="+fwk; +} function AddField(field) { document.forms[0].op.value = "addfield"; diff --git a/koha-tmpl/intranet-tmpl/default/en/acqui.simple/additem.tmpl b/koha-tmpl/intranet-tmpl/default/en/acqui.simple/additem.tmpl index 12968dad67..642cbf0b68 100644 --- a/koha-tmpl/intranet-tmpl/default/en/acqui.simple/additem.tmpl +++ b/koha-tmpl/intranet-tmpl/default/en/acqui.simple/additem.tmpl @@ -5,12 +5,9 @@ ">

( biblionumber #)

- " class="button catalogue"> + " class="button catalogue"> Edit biblio - &op=duplicate" class="button catalogue"> - Duplicate - " class="button catalogue"> MARC diff --git a/koha-tmpl/intranet-tmpl/default/en/acqui.simple/isbnsearch.tmpl b/koha-tmpl/intranet-tmpl/default/en/acqui.simple/isbnsearch.tmpl index e7a7055841..a100354de9 100644 --- a/koha-tmpl/intranet-tmpl/default/en/acqui.simple/isbnsearch.tmpl +++ b/koha-tmpl/intranet-tmpl/default/en/acqui.simple/isbnsearch.tmpl @@ -12,29 +12,45 @@

Biblios in koha

- - - - - - - - - - - - - - - - - - - + + +
TitleAuthor©  
- " class="button catalogue">Add items" class="button catalogue">Edit...
+ + + + + - + @@ -85,15 +101,13 @@ No results found. - - - &="> - /images/numbers/next.gif" border="0"> - - - /images/numbers/placeholder.gif" border="0"> - -

+

+ + +

None

+ + +

Biblios in reservoir

TitleAuthor©  &op=duplicate" class="button catalogue">Duplicate 
@@ -106,7 +120,7 @@ - + diff --git a/koha-tmpl/intranet-tmpl/default/en/acqui/acqui-home.tmpl b/koha-tmpl/intranet-tmpl/default/en/acqui/acqui-home.tmpl index fab27bb0f5..888a753cea 100644 --- a/koha-tmpl/intranet-tmpl/default/en/acqui/acqui-home.tmpl +++ b/koha-tmpl/intranet-tmpl/default/en/acqui/acqui-home.tmpl @@ -4,11 +4,15 @@

Acquisitions

Start, receive, modify order

+ +

You must define a budget in parameters

+ Supplier name :

or Search order history

+
@@ -37,8 +41,10 @@
-
-

budgets and bookfunds

+

budgets and bookfunds

+ +

You must define a budget in parameters

+
 
@@ -67,7 +73,7 @@

Use your reload button to get the most recent figures. Committed figures are approximate only, as exchange rates will affect the amount actually paid.

- +
diff --git a/koha-tmpl/intranet-tmpl/default/en/acqui/basket.tmpl b/koha-tmpl/intranet-tmpl/default/en/acqui/basket.tmpl index 352f624fd5..2ddc622283 100644 --- a/koha-tmpl/intranet-tmpl/default/en/acqui/basket.tmpl +++ b/koha-tmpl/intranet-tmpl/default/en/acqui/basket.tmpl @@ -17,16 +17,21 @@
+
+

+

+

+

+

+

Order

Budgets
- - + - @@ -39,20 +44,34 @@ - "> + + + + + - - + - + - - - - - + + + + @@ -68,19 +87,39 @@ > "> - - - - - - - - - - - + + + + + +
OrderPublisher&order=biblioitems.publishercode" class="acquisition doNotPrint">[order]IsbnPublisher&order=biblioitems.publishercode" class="acquisition">[order] TitleAuthor rrp est Qty
+
+ + - +

+
&booksellerid=&basketno="> +

+ &booksellerid=&basketno=">
+ + - +

+

+
+   SubTotal
GST
TOTAL +

Sub total

+

GST

+

TOTAL ()

+
+

+

+

+
+

+

+

+
+

+

 

+

 

+
+

 

+

 

+

 

+
+

 

+

 

+

 

+
diff --git a/koha-tmpl/intranet-tmpl/default/en/acqui/histsearch.tmpl b/koha-tmpl/intranet-tmpl/default/en/acqui/histsearch.tmpl index 096bc18ec3..65993ead1d 100644 --- a/koha-tmpl/intranet-tmpl/default/en/acqui/histsearch.tmpl +++ b/koha-tmpl/intranet-tmpl/default/en/acqui/histsearch.tmpl @@ -29,6 +29,65 @@ "> + + From /includes/calendar/cal.gif" border="0" hspace="0" vspace="0" id="openCalendarFrom" style="cursor: pointer;" valign="top"> + "> + + To /includes/calendar/cal.gif" id="openCalendarTo" style="cursor: pointer;" valign="top" border="0" hspace="0" vspace="0"> + " type="text"> + +   @@ -76,4 +135,5 @@
+ diff --git a/koha-tmpl/intranet-tmpl/default/en/authorities/authorities.tmpl b/koha-tmpl/intranet-tmpl/default/en/authorities/authorities.tmpl index 6b8520ee06..a56d7745ab 100644 --- a/koha-tmpl/intranet-tmpl/default/en/authorities/authorities.tmpl +++ b/koha-tmpl/intranet-tmpl/default/en/authorities/authorities.tmpl @@ -3,7 +3,11 @@
-

Authority number

+ +

Modify authority # ()

+ +

Adding authority ()

+

@@ -20,25 +24,15 @@










-

Duplicate suspected with

+

Duplicate suspected with

You must either :

    -

    confirm it's not a duplicate (and click on Add Auth again)

    +

    confirm it's not a duplicate (and click on again)

    Go to " >original authority

- -
-

Duplicate suspected with

-

You must either :

-
    -

    confirm it's not a duplicate (and click on Add Auth again)

    -

    Go to " >edit items from this duplicate Authority

    -
-
-

@@ -184,8 +178,8 @@ function PopupZ3950() { } function AddField(field) { - document.forms[0].op.value = "addfield"; - document.forms[0].addfield_field.value=field; + document.forms[1].op.value = "addfield"; + document.forms[1].addfield_field.value=field; document.f.submit(); } diff --git a/koha-tmpl/intranet-tmpl/default/en/authorities/detail.tmpl b/koha-tmpl/intranet-tmpl/default/en/authorities/detail.tmpl index 3cbdbff780..57259746ce 100644 --- a/koha-tmpl/intranet-tmpl/default/en/authorities/detail.tmpl +++ b/koha-tmpl/intranet-tmpl/default/en/authorities/detail.tmpl @@ -1,7 +1,7 @@ /includes/marc-editor.css">

-

Authority number :

+

Authority # ()

"> //images/fileopen.png"> diff --git a/koha-tmpl/intranet-tmpl/default/en/catalogue/MARCdetail.tmpl b/koha-tmpl/intranet-tmpl/default/en/catalogue/MARCdetail.tmpl index 7cea1ebf58..a9a6d99cfb 100644 --- a/koha-tmpl/intranet-tmpl/default/en/catalogue/MARCdetail.tmpl +++ b/koha-tmpl/intranet-tmpl/default/en/catalogue/MARCdetail.tmpl @@ -1,12 +1,16 @@ +
@@ -397,6 +403,14 @@ function confirm_deletion() { function Dopop(link) { newin=window.open(link,'popup','width=500,height=400,toolbar=false,scrollbars=yes'); } +function Changefwk(FwkList) { + var fwk = FwkList.options[FwkList.selectedIndex].value; + window.location = "MARCdetail.pl?bib=&frameworkcode="+fwk; +} +function Addbiblio(op) { + var fwk = document.forms[0].Frameworks.options[document.forms[0].Frameworks.selectedIndex].value; + window.location = "acqui.simple/addbiblio.pl?oldbiblionumber=&frameworkcode="+fwk+"&op="+op; +} diff --git a/koha-tmpl/intranet-tmpl/default/en/catalogue/detail.tmpl b/koha-tmpl/intranet-tmpl/default/en/catalogue/detail.tmpl index 60e8109c88..5e0f615ce1 100644 --- a/koha-tmpl/intranet-tmpl/default/en/catalogue/detail.tmpl +++ b/koha-tmpl/intranet-tmpl/default/en/catalogue/detail.tmpl @@ -66,14 +66,15 @@ , ,

+

- ">, + ">,


-
+

">
@@ -83,7 +84,9 @@
- Total Number of Items: + +

Total Number of Items:

+ diff --git a/koha-tmpl/intranet-tmpl/default/en/catalogue/searchresults.tmpl b/koha-tmpl/intranet-tmpl/default/en/catalogue/searchresults.tmpl index 44d96b3d85..c1a3223a25 100644 --- a/koha-tmpl/intranet-tmpl/default/en/catalogue/searchresults.tmpl +++ b/koha-tmpl/intranet-tmpl/default/en/catalogue/searchresults.tmpl @@ -9,7 +9,7 @@

You searched on - You did not specify any seach criteria
+ You did not specify any search criteria

results found

diff --git a/koha-tmpl/intranet-tmpl/default/en/circ/branchtransfers.tmpl b/koha-tmpl/intranet-tmpl/default/en/circ/branchtransfers.tmpl index 685beb928e..af9988278c 100644 --- a/koha-tmpl/intranet-tmpl/default/en/circ/branchtransfers.tmpl +++ b/koha-tmpl/intranet-tmpl/default/en/circ/branchtransfers.tmpl @@ -1,22 +1,16 @@
- -

Circulation: Transfers

+

Circulation: Transfers

Branch:   Printer: -Change Settings +Change Settings "> "> - +
Reserve Found
Reserve Found
Reserved: reserve found for (" onclick="openWindow(this,'Member', 480, 640); return false;">). @@ -37,10 +31,10 @@ Returns "> "> - + - +

@@ -57,7 +51,7 @@ Returns "> "> - +

@@ -69,14 +63,14 @@ Returns " value=""> " value=""> - +

- + - "> + diff --git a/koha-tmpl/intranet-tmpl/default/en/reports/borrowers_out.tmpl b/koha-tmpl/intranet-tmpl/default/en/reports/borrowers_out.tmpl index 4b04afacf6..2aa1fa7d11 100644 --- a/koha-tmpl/intranet-tmpl/default/en/reports/borrowers_out.tmpl +++ b/koha-tmpl/intranet-tmpl/default/en/reports/borrowers_out.tmpl @@ -72,6 +72,22 @@ + + + + + +
Messages
Messages
@@ -124,8 +118,8 @@ onclick="openWindow(this,'Member', 480, 640); return false;">

- - + + @@ -139,6 +133,12 @@ onclick="openWindow(this,'Member', 480, 640); return false;"> + diff --git a/koha-tmpl/intranet-tmpl/default/en/circ/circulation.tmpl b/koha-tmpl/intranet-tmpl/default/en/circ/circulation.tmpl index f9399c308e..f1494e6002 100644 --- a/koha-tmpl/intranet-tmpl/default/en/circ/circulation.tmpl +++ b/koha-tmpl/intranet-tmpl/default/en/circ/circulation.tmpl @@ -183,6 +183,9 @@

No more renewals possible

+ +

Borrower card expired

+
diff --git a/koha-tmpl/intranet-tmpl/default/en/circ/selectbranchprinter.tmpl b/koha-tmpl/intranet-tmpl/default/en/circ/selectbranchprinter.tmpl index 3b8093db43..4cbc98527d 100644 --- a/koha-tmpl/intranet-tmpl/default/en/circ/selectbranchprinter.tmpl +++ b/koha-tmpl/intranet-tmpl/default/en/circ/selectbranchprinter.tmpl @@ -1,7 +1,7 @@
-

Circulation: Select Printer and Branch Settings

+

Circulation: Select Printer and Branch Settings

@@ -29,7 +29,7 @@

-

+

diff --git a/koha-tmpl/intranet-tmpl/default/en/help/admin/marc_subfields_structure.tmpl b/koha-tmpl/intranet-tmpl/default/en/help/admin/marc_subfields_structure.tmpl index f5343e74a6..c687c14fdf 100644 --- a/koha-tmpl/intranet-tmpl/default/en/help/admin/marc_subfields_structure.tmpl +++ b/koha-tmpl/intranet-tmpl/default/en/help/admin/marc_subfields_structure.tmpl @@ -20,6 +20,11 @@
  • Auth value : means the value is not free, but in the authorised value list of the selected type
  • thesaurus : means that the value is not free, but can be searched in authority/thesaurus of the selected category
  • plugin : means the value is calculated or managed by a plugin. Plugins can do almost anything. For example, in UNIMARC there are plugins for every 1xx fields that are coded fields. The plugin is a huge help for cataloger ! There are also two plugins (unimarc_plugin_210c and unimarc_plugin_225a that can "magically" find the editor from an ISBN, and the collection list for the editor)
  • -
  • link : useless for instance
  • +
  • link : If you enter a field/subfield here (200b), a little glass appears after the subfield. If the user clic on the glass, a search is done on the DB for the field/subfield with the same value. Can be used for 2 main topic : +
      +
    • on a field like author (200f in UNIMARC), put 200f here, you will be able to see all biblios with the same author
    • +
    • on a field that is a link (4xx) to reach another biblio. For example, put 011a in 464$x, will find the serial that was previously with this issn. With the 4xx pligin, you get a powerful tool to manage biblios connected to biblios
    • +
    +
  • diff --git a/koha-tmpl/intranet-tmpl/default/en/help/circ/circulation.tmpl b/koha-tmpl/intranet-tmpl/default/en/help/circ/circulation.tmpl new file mode 100644 index 0000000000..d9a1a4bc34 --- /dev/null +++ b/koha-tmpl/intranet-tmpl/default/en/help/circ/circulation.tmpl @@ -0,0 +1,11 @@ + +

    Circulation / Issues help

    +

    Before you begin, it is very important that you take note of the branch and printer settings and change them if necessary. This should only have to be done the first time you do circulations from a workstation, after which a browser cookie will remember the correct settings. If you do circulations under the wrong branch settings (for example, your branch setting is "Suburb," but you are actually working at the "Downtown" branch), then Koha will reset the location of all items scanned to the incorrect branch (Suburb) and the statistical reports will credit all circulations to the wrong branch.

    + +

    Now start by scanning the borrower's barcode or type in their name to find their account. Once Koha has found the borrower, you will see a new form for scanning or typing the item's identifying number (usually a barcode).

    + +

    If you wish to have this item and all subsequent items in this transaction to have a date due other than the default date due defined for the item type, use the "Sticky Due Date" to set the date due before scanning the first item.

    + +

    If the issuing has nothing specific, it will be done immediatly and shown (with other borrower issues) at bottom.

    +

    If the issuing is problematic, then another box will appear (in RED) and ask for confirmation if possible. If the issuing is really impossible (for example, the barcode does not exist), then you can't confirm the issue. If it is possible but has something that needs confirmation (like item being issued to another borrower, or borrower having issued too many items), then you must confirm the issuing. If the confirmation means another operation (if item is issued to another borrower, then issuing also means make the return), then it's also done

    + diff --git a/koha-tmpl/intranet-tmpl/default/en/help/circ/returns.tmpl b/koha-tmpl/intranet-tmpl/default/en/help/circ/returns.tmpl new file mode 100644 index 0000000000..f84304c3fa --- /dev/null +++ b/koha-tmpl/intranet-tmpl/default/en/help/circ/returns.tmpl @@ -0,0 +1,10 @@ + +

    Circulation / Returns help

    +

    Before you begin, it is very important that you take note of the branch and printer settings and change them if necessary. This should only have to be done the first time you do circulations (or returns) from a workstation, after which a browser cookie will remember the correct settings. If you do returns under the wrong branch settings (for example, your branch setting is "Suburb," but you are actually working at the "Downtown" branch), then Koha will reset the location of all items scanned to the incorrect branch (Suburb).

    + +

    Now simply scan or type the returned item's identifying number (usually a barcode) in the box provided.

    + +

    The return is done and if there is something specific for the item or the borrower (like borrower having debts), a red box will warn you

    +

    If the item has been requested by someone else, you also are asked to validate the request. If you confirm it, item is changed to a "waiting" status and you should warn the borrower that the item is available

    +

    If the item is requested by someone in anothe branch, then you must validate the transfer too

    + diff --git a/koha-tmpl/intranet-tmpl/default/en/help/export/marc.tmpl b/koha-tmpl/intranet-tmpl/default/en/help/export/marc.tmpl new file mode 100644 index 0000000000..c62021a31d --- /dev/null +++ b/koha-tmpl/intranet-tmpl/default/en/help/export/marc.tmpl @@ -0,0 +1,8 @@ + +

    iso 2709 export

    +

    This is a tool to export your bibliographic records in standard MARC communications format (ISO2709). It exports only the basic bibliographic information with no holdings information other than any holdings information originally loaded into Koha using the bulkmarcimport tool.

    + +

    You are asked to provide a starting biblio record number and an ending number for the export. If you want to export all of your records, leave the start and end numbers blank.

    + +

    Records are downloaded to the workstation that requests the export and are saved in a file called "marc.pl."

    + diff --git a/koha-tmpl/intranet-tmpl/default/en/includes/acquisitions-top.inc b/koha-tmpl/intranet-tmpl/default/en/includes/acquisitions-top.inc index ff1759206a..010bc6d34d 100644 --- a/koha-tmpl/intranet-tmpl/default/en/includes/acquisitions-top.inc +++ b/koha-tmpl/intranet-tmpl/default/en/includes/acquisitions-top.inc @@ -5,6 +5,16 @@ KOHA: INTRANET: Acquisitions/includes/common-print.css"> /includes/common-style.css"> + +/includes/calendar/calendar-system.css"> + + + + + + diff --git a/koha-tmpl/intranet-tmpl/default/en/parameters/printers.tmpl b/koha-tmpl/intranet-tmpl/default/en/parameters/printers.tmpl index 79f990404b..3f90963a4f 100644 --- a/koha-tmpl/intranet-tmpl/default/en/parameters/printers.tmpl +++ b/koha-tmpl/intranet-tmpl/default/en/parameters/printers.tmpl @@ -1,205 +1,181 @@ - - - - -

    Modify printer

    - -

    Add printer

    +
    +

    Printer admin

    + + +
    + +

    Modify printer

    + +

    Add printer

    + + +
    " name="Aform" method="post"> + + +

    ">

    + +

    + +

    ">

    +

    ">

    +

    + +
    - -
    " name="Aform" method="post"> - - - -
    Transfered Items
    BarcodeTitleAuthorTypeFromTo
    Transfered Items
    BarcodeTitleAuthorTypeFromTo
    "> &type=intra" onclick="openWindow(this, 'Item', 480, 640); return false;">
    - - - - - - - - - - - + + + Data recorded + " method="post"> + + - - - - - - - - - - - - - -
    Printer Name - "> -
    Printer Name - -
    Queue">
    Type">
    - - - - - - Data recorded -

    " method="post"> - -
    - - - - - - - - - - " method="post"> - - "> - - - - - - - - - - - - - - - + + + + + + + + + + + + + + +
    Printer
    Queue
    Type
    CONFIRM DELETION
    - - - + + + + + + + + " method="post"> - - - - -
    Printer
    - - - - Data deleted -
    " method="post"> - -
    - - - -

    Printer admin

    -
    " method="post"> - "> - -
    - - - You searched for + + "> + +
    Queue
    Type
    CONFIRM DELETION
    + + + +
    " method="post"> + +
    +
    - - - - - - - - - - - "> - - - - - - - -
    NameQueueType
    ?op=add_form&searchfield=">Edit?op=delete_confirm&searchfield=">Delete
    - -
    " method="post"> - - - ?offset="><< Prev + + Data deleted + " method="post"> + +
    - -        - - - ?offset=">Next >> - - -
    - -
    - - - - + + +
    " method="post"> + "> + +
    + + + You searched for + + + + + + + + + + + + "> + + + + + + + +
    NameQueueType
    ?op=add_form&searchfield=" class="button">Edit?op=delete_confirm&searchfield=" class="button">Delete
    + +
    " method="post"> + + + + ?offset="><< Prev + + +        + + + ?offset=">Next >> + + +
    + +
    +
    + + + diff --git a/koha-tmpl/intranet-tmpl/default/en/parameters/z3950servers.tmpl b/koha-tmpl/intranet-tmpl/default/en/parameters/z3950servers.tmpl index aa11352ed2..ecd7100408 100644 --- a/koha-tmpl/intranet-tmpl/default/en/parameters/z3950servers.tmpl +++ b/koha-tmpl/intranet-tmpl/default/en/parameters/z3950servers.tmpl @@ -213,7 +213,7 @@
    Borrower Category
      Without issues since + /includes/calendar/cal.gif" id="openCalendarTo" style="cursor: pointer;" valign="top" border="0" hspace="0" vspace="0"> +
    diff --git a/koha-tmpl/opac-tmpl/css/en/images/filefind.png b/koha-tmpl/opac-tmpl/css/en/images/filefind.png new file mode 100644 index 0000000000000000000000000000000000000000..3ba1f34ed1110ec57a8a0ad2510d1c083839ca87 GIT binary patch literal 1786 zcmV%$a-pFzc<0FkRClUEMo(X3qJ}(eKP3 zSlzsGx$J-^j`}(8Dfc&JPjcV^7GP*-h{3@@`uh4Pl}Z3;t+{pU78fpDV19o7X?~sw zzys{TLkHM8FvRnlHZibc2kCT{bT$h>T&oe=2pbD`KKh7>iMM#?oj*P^g!kCm9z1k_ zBi}yC=7Cqpw6=m$_$ahe7%Yed5%4o~txFT!zRlZb&QLCwp9#WSG24TO4)D$I9_7VX z259f>0R=`J8V6!AB4`xa7!Vp56@N%J(?sSTF8?pbjuXFwSjWt1}fGoh)fgv^z4$#@zgHj+0 zRDJlUr0jqIB7#Af)tc+Gb9}N`BW`Ww^y#0kCHVxPTrMvS4JCqG*V4*z6eU8Zx2|#F za$o^O`N^I@MH~JZJmAxsrROUz;QKzOPMva10~|kooQ)ed(7$aPzVgvHw15FVU5YTq zB!LBtN+AGZ&|)z_AcniaBklxMswnpC*|RLj<^TY;Z-15ct{#-H&^Rh$(8e@GXO;zM z!bAt8(PYp@2#jDPL`z7ZGVI;EmpG1_22cQ{Qi)vFPqH&1S`rN`i%_ssM9=~nK}(E? zMvK81gYp$V7B8EozrP>PYrYZG$^#<~BNic*Kp^#*qypkF#Au1B2=&Sslu?+vNb~u8 z)4>}6T5FafL&kV$v1qa2XOiqi(8eTXmwIrsM8z0vT*W-nsP-Iz2)Y*Y`OM6k08#*# zF1^b_@C91=1SVuw8)kKtz!(Ct1h69Wh`<;`Ym8nbOPZX@Q1EkfW0{(o!nvlKfK<6$ z=ED!KGJp4Oqt}guRCG1TO2XvfqlLiKs2GFM8qp63A3Y-5vW^Xf=P2efbjLL&Cnq^^ z;zZK`>dcul+`oUHk8j>&<5#zn&*!KBl}Z36!~j|ZU01uahVVf^xKu?cg`dk)DCBu* zeG7m3^#lN8V`I%f371>u(xrE~cjNCAfWCZ=Le8(h3k-qQXk9@Eb5twy#Ab;?K2M=g zWTbZ!Bi)^}M=@`{`5VT^$D7U`K*e#)#KZ(gjvQfdaERBk8H!uCvBCEnEh1vkl0hkp zB2B)ln_}TP3i%w{x^wi|8pn=)pXuotrl;2?LM0+}baZg>;zjoF-w(jojG=$mF7i>H zTo6#qucxoOjrPSwj{V?=oI7`plP7=5&wlb_bUM@Y*OFH(7Tx*t z=Sihf%+1X)Iy%aZ9j|iWz&Chta2sFle+jMHSWKlcBp)Q3(jMI@%f&yu&DpaPOi$17 z`s;gn|Chf2;HLBF?d_!*2o;7QU0q$YwYA}#V`^%O(a}+^T=@W{6#Mq=WB2aeY}vAf z&dyF|W@b1&HO1uQBmm>%^kxtZ7fvoqaQxN#t}{;Y#c!x;o=CDdZNDu z1ivhuZr>Ipsuu{WCAvO-N5`sj0rXF|oY!Lr(;~Y*x zh(l5?CX@C^xBA2ioG7d)tfX;K8XKi}m|dM0Sgst_ubN&#S{hK*|2D8!1X z!$f#C0vqAQ5vf?PHrey6JPn`$F)}j3>}Q{^3ZbmE2|!c_kQz?HWF3dNj1A&M;n>Mc^oz>;o`@D>VaJ>NrjrT1_aQ6=<4cb zVPQVeK=`o2?T6qbOoG)%0+Y-Q5k_I-x;5B;LA>|g`$SPKIYIKb`~TQl{)Aj>Ya0O7 c>Y@kmZ)@G)=}^;w)Bpeg07*qoM6N<$f-)^uZ~y=R literal 0 HcmV?d00001 diff --git a/koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc b/koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc index ade3cdc1c8..c2a51d32bd 100644 --- a/koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc +++ b/koha-tmpl/opac-tmpl/css/en/includes/opac-top.inc @@ -24,19 +24,22 @@ var MSG_NO_RECORD_SELECTED = _("No biblio selected"); var MSG_NO_RECORD_ADDED = _("No biblio added"); function Dopop(link) { - newin=window.open(link,'popup','width=500,height=400,toolbar=false,scrollbars=yes'); + newin=window.open(link,'popup','width=700,height=500,toolbar=false,scrollbars=yes'); } - -
    0
    @@ -61,7 +60,7 @@ I
    t
    e
    m
    s
    - +
    @@ -319,6 +318,7 @@
    +
    +
    + +
    + \ No newline at end of file diff --git a/koha-tmpl/opac-tmpl/css/en/opac-full-serial-issues.tmpl b/koha-tmpl/opac-tmpl/css/en/opac-full-serial-issues.tmpl new file mode 100644 index 0000000000..066a584465 --- /dev/null +++ b/koha-tmpl/opac-tmpl/css/en/opac-full-serial-issues.tmpl @@ -0,0 +1,64 @@ + + + + +

    Subscription information for biblio # with title :

    + " class="button catalogue">Back to biblio + + + + +
    " id="" class="tabsub" style="visibility:visible"> + + + + + + + + + + + + + +
    Date + Number + Status +
    + + + + + Arrived + Waited + Late + Missing +
    +
    + + + + diff --git a/koha-tmpl/opac-tmpl/css/en/opac-main.tmpl b/koha-tmpl/opac-tmpl/css/en/opac-main.tmpl index bc854220e9..a40dcce775 100644 --- a/koha-tmpl/opac-tmpl/css/en/opac-main.tmpl +++ b/koha-tmpl/opac-tmpl/css/en/opac-main.tmpl @@ -14,7 +14,11 @@
    - koha + + " title="koha" alt="koha" /> + + koha +
    diff --git a/koha-tmpl/opac-tmpl/css/en/opac-search.tmpl b/koha-tmpl/opac-tmpl/css/en/opac-search.tmpl index 4a3507414b..7042b27ee0 100644 --- a/koha-tmpl/opac-tmpl/css/en/opac-search.tmpl +++ b/koha-tmpl/opac-tmpl/css/en/opac-search.tmpl @@ -15,7 +15,7 @@ - +

    @@ -23,14 +23,20 @@ - + + + ... +

    - + + + ... +

    @@ -38,7 +44,18 @@ - + + + ... + +

    +

    + + + + + +

    @@ -73,7 +90,7 @@ - +

    @@ -81,7 +98,7 @@ - +

    @@ -89,7 +106,7 @@ - +

    @@ -97,7 +114,7 @@ - +

    @@ -105,13 +122,13 @@ - + and - +

    @@ -129,7 +146,7 @@ - + "> class="hilighted">

    -

    - - "> + + "> + + + "> - - "> - - "> - + "> -

    -

    + +

    +

    - - ; @@ -116,7 +115,7 @@   - + &=&&resultsperpage=&orderby=&type=intranet&op=do_search">Next >>> diff --git a/koha-tmpl/opac-tmpl/css/en/opac-serial-issues.tmpl b/koha-tmpl/opac-tmpl/css/en/opac-serial-issues.tmpl index 058c844c5b..4889880f94 100644 --- a/koha-tmpl/opac-tmpl/css/en/opac-serial-issues.tmpl +++ b/koha-tmpl/opac-tmpl/css/en/opac-serial-issues.tmpl @@ -1,13 +1,14 @@

    -

    Issues for a subscription

    -" class="button catalogue">Back to biblio -
    - -
    -

    Subscription information for

    -

    It began on and is issued every +

    Issues for a subscription

    + " class="button">Back to biblio + &selectview=full">Complete view + + +
    +

    Subscription information for

    +

    It began on and is issued every day @@ -43,45 +44,57 @@ 2 years - on - - Monday + on monday - Tuesday + on tuesday - Wednesday + on wednesday - Thursday + on thursday - Friday + on friday - Saturday + on saturday - Sunday + on sunday - for issues weeks months - since

    +

    Last renewal of subscription was

    +

    This subscription is now ended. The last issue was recieved on

    +

    - -

    Issues summary

    -

    - -

    - -
    + +

    Issues summary

    +

    + +

    + + +

    Recieved issues

    +

    + +

    + + +

    Missing issues

    +

    + +

    + +
    +
    diff --git a/koha-tmpl/opac-tmpl/css/en/opac-user.tmpl b/koha-tmpl/opac-tmpl/css/en/opac-user.tmpl index aee629d484..17fcc0bdaf 100644 --- a/koha-tmpl/opac-tmpl/css/en/opac-user.tmpl +++ b/koha-tmpl/opac-tmpl/css/en/opac-user.tmpl @@ -4,13 +4,18 @@

    Are our records correct?

    Library Card:

    -

    -

    ,

    -

    ,

    -

    (hm)

    -

    (wk)

    +

    +

    Work address: ,

    +

    Home address:

    +

    Home phone:

    +

    Fax:

    Update Record

    + +

    Message from the library

    + + +
    @@ -35,70 +40,79 @@ - -
    -

    You have reserved items waiting:

    -
      - -
    • , pick up at:
    • - -
    -
    - + +
    +

    You have reserved items waiting:

    +
      + +
    • , pick up at:
    • + +
    +
    + + +
    + +

    You have items currently issued.

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    TitleAuthorDue dateItemtypeBarcodeChargesRenewable
    OVERDUE YesNoYesNo
    YesNoYesNo
    + +

    You have no items on issue.

    + +
    -
    - -

    You have items currently issued.

    - + +
    +

    You have items currently reserved.

    +
    - - - - - + - - - - - - - - - - + + + + + +
    Title AuthorDue dateItemtypeBarcodeChargesRenewableReserve date
    - - - YesNoYesNo
    - -

    You have no items on issue.

    +
    +
    - - -
    -

    You have items currently reserved.

    - - - - - - - - - - - - - -
    TitleAuthorReserve date
    -
    -
    - -
    diff --git a/koha-tmpl/opac-tmpl/css/en/opac-userupdate.tmpl b/koha-tmpl/opac-tmpl/css/en/opac-userupdate.tmpl index d30f784afa..0b2a60920e 100644 --- a/koha-tmpl/opac-tmpl/css/en/opac-userupdate.tmpl +++ b/koha-tmpl/opac-tmpl/css/en/opac-userupdate.tmpl @@ -7,14 +7,15 @@ Your changes won't appear until the library has validated them.

    -

    -

    -

    -

    -

    -

    -

    -

    +

    +

    +

    +

    +

    +

    +

    +

    +

    diff --git a/localfile/modified_authorities/DO_NOT_REMOVE b/localfile/modified_authorities/DO_NOT_REMOVE new file mode 100644 index 0000000000..8a0b851f4a --- /dev/null +++ b/localfile/modified_authorities/DO_NOT_REMOVE @@ -0,0 +1 @@ +do not remove this file, used to avoid cvs deleting this directory diff --git a/members/memberentry.pl b/members/memberentry.pl index e2c8161b4c..d09cd88972 100755 --- a/members/memberentry.pl +++ b/members/memberentry.pl @@ -128,12 +128,6 @@ if ($op eq 'add' or $op eq 'modify') { } else { print $input->redirect("/cgi-bin/koha/members/moremember.pl?bornum=$borrowernumber"); } - - if($destination eq "circ"){ - print $input->redirect("/cgi-bin/koha/circ/circulation.pl?findborrower=$data{'cardnumber'}"); - } else { - print $input->redirect("/cgi-bin/koha/members/moremember.pl?bornum=$data{'borrowernumber'}"); - } } } if ($delete){ @@ -241,7 +235,7 @@ if ($delete){ $template->param( actionType => $actionType, destination => $destination, - member => $member, + borrowernumber => $borrowernumber, address => $data->{'streetaddress'}, firstname => $data->{'firstname'}, surname => $data->{'surname'}, @@ -267,8 +261,8 @@ if ($delete){ flagloop => \@flagdata, relshiploop => \@relshipdata, "title_".$data->{'title'} => " SELECTED ", - dateenrolled => $data->{'dateenrolled'}, - expiry => $data->{'expiry'}, + joining => format_date($data->{'dateenrolled'}), + expiry => format_date($data->{'expiry'}), cardnumber => $cardnumber, dateofbirth => $data->{'dateofbirth'}, sort1 => $data->{'sort1'}, diff --git a/misc/Install.pm b/misc/Install.pm index 3a2b4e0cc1..b65203923c 100644 --- a/misc/Install.pm +++ b/misc/Install.pm @@ -2,7 +2,7 @@ package Install; #assumes Install.pm # Copyright 2000-2002 Katipo Communications -# Contains parts Copyright 2003-5 MJ Ray +# Contains parts Copyright 2003-4 MJ Ray # # This file is part of Koha. # @@ -859,8 +859,12 @@ sub checkperlmodules { unless (eval {require Digest::MD5}) { push @missing,"Digest::MD5" }; unless (eval {require MARC::Record}) { push @missing,"MARC::Record" }; unless (eval {require Mail::Sendmail}) { push @missing,"Mail::Sendmail" }; - unless (eval {require PDF::API2}) { push @missing,"PDF::API2" }; # The following modules are not mandatory, depends on how the library want to use Koha + unless (eval {require PDF::API2}) { + if ($#missing>=0) { # only when $#missing >= 0 so this isn't fatal + push @missing,"You will need PDF::API2 for barcode generator" + } + } unless (eval {require Net::LDAP}) { if ($#missing>=0) { # only when $#missing >= 0 so this isn't fatal push @missing, "Net::LDAP"; @@ -1951,9 +1955,9 @@ sub populatedatabase { $branchcode or $branchcode='DEF'; startsysout(); - system("$mysqldir/bin/mysql '-u$user' -e \"insert into branches (branchcode,branchname,issuing) values ('$branchcode', '$branch', 1)\" '$database'"); - system("$mysqldir/bin/mysql '-u$user' -e \"insert into branchrelations (branchcode,categorycode) values ('MAIN', 'IS')\" '$database'"); - system("$mysqldir/bin/mysql '-u$user' -e \"insert into branchrelations (branchcode,categorycode) values ('MAIN', 'CU')\" '$database'"); + system("$mysqldir/bin/mysql -u$user -e \"insert into branches (branchcode,branchname,issuing) values ('$branchcode', '$branch', 1)\" $database"); + system("$mysqldir/bin/mysql -u$user -e \"insert into branchrelations (branchcode,categorycode) values ('MAIN', 'IS')\" $database"); + system("$mysqldir/bin/mysql -u$user -e \"insert into branchrelations (branchcode,categorycode) values ('MAIN', 'CU')\" $database"); my $printername='lp'; my $printerqueue='/dev/lp0'; @@ -1972,7 +1976,7 @@ sub populatedatabase { $printerqueue=~s/[^A-Za-z0-9]//g; } startsysout(); - system("$mysqldir/bin/mysql '-u$user' -e \"insert into printers (printername,printqueue,printtype) values ('$printername', '$printerqueue', '')\" '$database'"); + system("$mysqldir/bin/mysql -u$user -e \"insert into printers (printername,printqueue,printtype) values ('$printername', '$printerqueue', '')\" $database"); } my $language; if ($auto_install->{Language}) { @@ -1982,7 +1986,7 @@ sub populatedatabase { $language=showmessage(getmessage('Language'), 'free', 'en'); } startsysout(); - system("$mysqldir/bin/mysql '-u$user' -e \"update systempreferences set value='$language' where variable='opaclanguages'\" '$database'"); + system("$mysqldir/bin/mysql -u$user -e \"update systempreferences set value='$language' where variable='opaclanguages'\" $database"); my @dirs; if (-d "scripts/misc/sql-datas") { # ask for directory to look for files to append @@ -2153,7 +2157,7 @@ $year+=1900; my $date= sprintf "%4d-%02d-%02d_%02d:%02d:%02d", $year, $month, $day,$hr,$min,$sec; setmysqlclipass($pass); -open (MD, "$mysqldir/bin/mysqldump '--user=$user' --host=$hostname '$database'|"); +open (MD, "$mysqldir/bin/mysqldump --user=$user --host=$hostname $database|"); (open BF, ">$backupdir/Koha.backup_$date") || (die "Error opening up backup file $backupdir/Koha.backup_$date: $!\n"); diff --git a/misc/overduenotices.pl b/misc/overduenotices.pl index 461f97dd05..a5d339b509 100644 --- a/misc/overduenotices.pl +++ b/misc/overduenotices.pl @@ -73,7 +73,8 @@ my $librarymail = 'librarystaff@library.com'; # all notices without mail are sen # this text contains fields that are replaced by their value. Those fields must be written between brackets # The following fields are available : # -my $mailtext = "\n\n\nDear library borrower\n\n\n \n\n According to our records, you have items that are at\n least a week overdue for return to the library or renewal.\n If you have registered a password with the library, you may use it\n and your library card to login at http://XXX.org\n to check the status of your account, or you may call any of our branch\n Please be advised that all library services will be blocked\n if items are allowed to go more than 30 days overdue.\n\n Thank you for using your public libraries.\n\n\n \n \n \n \n\n\n\n\n\n"; +my $mailtext = "\n\n\nDear library borrower\n\n\n \n\n According to our records, you have items, the description of which follows, that are at\n least a week overdue for return to the library or renewal:\n title author barcode\n\n + If you have registered a password with the library, you may use it\n and your library card to login at http://XXX.org\n to check the status of your account, or you may call any of our branch\n Please be advised that all library services will be blocked\n if items are allowed to go more than 30 days overdue.\n\n Thank you for using your public libraries.\n\n\n \n \n \n \n\n\n\n\n\n"; # # END OF PARAMETERS # @@ -84,13 +85,16 @@ unshift @{$Mail::Sendmail::mailcfg{'smtp'}} , $smtpserver; # set your own mail server name here my $dbh = C4::Context->dbh; -my $sth = $dbh->prepare ("SELECT count(*), issues.borrowernumber,firstname,surname,streetaddress,physstreet,city,zipcode,emailaddress FROM issues,borrowers,categories WHERE returndate IS NULL AND TO_DAYS(NOW())-TO_DAYS(date_due) BETWEEN 0 and 500 AND issues.borrowernumber=borrowers.borrowernumber and borrowers.categorycode=categories.categorycode and categories.overduenoticerequired=1 group by issues.borrowernumber"); +my $sth = $dbh->prepare ("SELECT COUNT(*), issues.borrowernumber,firstname,surname,streetaddress,physstreet,city,zipcode,emailaddress FROM issues,borrowers,categories WHERE returndate IS NULL AND TO_DAYS(NOW())-TO_DAYS(date_due) BETWEEN 0 and 500 AND issues.borrowernumber=borrowers.borrowernumber and borrowers.categorycode=categories.categorycode and categories.overduenoticerequired=1 group by issues.borrowernumber"); +my $sth2 = $dbh->prepare("SELECT biblio.title,biblio.author,items.barcode FROM issues,items,biblio WHERE items.itemnumber=issues.itemnumber and biblio.biblionumber=items.biblionumber AND issues.borrowernumber=? AND returndate IS NULL AND TO_DAYS(NOW())-TO_DAYS(date_due) BETWEEN 0 and 500"); + $sth->execute; # # my $itemcount = 0; # my $row; my $count = 0; # to keep track of how many notices are printed my $e_count = 0; # and e-mailed +my $date=localtime; my ($itemcount,$borrnum,$firstname,$lastname,$address1,$address2,$city,$postcode,$email); while (($itemcount,$borrnum,$firstname,$lastname,$address1,$address2,$city,$postcode,$email) = $sth->fetchrow) { @@ -102,7 +106,16 @@ while (($itemcount,$borrnum,$firstname,$lastname,$address1,$address2,$city,$post $notice =~ s/\/$address2/g; $notice =~ s/\/$city/g; $notice =~ s/\/$postcode/g; - + $notice =~ s/\/$date/g; + + $sth2->execute($borrnum); + my $titles=""; + my ($title, $author, $barcode); + while (($title, $author, $barcode) = $sth2->fetchrow){ + $titles .= " ".($title?$title:"")." ".($author?$author:"")." ".($barcode?$barcode:"")."\n"; + } + $notice =~ s/\/$titles/g; + $sth2->finish; # if not using e-mail notices, comment out the following lines if ($email) { # or you might check for borrowers.preferredcont if ($nomail) { @@ -135,7 +148,7 @@ if ($count) { $notice .= ; if ($nomail) { - print "TO => $email\n"; + print "TO => $email\n" if $email; print "FROM => $from\n"; print "SUBJECT => Koha overdue\n"; print "MESSAGE => $notice\n"; diff --git a/misc/release notes/release_notes_223.txt b/misc/release notes/release_notes_223.txt new file mode 100644 index 0000000000..6eb7311e56 --- /dev/null +++ b/misc/release notes/release_notes_223.txt @@ -0,0 +1,479 @@ +RELEASE NOTES +============= + +Koha is the 1st Open-Source Integrated Library System. +Released at first in New zealand, in 2000 januaray, it is maintained by a team of volunteers from around the globe, the Koha system is a full catalogue, opac, circulation and acquisitions system. + +Koha 2.2 is more than 247 000 lines of code, developped by more than 30 differents developpers (excluding translators). + +With the 2.2 version, Koha is now a mature product, with a lot of nice features. It's used in more than 50 libraries, from all kinds (public, schools, search, religious...), of all size (from 1 to 8 branches, from 1000 to 300 000 items). + +======== +WARNINGS +======== +* The librarian interface is tested only with mozilla/firefox. Should work (partially) with IE. OPAC should work fine with any navigator. + +======= +DIFFS +======= +Diff 2.2.2 => 2.2.3 +******************* + +DB MODIFS : +*********** +(This new chapter in release notes will be in all new releases. It point any change in the DB. All changes are supposed to be handled by the DB updater, but here for your information) + +DB structure : none +DB content : none + +BUGFIXES +***** Critical & Minor mixed + === ACQUISITION === + * adding supplier info to basket.pl (for order printing) + + === OPAC === + * minor fix in subject link (normal view) + + === CATALOGUE === + + === CIRCULATION === + + === BORROWERS === + * better management of joining & expiry dates : + - dates can be manually typed when adding a borrower. + - Empty fields are automatically calculated (joining = today & expiry date calculated from borrower category) + - Expiry date can be modified + * checking expiry date when trying to issue a book & forbidding issuing when expiry date reached. ** IMPORTANT ** This check was not done before. Thus, you may be unable to issue books where you could before. You can update your database borrower by borrower or with the following SQL command on the server : "update borrowers set expiry='2005-31-12'". You can limit the update to a borrower category with "update borrowers set expiry='2005-31-12' where categorycode='A'" (all SQL commands must be typed without any ") + * template improvements & some bugfixes in fines management. + + === PARAMETERS === + * in marctagstructure, next & previous button no more loose frameworkcode & link to default framework + + === REPORTS === + * in "borrowers with no issues" wizard, adding "without issues since" (DOES NOT WORK) + + === ALL === + +IMPROVEMENTS +***** Major + === CATALOGUE === + * There is also a FindDuplicate feature for MARC Authorities + + +**** Minor + + +Diff 2.2.1 => 2.2.2 +******************* + +DB MODIFS : +*********** +(This new chapter in release notes will be in all new releases. It point any change in the DB. All changes are supposed to be handled by the DB updater, but here for your information) + +DB structure : none +DB content : +* new systempref MIME (OPENOFFICE.ORG or EXCEL) and delimiter (;). They are used by the Reports module, when exporting a report to a spreadsheet +* new userflags *management* and *tools* to separate systempreferences in 3 differents permissions (see below) + +BUGFIXES +***** Critical & Minor mixed + === ACQUISITION === + * 3 bugfixes in suggestions : + - major : a suggestion was not shown in acquisition except when ordered by the suggestor itself. + - major : the mail to the suggestor was not sent. + - minor : the name was not shown in accepted by column, in acquisition + * virtual sheves in OPAC : + - The user needed to have librarian rights to be able to go to the virtual shelf page. + - Adding a book to an existing virtual shelf did not work + * when a line was deleted, it was still counted in bookseller number of pending line order (in order.pl). + * a non closed basket could be modified even if the supplier was set "inactive" + + === OPAC === + * showing marcnotes in opac-detail (bug #920) + + === CATALOGUE === + * some fixes in authority search (worked, but could fail to return results under certain circumstances) + * libopac now works : in Koha >> parameters >> biblioframework >> modify field or subfield. If you set "opac text" to a different value than librarian text, you'll have different headers/text for MARC fields (for example : "1st responsability" for librarians, "author" for end users) + * removed a limit to 255 char in field length in MARC editor (the DB can handle much more) + * tabs in MARC editor : the active tab is now hilighted & in biblio modif, empty tabs are not shown (as in biblio add) + * bugfixes in permissions (some pages required parameters where they should require editcatalogue) + * the z3950daemon was buggy (forgotten to port a bugfix in 2.0 branch. It works again) + + === CIRCULATION === + * renewal date was improperly calculated. Now, returndate is calculated from today, not from previous returndate + * display waiting status only if item has arrived at pickup branch. Setting 'atdestination' variable if so. Changes are required in the template to take advantage of this. + * in circulation, when clicking on member, the member page is opened twice (in main window & in a popup). The popup has been removed. + + === BORROWERS === + * bugfixes in parameters (when modifying a borrower, with alternate address) + * members flags (card lost, debarred, gone no address) are back in default template. + + === ALL === + * some fixes for date & currency format + +IMPROVEMENTS +***** Major + + === STATS === + * The stat module is here !!! In Reports menu, you now have 4 powerful "wizards" (for catalogue, borrowers, issues and acquisitions). You can define 3 things in a report : what you want in columns, what you want in lines, and filters you want on datas. For issues & acquisitions, you also can choose what you want in each cell (count or amount, or loan length). You can get those results in your borwser, or in your spreadsheet (MS-Excel & OpenOffice.org work fine). This module will continue to be improved to get the possibility to retrieve bulk datas in your spreadsheat. It works quite well, but has still some bugs and weaknesses. You also get some nice "top XXX" stats. + + === CATALOGUE === + * catalogue, changed the small "search glass" behaviour. It now appears only on subfields that have a "link" value. Avoid useless glasses and removes nothing. **** WARNING **** : if you don't change you MARC parameters, glasses DISAPPEAR, because no subfields have a link value. So you MUST "reactivate" them manually. If you want to enable the search glass on field 225$a (collection in UNIMARC), just put 225a to "link" field (Koha >> parameters >> framework >> 225 field >> subfield >> modify $a >> enter 225a in link input field (without quotes or anything else) + * showing item status in result list. The book status is in items.notforloan (every non 0 value meaning "book not for loan). The item status should be mapped to an item MARC subfield & this subfield should usually be connected to an authorised_value list. + * in authorities search forms, adding a "main entry" field ($a), to limit the search. The "anywhere" field is still here. An option has been added to search "contains" or "start by". + * item status (opac & librarian interfaces) The item status has been improved : It now can be : + - on order (= item has been ordered, but not yet arrived at the library) + - not for loan : if the "notforloan" field is mapped to an authorised value list, the right value is shown. Thus, an item can be "lost" or "being repaired", or whatever you put in the authorised values list. (reminder : the "notforloan" field, when 0 means 'ok, book can be issued', and all other values means 'nok, book can't be issued' (whatever the reason, that can be in the authorised value table) + * in catalogue search, the user can now order asc or desc. + * in catalogue search, the result list now show the itemtype in a column + * in catalogue search, if there is only 1 answer, open it directly, don't show a list of results with just 1 line. + * added an option to duplicate a biblio + * in search before adding a biblio, the search uses the standard Koha API. It means the user don't have to write the title exactly as in biblio.title (empty words are now excluded) + * changed behaviour for long fields : if a field contains more than 200 chars, the field will be edited as a textarea, not as a standard input. More conveinent. + * in item MARC editor, the item list is hidden if empty. + * in item MARC editor, the user can switch easily to the biblio again + * UNIMARC plugin for 4xx fields. In UNIMARC, 4xx are related to links. This plugin works like the authority popup, but search in biblio instead of authorities. To set it up, you must : + - define a 4xx$9 that will contain the biblio number of the linked biblio. In this 4xx$9 subfield, you must fill the "link to" with the field/subfield that is connected to biblio.biblionumber (090a by default). + - define the subfield you want in the 4xx field. This plugins deals "classic link" method (one of the 2 UNIMARC possibilities for links) + - choose one subfield and set unimarc_field_4xx.pl as plugin. + + === TOOLS === + * added a tool in misc/merge_authority.pl to merge 2 authorities (and modify biblios using them) This script can also be used to update biblios that use an authority that has been modified. + * added a tool in misc/migration_tools/check_marc_definition.pl that can be helpful when you migrate your datas. It compare the datas in the DB and the setting of MARC structure + It show all fields/subfields that are in the MARC DB but NOT in any tab (= fields used but not visible) Usually, this means you made an error in your MARC editor. Sometimes, this is something normal. + * Useful for translators only : modified tmpl_process to copy files that are not translated (like images, css... previously, they were not copied, it had to be done manually. Errors occurs because changes in english css or images were not reported to the translation directory giving a buggy translation) + + === ALL === + * added a stylesheet for the printer (useful in acquisition basket printing. The doNotPrint style can be used anywhere to remove a part of the screen during printing) + * new permissions : management & tools. You now have 2 new permissions : + - management : means the user can manage library parameters, but NOT system parameters. + - parameters : means the user can manage all parameters (including system parameters : marc structure, authorised values, system preferences. Was the only flag previously existing) + - tools : means the user can import/export datas & edit barcodes. + note that for compatibility reasons, a user having "parameters" can access everything. + * new permission scheme. In every template new variables are available. They are written CAN_user_permission, with permission being one of the permission flag. templates can now show or hidde menu entries depending on user permissions. For example, a user with just circ permissions should have only the "circulation" button on home page. Templates are NOT updated in this version (except for system parameters, as proof of concept), they will be in the next ones. But the scheme is ready. + +**** Minor + === OPAC === + * added ISSN to simple biblio detail + * added glasses to OPAC marc view, with same behaviour as in librarian interface. + * overdues items are more visible on opac-user page + * removed menu at bottom of basket page. They are badly shown in some browsers + * in biblio basket, showing item info (location, callnumber and barcode) + * if a search give only 1 result, the user reach it directly (without a 1 line list) + + === ACQUISITION === + * acquisition, module, adding a button to delete a line in order (was possible by setting qty to 0, but it's more user-friendly) + + === CATALOGUE === + * in authorities, added a "main entry" search field. Will limit the search to the main entry of the main field of the authority (the $a of the tag_to_report field) + + === BORROWERS === + * Show the current borrower in librarian interface, normal view of a biblio (with a link to jump to borrower page) + + === CIRCULATION === + * in circulation, adding a button to edit the borrower & go back to the circ screen directly. + + === TOOLS === + * changes in overdue_notice.pl script : + - moving all parameters at start of script => easier to maintain + - sending overdues for borrowers without mail to a "koha admin mail". + - ignoring borrowers with "overduenoticerequired" set to 0 (= don't send overduenotice) + - removing "print" to have a silent script (ie can be put in crontab) + +Diff 2.2.0 => 2.2.1 +******************* +BUGFIXES + +***** Critical +* fix for http://bugs.koha.org/cgi-bin/bugzilla/show_bug.cgi?id=811 : The OPAC requires uses to log in to view virtual shelves, but it does not require a user with librarian privileges +* multiple biblio subtitles are correctly stored & shown in simple (non-MARC) view, even after a biblio modif. +* multiple main authors are now correctly handled in simple (non-MARC) view +* it was possible to create a cardnumber that was already defined + +***** Minor +* in serials module >> add subscription >> select biblio : The next / previous page were invalid. +* in serials module >> add subscription >> select biblio : impossible to report the biblio when there is a quote in it (' was not escaped) +* "waiting" status was often inaccurate for a reserved material (should show "in transit" while not in destination branch) +* issn were not stored correctly in non-MARC DB on biblio modification +* in catalogue, modifs were not stored properly the non-MARC item DB. Affect only libraries without barcodes. +* in thesaurus structure, deleting a tag delete the tag in each authtype, not only in the selected authtype. +* plugin unimarc_225a (seriestitle) did not show the seriestitle list, when there was no ISBN +* in authority structure, trying to delete a tag in an authority type, deleted the tag in the default authority type. +* in authority structure, trying to define the 400$0 created a "400$@" ("subfield" for fields <100) +* many bugfixes for a better mod_perl support +* bug in acquisition : the title was also stored as subtitle. + +IMPROVEMENTS +***** Major +* serial subscriptions : modifs to handdle correctly more than 1 subscription of the same biblio. Enter subscription detail in subscription notes (like "for branch XX" or "for 2nd floor"). The subscription details are all shown in OPAC. +* serial subscriptions : you can now delete a subscription that is not yet active (= has only 1 issue in "waiting" state) +* adding series title and publication year limits in opac-search form. +* improvements and fixes in Nelsonville templates +* adding a brief/detailled display in biblio basket view. + +**** Minor +* in biblio basket, adding the possibility to open a biblio (in the main window) by clicking on the title +* circulation >> issue : showing borrowernumber code just after the borrower name. +* the search on barcodes has been changed to "start" instead of "contains". It's more logic +* in ISBD & MARC view, codes like itemtypes, authorized values... are shown in complete form, not as code. +* do not show reserve fees if they are not applicable (0) +* show a message for libraries with no reserve possible, when the user clic on "request" button. +* adding a "un-debar" button in circulation screen, to unset "debarred" flag for a borrower (ported from nelsonville templates) +* adding a link to member page to jump to issues page directly (ported from nelsonville templates) +* Adding two print versions of the member details screen (ported from nelsonville templates) +- moremember-print.tmpl is a full-page view with information about the patron, issues, and reserves +- moremember-receipt.tmpl is a brief view with information about issues, designed to be appropriate for a slip printer. +* member detail : adding opac login in main page +* adding notforloan column in admin/itemtypes list +* in unimarc_field_225a plugin (collection chooser), ordering the list alphabetically +* in member search, adding an option to order result by name or cardnumber +* added the price in order history + + +Diff 2.2RC5 => 2.2.0 +******************** +BUGFIXES + +***** Critical +* rolling back lock_tables_privs = 'Y' during install stage (too many problems) The option is shown in bulkmacimport instead. +* bugfix for the search on a MARC detail, when you clic on the magnifying glass (caused an internal server error) + +***** Minor +* error in authority => biblio 'jumper' that make the jump fail (was a remaining ') +* when modifying a biblio, on a repeated field with many subfields, the test to show empty subfields in X>1 was wrong : the missing subfields of the 1st field were repeated. +Example : +606 has $a$x$z +1st is 606$a (so $x$z empty) +2nd is 606$a$x +The marc editor in the 2nd field showed before this fix : +606 $a a_value + $x another_value + $x + $z +(the 2nd $x being useless) +* Authorities : Minor changes in summary "exploding" (the 3 digits AFTER the subfield were not on the right place). +* partial support of the "linkage" MARC feature : if you enter a "link" on a MARC subfield, the magnifying glass won't search on the field, but on the linked field. I agree it's a partial support. Will be improved, but I need to investigate MARC21 & UNIMARC diffs on this topic. +IMPROVEMENTS + +***** Major +* New systempref parameter : opacstylesheet If this parameter is set to a stylesheet URL, this stylesheet will be used instead of the opactheme one. With this parameter, you can have your own stylesheet for OPAC, that will be used and kept when you update your version of Koha. The systempref must be a complete URL (http://www.koha.org/stylesheet/somestylesheet.css for example) +* improvements in shelves management in OPAC (synch'ing with librarian interface) : the user can modify a bookshelf, add a book into a bookshelf from the biblio, create a bookshelf "on the fly", from the bookshelf popup. +* new directory migration_tools in $KOHA/misc Will store various migration tools. bulkmarcimport has been moved here. + +**** Minor +* minor change in MARCdetail : when a field is repeated, the field header is not repeated but replaced by a nice little empty space. + +Diff 2.2RC4 => 2.2RC5 +********************* + +BUGFIXES + +***** Critical +* limiting the number of search term to 8. There was no limit before, but 8 words seems to be the upper limit mySQL can deal with (in less than a second. tested on a DB with 13 000 items) In 2.4, a new DB structure will highly speed things and this limit will be removed. FindDuplicate is activated again. +* bugfixes in french translation (that made cataloguing in french impossible) +* set lock_tables_privs = 'Y' during install stage. Note this requires a mysql version not too old. + +***** Minor +* during update, if the user enter a different directory for backup than the default one, the updater does not obey and stores in default directory anyway ! +* minor (spelling) fix for adding an organization +* member search (bug 851) : stripping out comma and apostrophe from search terms +* various methods to split subjects (depending on OS, a / problem) + +IMPROVEMENTS + +***** Major +* circulation / issue : adding a button to cancel an issue when a confirmation is required (bug #858) +* circulation / issue : adding a checkbox to confirm reserve cancel when a reserved book is issued by someone else (bug #858) +* virtual shelves : adding feature to create a virtual shelf on the fly, when adding a biblio, and feature to modify a virtual shelf name/status +* catalogue : adding a systempref to define default view in OPAC (either normal, MARC or ISBD). Created automatically during install or update. Check that you have a Koha >> parameters >> systempreferences >> BiblioDefaultView, Variable type : Choice, Variable options : normal|marc|isbd + +**** Minor +* an improvement has been done in DB calls that needs a new index. It's automatically added in fresh installs, but for updates, run the following SQL command : +ALTER TABLE `marc_subfield_structure` ADD INDEX ( `kohafield` ) +* adding a systempref to define default view in OPAC (either normal, MARC or ISBD). Created automatically during install or update. Check that you have a Koha >> parameters >> systempreferences >> BiblioDefaultView, Variable type : Choice, Variable options : normal|marc|isbd +* the list of authorities types is now ordered by authtypetext. Thus you can use the "space trick" : if you add a space before an authtype text, it's shown first. Useful when you have an authority type that you use more often than others. +* authoritiy list shown in authtypetext order (so authtypetext with a space appear first, hint used everywhere else for lists) +* some minor html changes (like changing "images" numbers in "text" numbers for result list page numbers. + +Diff 2.2RC3 => 2.2RC4 +********************* +BUGFIXES + +***** Critical +1 CRITICAL bug in acquisition (another one...) : when MARC=ON, and an order line is created from an existing biblio (to buy another item), the MARC biblio is lost and replaced by the non marc one (that has a lot less informations...). To solve the problem, the biblio can no more be modified after the order has been placed. Less feature, but more reliable ! (not simple solution to solve this problem. Would imply to rewrite the MARC biblio from the non marc datas, and no API is provided for this yet) +2 CRITICAL bugfix in Biblio.pm, removing &branches declaration (was due to an untested cvs rollback, opac-search.pl was crashing) +3 CRITICAL bugfix in Biblio.pm when MARC=OFF. subjects were stored and immediatly deleted. And not stored correctly in MARC part of the biblio. (thanks to Waylon Robertson) + +***** Minor +1 bugfix in updatedatabase (auth_header creation table). Don't affect previous install of 2.2, only upgrades 2.0 => 2.2 +2 reading rec : Fixing link to toggle between full and limited display +3 bugfix for moremember.pl that no longer outputed item type for issues +4 defaulting actual cost to estimated cost (was 0 by default) +5 bugfix : in biblio search, - and other signs where not properly managed. Leroy-Beaulieu could not be found +6 the popup of the 210c plugin closes when a collection is choosed +7 bugfix : could not select a biblio in subscription creation if the book was not for loan +8 minor fixes in spelling in subscription +9 adding acquisition in default userflags. This flag can be set for librarians that have access to acquisition +10 in subscription enddate calculation, bugfix when subscription based on number of issues (worked when based on subscription length) +11 in subscription next issue date calculation, bugfix when subscription frequency is 1/quarter. +12 datelastseen is updated when the book is returned +13 moredetail.pl shows incorrect date, incorrectly formatted (bug #689) +14 DuplicateFinder has been disabled : sometimes goes into a looonnnggg lasting loop. +15 when a query returns only one result, adding it to basket did not work. +16 deletion of a suggestion was buggy. Now fixed +17 for installation of Koha under Windows there is a bug with subject splitting. Now fixed. (thanks to Waylon Robertson) + +IMPROVEMENTS +***** Major +1 a lot in book shelves +2 Submitting with no barcode in issues should clear for next patron (bug #865) +3 screen added to see late issues from a given bookseller +4 Koha should now work under mod_perl (Release Manager don't use mod_perl. fixes comes from A. Tarallo, Argentina, that ensure Koha works fine with mod_perl with the patches applied) + +**** Minor +1 show also item tags into marc list of fields (in librarian search interface) +2 email sent basket : the sender can give it's name, in case the basket is sent to a friend, not to itself +3 removing useless string in isbd view +4 cataloguing, in isbnsearch, after searching a title/ISBN, the librarian can choose the framework (+ it's a cataloguing screen, not an acquisition one) +5 serials : in issues management, the waited/late issues bloc is before the collection state bloc. +6 serials : the intranet note has been removed, it's useless +7 after an authority is added/modified, go to this fresh authority (instead of authority-home) +8 search option in auth-top +9 in OPAC, the itemcallnumber search is a "start by" search (was a contains) +10 opac note is defaulted to '' (was 0, that means nothing) +11 adding blank to relshiploop (altrelationship) loop (Bug ???) +12 when deleting an itemtype, don't check issuingrules, but delete them too +13 For MARC=OFF installation, Waylon submitted a script to rebuild MARC part of the catalogue. It's in misc/updatemarc_subjects.pl (thanks to Waylon Robertson) + +Diff 2.2RC2 => 2.2RC3 +********************* +* CRITICAL bug in acquisition : biblio badly stored in MARC part of Koha, deleting another biblio... +* CRITICAL problem : the duplicate finder (when adding a biblio) has performances problems under certains circumstances. +* bug #862 fixed : Upgrade does not work (from 2.2RC1 to 2.2RC2) +* bugfix in acquisition, when a line is modified, aqorderbreakdown was duplicated. (Seems it was a mysql return value depending on mysql version) +* bugfix in setting user permissions (they were stored, but not shown correctly after) +* bugfix in translation error for basket sent in OPAC +* bugfix in 225a plugin (editor chooser) +* adding itemcallnumber entry in systempreferences during install +* error in biblio detail showing when MARC=ON (bug from RC2, did not exist before) +* bug in acceptorreject OPAC suggestion (bug from RC2, did not exist before) +* Not really a bug but : stopword must not be empty. If it's empty, the search fail. +* During install, the user can load french and english stopwords if he want. +* French librarian interface seems OK +* addbook (1st page when MARC=ON) is a catalogue screen, not an acquisition one +* The barcode is shown in the list of books issued by a borrower in opac-user page. + +Diff 2.2RC1 => 2.2RC2 +********************* +* bugfix for import in reservoir : title and isbn where not extracted. +* bugfix in OPAC : it was possible to reserve books that where "notforloan" +* bugfix in circulation : no warning when a reserve was made on a book that you try to issue to someone else. +* bugfix & improvement for catalogue management behaviour when MARC=OFF +* bugfix in bookshelves (in CVS, probably not in official tar.gz) +* bugfix in online help (in CVS, probably not in official tar.gz) + +============= +INSTALLATION +============= +* Download the package +* tar xvfz koha-version.tar.gz +* cd koha-version +* ./installer.pl +* READ and FOLLOW the instructions + +READING what is on screen during installation is VERY important. Some decisions you make during install stage are very hard to reproduce after. + + +UPGRADE from previous 2.0.0preX or RCx version +******* +* Download the package +* tar xvfz koha-version.tar.gz +* cd koha-version +* ./koha.upgrade +* Follow the instructions + +UPGRADE from previous 1.2.x version : +******** +UPGRADE TO A 2.0.0 version before upgrading + +UPGRADE from a 2.1.x version is NOT AVAILABLE. Don't install 2.2 on a 2.1.x test database. A lot of DB changes have been done since 2.1.x & cannot be handled by the DB updater. + +============= +NEW FEATURES +============= +Koha 2.2 has, of course, all the previous features from Koha (acquisition, cataloguing, circulation, members modules, OPAC, complete MARC support...) plus the following new ones : + +General : +********* +* (almost) complete rewrite of librarian GUI : now Koha uses CSS, and is easier to use. However, users of Koha 2.0.0 won't be lost, as the general organisation of the product has not changed. +* Online Help : an online help is available everywhere in the librarian interface. It's complete in the parameters section of Koha and for new features. It will be completed for the rest of the product. +* Better LDAP suport : Koha 2.2 can be "connected" to a LDAP server and get all borrower informations from there (including borrower category where applicable). However, to avoid problems for libraries without LDAP server, the LDAP features have been stored in modules/C4/Auth_with_ldap.pm file. The standard Auth.pm don't use it. If you want LDAP, just perldoc Auth_with_ldap.pm and manually tune your Auth package ! +* Auto installer : if you install koha with ./install -i /path/to/auto_install_file, then Koha will be installed almost without question. A very usefull feature for developpers that want to install/uninstall Koha quite often. A sample of auto_install_file is provided in misc/auto_install_file. +* Uninstaller : run misc/uninstall.pl, provide the mysql root password. that's all. Koha is completely deleted and can be reinstalled. With the previous feature, it's a very nice solution for test platform. +* mod_perl : Koha should now work under mod_perl, that gives a big performance boost (Release Manager don't use mod_perl. fixes comes from A. Tarallo, Argentina, that ensure Koha works fine with mod_perl with the patches applied) +* Nelsonville have shared their templates. They are available as NPL theme. +* Language : in this version, only english and french versions are fully functionnal. Spanish and chinese are provided, but not fully functionnal. Polish, German, Arabic, Hebrew, and many other languages have volunteers and should be here in a future 2.2.x + + +BE CAREFUL with uninstaller : +1- This script does not ask for confirmation after mysql root password. +2- This script uses /etc/koha.conf. If you have more than 1 koha on your server, use /etc/koha.conf for a "deletable-test" one. + +Acquisition : +************* +* suggestion : borrowers can suggest items to buy in OPAC. Then, the librarian can manage (accept or refuse) and order them. +* possibility to close a basket, he can't be modified then +* order a basket by publisher or by bookfund/publisher +* search order history + +Cataloguing : +************* +* Cataloguing frameworks : you can define as many frameworks as you want. A framework describes how a material is catalogued (which fields, subfields, which constraints on them...) +* MARC authorities : Koha now supports authorities in MARC. You can define the MARC structure for authorities like for biblios. +* New contraints can be set for subfields : + - subfield is hidden : appears in MARC editor, but not in OPAC. + - subfield is an URL : the field can be cliqued + - related fields : a search made on a subfield also uses other subfields automatically. Using this feature, a search on "title" can search title, but also subtitle, uniform title,... +* Item location can now be done on 3 levels : the branch, the location (room), the callnumber. +* The callnumber can now be calculated from the LC, the dewey, or be freely (and manually) entered. +* Duplicate finder : this powerful feature help your cataloguers avoiding duplicate biblios. +* ISBD view : in librarian interface as well as in OPAC biblios can be shown in standard (default) presentation, in MARC (human readable) or ISBD. The ISBD view can be tuned by the librarian team. There is also a systempref to define default view in OPAC (either normal, MARC or ISBD). Created automatically during install or update. Check that you have a Koha >> parameters >> systempreferences >> BiblioDefaultView, Variable type : Choice, Variable options : normal|marc|isbd +* UNIMARC plugin for every 1xx fields : ESNMP have developped all the plugins for UNIMARC fields 1xx. Those fields are coded fields. + +Serial cataloguing : +******************** +Koha 2.2 manage serial subscriptions and issuing of those subscriptions. (Only a few words to describe a very important & complete module !) + +Catalogue search : +****************** +* Search in OPAC and librarian interface has been improved. They now are exactly the same. +* Spelling suggestion : before sending a request, the user can ask for spelling suggestion. This shows other forms of words entered that would give results. Give poor results for instance, the Koha team is thinking to a true spellchecking. +* The user can select the order of the results and the number of results shown. + +Members : +********* +* The borrowernote field is shown on issue and transfer. +* The textmessaging field appears in OPAC when the user logs in. + +Circulation : +************* +* New issuing rules : Issuing can be set for branch / borrower type / item category, by number of days and number of items available. +* "joker" issuing rules : the library can set issuing rules for "any branch" or "any borrower type", or "any item category". +Both issuing rules are cumulative : a library can set issuing rules to 10 books, 5 CD, but 12 total (books or CD). + +OPAC : +****** +In Koha 2.2, koha has : +* baskets. A basket can be printed or sent by mail to the borrower +* virtual shelves : a virtual shelf can be created and filled by any logged borrower. A given virtual shelf can be private or public. Or even free-for-all. +* language chooser : the borrower can change the language on the fly. The default language being still choosen by the library +* complete CSS definition. With a new systempref parameter : opacstylesheet. If this parameter is set to a stylesheet URL, this stylesheet will be used instead of the opactheme one. With this parameter, you can have your own stylesheet for OPAC, that will be used and kept when you update your version of Koha. The systempref must be a complete URL (http://www.koha.org/stylesheet/somestylesheet.css for example) + +Barcode printing : +****************** +A new module has been added to the parameters section : barcode printing. It requires the PDF::Api2 Perl package and can print barcode on + +============ +Koha Future +============ +The future of Koha is being discussed on mailing lists and on koha wiki : http://www.saas.nsw.edu.au/koha_wiki/index.php?page=KohaRoadmap2.2.x diff --git a/misc/sql-datas/english/sample_usmarc.mrc b/misc/sql-datas/english/sample_usmarc.mrc new file mode 100644 index 0000000000..e83bcfa342 --- /dev/null +++ b/misc/sql-datas/english/sample_usmarc.mrc @@ -0,0 +1 @@ +00773 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000090010809200140011710000190013124500520015026000400020230000210024265000480026365000360031170000180034794200240036595200390038995200390042895200400046736129LVL20030630144241.0950203s1993 nyu 00011 eng a93001058 a0802712770 a 93001058 c1d1 aW Paulson10aPaulsen, Gary.10aMurphy's stand /cGary Paulsen and Brian Burks.0 aNew York :bWalker and Co.,cc1993. a118 p. ;c22 cm. 0aMurphy, Al (Fictitious character)xFiction. 0aWidowersxFiction.zWest (U.S.)10aBurks, Brian. aLVLcWESkW Paulson bLB2p34000000013475r2.00u4009u1 bLB2p37000000016969r2.00u4010u2 bLB1p33000000021769r10.59u4011u300806 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000090010809200140011710000200013124500590015125000290021026000460023930000470028550400450033260000510037765000590042894200240048795200410051171224LVL19990401000000.0691126r19751952nyuach b 00110beng a69011484 a0393074463 a 69011484 c2d2 aB Lincoln10aLorant, Stefan.10aLincoln; a picture story of his life /cStefan Lorant. aRevised and enlarged ed.0 aNew York :bBonanza Books,cc1975, c1952. a336 p. :bill., facsims., ports. ;c32 cm. a"Contents and bibliography": p. 329-334.10aLincoln, Abraham,d1809-1865xPictorial works. 0aPresidentsxBiographyxPictorial works.zUnited States aLVLcBIOkB Lincoln bMAINp31000000036702r10.00u4012u400892 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000090010809200130011710000210013024500640015126000440021530000210025950000270028065000530030765000290036065000290038994200230041895200410044195200400048295200400052295200400056236130LVL20010809122732.0950111s1995 nyu 00011 eng a95005223 a0312131461 a 95005223 c3d3 aW Cotton10aCotton, Ralph W.10aPowder river :ba Jeston Nash adventure /cRalph W. Cotton.0 aNew York :bSt. Martin's Press,cc1995. a325 p. ;c22 cm. a"A Thomas Dunne book." 0aPowder River Expedition, 1865xHistoryxFiction. 0aOglala IndiansxFiction. 0aDakota IndiansxFiction. aLVLcWESkW Cotton bMAINp32000000057186r13.54u4013u5 bLB2p34000000005163r13.54u4014u6 bLB2p37000000016926r13.54u4015u7 bLB1p33000000022284r13.54u4016u800880 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000090010809200150011710000250013224500480015726000570020530000280026252001870029060000250047765000290050265000300053194200250056195200400058643149LVL19990313000000.0930315s1993 caua j 00010beng a93012932 a0892391197 a 93012932 c4d4 aJNF 971 Li10aLittlechild, George.10aThis land is my land /cGeorge Littlechild.0 aEmeryville, Calif. :bChildren's Book Press,cc1993. a30 p. :bill. ;c32 cm. aUsing text and his own paintings, the author describes the experiences of Indians of North America in general as well as his experiences growing up as a Plains Cree Indian in Canada.10aLittlechild, George. 1aCree IndiansxBiography. 1aIndians of North America. aLVLcJNFkJNF 971 Li bLB1p33000000019268r13.33u4017u901145 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000090010809200170011710000200013424500730015426000340022730000380026152001090029965000350040865100760044394200270051995200400054695200420058695200420062895200400067095200400071095200410075095200400079150168LVL19991112000000.0860228s1986 nyua j 00010 eng a86003362 a0689312504 a 86003362 c5d5 aJNF 974.4 Se10aSewall, Marcia.14aThe pilgrims of Plimoth /cwritten and illustrated by Marcia Sewall.0 aNew York :bAtheneum,cc1986. a48 p. :bcol. ill. ;c22 x 27 cm. aChronicles, in text and illustrations, the day-to-day life of the early Pilgrims in the Plimouth Colony. 1aPilgrims (New Plymouth colony) 1aMassachusettsxSocial life and customsyColonial period, ca. 1600-1775. aLVLcJNFkJNF 974.4 Se bLB2p37000000006205r9.25u4018u10 bMAINp32000000037183r14.36u4019u11 bMAINp32000000037184r14.36u4020u12 bLB1p36000000003025r9.25u4021u13 bLB2p34000000009370r9.25u4022u14 bMAINp31000000041920r9.25u4023u15 bLB1p33000000014719r9.25u4024u1600317 2200133 450000100060000000300040000600500170001000800410002709000090006810000180007724500240009594200230011995200410014257187LVL19990219000000.0950324s19uu 000 0 eng d c6d6 aTuttle, Gene.14aThe range guardian. aLVLcAFkAF Tuttle bMAINp31000000030721r2.29u4025u1700890 2200229 4500010001300000020001500013082001000028090000900038100002800047245014200075260003100217300004100248500002000289500005600309520013100365650003100496650002900527650001600556650002400572942002200596952004200618 a86032095 a08109185790 a745.5 c7d710aSterbenz, Carol Endler.10aAmerican country folk crafts :b50 country craft projects for decorating your home /cCarol Endler Sterbenz ; photography by Beth Galton.0 aNew York :bAbrams,c1987. a174 p. :bill. (some col.) ;c29 cm. aIncludes index. a"In association with McCall's needlework & crafts." a"In association with McCall's needlework & crafts." Gives easy-to-follow-instructions and patterns for 50 handicraft projects. 0aHandicraftzUnited States. 0aFolk artzUnited States. 0aHandicraft. 0aFolk art, American. aLVLcNFk745.5 St bMAINp31000000023370r17.67u4026u1800551 2200217 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000090011009200120011910000180013124500430014925000120019226000450020430000210024994200210027095200420029136131LVL20020320124526.0941028s1995 mau b 00011 eng c a94043191 a0316596752 a 94043191 c8d8 aAF Nagy10aNagy, Gloria.10aMarriage :ba novel /cby Gloria Nagy. a1st ed.0 aBoston :bLittle, Brown and Co.,cc1995. a428 p. ;c25 cm. aLVLcAFkAF Nagy bMAINp32000000058308r13.47u4027u1900761 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000090010809200110011710000320012824500990016026000520025930000410031150000200035265000250037294200200039795200600041795200420047743150LVL19990313000000.0950508s1995 nyua 00110 eng a95019225 a0895778203 a 95019225 c9d9 a747 Ma10aManroe, Candace Ord,d1954-10aStorage made easy :bgreat ideas for organizing every room in your home /cCandace Ord Manroe.0 aPleasantville, N.Y. :bReader's Digest,cc1995. a128 p. :bill. (some col.) ;c30 cm. aIncludes index. 0aStorage in the home. aLVLcNFk747 Ma bMAINdMAINp32000000062767r14.50u4028u20v2003-09-01 bMAINp31000000058477r14.50u4029u2100615 2200181 4500020001500000090001100015100002700026245004400053260003600097300002300133440003300156942002200189952004000211952004100251952004000292952004000332952006100372 a0590692054 c10d1010aMartin, Ann M.,d1955-10aStacey's broken heart /cAnn M. Martin.0 aNew York :bScholastic,cc1996. a150 p. ;c20 cm. ; 4aThe Baby-Sitters Club ;v99. aLVLcJFkJ Martin bLB2p37000000007939r3.99u4030u22 bMAINp35000000002046r2.31u4033u23 bLB2p34000000014099r2.31u4034u24 bLB1p33000000026231r2.31u4036u25 bMAINdMAINp31000000119503r3.99u319823u26v2004-11-1800835 2200205 4500010001300000020001700013020004000030082001200070090001100082100003200093245006400125250001300189260004500202300005400247520023000301650002300531650002300554650002800577942002400605 a87040289 a0670821101 : a0140107711 (Penguin Books : pbk.) :0 a796.4/8 c11d1110aWallechinsky, David,d1948-10aThe complete book of the Olympics /cby David Wallechinsky. aRev. ed.0 aNew York, N.Y., U.S.A. :bViking,c1988. axxix, 680 p., [54] p. of plates :bill. ;c25 cm. aPresents the final standings in every event ever contested in the modern Olympics through 1980, with complete team rosters, and includes many anecdotes and interesting facts such as the age of the youngest Olympic competitor. 0aOlympicsxHistory. 0aOlympicsxRecords. 0aOlympic gamesxHistory. aLVLcNFk796.48 WAL01429 2200373 450000100060000000300040000600500170001000700150002700800410004202800300008303500160011309000110012909200140014010000320015424500630018626000530024930000850030250000360038750000160042350000550043950001160049451101160061051800220072665000170074865000410076565000390080670000210084570000290086670000310089570000300092671000330095694200240098995200420101336132LVL19990317000000.0sdufsngnn ee951004r19851960nyusgn dz ger d02aMK 42034bCBS Masterworks anav95000241 c12d12 aCD Mahler1 aMahler, Gustav,d1860-1911.14aDas Lied von der ErdecGustav Mahler.h[sound recording] /0 aNew York, N.Y. :bCBS Masterworkscp1985, c1960. a1 sound disc (63:15 min.) :bdigital, stereo. ;c4 3/4 in. +e1 pamphlet (19 p.) aCompact disc. Analog recording. aSong cycle. aGerman text with English translation in container. aText is a German translation of Chinese poems from Bethge's Die chinesische FlÈote, in part expanded by Mahler.0 aMildred Miller, mezzo-soprano ; Ernst HÈafliger, tenor ; Columbia Symphony Orchestra ; Bruno Walter, conductor. aRecorded in 1960. 0aSong cycles. 0aSongs (Medium voice) with orchestra. 0aSongs (High voice) with orchestra.1 aMiller, Mildred.1 aHaefliger, Ernst,d1919-1 aWalter, Bruno,d1876-1962.1 aBethge, Hans,d1876-1946.2 aColumbia Symphony Orchestra. aLVLcCDMkCD Mahler bMAINp32000000059711r12.01u4038u2700846 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000110010809200150011910000320013424500520016625000200021826000870023830000290032565000510035465000500040565000220045565100370047794200240051495200420053843151LVL20030626091016.0940627s1994 nyu d 00011 eng a94003779 a0679756485 a 94003779 c13d13 aLP Whitney1 aWhitney, Phyllis A.,d1903-10aDaughter of the stars /cby Phyllis A. Whitney. aLarge print ed. aNew York :bRandom House Large Print in association with Crown Publishers,cc1994. axiv, 318 p. ;c24 cm. ;. 0aFamilyxFiction.zWest VirginiazHarpers Ferry 0aWomenxFiction.zWest VirginiazHarpers Ferry 0aLarge type books. 0aHarpers Ferry (W. Va.)xFiction. aLVLcLPkLP Whitney bMAINp31000000051229r11.21u4039u2800330 2200133 450000100060000000300040000600500170001000800410002709000110006810000280007924500270010794200210013495200410015557189LVL19990219000000.0950324s19uu 000 0 eng d c14d141 aGrey, Zane,d1872-1939.14aThe Hash Knife outfit. aLVLcWESkW Grey bMAINp31000000034735r5.40u4040u2900807 2200253 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000110011009200130012124501150013426000630024930000290031250000200034165000110036171000260037274000520039894200220045095200410047295200400051343152LVL20030701123149.0940928s1994 nyua 00100 eng d a94075971 a0696200333 a 94075971 c15d15 a641.8 On00a100 great soup, stew & chili recipes /cby the editors of Ladies' Home Journal and Ladies' Home Journal Books.0 aNew York/Des Moines :bLadies' Home Journal Books,cc1994. a144 p. :bill. ;c22 cm. aIncludes index. 0aSoups.20aLadies' Home Journal.01aOne hundred great soup, stew and chili recipes. aLVLcNFk641.8 On bMAINp32000000052069r8.82u4042u30 bLB1p33000000020572r8.82u4043u3100980 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000110010809200150011910000230013424501020015725000120025926000480027130000340031950400640035352001290041760000530054665000160059970000200061594200250063595200420066050171LVL19990220000000.0910322s1992 nyua j b 00110beng a91014926 a0688088309 a 91014926 c16d16 aJB Kennedy1 aHarrison, Barbara.12aA twilight struggle :bthe life of John Fitzgerald Kennedy /cBarbara Harrison and Daniel Terris. a1st ed. aNew York :bLothrop, Lee & Shepard,cc1992. axii, 159 p. :bill. ;c26 cm. aIncludes bibliographical references (p. 139-140) and index. aDiscusses the childhood, family, and political career of the president who served from 1961 until his assassination in 1963.11aKennedy, John F.d1917-1963.q(John Fitzgerald), 1aPresidents.10aTerris, Daniel. aLVLcJNFkJB Kennedy bMAINp32000000039691r16.20u4044u3200466 2200169 450000100060000000300040000600500170001000800410002702000150006809000110008309200140009410000340010824500420014226000480018494200230023295200410025578247LVL20020226170523.0930324s19xx xxu 00010 eng d a0670549436 c17d17 aJ Du Bois1 aDu Bois, William Pene,d1916-10aPeter Graves /cWilliam Pene Du Bois.0 aNew York :bThe Viking Press,c1969, c1950. aLVLcJFkJ Du Bois bMAINp31000000004677r1.49u4045u3300872 2200217 4500010001300000020001500013090001100028100002600039245009500065260005000160300003400210440002500244520016300269651002800432651001600460651002100476700002800497942002700525952004200552952006000594 a94045826 a0791033996 c18d18 0aAylesworth, Thomas G.10aUpper Atlantic :bNew Jersey, New York /cby Thomas G. Aylesworth, Virginia L. Aylesworth.0 aNew York :bChelsea House Publishers,cc1995. a80 p. :bill. ; map ;c21 cm. 0aDiscovering America. aDiscusses the geographical, historical, and cultural aspects of New Jersey and New York. Includes maps, illustrated fact spreads, and other relevant material. 1aMiddle Atlantic States. 1aNew Jersey. 1aNew York (State)10aAylesworth, Virginia L. aLVLcJNFkJNF 974.7 Ay bMAINp32000000064896r18.95u4046u34 bLB2dLB2p37000000027305r18.95u320508u35v2004-11-3000791 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000110010809200110011910000250013024500440015526000390019930000340023850000290027250400640030165000150036594200200038095200420040095200420044295200410048443153LVL19990313000000.0931207s1994 nyua b 00110 eng a93048492 a0385425643 a 93048492 c19d19 a291 Oc10aOcchiogrosso, Peter.14aThe joy of sects /cPeter Occhiogrosso.0 aNew York, NY :bDoubleday,cc1994. axxx, 625 p. :bill. ;c24 cm. a"A Winokur/Boates book." aIncludes bibliographical references (p. 585-593) and index. 0aReligions. aLVLcNFk291 Oc bMAINp32000000052877r14.72u4048u36 bMAINp31000000051936r14.72u4049u37 bLB1p33000000020905r14.72u4050u3800843 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000110010809200180011910000200013724500420015726000400019930000400023944000210027950000200030052001600032065100390048094200280051995200420054750172LVL19990220000000.0930624s1987 ilua j 00110 eng a86030968 a0516012312 a 86030968 c20d20 aJNF 342.73 Co1 aColman, Warren.14aThe Constitution /cby Warren Colman. aChicago :bChildrens Press,cc1987. a45 p. :bill. (some col.) ;c22 cm. 2aA New true book. aIncludes index. aDescribes, in simple terms, how the Constitution was conceived, written, and ratified in 1788, explaining the document's basic concepts and Bill of Rights. 1aUnited StatesxConstitutional law. aLVLcJNFkJNF 342.73 Co bMAINp32000000040362r13.74u4051u3900339 2200145 450000100060000000300040000600500170001000800410002709000110006809200130007910000200009224500220011294200240013495200350015878248LVL19990331000000.0940516s19xx xxu 00010 eng d c21d21 aE Viorst1 aViorst, Judith.10aI'll fix Anthony. aLVLcEASYkE Viorst bMAINp31000000013881u4052u4000661 2200229 450000100060000000300040000600500170001000800390002702000150006603500140008109000110009509200150010610000170012124500330013826000420017130000380021352000800025165000220033165000120035394200250036595200410039043154LVL19990313000000.0941122c19891987nyua j 00010 eng a0590425668 a 86002534 c22d22 aJNF 582 Ca1 aCarle, Eric.14aThe tiny seed /cEric Carle. aNew York :bScholastic,c1989, c1987. a[32] p. :bcol. ill. ;c29 cm. ;. aA simple description of a flowering plant's life cycle through the seasons. 1aSeedsxDispersal. 1aPlants. aLVLcJNFkJNF 582 Ca bMAINp32000000054076r5.95u4054u4100712 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000110010809200150011910000200013424500360015426000290019030000280021944000240024750000370027194200250030895200420033395200420037595200410041750173LVL19990220000000.0930607s1993 nyub 00011 eng a93025511 a0312855648 a 93025511 c23d23 aSF Anthony10aAnthony, Piers.10aIsle of woman /cPiers Anthony.0 aNew York :bTOR,cc1993. a448 p. :bmap ;c24 cm. 0aGeodyssey ;vvol.1. a"A Tom Doherty Associates book." aLVLcSCIkSF Anthony bMAINp32000000066702r14.13u4055u42 bMAINp31000000044251r14.13u4056u43 bLB1p33000000016143r14.13u4057u4400381 2200133 4500010001600000090001100016100002400027245001800051260003500069300003500104942002400139952004200163952004200205 a60014899 /L c24d2410aLionni, Leo,d1910-10aInch by inch.0 aNew York,bI. Obolenskyc1960. a1 v. (unpaged)billus.c29 cm. aLVLcEASYkE Lionni bMAINp32000000009296r10.95u4058u45 bMAINp32000000009297r10.95u4059u4600613 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000110010809200130011910000220013224500540015426000410020849000380024950000200028765000140030794200220032195200400034364211LVL20010702105506.0910102s1991 nyu 00110 eng a91000132 a0812046404 a 91000132 c25d25 a658.4 Mi10aMiller, Robert F.10aRunning a meeting that works /cRobert F. Miller.0 aHauppauge, N.Y. :bBarron's,cc1991. 0aBarron's business success series. aIncludes index. 0aMeetings. aLVLcNFk658.4 Mi bLB1p33000000008369r2.94u4062u4700478 2200181 450000100060000000300040000600500170001000800410002702000150006809000110008309200140009410000180010824500390012626000410016530000260020694200230023295200410025571230LVL19990401000000.0950307s19xx xxu 00010 eng d a0373165730 c26d26 aAF Stuart10aStuart, Anne.10aSoldier & the baby /cAnne Stuart.0 aToronto :bHarlequin Books ;cc1995. a248p. ;bpa. ;c17cm. aLVLcAFkAF Stuart bMAINp31000000031298r3.50u4063u4801210 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000110010809200130011910000210013224500390015326000600019230000280025244000350028052002800031560000450059565000260064065000200066665000350068665000290072180000430075094200220079395200410081595200400085636136LVL20020422125430.0960129s1996 mnu j 00011 eng a96004501 a1556613962 a 96004501 c27d27 aJ Morris10aMorris, Gilbert.10aVanishing clues /cGilbert Morris.0 aMinneapolis, Minn. :bBethany House Publishers,cc1996. a138 p. ;c20 cm. ;dpa. 4aThe time navigators ;vbook 2. aIn order to earn money to help their sick younger brother and in hopes of locating their missing father, twins Danny and Dixie Fortune agree to further test their uncles' Chrono-Shuttle by traveling back to the time of the French and Indian War and meeting George Washington.11aWashington, George,d1732-1799xFiction. 1aTime travelxFiction. 1aTwinsxFiction. 1aBrothers and sistersxFiction. 1aChristian lifexFiction.10aMorris, GilberttTime navigators ;v2. aLVLcJFkJ Morris bMAINp32000000067397r3.57u4064u49 bLB2p34000000014507r3.57u4065u5000885 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000110010809200130011910000290013224500900016125000120025126000420026330000290030565000260033465000220036070000280038294200220041095200420043295200400047495200410051495200400055543155LVL20010908124410.0940801s1995 nyua 00010 eng a94030746 a0517596717 a 94030746 c28d28 a649.1 Be10aBerenstain, Stan,d1923-10aWhat your parents never told you about being a mom or dad /cStan and Jan Berenstain. a1st ed.0 aNew York :bCrown Publishers,cc1995. a125 p. :bill. ;c21 cm. 0aParentingxAnecdotes. 0aParentingxHumor.10aBerenstain, Jan,d1923- aLVLcNFk649.1 Be bMAINp32000000108754r15.00u4066u51 bLB2p34000000003227r8.85u4067u52 bMAINp31000000053463r8.85u4068u53 bLB1p33000000021848r8.85u4069u5400835 2200253 450000100060000000300040000600500170001000800410002702000150006809000110008309200150009410000280010924500630013726000450020030000550024550000140030051100250031452001190033965000220045865000190048070000180049994200240051795200400054157193LVL19990219000000.0910709s1985 caunnn 0f 10 eng d a1558000313 c29d29 aAC Sheldon aSheldon, Sidney,d1917-10aIf tomorrow comescby Sidney Sheldon.h[sound recording] / aBeverly Hills, CA :bDove Audio,cp1985. a2 sound cassettes (3 hrs. 6 min.) :banalog. mono. aAbridged. 0aRead by Roger Moore. aTracy Whitney, an idealistic computer technician sets out to destroy the crime lords who ruined her mother's life. 0aAmerican fiction. 0aTalking books.1 aMoore, Roger. aLVLcACkAC Sheldon bLB1p36000000012222r8.07u4070u5500710 2200241 450000100060000000300040000600500170001000800410002702000150006803500160008309000110009909200150011010000210012524500750014626000390022130000470026050000200030760000210032765000340034870000200038294200240040295200420042664212LVL19991027000000.0911125s1991 nyuaf 00110aeng d a0060183349 aonv90001680 c30d30 a973.927 No10aNorth, Oliver L.10aUnder fire :ban American story /cOliver L. North with William Novak.0 aNew York :bHarperCollins,cc1991. a446 p. [32] p. of plates :bill. ;c24 cm. aIncludes index.10aNorth, Oliver L. 0aIran-Contra Affair,d1985- ..10aNovak, William. aLVLcNFk973.927 No bMAINp31000000037495r15.00u4071u5601362 2200361 450000100060000000300040000600500170001000700100002700800410003702000150007803500160009303700150010909000110012409200160013524501910015126000560034230000550039850000750045350600310052851100490055952001170060852100240072552100140074953800370076360000180080065000210081870000270083970000300086670000180089670000190091494200250093395200420095871231LVL20000911192143.0vf cbahos941013p19891988cau129 g vleng d a1558800891 avid93001353 a80851bMCA c31d31 aAV Gorillas00aGorillas in the mistbthe adventure of Dian Fossey /cWarner Bros. and Universal Pictures ; produced by Arnold Glimcher and Terence Clegg ; directed by Michael Apted.h[videorecording] : aUniversal City, CA :bMCA Home Video,c1989, c1988. a1 videocassette (129 min.) :bsd., col. ;c1/2 in. aBased on the work by Dian Fossey and the article by Harold T.P. Hayes. aFor private home use only.1 aSigourney Weaver, Bryan Brown, Julie Harris. aStory of Dian Fossey's passionate involvement in the work to save the endangered mountain gorilla from poachers.8 aMPAA rating: PG-13. aGeneral.. aVHS Hi-fi Dolby surround stereo.10aFossey, Dian. 0aAdventure films.11aApted, Michael,d1941-11aWeaver, Sigourney,d1949-11aBrown, Bryan.11aHarris, Julie. aLVLcAVkAV Gorillas bMAINp31000000030407r65.79u4072u5700874 2200277 450000100060000000300040000600500170001000800390002701000170006602000150008304000130009805000230011108200080013409000110014210000230015324500870017626000500026330000110031350000410032452000960036565000200046165100300048170000180051194200260052995200410055578250LVL19990331000000.0780914s1978 mnu j 00011 eng a78010871 /AC a0871916630 aDLCcDLC1 aPZ7.C8187bWh 1978 a[E] c32d3210aCosgrove, Stephen.10aWheedle on the needle /cwritten by Stephen Cosgrove ; illustrated by Robin James.0 aMankato, Minn. :bCreative Education,c[1978] ap. cm. aCataloging based on CIP information. aA wheedle goes to great lengths to prevent the people of Seattle from disturbing his sleep. 1aSleepxFiction. 1aSeattle (Wash.)xFiction.10aJames, Robin. aLVLcEASYkE Cosgrove bMAINp31000000001965r1.39u4073u5800798 2200253 450000100060000000300040000600500170001000800410002702000150006803500160008309000110009909200140011010000240012424501040014826000390025230000320029165000300032365000270035365000190038094200230039995200410042295200410046395200400050443156LVL20021108101702.0950504s1995 nyua 00010 eng d a0028604199 anpl95000693 c33d33 a808.87 Ga10aGarner, James Finn.10aOnce upon a more enlightened time :bmore politically correct bedtime stories /cJames Finn Garner.0 aNew York :bMacmillan USA,cc1995. axi, 84 p. :bill. ;c19 cm. 0aFairy talesxAdaptations. 0aPolitical correctness. 0aWit and humor. aLVLcNFk808.87 Ga bMAINp32000000057316r5.97u4074u59 bMAINp31000000054361r5.97u4075u60 bLB1p33000000022361r5.97u4076u6100974 2200301 450000100060000000300040000600500170001000800390002702000150006603500160008109000110009709200150010810000190012324500480014226000390019030000400022965000130026994200250028295200400030795200410034795200410038895200400042995200410046995200400051095200410055095200410059195200400063250175LVL20000803000000.0940803s1995 nyua j 00010 eng a0823412385 anpl96000758 c34d34 aJNF 525 Gi10aGibbons, Gail.14aThe reasons for seasons /cby Gail Gibbons.0 aNew York :bHoliday House,cc1995. a[32] p.bcol. ill. ;c26 cm. ;dpa. 1aSeasons. aLVLcJNFkJNF 525 Gi bLB2p37000000002987r3.96u4077u62 bMAINp32000000063943r3.96u4078u63 bMAINp32000000063944r3.96u4079u64 bLB1p36000000002597r3.96u4080u65 bMAINp35000000002321r3.96u4081u66 bLB2p34000000013600r3.96u4082u67 bMAINp31000000059383r3.96u4083u68 bMAINp31000000059384r3.96u4084u69 bLB1p33000000025400r3.96u4085u7001202 2200373 450000100060000000300040000600500170001000800390002701000130006602000270007903500140010605000200012008200120014009000110015209200150016310000190017824500860019726000500028330000330033349000240036650000380039050000200042852000870044865000280053565000230056365000240058665000170061070000260062770000270065380000400068094200250072095200420074595200410078764213LVL19990217000000.0890227s1990 nyua j 00110 eng a89000917 a1854351532 (lib. bdg.) a 8900091700aQ164.bK45 199000219a542 c35d35 aJNF 542 Ke10aKerrod, Robin.10aFire and water /cRobin Kerrod ; illustrated by Mike Atkinson and Sarah Atkinson.0 aNew York :bMarshall Cavendish Corp.,cc1990. a32 p. :bcol. ill. ;c21 cm. 0aSecrets of science. a"Cherrytree books"--Cover p. [4]. aIncludes index. aProjects, activities, and experiments explore different aspects of fire and water. 1aScientific recreations. 1aFirexExperiments. 1aWaterxExperiments. 1aExperiments.11aAtkinson, Mike,eill.11aAtkinson, Sarah,eill.1 aKerrod, Robin.tSecrets of science. aLVLcJNFkJNF 542 Ke bMAINp31000000035050r10.95u4086u71 bLB1p33000000007095r10.95u4087u7200354 2200145 450000100060000000300040000600500170001000800410002701000130006809000110008110000190009224500310011194200250014295200410016771232LVL19990401000000.0920214s19xx xxu 00010 eng d a63013695 c36d36 aDavis, Joseph.10aFinding out about mammals. aLVLcJNFkJNF 599 Da bMAINp31000000007877r2.44u4088u7300337 2200133 450000100060000000300040000600500170001000800410002709000110006810000170007924500460009694200200014295200410016236138LVL19990317000000.0930331s19xx xxu 00010 eng d c37d37 aWest, Jerry.14aThe Happy Holisters and the ice carnival. aLVLcJFkJ West bMAINp32000000016301r1.00u4089u7401266 2200313 450000100060000000300040000600500170001000700140002700800410004102800220008203500160010409000110012009200160013110000330014724000340018024501210021426000580033530000730039350000370046651100600050351800500056365000160061370000310062970000930066070001000075371000320085394200260088595200410091143157LVL19990313000000.0sdubsmenn n950727r19911985enksyn eng d02a430 439-2bLondon anav95000056 c38d38 aCD Schubert10aSchubert, Franz.d1797-1828.00aSymphonies,nD.759,rB minor.00aSymphonie No. 8 D 759b"Unvollendete" = "Unfinished" ; Symphonie No. 5 D 485 /cFranz Schubert.h[sound recording] :0 aLondon :aNew York :bDecca ;bLondon,cp1991, c1985. a1 sound disc (59.18) :bdigital, stereo. ;c4 3/4 in. +e1 pamphlet. aCompact disc. Digital recording.0 aChicago Symphony Orchestra, Sir Georg Solti, conductor. aRecorded: Sofiensall, Vienna, September 1984. 0aSymphonies.1 aSolti, Georg,cSir,d1912-12aSchubert, Franz.d1797-1828h[sound recording].nno. 5rB flat major,rD485tSymphonies,12aSchubert, Franz.d1797-1828h[sound recording].nno. 8rB minorrD759 "Unfinished"tSumphonies,2 aChicago Symphony Orchestra. aLVLcCDMkCD Schubert bMAINp32000000058412r8.98u4090u7500740 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000110010809200130011910000230013224500400015525000130019526000390020830000450024750000320029265000510032465000480037594200220042395200410044550176LVL20030604164149.0920928s1993 nyua 00010 eng a92036374 a0671848054 a 92036374 c39d39 a628.9 An10aAndriuolo, Robert.10aFirefighter /cby Robert Andriuolo. a10th ed.0 aNew York :bPrentice Hall,cc1993. avi, [32], 330 p. :bill. ;c28 cm. ; pa. a"An Arco book"--T.p. verso. 0aFire extinctionxExaminations, questions, etc. 0aCivil servicexExaminations.zUnited States aLVLcNFk628.9 An bMAINp32000000043455r8.26u4091u7600748 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000110010809200120011910000200013124500360015126000720018730000210025950000490028065000220032965000230035165000230037465100220039794200210041995200420044064214LVL19990217000000.0910920r19921957nyu j 00011 eng a91036730 a0671770748 a 91036730 c40d40 aJ Avery1 aAvery, Gillian.10aMaria escapes /cGillian Avery. aNew York :bSimon & Schuster Books for Young Readers,cc1992, 1957. a258 p. ;c22 cm. aPreviously published as: The warden's niece. 1aOrphansxFiction. 1aTeachersxFiction. 1aBrothersxFiction. 1aEnglandxFiction. aLVLcJFkJ Avery bMAINp31000000040567r15.00u4092u7700612 2200217 450000100060000000300040000600500170001000800410002702000150006803500160008309000110009909200150011010000240012524500350014926000370018430000280022194200240024995200400027395200410031395200400035443158LVL20000911143211.0951016r19951981nyu 00011 eng d a0451406176 anpl95001360 c41d41 aAF Coulter10aCoulter, Catherine.14aThe Duke /cCatherine Coulter.0 aNew York :bTopaz,c1995, c1981. a382 p. ;c18 cm. ;dpa. aLVLcAFkAF Coulter bLB2p37000000003029r4.12u4094u78 bMAINp31000000056616r4.12u4096u79 bLB1p33000000023785r4.12u4097u8000648 2200217 450000100060000000300040000600500170001000800390002702000150006603500200008109000110010109200130011210000290012524500560015426000390021030000230024961000620027265100320033494200230036695200410038950177LVL19990220000000.0850320s1985 nyu 00011 eng a0449206181 a 85007345 //r93 c42d42 aM Truman aTruman, Margaret,d1924-10aMurder at the FBI :ba novel /cby Margaret Truman. aNew York :bFawcett Crest,cc1985. a325 p. ;c18 cm.;.10aUnited States.bFederal Bureau of InvestigationxFiction. 0aWashington (D.C.)xFiction. aLVLcMYSkM Truman bMAINp32000000044403r3.95u4098u8100537 2200193 450000100060000000300040000600500170001000800410002702000150006809000110008309200140009410000320010824500360014026000440017630000240022094200240024495200340026895200410030264215LVL20010801101017.0930115s19xx xxu 00010 eng d a0553245503 c43d43 aW L'Amour1 aL'Amour, Louis,d1908-1988.10aBowdrie's law /cLouis L'Amour.0 aNew York :bBantam Books,cc1984, 1991. a214 p.bpa.c17 cm. aLVLcWESkW L'Amour bLB2p37000000017889u4099u82 bMAINp31000000016499r5.64u4100u8300757 2200253 450000100060000000300040000600500170001000800410002702000150006803500160008309000110009909200110011024501040012125000150022526000380024030000360027850000200031465000290033470000210036370000250038494200200040995200400042995200340046950178LVL19990220000000.0940407s1994 nyua 00100 eng d a0553565613 anpl94000375 c44d44 a032 Gu04aThe Guinness book of records: 1994 /cEditor, Peter Matthews; Founding Editor, Norris D. McWhirter. aBantam ed.0 aNew York :bBantam Books,cc1994. a819 p. :bill. ;c18 cm. ;dpa. aIncludes index. 0aCuriosities and wonders.10aMatthews, Peter.10aMcWhirter, Norris D. aLVLcNFk032 Gu bLB2p34000000003462r3.98u4102u84 bLB1p33000000018513u4103u8501197 2200337 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000110010809200130011910000210013224502140015326000340036730000280040150000580042950400410048765000100052865000200053870000200055870000250057870000320060394200220063595200400065795200410069795200400073895200410077895200400081978254LVL19991103000000.0900209s1990 nyua b 00110 eng a90032679 a0812044428 a 90032679 c45d45 a636.8 Be10aBehrend, Katrin.10aCats :bhow to take care of them and understand them /cKatrin Behrend ; with color photos by Monika Wegler and other cat photographers ; drawings by GyÈorgy Jankovicks ; consulting editor, Matthew M. Vriends.0 aNew York :bBarron's,cc1990. a60 p. :bill. ;c20 cm. aTranslation of: Katzen richtig pflegen und verstehen. aIncludes bibliographical references. 0aCats. 0aCatsxBehavior.10aWegler, Monika.10aJankovicks, GyÈorgy.10aVriends, Matthew M.,d1937- aLVLcNFk636.8 Be bLB2p37000000004166r2.92u4104u86 bMAINp35000000001221r8.51u4105u87 bLB2p34000000001859r8.51u4106u88 bMAINp31000000036053r8.51u4107u89 bLB1p33000000007597r8.51u4108u9000878 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000110010809200150011910000250013424500460015925000200020526000490022530000280027465000490030265000530035165000340040465000200043865000220045894200240048095200420050495200420054643160LVL20020905081843.0960306s1996 nyu d 00011 eng a96002409 a0679758976 a 96002409 c46d46 aLP Follett10aFollett, Ken,d1949-14aThe third twin :ba novel /cKen Follett. aLarge print ed.0 aNew York :bRandom House Large Print,c1996. a611 p. ;c24 cm. ;dpa. 0aWomen psychologistsxFiction.zUnited States 0aMan-woman relationshipsxFiction.zUnited States 0aGenetic engineeringxFiction. 0aTwinsxFiction. 0aLarge type books. aLVLcLPkLP Follett bMAINp32000000067526r13.20u4109u91 bMAINp31000000062332r13.20u4110u9201299 2200277 450000100060000000300040000600500170001000700090002700800410003603500160007709000110009309200170010424501020012126000870022330000630031044000900037350001090046352001180057253800160069065000120070671000270071871000600074580001470080594200280095295200410098064217LVL20030505195019.0vd cbaho950208s1994 ohu008 a 000 vleng d avid93001582 c47d47 aAV 616.99 Ca00aCancer preventioncThe Arthur G. James Cancer Hospital and Research Institute.h[videocassette] / aColumbus, OH :bThe Arthur G. James Cancer Hospital and Research Institutecp1994. a1 videocassette (10 min. 6 sec.) :bsd., col. ;c1/2 in. . 0aGood questions and straight answers : because where there are answers, there is hope. aDistribution of this series of educational videotapes was made possible by The Huntington National Bank. aA question and answer film describing how certain factors and life styles increase the risk of developing cancer. aVHS Format. 0aCancer.20aOhio State University.20aArthur G. James Cancer Hospital and Research Institute. aArthur G. James Cancer Hospital and Research Institute.tGood questions and straight answers : because where there are answers, there is hope. aLVLcAVNFkAV 616.99 Ca bLB2p37000000010451r10.00u4111u9300389 2200145 450000100060000000300040000600500170001000800410002701000130006809000110008110000190009224500710011194200200018295200410020236142LVL19990317000000.0930423s19xx xxu 00010 eng d a90003639 c48d48 aHeldman, Carl.10aHow to afford your own log home :bsave 25% without lifting a log. aLVLcNFk643 He bMAINp32000000029205r7.05u4112u9400656 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000110010809200110011910000320013024500390016225000200020126000460022130000210026765000220028894200200031095200420033095200420037250180LVL19990220000000.0940114r19941961meu d 00011 eng a94002968 a156054712X a 94002968 c49d49 aLP Fox1 aFox, Norman A.,d1911-1960.14aThe hard pursued /cNorman A. Fox. aLarge print ed. aThorndike, Me. :bThorndike Press,c1994. a284 p. ;c22 cm. 0aLarge type books. aLVLcLPkLP Fox bMAINp32000000047886r12.72u4113u95 bMAINp31000000048914r12.72u4114u9600610 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007904000130009405000310010708200130013809000110015110000260016224500430018825000140023126000350024530000190028035000110029994200230031095200350033357199LVL19990219000000.0720526s1972 mau 00011 eng a72004473 a0316532851 aDLCcDLC0 aPZ3.L8938aPS3523.O645bSk a813/.5/2 c50d5010aLoring, Emilie Baker.14aThe shining yearsc[by] Emilie Loring. a[1st ed.]0 aBoston,bLittle, Brownc[1972] a251 p.c20 cm. a$5.95. aLVLcAFkAF Loring bMAINp31000000015814u4115u9700576 2200205 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000110010809200120011910000400013124500560017126000530022730000280028094200210030895200410032964218LVL19990217000000.0970104s1991 ilu 00011 eng a90070191 a0842379088 a 90070191 c51d51 aAF Hill10aHill, Grace Livingston,d1865-1947.12aA voice in the wilderness /cGrace Livingston Hill.0 aWheaton, IL :bTyndale House Publishger,cc1991. a318 p. ;c18 cm. ;dpa. aLVLcAFkAF Hill bMAINp31000000063208r5.99u4116u9800835 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000110010809200110011910000170013024500640014725000120021126000390022330000330026244000240029552001130031965000200043265000200045265000210047294200220049395200420051571237LVL19990401000000.0960803s1994 nyua j 000 1 eng a92026528 a0060228695 a 92026528 c52d52 aE Coxe1 aCoxe, Molly.14aThe great snake escape /cstory and pictures by Molly Coxe. a1st ed. aNew York :bHarperCollins,cc1994. a48 p. :bcol. ill. ;c22 cm. 3aAn I can read book. aMirabel, a goose, and her friend, Maxie, a frog, get a scare one day when a king cobra escapes from the zoo. 1aGeesexFiction. 1aFrogsxFiction. 1aSnakesxFiction. aLVLcEASYkE Coxe bMAINp31000000061122r12.65u4117u9900403 2200145 450000100060000000300040000600500170001000800410002701000130006809000110008110000210009224500780011394200230019195200430021436143LVL19990317000000.0941224s19uu 000 0 eng d a91034847 c53d531 aRay, James Earl.10aWho killed Martin Luther King? :bthe true story by the alleged assassin. aLVLcNFk364.1 RAY bMAINp32000000032063r12.95u4118u10000361 2200145 450000100060000000300040000600500170001000800410002701000130006809000110008110000300009224500280012294200220015095200430017236144LVL19990317000000.0940510s19xx xxu 00010 eng d a65022875 c54d541 aJames, Henry,d1843-1916.14aThe Henry James reader. aLVLcAFkAF James bMAINp32000000005167r10.00u4120u10100296 2200121 450000100060000000300040000600500170001000800410002709000110006824500370007994200160011695200420013243163LVL19990313000000.0921111s19xx xxu 00010 eng d c55d5510aCOBBLESTONE 1983 SEPT. v.4 no.9. aLVLcPERkJ bMAINp32000000022099r1.95u4121u10200871 2200253 450000100060000000300040000600500170001000800390002701000130006602000170007903500160009609000110011209200140012310000130013724500650015026000740021530000350028949000260032452001590035065000190050965000220052894200250055095200420057557201LVL19990219000000.0820712s1981 nyua j 00011 eng a80085033 a0307020479 : aflb00329008 c56d56 aE Eugenie00aEugenie.10aJenny's surprise summer :bstory and pictures /cby Eugenie.0 aNew York :aRacine, Wis. :bGolden Press ;bWestern Pub. Co.,cc1981. a[24] p. :bcol. ill. ;c20 cm.0 aA little golden book. aAlthough she loves both of her foundling kittens, Jenny must decide which one she will take to the city apartment when her beach vacation comes to an end. 1aCatsxFiction. 1aBeachesxFiction. aLVLcEASYkE Eugenie bMAINp31000000002121r2.97u4122u10300340 2200145 450000100060000000300040000600500170001000800410002701000130006809000110008110000280009224500170012094200210013795200360015864220LVL19990217000000.0950324s19uu 000 0 eng d a63016524 c57d571 aGrey, Zane,d1872-1939.10aBoulder Dam. aLVLcAFkAF Grey bMAINp31000000029200u4123u10400347 2200145 450000100060000000300040000600500170001000800410002701000130006809000110008110000190009224500250011194200230013695200420015971240LVL20021009100726.0950324s19uu 000 0 eng d a84052465 c58d58 aFisher, Rosie.10aRooms to grow up in. aLVLcNFk747.77 Fi bLB2p31000000023579r10.00u4126u10500681 2200229 450000100060000000300040000600500170001000800390002701000130006603500140007909000110009309200110010410000190011524500640013426000400019830000260023861000530026465100520031770000200036994200200038995200420040978259LVL19990331000000.0731023c19431925mau 00110 eng a43014343 a 43014343 c59d59 a943 Hi1 aHitler, Adolf.10aMein kampf /cby Adolf Hitler; translated by Ralph Manheim. aBoston :bHoughton Mifflin,cc1943. axxi, 694 p. ;c22 cm.20aNationalsozialistische deutsche arbeiter-partei. 0aGermanyxPolitics and governmenty20th century.11aManheim, Ralph. aLVLcNFk943 Hi bMAINp31000000040195r5.00u4127u10600346 2200133 450000100060000000300040000600500170001000800410002709000110006810000400007924500270011994200230014695200430016943165LVL19990313000000.0930408s19xx xxu 00010 eng d c60d60 aPorter, William Sydney,d1862-1910.14aThe world of O. Henry. aLVLcACkAC Porter bMAINp32000000029582r21.95u4128u10700756 2200253 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000110011009200130012110000210013424501030015526000400025830000340029850400510033265000150038365000160039865000230041494200220043795200430045950184LVL20030524113052.0941031s1994 nyua b 00110 eng d a94071115 a1556114184 a 94071115 c61d61 a618.2 Bo1 aBovo, Mary Jane.14aThe family pregnancy :ba revolutionary holistic and medical guide to maternity /cMary Jane Bova. aNew York :bDonald I. Fine,cc1994. axvi, 317 p. :bill. ;c24 cm. aIncludes bibliography: p. (299-304) and index. 0aPregnancy. 0aChildbirth. 0aHolistic medicine. aLVLcNFk618.2 Bo bMAINp32000000053411r12.95u4129u10800681 2200229 450000100060000000300040000600500170001000800390002703500160006609000110008209200140009310000300010724500300013725000260016726000380019330000210023165000480025265000310030065100550033194200230038695200420040957203LVL19990219000000.0850514s1946 nyu 00010 eng aonv90000906 c62d62 a940.54 He10aHersey, John,d1914-1993.10aHiroshima /cJohn Hersey. aBantam Pathfinder ed.0 aNew York :bBantam Books,cc1946. a116 p. ;c18 cm. 0aWorld War, 1939-1945zJapanzHiroshima-shi. 0aAtomic bombxBlast effect. 0aHiroshima-shi (Japan)xHistoryyBombardment, 1945. aLVLcNFk940.54 He bMAINp31000000036266r5.95u4130u10900310 2200133 450000100060000000300040000600500170001000800410002702000150006809000110008324500180009494200220011295200420013471241LVL19990401000000.0920407s19xx xxu 00010 eng d a0929793021 c63d6310aBook of ABCs. aLVLcEASYkE Book bMAINp31000000025713r4.16u4131u11000343 2200145 450000100060000000300040000600500170001000800410002709000110006810000320007924500210011130000080013294200210014095200360016178260LVL19990331000000.0950323s19uu 000 0 eng d c64d64 aHolt, Victoria,d1906-1993.10aLandower legacy. ccm. aLVLcAFkAF Holt bMAINp31000000014874u4132u11100948 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009404300120010805000210012008200160014109000110015709200110016824500850017925000130026426000660027730000340034350000200037750400300039765000280042771000380045571000390049394200170053295200430054995200420059236147LVL19990317000000.0870427r19871979dcua b 00100 eng a87012182 a0870447009 a 87012182 an------0 aQL715.bW54 19870 219a599.097 c65d65 a599 Wi00aWild animals of North America /c[prepared by National Geographic Book Service]. aRev. ed.0 aWashington, D.C. :bNational Geographic Society,cc1987,1979. a406 p. :bcol. ill. ;c29 cm. aIncludes index. aBibliography: p. 398-399. 0aMammalszNorth America.20aNational Geographic Book Service.20aNational Geographic Society (U.S.) aLVLcNFk599 bMAINp32000000030070r24.20u4133u112 bLB1p33000000006581r24.20u4134u11301019 2200349 450000100060000000300040000600500170001000800390002701000170006602000370008302000250012003500160014504000200016105000240018108200120020509000110021710000220022824500530025026000370030326300100034030000200035051000320037051000100040251000140041252000920042652100340051852100090055265000190056165000190058094200270059995200430062643166LVL19990313000000.0861204s1988 nyu j 00011 eng a86027358 /AC a0394990048 (lib. bdg.) :c$12.99 a0394890043 :c$12.95 aflb00198612 aDLCcDLCdICrlF0 aPZ7.H6844bCat 19880 219a[E] c66d6610aHogrogian, Nonny.14aThe cat who loved to sing /cby Nonny Hogrogian.0 aNew York, N.Y. :bKnopf,c[1988] a8805. a(28) p. :bcol.0 aChildren's Catalog (Wilson) aSLJ*.0 aBooklist. aA cat who loves to sing trades one thing for another until he finally gains a mandolin.0 a3.6bFollett Library Book Co.2 aK-3. 1aCatsxFiction. 7aCatsxFiction. aLVLcEASYkE Hogrogian bMAINp32000000026082r11.89u4135u11400932 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000110010809200160011910000250013524501010016025000240026126000440028550001150032950400410044465000260048565000450051165000220055674000120057894200220059095200420061257204LVL19990219000000.0890516r19891983nyu db 00010 eng a89034705 a0802726356 a 89034705 c67d67 aL.P. 242 Sw10aSwindoll, Charles R.10aGrowing strong in the seasons of life: Spring /cCharles R. Swindoll ; foreword by Billy Graham. a1st large print ed.0 aNew York, N.Y. :bWalker,c1989, c1983. aOriginally published in 1 vol.: Growing strong in the seasons of life. Portland, Or. : Multnomah Press, c1983. aIncludes bibliographical references. 0aDevotional exercises. 0aSpringxReligious aspectsxChristianity. 0aLarge type books.00aSpring. aLVLcUkLP 242 Sw bMAINp31000000037225r9.95u4137u11500830 2200277 450000100060000000300040000600500170001000800390002701000190006603500200008504000130010505000170011808200120013509000110014710000460015824501130020426000350031730000460035235000110039850400240040965000240043365000220045770000170047994200200049695200360051636148LVL20020911120401.0710304s1968 nyuab b 000 0 eng a68024604 //r84 a 68024604 //r84 aDLCcDLC0 aNK3780.bC48 a738/.09 c68d681 aCharleston, R. J.d1916-q(Robert Jesse),10aWorld ceramics ;ban illustrated historycedited by Robert J. Charleston. [Authors]: John Ayers [and others] aNew York,bMcGraw-Hillc[1968] a352 p.billus. (part col.), maps.c35 cm. a25.00. aBibliography: p. 8. 0aPorcelainxHistory. 0aPotteryxHistory.10aAyers, John. aLVLcNFk738 Ch bMAINp32000000011476u4138u11600388 2200145 450000100060000000300040000600500170001000800410002701000130006809000110008110000210009224500630011394200230017695200430019943167LVL19990313000000.0930421s19xx xxu 00010 eng d a91029370 c69d691 aGoddard, Donald.14aThe insider :bthe FBI's undercover "Wiseguy" goes public. aLVLcNFk363.2 GOD bMAINp32000000032368r12.39u4139u11700821 2200265 450000100060000000300040000600500170001000800410002702000140006803500160008209000110009809200130010924500650012226000610018730000300024850000210027865000140029965000290031374000250034294200220036795200420038995200410043195200420047295200410051450186LVL19990220000000.0950518s1995 iaua 00100 eng d a069204053 anpl95000744 c70d70 a641.5 Ca00aCampbell's easy summer recipes :bquick 30-minute suppers. .0 aDes Moines, IA :bMeredith Publishing Services,cc1995.. a96 p. :bill. ;c21 cm. . aIncludes index.. 0aCookery.. 0aQuick and easy cookery..01aEasy summer recipes. aLVLcNFk641.5 Ca bMAINp32000000057598r7.12u4140u118 bLB2p34000000005416r7.12u4141u119 bMAINp31000000054460r7.12u4142u120 bLB1p33000000022440r7.12u4143u12100619 2200205 450000100060000000300040000600500170001000800410002703500160006809000110008409200160009510000310011124500610014225000300020326000400023330000350027365000360030894200260034495200430037057206LVL19990219000000.0931119s1909 ohuab 00010 eng d anpl93001514 c71d71 aLH 970.1 Ta1 aTaylor, Edward Livingston.10aOhio Indians and other writings /cby Edward Livingston. aFor private distribution. aColumbus, OH :bF. J. Heer,cc1909. a347 p. :bill.; maps ;c23 cm. 0aIndians of North AmericazOhio. aLVLcREFkLH 970.1 Ta bMAINp31000000045493r10.00u4146u12201065 2200289 450000100060000000300040000600500170001000800390002701000170006602000150008304000130009805000220011108200140013309000110014710000260015824500760018426000390026026300100029930000110030952002580032065000480057865000230062665000390064965000220068894200220071095200430073271244LVL19990401000000.0900326s1990 mau j 00011 eng a90035331 /AC a0395536804 aDLCcDLC00aPZ7.O237bIs 199000220a[Fic] c72d7210aO'Dell, Scott,d1903-10aIsland of the blue dolphins /cScott O'Dell ; illustrated by Ted Lewis.0 aBoston :bHoughton Mifflin,c1990. a9010. ap. cm. aLeft alone on a beautiful but isolated island off the coast of California, a young Indian girl spends eighteen years, not only merely surviving through her enormous courage and self-reliance, but also finding a measure of happiness in her solitary life. 0aIndians of North AmericaxJuvenile fiction. 1aSurvivalxFiction. 1aIndians of North AmericaxFiction. 1aIslandsxFiction. aLVLcJFkJ O'Dell bMAINp31000000033535r11.18u4147u12300376 2200145 450000100060000000300040000600500170001000800410002701000130006809000110008110000300009224500460012294200260016895200360019478263LVL19990331000000.0950324s19uu 000 0 eng d a58010758 c73d731 aSteinberg, Alfred,d1917-10aMrs. R. :bthe life of Eleanor Roosevelt. aLVLcBIOkB Roosevelt bMAINp31000000022615u4148u12400798 2200277 450000100060000000300040000600500170001000800390002701000130006602000310007903500140011004000130012404300120013705000210014908200160017009000110018624500680019726000490026530000210031444000350033550000200037065000480039070000160043894200240045495200420047836150LVL19990317000000.0851007s1986 nyu 000 0 eng a85026649 a0136355412 (pbk.) :c$7.95 a 85026649 aDLCcDLC an-us---0 aJK716.bG46 19860 219a353.003 c74d7400aGeneral test practice for 101 U.S. jobs /cedited by Hy Hammer. aNew York, NY :bPrentice Hall Press,cc1991. a220 p. ;c28 cm. 0aArco civil service test tutor. a"An Arco book." 0aCivil servicexExaminations.zUnited States10aHammer, Hy. aLVLcNFk353.003 Ge bMAINp32000000031659r5.80u4149u12501271 2200397 450000100060000000300040000600500170001000800390002701000190006602000250008503500160011004000250012605000220015108200140017309000110018710000220019824501190022025000120033926000380035130000210038950400410041051000140045151000210046552001170048652100110060365000290061465000190064365000220066265000290068465000190071365000200073265000250075274000300077794200230080795200430083043169LVL20010820101617.0890302s1989 nyu b 00010 eng a88045906 //r90 a0060160772 :c$18.95 aflb01178406 aDLCcDLCdDLCdICrlF00aR726.5.bS55 198900219a615.5 c75d7510aSiegel, Bernie S.10aPeace, love & healing :bbodymind communication and the path to self-healing : an exploration /cBernie S. Siegel. a1st ed.0 aNew York :bHarper & Row,cc1989. a290 p. ;c25 cm. aIncludes bibliographical references.0 aBooklist.0 aLibrary Journal. aExplores the role of the self-healing system, explains the science behind it, and shows why love is physiologic.2 aAdult. 0aMedicine and psychology. 0aMind and body. 0aHealth attitudes. 7aMedicine and psychology. 7aMind and body. 7aMental healing. 7aPsychologyxControl.01aPeace, love, and healing. aLVLcNFk615.5 SIE bMAINp32000000024681r10.89u4150u12600906 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000110010809200110011924501270013025000120025726000510026930000450032044000870036550000200045265000360047270000230050883000460053194200200057795200430059750188LVL19990220000000.0930930s1994 cauab b 00100 eng a93038350 a0062502700 a 93038350 c76d76 a930 Ol00aOld World civilizations :bthe rise of cities and states /cgeneral editor, GÈoran Burenhult ; foreword by Barry Cunliffe. a1st ed.0 a[San Francisco] :bHarperSanFrancisco,cc1994. a239 p. :bcol. ill., col. maps ;c32 cm. 4aThe illustrated history of humankind / American Museum of Natural History ;vv. 3. aIncludes index. 0aCivilization, AncientxHistory.10aBurenhult, GÈoran. 0aIllustrated history of humankind ;vv. 3. aLVLcNFk930 Ol bMAINp32000000060132r36.95u4151u12700814 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009404000200011005000260013008200170015609000110017310000260018424000230021024500270023326000400026030000210030050501010032152100110042265000190043394200230045295200610047536151LVL19990317000000.0880707s1988 nyu 00011 eng a88023308 a0671626884 aflb00668514 aDLCcDLCdICrlF0 aPR6052.A6475bC3 19880 219a823/.914 c77d7710aBarker, Clive,d1952-10aSelections.f1988.10aCabal /cClive Barker.0 aNew York :bPoseidon Press,cc1988. a377 p. ;c25 cm.0 aCabal -- The life of death -- How spoilers bleed -- Twilight at the towers -- The last illusion.2 aAdult. 7aShort stories. aLVLcAFkAF Barker bMAINdMAINp32000000023989r11.07u4153u128v2003-09-0100989 2200277 4500010001300000020001500013090001100028100002400039245004100063260004000104300004400144500002000188650002400208650001400232942002300246952004200269952004300311952004300354952004100397952004300438952004200481952004300523952004200566952004200608952006100650 a81083054 a0848705246 c78d7810aBonesteel, Georgia.10aLap quilting with Georgia Bonesteel.0 aBirmingham :bOxmoor House,cc1982. av, 122 p. :bill. (some col.) ;c29 cm. aIncludes index. 0aQuiltingxPatterns. 0aQuilting. aLVLcNFk746.46 Bo bLB2p37000000003453r24.95u4154u129 bMAINp32000000072942r12.95u4155u130 bMAINp32000000082413r24.95u4156u131 bLB1p36000000000810r8.82u4157u132 bMAINp35000000002544r12.95u4158u133 bLB2p34000000016279r12.95u4159u134 bMAINp31000000065977r12.95u4160u135 bLB1p33000000029301r12.95u4161u136 bLB1p33000000030489r24.95u4162u137 bLB1dLB1p33000000066402r24.95u325723u138v2005-02-0900926 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000110010809200160011910000190013524500630015425000120021726000460022930000280027544000230030352001720032665000420049865000240054070000170056494200250058195200420060657208LVL19990219000000.0950216s1995 cau j 00011 eng a95007898 a084313934X a 95007898 c79d79 aYA Pedersen10aPedersen, Ted.10aCyberspace cowboy /cwritten by Ted Pedersen & Mel Gilden. a1st ed.0 aLos Angeles :bPrice Stern Sloan,cc1995. a144 p. ;c18 cm. ;dpa. 0aCybersurfers ;v2. aAfter a teenager finally tracks down a fellow net hacker, she realizes that he is hiding from gangsters and that she has unintentionally revealed his identity to them. 1aInternet (Computer network)xFiction. 1aComputersxFiction.10aGilden, Mel. aLVLcYAkYA Pedersen bMAINp31000000063126r3.95u4163u13900771 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000110010809200190011910000220013824500620016026000460022230000300026844000170029852000740031565000160038994200290040595200410043495200420047578265LVL20000911202528.0890907s1990 njua j 00110 eng a89027352 a0816719527 a 89027352 c80d80 aJNF 796.325 Br1 aBracken, Charles.10aVolleyball :ba step-by-step guide /cby Charles Bracken. aMahwah, N.J. :bTroll Associates,cc1990. a64 p. :bill. ;c22 cm.;. 0aBe the best! aExamines the equipment, skills, and rules associated with volleyball. 1aVolleyball. aLVLcJNFkJNF 796.325 Br bLB2p37000000004384r2.95u4164u140 bMAINp31000000049814r2.95u4165u14100878 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009403900180011004000200012805000200014808200160016809000110018410000270019524500530022226000590027530000210033451000290035551000210038452001070040552100110051294200230052395200420054643171LVL19990313000000.0810406s1981 nyu 00011 eng a81003271 a0440074088 aflb012196020 a2b3c3d3e3 aDLCcDLCdICrlF0 aPS3552.E719bR40 219a813/.54 c81d8110aBerger, Thomas,d1924-10aReinhart's women :ba novel /cby Thomas Berger.0 aNew York, N.Y. :bDelacorte Press/S. Lawrence,cc1981. a295 p. ;c24 cm.0 aFiction Catalog (Wilson)0 aLibrary Journal. aReinhart, a cook good enough to attract an offer of television fame, makes his way among the fair sex.2 aAdult. aLVLcAFkAF Berger bMAINp32000000001194r8.37u4166u14200840 2200265 450000100060000000300040000600500170001000800410002702000150006803500160008309000110009909200130011010000270012324500480015026000360019830000360023444000330027050000260030394200220032995200410035195200410039295200580043395200420049195200410053350190LVL20020124150806.0960618s1996 nyua j 00011 eng d a059022882X anpl96001116 c82d82 aJ Martin10aMartin, Ann M.,d1955-10aDawn and too many sitters /cAnn M. Martin.0 aNew York :bScholastic,cc1996. a136 p. :bill. ;c20 cm. ;dpa. 4aThe Baby-Sitters Club ;v98. a"An Apple Paperback." aLVLcJFkJ Martin bLB2p37000000007970r3.99u4167u143 bLB1p36000000001716r2.31u4168u144 bLB2dLB2p34000000013963r2.31u4169u145v2003-09-01 bMAINp31000000060465r2.31u4170u146 bLB1p33000000026012r2.31u4171u14700306 2200133 450000100060000000300040000600500170001000800410002702000150006809000110008310000370009424500190013194200220015078266LVL19990331000000.0950323s19uu 000 0 eng d a0708910297 c83d831 aMarsh, Ngaio,cDame,d1895-1982.10aHand in glove. aLVLcAFkAF Marsh01002 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000110010809200130011910000170013224500340014926000630018330000280024644000360027465000530031065000420036380000500040594200220045595200580047795200410053595200410057695200420061795200410065943172LVL20000113000000.0950721s1995 miu 00011 eng a95035737 a031041301X a 95035737 c84d84 aAF Peart10aPeart, Jane.12aA distant dawn /cJane Peart.0 aGrand Rapids, Mich. :bZondervan Publishing House,cc1995. a233 p. ;c21 cm. ;dpa. 0aWestward dream series ;vbk. 4. 0aFrontier and pioneer lifexFiction.zWest (U.S.) 0aWomen pioneersxFiction.zWest (U.S.)1 aPeart, JanetWestward dreams series ;vbk. 4. aLVLcAFkAF Peart bLB2dMAINp37000000004886r5.89u148u148v2005-03-23 bLB1p36000000004611r5.89u4174u149 bLB2p34000000010057r5.89u4175u150 bMAINp31000000057291r5.89u4176u151 bLB1p33000000024075r5.89u4177u15200840 2200277 450000100060000000300040000600500170001000800410002702000150006803500160008309000110009909200150011010000200012524500840014525000170022926000570024630000280030344000430033150000200037465000270039465000300042170000190045170000240047094200250049495200430051950191LVL19990220000000.0960821r19911991enka j 00110 eng d a0881104388 anpl96001660 c85d85 aJNF 930 Ch10aChisholm, Jane.10aEarly civilization /cJane Chisholm, Anne Millard ; illustrated by Ian Jackson. aAmerican ed.0 aLondon :aTulsa :bUsborne ;bEDC Publishing,c1991. a96 p. :bill. ;c27 cm. 4aThe Usborne illustrated world history. aIncludes index. 1aCivilization, Ancient. 1aComparative civilization.10aMillard, Anne.11aJackson, Ian,eill. aLVLcJNFkJNF 930 Ch bMAINp32000000066463r16.95u4178u15301134 2200337 450000100060000000300040000600500170001000800390002701000170006602000150008303500160009804000200011405000170013408200100015109000110016110000340017224500570020626000380026330000270030151000320032851000140036051000210037452001920039552100340058752100100062165000340063165000340066570000350069994200200073495200420075436154LVL19990317000000.0731204s1974 maua j 000 1 eng a73021648 /AC a0395185122 aflb00195402 aDLCcDLCdICrlF0 aPZ7.P792bPe a[Fic] c86d861 aPope, Elizabeth Marie,d1917-14aThe perilous gard /cIllustrated by Richard Cuffari. aBoston,bHoughton Mifflin,c1974. a280 p.billus.c22 cm.0 aChildren's Catalog (Wilson)0 aBooklist.0 aLibrary Journal. aIn 1558 while imprisoned in a remote castle, a young girl becomes involved in a series of events that leads to an underground labyrinth peopled by the last practitioners of druidic magic.0 a6.1bFollett Library Book Co.2 a7-10. 1aDruids and druidismxFiction. 7aDruids and druidismxFiction.11aCuffari, Richard,d1925-eill. aLVLcJFkJ Pope bMAINp32000000015588r3.99u4179u15401117 2200373 450000100060000000300040000600500170001000800390002701000220006602000150008803500160010304000200011905000200013908200100015909000110016910000180018024500660019826000330026430000290029751000140032651000280034051000210036852001100038952100340049952100090053365000310054265000220057365000210059565000220061665000210063870000210065994200210068095200420070143173LVL19990313000000.0751212s1976 nyua j 000 1 eng a75044168 /AC/r862 a0690010559 aflb00788602 aDLCcDLCdICrlF0 aPZ10.3.B183bBu a[Fic] c87d871 aBalch, Glenn.10aBuck, wild /cby Glenn Balch ; illustrated by Ruth Sanderson. aNew York :bCrowell,cc1976. a136 p. :bill. ;c21 cm.0 aBooklist.0 aSchool Library Journal.0 aLibrary Journal. aTraces the first four years in the life of a wild mustang stallion with an unconquerable urge to be free.0 a7.9bFollett Library Book Co.2 a5-8. 0aMustangxJuvenile fiction. 1aMustangxFiction. 1aHorsesxFiction. 7aMustangxFiction. 7aHorsesxFiction.10aSanderson, Ruth. aLVLcJFkJ Balch bMAINp32000000020449r2.95u4180u15500937 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000110010809200170011910000190013624500850015525000120024026000410025230000270029352001170032065000290043765100360046670000440050294200270054695200430057395200430061650192LVL19990220000000.0961104s1996 nyua c 00010 eng a96029210 a0517704536 a 96029210 c88d88 aJNF 966.7 An10aAngelou, Maya.10aKofi and his magic /cby Maya Angelou ; photographs by Margaret Courtney-Clarke. a1st ed.0 aNew York :bClarkson Potter,cc1996. a44 p. :bill.,c26 cm. aA young Ashanti boy describes some of the wonders of his life in and around the West African village of Bonwire. 1aAshanti (African people) 1aGhanaxSocial life and customs.20aCourtney-Clarke, Margaret,d1949-eill. aLVLcJNFkJNF 966.7 An bMAINp32000000067720r10.20u4181u156 bMAINp31000000062470r10.20u4182u15700578 2200229 450000100060000000300040000600500170001000800390002701000130006604000130007905000330009208200130012509000110013810000230014924500200017225000140019226000490020630000190025535000100027494200220028495200420030671249LVL19990512000000.0700227c19701969nyu 00001 eng a72089109 aDLCcDLC0 aPZ4.H6866aPS3558.O342bMar3 a813/.5/4 c89d8910aHodge, Jane Aiken.10aMarry in haste. a[1st ed.]0 aGarden City, N.Y.,bDoubleday,c1970 [c1969] a205 p.c22 cm. a4.95. aLVLcAFkAF Hodge bMAINp31000000010066r3.75u4183u15800444 2200145 4500010001300000090001100013245006600024250001200090260004400102300002200146650002900168700001800197942002000215952006300235 a61015007 c90d9000aChambers's biographical dictionary /cedited by J. O. Thorne. aNew ed. aNew York :bSt. Martin's Press,cc1962. a1432 p. ;c25 cm. 0aBiographyxDictionaries. 0aThorne, J. O. aLVLcNFk920 Ch bMAINdMAINp31000000052730r10.50u327962u159v2005-03-1000706 2200253 450000100060000000300040000600500170001000800390002701000130006602000270007903900180010604000130012405000260013708200160016309000110017910000260019024500530021625000200026926000540028930000210034365000220036494200230038695200430040964231LVL19990217000000.0820225c19821981meu d 00011 eng a82003365 a0896213536 (lg. print)0 a2b3c3d3e3 aDLCcDLC1 aPS3570.H3475bT5 19820 219a813/.54 c91d9110aThayer, Nancy,d1943-10aThree women at the waters' edge /cNancy Thayer. aLarge print ed.0 aThorndike, Me. :bThorndike Press,c[1982] c1981. a559 p. ;c22 cm. 0aLarge type books. aLVLcAFkAF Thayer bMAINp31000000011443r13.95u4185u16000321 2200133 450000100060000000300040000600500170001000800410002701000130006809000110008110000510009224500210014394200230016471250LVL20020823135942.0950324s19uu 000 0 eng d a62014471 c92d921 aPritchett, V. S.d1900-1997.q(Victor Sawdon),10aLondon observed. aLVLcNFk914.21 Pr01425 2200445 450000100060000000300040000600500170001000800390002701000170006602000150008303500160009803900180011404000200013205000230015208200170017509000110019210000250020324501080022826000330033630000330036949000140040251000280041652001060044452100340055052100090058465000310059365000340062465000470065865000450070565000110075065000100076165000110077165000100078270000200079270000250081283000360083794200290087395200360090295200410093836156LVL20000911221017.0851203s1986 nyua j 000 0 eng a85029549 /AC a0531101029 aflb011337050 a2b3c3d3e3 aDLCcDLCdICrlF0 aSF425.5.bG74 19860 219a155.9/37 c93d931 aGreenberg, Judith E.10aSunny :bthe death of a pet /cby Judith E. Greenberg and Helen H. Carey ; photographs by Barbara Kirk. aNew York :bF. Watts,c1986. a32 p. :bill. ;c20 x 26 cm.1 aMy world.0 aSchool Library Journal. aBill is scared when his dog Sunny gets sick, but after her death a new puppy helps him stop grieving.0 a3.0bFollett Library Book Co.2 aK-3. 0aDogsxJuvenile literature. 0aPuppiesxJuvenile literature. 0aChildren and animalsxJuvenile literature. 0aChildren and deathxJuvenile literature. 1aDeath. 7aDogs. 7aDeath. 1aDogs.10aCarey, Helen H.11aKirk, Barbara,eill. 0aMy World (Franklin Watts, Inc.) aLVLcJNFkJNF 155.937 Gr bMAINp32000000014893u4187u161 bLB1p36000000002462r9.95u4188u16200348 2200133 450000100060000000300040000600500170001000800410002709000110006810000310007924500240011094200200013495200600015443175LVL20020911101204.0920714s19xx xxu 00010 eng d c94d94 aCerf, Bennett,d1898-1971.14aThe Arabian Nights. aLVLcNFk398 Ce bMAINdMAINp32000000009150r2.00u4189u163v2003-09-0100616 2200241 450000100060000000300040000600500170001000800390002701000130006603500140007904000130009305000300010608200140013609000110015010000370016124500200019825000140021826000490023230000190028135000110030094200210031195200420033250194LVL20020823100604.0710122c19711970nyu 000 1 eng a78131064 a 78131064 aDLCcDLC0 aPZ4.A296aPR6051.I65bLat a823/.9/14 c95d951 aAird, Catherine.cpseud.,d1930-12aA late phoenix. a[1st ed.] aGarden City, N.Y.,bDoubleday,c1971 [c1970] a179 p.c22 cm. a$4.50. aLVLcMYSkM Aird bMAINp32000000009841r2.25u4190u16400304 2200133 450000100060000000300040000600500170001000800410002701000130006809000110008110000350009224500190012794200240014657213LVL19990219000000.0950323s19uu 000 0 eng d a88040517 c96d961 aHammett, Dashiell,d1894-1961.14aThe glass key. aLVLcAFkAF Hammett00491 2200181 450000100060000000300040000600500170001000800410002703500160006809000110008409200110009510000310010624500430013726000420018030000210022294200230024395200430026671251LVL20020226135021.0910912s1925 nyu 00011 eng d aonv90001278 c97d97 aCather10aCather, Willa,d1873-1947.14aThe professor's house /cWilla Cather. aNew York :bGrosset & Dunlap,cc1925. a283 p. ;c20 cm. aLVLcAFkAF Cather bMAINp32000000124018r10.00u4192u16500680 2200229 450000100060000000300040000600500170001000800410002702000150006803500160008309000110009909200110011024500900012126000380021130000230024965000350027270000200030770000190032794200200034695200420036695200420040836157LVL19990317000000.0920828s1992 nyu 00000 eng d a0020698453 aonv90003190 c98d98 a811 Be04aThe Best American poetry 1992 /cCharles Simic, editor ; David Lehman, series editor. aNew York :bCollier Books,c1992. a263 p. ;c21 cm.;. 0aAmerican poetryy20th century.10aSimic, Charles.10aLehman, David. aLVLcNFk811 Be bMAINp32000000034743r7.67u4193u166 bMAINp31000000040431r7.67u4194u16701557 2200433 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009404000200011004300210013005000150015108200170016609000110018310000400019424500760023425000120031026000370032230000290035951000360038851000230042451000430044752001190049052100110060960000400062060000400066061000450070061000450074565000410079065000570083165000400088865000480092865000420097665000400101894200230105895200420108171252LVL19990401000000.0800522s1980 maua 00010aeng a80017310 a0316545015 aflb00805006 aDLCcDLCdICrlF an-us---ap------0 aD767.bM18 a940.54/83/73 c99d9910aManchester, William Raymond,d1922-10aGoodbye, darkness :ba memoir of the Pacific War /cWilliam Manchester. a1st ed.0 aBoston :bLittle, Brown,cc1980. a401 p. :bill. ;c24 cm.0 aPublic Library Catalog (Wilson)0 aALA Notable Books.0 aBooklist Editors' (Reviewers') Choice. ae personal memoir of the author while serving in the Pacific during World War II as a foot soldier in the Marines.2 aAdult.10aManchester, William Raymond,d1922-17aManchester, William Raymond,d1922-10aUnited States.bMarine CorpsxBiography.17aUnited States.bMarine CorpsxBiography. 0aWorld War, 1939-1945zPacific Ocean. 0aWorld War, 1939-1945xPersonal narratives, American. 0aSoldiersxBiography.zUnited States 0aAuthors, AmericanxBiography.y20th century 7aWorld Ward1939-1945.zPacific Ocean, 7aSoldiersxBiography.zUnited States aLVLcNFk940.54 Ma bMAINp31000000026194r8.57u4195u16801766 2200481 450000100060000000300040000600500170001000800390002701000170006602000150008303500160009804000200011405000210013408200160015509000130017110000220018424501230020625000120032926000520034130000340039350000200042750400300044751000480047751000480052551000100057352001830058352100340076652100100080065000440081065000470085465000660090165000230096765000260099065000450101665000160106165000230107765000450110065000220114570000210116770000250118894200280121395200430124136158LVL20020923075827.0870316s1987 caua j b 001 0 eng a87008347 /AC a0152774106 aflb01490903 aDLCcDLCdICrlF0 aRD130.bF33 19870 219a617/.95 c100d1001 aFacklam, Margery.10aSpare parts for people /cMargery and Howard Facklam ; illustrated with photographs and with diagrams by Paul Facklam. a1st ed. aSan Diego :bHarcourt Brace Jovanovich,cc1987. axii, 143 p. :bill. ;c24 cm. aIncludes index. aBibliography: p. 131-133.0 aSenior High School Library Catalog (Wilson)0 aJunior High School Library Catalog (Wilson) aSLJ*. aDiscusses current accomplishments in the field of replacing parts in the human body, including organ transplants, artificial organs and implants, and artificial joints and limbs.0 a8.5bFollett Library Book Co.2 a7-10. 0aArtificial organsxJuvenile literature. 0aImplants, ArtificialxJuvenile literature. 0aTransplantation of organs, tissues, etcxJuvenile literature. 1aArtificial organs. 1aImplants, Artificial. 1aTransplantation of organs, tissues, etc. 1aProsthesis. 7aArtificial organs. 7aTransplantation of organs, tissues, etc. 7aArtificial limbs.10aFacklam, Howard.11aFacklam, Paul,eill. aLVLcJNFkJNF 617.95 Fa bMAINp32000000030630r14.95u4196u16900344 2200133 450000100060000000300040000600500170001000800410002702000150006809000130008324500460009694200250014295200430016750196LVL19990220000000.0941224s19uu 000 0 eng d a0801970776 c101d10110aChilton's motorcycle repair manual, 1981. aLVLcREFkREF 629.28 bMAINp32000000017385r11.97u4198u17000607 2200217 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200160011210000250012824500450015326000380019830000280023644000310026450000280029594200250032395200410034878272LVL20000911013308.0960627s1995 nyu 00011 eng d a0671891464 anpl96001198 c102d102 aYA Chandler10aChandler, Elizabeth.14aThe power of love /cElizabeth Chandler.0 aNew York :bPocket Books,cc1995. a225 p. ;c18 cm. ;dpa. 0aKissed by an angel ;vv.3. a"An Archway Paperback." aLVLcYAkYA Chandler bLB2p37000000006207r3.50u4199u17101179 2200337 450000100060000000300040000600500170001000800390002701000170006602000150008303500160009808200120011409000130012610000220013924500500016126000530021130000400026451000320030451000430033651000390037952001500041852100090056865000330057765000320061065000320064265000310067470000230070594200270072895200430075595200430079836159LVL19990317000000.0870317s1987 nyua j 00011 eng a87006283 /AC a0670815683 aflb005330120 219a[E] c103d10310aProvensen, Alice.10aShaker Lane /cby Alice and Martin Provensen.0 aNew York, N.Y., U.S.A. :bViking Kestrel,c1987. a[32] p. :bcol. ill. ;c23 x 28 cm.0 aChildren's Catalog (Wilson)0 aBooklist Editors' (Reviewers') Choice.0 aPublishers Weekly Editors' Choice. aWhen the town decides to build a reservoir on their land, the residents of Shaker Lane decide to move away rather than fight to keep their homes.2 aK-3. 1aCity and town lifexFiction. 1aMoving, HouseholdxFiction. 7aMoving, HouseholdxFiction. 7aCities and townsxFiction.10aProvensen, Martin. aLVLcEASYkE Provensen bMAINp32000000024117r11.22u4200u172 bMAINp31000000003214r13.46u4201u17301032 2200325 450000100060000000300040000600500170001000800390002701000170006602000150008303500160009804000200011405000220013408200200015609000130017610000190018924500590020825000270026726000420029430000330033650000200036952001380038952100180052765000150054565000150056070000160057594200290059195200430062095200430066343178LVL20020903095753.0860602s1986 nyua 00110 eng a86014051 /AC a0812057562 aflb00999306 aDLCcDLCdICrlF0 aGT4985.bB52 19860 219a394.2/68282 c104d10410aBird, Malcolm.14aThe Christmas handbook /cby Malcolm Bird & Alan Dart. a1st ed. for the U.S.A.0 a[Woodbury, N.Y.] :bBarron's ,c1986. a96 p. :bcol. ill. ;c27 cm. aIncludes index. aDescribes Christmas activities for the whole family including over 100 things to make, and 50 games and activities to play and enjoy.2 aProfessional. 0aChristmas. 7aChristmas.10aDart, Alan. aLVLcJNFkJNF 745.594 Bi bMAINp32000000022771r14.95u4202u174 bMAINp31000000004018r14.95u4203u17501124 2200349 450000100060000000300040000600500170001000800390002701000130006602000270007903500140010605000230012008200160014309000130015909200150017210000190018724500850020626000500029130000330034149000240037450000380039850000200043652000760045665000220053265000170055470000260057170000270059780000400062494200250066495200430068995200420073264235LVL19990217000000.0890309s1990 nyua j 00110 eng a89000997 a1854351524 (lib. bdg.) a 8900099700aQC161.2.bK47 199000220a533/.62 c105d105 aJNF 533 Ke10aKerrod, Robin.10aAir in action /cRobin Kerrod ; illustrated by Mike Atkinson and Sarah Atkinson.0 aNew York :bMarshall Cavendish Corp.,cc1990. a32 p. :bcol. ill. ;c21 cm. 0aSecrets of science. a"Cherrytree books"--Cover p. [4]. aIncludes index. aA collection of science activities demonstrating the properties of air. 1aAirxExperiments. 1aExperiments.11aAtkinson, Mike,eill.11aAtkinson, Sarah,eill.1 aKerrod, Robin.tSecrets of science. aLVLcJNFkJNF 533 Ke bMAINp31000000035051r10.95u4204u176 bLB1p33000000007096r10.95u4205u17700761 2200253 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000130011009200150012310000220013824500460016026000440020630000210025094200240027195200430029595200420033895200420038095200430042295200420046536160LVL19990317000000.0930322s1993 nyu 00011 eng d a92019893 a0399138013 a 92019893 c106d106 aAF Spencer10aSpencer, LaVyrle.10aNovember of the heart /cLaVyrle Spencer.0 aNew York :bG.P. Putnam's Sons,cc1993. a381 p. ;c24 cm. aLVLcAFkAF Spencer bMAINp32000000038000r17.08u4206u178 bLB1p36000000004794r13.54u4207u179 bLB2p34000000004209r17.08u4208u180 bMAINp31000000042538r13.54u4209u181 bLB1p33000000015188r13.54u4210u18200961 2200325 450000100060000000300040000600500170001000800390002701000170006602000240008303500160010704000200012305000180014308200130016109000130017410000170018724500440020426000380024830000350028649000320032151000280035352000790038152100340046052100090049465000340050365000100053765000220054794200240056995200420059343179LVL19990313000000.0750618s1975 nyua j 00010 eng a74002542 /AC a0394829263 :c$0.95 aflb00683102 aDLCcDLCdICrlF0 aSF426.5.bP48 a636.7/07 c107d10710aPfloog, Jan.10aPuppies are like that /cby Jan Pfloog.0 aNew York :bRandom House,c[1975] a[32] p. :bcol. ill. ;c21 cm.0 aA Random House pictureback.0 aSchool Library Journal. aIntroduces the characteristics of puppies in brief text and illustrations.0 a3.3bFollett Library Book Co.2 aK-3. 0aPuppiesxJuvenile literature. 1aDogs. 1aAnimalsxInfancy. aLVLcEASYkE Pfloog bMAINp32000000011684r5.17u4211u18300385 2200157 450000100060000000300040000600500170001000800410002702000150006809000130008310000360009624500180013230000110015094200230016195200430018450198LVL19990220000000.0920613s19xx xxu 00010 eng d a088646806X c108d1081 aAlcott, Louisa May,d1832-1888.10aLittle women. a12 cm. aLVLcACkAC Alcott bMAINp32000000022424r16.17u4212u18400829 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200120012110000170013324501140015026000380026430000210030252001620032365000150048570000220050094200230052295200420054564236LVL20021219172425.0910131s1991 nyu 00010 eng a91006669 a067169023X a 91006669 c109d109 at395 Re10aRÂe, Judith.10aSocial savvy :ba teenager's guide to feeling confident in any situation /cJudith RÂe with Meg F. Schneider.0 aNew York :bSummit Books,cc1991. a207 p. ;c25 cm. aDescribes the appropriate manners and behavior in various social situations and explores more profound issues such as friendship, money, and difficult times. 1aEtiquette.10aSchneider, Meg F. aLVLcNFkYA 395 Re bLB1p33000000008370r11.48u4213u18501184 2200337 450000100060000000300040000600500170001000800390002701000170006602000150008302000270009803500160012503900180014104000200015905000230017908200140020209000130021610000190022924501040024826000380035230000300039050000530042052001680047352100340064152100090067565000130068465000230069773000400072094200260076095200600078671255LVL19990401000000.0831116s1984 nyua j 00011 eng a83024686 /AC a0394865685 a039496568X (lib. bdg.) aflb000659080 a2b3c3d3e3 aDLCcDLCdICrlF0 aPZ7.J6442bAd 19840 219a[Fic] c110d11010aJohnston, Joe.14aThe adventures of Teebo :ba tale of magic and suspense /cwritten and illustrated by Joe Johnston.0 aNew York :bRandom House,cc1984. a[41] p. :bill. ;c22 cm. aAt head of title: Star wars, Return of the Jedi. aTeebo the daydreaming Ewok finds the peace of his village destroyed when Vulgarr the Dulok reports that Teebo's sister Malani has been stolen by the giant Grudakk.0 a4.9bFollett Library Book Co.2 a3-6. 1aFantasy. 7aFantastic fiction.01aReturn of the Jedi (Motion picture) aLVLcEASYkE Johnston bMAINdMAINp31000000005041r1.89u4214u186v2003-09-0101135 2200361 450000100060000000300040000600500170001000800390002701000170006602000270008302000350011003500160014503900180016104000200017905000230019908200120022209000130023410000260024724500420027326000380031530000350035349000250038850000550041352000670046852100340053552100090056965000340057865000190061265000290063180000480066094200230070895200420073136161LVL19990317000000.0840928s1983 nyua j 000 1 eng a82084110 /AC a0307106020 (lib. bdg.) a0307606023 (lib. bdg. : cover) aflb009809050 a2b3c3d3e3 aDLCcDLCdICrlF0 aPZ7.M462bWhe 19830 219a[E] c111d1111 aMayer, Mercer,d1943-10aWhen I get bigger /cby Mercer Mayer. aNew York :bGolden Press,cc1983. a[31] p. :bcol. ill. ;c13 cm.1 aLittle critter book. a"A selected Goldencraft edition"--P. [4] of cover. aA child imagines all the things to be done when one is bigger.0 a2.0bFollett Library Book Co.2 aK-3. 0aChildren's stories, American. 1aSizexFiction. 7aSize and shapexFiction.1 aMayer, Mercer,d1943-tLittle critter book. aLVLcEASYkE Mayer bMAINp32000000011068r7.95u4215u18701091 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000180013424500330015225000120018526000380019730000210023550000320025652002060028865000310049465000230052594200220054895200410057095200420061195200410065395200420069495200410073643180LVL20020916170255.0861021s1987 nyu j 00011 eng a86045494 a0060221607 a 86045494 c112d112 aJ Geller10aGeller, Mark.10aWhat I heard /cMark Geller. a1st ed.0 aNew York :bHarper & Row,cc1987. a119 p. ;c22 cm. a"A Charlotte Zolotow book." aWhen thirteen-year-old Michael, home sick from school, answers a telephone call meant for his father's ears only, his family security is threatened as he faces the reality of his parents' relationship. 1aFathers and sonsxFiction. 1aAdulteryxFiction. aLVLcJFkJ Geller bLB2p37000000002484r3.95u4216u188 bMAINp32000000032804r3.95u4217u189 bLB1p36000000001510r5.00u4218u190 bMAINp35000000002805r3.95u4219u191 bLB2p34000000007055r3.95u4220u19200951 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200120012110000210013324500350015425000120018926000540020130000350025552001690029065000190045965000260047865000270050465000220053194200230055395200420057695200430061871256LVL19990401000000.0870914s1988 nyua j 00011 eng a87027247 a0803705638 a 87027247 c113d113 aE Wells10aWells, Rosemary.10aShy Charles /cRosemary Wells. a1st ed.0 aNew York :bDial Books for Young Readers,cc1988. a[32] p. :bcol. ill. ;c26 cm. aBeing painfully timid and shy does not keep a young mouse from rescuing his babysitter in an emergency situation, although after becoming a hero he still says zero. 1aMicexFiction. 1aBashfulnessxFiction. 1aBaby sittersxFiction. 1aStories in rhyme. aLVLcEASYkE Wells bLB2p34000000011243r10.70u4221u193 bMAINp31000000003828r10.70u4222u19400893 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000190013624500780015525000120023326000440024530000550028950000200034452001390036465000250050370000320052894200250056095200420058536162LVL19990317000000.0860728s1988 nyuaf j 00110 eng a86019666 a0385234171 a 86019666 c114d114 aJNF 569 Co1 aCohen, Daniel.10aPrehistoric animals /cDaniel Cohen ; illustrated by Pamela Ford Johnson. a1st ed. aGarden City, N.Y. :bDoubleday,cc1988. a41 p., [3] leaves of plates :bcol. ill. ;c31 cm. aIncludes index. aDiscusses more than twenty prehistoric animals, how they were discovered, their modern counterparts, and theories on their extinction. 1aPrehistoric animals.11aJohnson, Pamela Ford,eill. aLVLcJNFkJNF 569 Co bMAINp32000000035810r6.95u4223u19501823 2200421 450000100060000000300040000600500170001000700150002700800410004202400160008303500160009903700350011509000130015009200180016324500570018126000540023830000520029250000180034450000420036250001280040450001280053250001000066050501950076051100240095551800730097965000220105265000250107465000310109965000300113065000310116065000420119165000190123365000430125270000170129570000200131294200260133295200430135843182LVL19990313000000.0sdufmngnnmmnee940918r19941966dcufmn bik que d 1a9307404062 anav96000094 aSF-40406bSmithsonian Folkways c115d115 aCD Moun- tian00aMountain music of Peruh[sound recording]..nVol. 2.0 aWashington, D.C. :bSmithsonian Folkways,cp1994. a1 sound disc (74 min.) :bdigital ;c4 3/4 in.. aCompact disc. aSung in Quechua, Spanish, and Aymara. aTracks 1-21 recorded, compiled and annotated by John Cohen; tracks 22-29 recorded, compiled and annotated by Thomas Turino. a"Selections 1-19 originally issued in 1966 on ... Folkways FE 4539. Selections 20-29 are previously unreleased"--Container. aProgram notes (16 p. : map), including discographical references (p. 16) inserted in container.0 aSantiago music from Huayncayo, Junin : Quechua and Spanish -- Music from Chucuito and Chimo, Puno : Aymara and Spanish -- Panpipes and flutes from Conima, HuancanÂe and Acora, Puno (Aymara).0 aVarious performers. aRecorded principally in July and Aug. 1964, and Nov. 1984-July 1986. 0aFolk musiczPeru. 0aPopular musiczPeru. 0aFolk songs, QuechuazPeru. 0aFolk songs, AymarazPeru. 0aFolk songs, SpanishzPeru. 0aQuechua IndiansxMusic.zAndes Region 0aHuaynoszPeru. 0aIndians of South AmericaxMusic.zPeru1 aCohen, John.1 aTurino, Thomas. aLVLcCDMkCD Mountain bMAINp32000000062865r12.44u4225u19601088 2200277 450000100060000000300040000600500170001000800390002701000200006603500210008604000100010705000170011708200160013409000130015010000500016324501750021326000460038830000250043435000100045950001020046965000280057170001120059974000340071194200230074595200420076850201LVL19990220000000.0700504s1970 ilu 001 0 eng a71106451 //r892 a 71106451 //r892 dOCoLC0 aJF515.bR6920 219a060.4/2 c116d1161 aRobert, Henry M.d1837-1923.q(Henry Martyn),10aRobert's rules of order, newly revised :ba new and enl. ed. .cby Sarah Corbin Robert, with the assistance of Henry M. Robert III, James W. Cleary [and] Wiliam J. Evans. a[Glenview, Ill.]bScott, Foresmanc[1970] axlii, 594 p.c18 cm. a5.95. aEdition of 1981 published under title: The Scott, Foresman Robert's rules of order newly revised. 0aParliamentary practice.11aRobert, Henry M.d1837-1923.q(Henry Martyn),tPocket manual of rules of order for deliberative assemblies.01aRules of order newly revised. aLVLcNFk060.4 ROB bMAINp32000000007082r1.50u4226u19700330 2200133 450000100060000000300040000600500170001000800410002702000150006809000130008324500330009694200240012995200430015378277LVL19990331000000.0960621s19uu 000 0 eng d a0152690611 c117d11710aRootabaga stories, part one. aLVLcJFkJ Sandburg bMAINp31000000033784r11.77u4227u19800716 2200217 4500020001500000090001300015100002700028245007100055260004800126300004800174500001400222511004800236650001600284650002800300700001800328700002100346700002200367942002500389952004200414952004200456 a0671574191 c118d11810aCussler, Clive,d1931-14aThe sea hunterscClive Cussler & Craig Dirgo.h[sound recording] /0 aNew York :bSimon & Schuster Audio,cc1996. a2 sound cassettes (3 hrs.) :banalog. mono. aAbridged.0 aRead by James Naughton and George Grizzard. 0aShipwrecks. 0aUnderwater archaeology.10aDirgo, Craig.10aNaughton, James.10aGrizzard, George. aLVLcACkAC 910.4 Cu bMAINp32000000066986r9.20u4228u199 bMAINp31000000061835r9.20u4229u20001103 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000210013424500560015526000360021130000210024752002870026865000230055565000220057865000230060094200220062395200410064595200430068695200430072995200410077243183LVL20000719000000.0960311s1995 nyu j 00011 eng a94039803 a0590486845 a 94039803 c119d119 aJ Carter10aCarter, Alden R.10aBetween a rock and a hard place /cAlden R. Carter.0 aNew York :bScholastic,cc1995. a213 p. ;c22 cm. aAlthough neither fifteen-year-old Mark Severson nor his diabetic cousin Randy are looking forward to the canoe trip that is a family rite of passage, they begin to enjoy themselves as they make their way through Minnesota's lake country, until the trip becomes a fight for survival. 1aSurvivalxFiction. 1aCousinsxFiction. 1aDiabetesxFiction. aLVLcJFkJ Carter bLB2p37000000002855r8.97u4230u201 bMAINp32000000063278r12.71u4231u202 bMAINp32000000063279r12.71u4232u203 bLB1p36000000001338r8.97u4234u20400852 2200277 450000100060000000300040000600500170001000800390002701000190006602000250008504000130011005000190012308200170014209000130015910000200017224501180019226000380031030000210034850000200036950400300038965000280041965000260044765000330047394200250050695200430053178278LVL19990331000000.0880502s1988 nyu b 00110 eng a88137213 //r89 a0671661566 :c$18.95 aDLCcDLC0 aRC552.R44bN660 219a155.6/33 c120d12010aNorwood, Robin.10aLetters from women who love too much :ba closer look at relationship addiction and recovery /cby Robin Norwood.0 aNew York :bPocket Books,cc1988. a352 p. ;c25 cm. aIncludes index. aBibliography: p. 345-346. 0aRelationship addiction. 0aWomenxMental health. 0aLovexPsychological aspects. aLVLcNFk155.633 NOR bMAINp31000000018564r11.18u4237u20500551 2200205 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000340013624500410017026000370021130000300024894200240027895200430030243184LVL19990313000000.0860723s1986 nyug 00011 eng a86020559 a0877958327 a 86020559 c121d121 aAF Burgess1 aBurgess, Anthony,d1917-1993.14aThe pianoplayers /cAnthony Burgess. aNew York :bArbor House,cc1986. a208 p. :bmusic ;c22 cm. aLVLcAFkAF Burgess bMAINp32000000038180r10.00u4238u20600359 2200145 450000100060000000300040000600500170001000800410002701000130006809000130008110000280009424500280012294200210015095200420017164241LVL20010809144412.0920514s19xx xxu 00010 eng d a52005441 c122d1221 aGrey, Zane,d1872-1939.10aCaptives of the desert. aLVLcWESkW Grey bMAINp31000000030583r2.06u4239u20701130 2200313 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009710000260011024500410013626000470017730000280022452001430025265000370039565000330043265000130046565100240047894200240050295200410052695200420056795200410060995200420065095200410069295200420073395200410077536166LVL20011123111038.0951107r19951987nyu 00011 eng a0449703746 anpl95001512 c123d12310aMarsden, John,d1950-10aSo much to tell you /cJohn Marsden.0 aNew York :bFawcett Juniper,c1995, c1987. a119 p. ;c18 cm. ;dpa. aSent to a hospital by her mother, Marina, a disfigured Australian girl who refuses to speak, reveals her thoughts and feelings in a diary. 1aPhysically handicappedxFiction. 1aEmotional problemsxFiction. 1aDiaries. 1aAustraliaxFiction. aLVLcYAkYA Marsden bLB2p37000000006190r2.25u4240u208 bMAINp32000000075611r3.25u4241u209 bLB1p36000000010412r3.25u4242u210 bMAINp35000000004186r3.25u4243u211 bLB2p34000000016948r3.25u4244u212 bMAINp31000000067740r3.25u4245u213 bLB1p33000000024025r2.94u4246u21400840 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009409000130011009200130012310000290013624500660016526000360023130000510026752000960031865000580041465000340047265000170050694200220052395200410054543185LVL20010928122328.0921124s1974 nyuabf 00010 eng a73022269 a038000321X aonv90003661 c124d124 a982.6 Re10aRead, Piers Paul,d1941-10aAlive :bthe story of the Andes survivors /cPiers Paul Read.0 aNew York :bAvon Books,cc1974. a318 [16] p. of plates :bill. ;c18 cm. ;dpa. aDiscusses the ordeal of the survivors of an airplane crash in 1972 in the Andes wilderness. 0aSurvival (after airplane accidents, shipwrecks, etc.) 0aAeronauticsxAccidentsy1972. 0aCannibalism. aLVLcNFk982.6 Re bLB2p34000000002585r3.25u4247u21500970 2200313 450000100060000000300040000600500170001000800410002701000190006802000250008703500200011204000230013205000210015506000170017608200180019309000130021110000240022424500870024825000120033526000370034730000330038450000200041765000400043765000610047770000270053874000260056594200230059195200420061450204LVL20020712113859.0860116s1986 nyua 001 0 eng c a86001354 //r88 a081291211X :c$17.95 a 86001354 //r88 aDNLM/DLCcDLCdDLC0 aRJ386.bF45 1986 aWD 300 F312c0 219a618.92/97 c125d1251 aFeldman, Bernard R.14aThe complete book of children's allergies /cB. Robert Feldman with David Carroll. a1st ed. aNew York :bTimes Books,cc1986. aix, 307 p. :bill. ;c25 cm. aIncludes index. 0aAllergy in childrenxPopular works. 2aHypersensitivityxin infancy & childhoodxpopular works.10aCarroll, David,d1942-01aChildren's allergies. aLVLcNFk618.92 Fe bMAINp35000000002873r6.95u4249u21600637 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200190012110000210014024500400016125000210020126000320022230000210025450000260027565000240030194200270032595200430035236167LVL19990317000000.0930804s1993 nyu 00011 eng a92031601 a039913817X a 92031601 c126d126 aSF Mc- Caffrey1 aMcCaffrey, Anne.10aDamia's children /cAnne McCaffrey. a1st American ed. aNew York :bPutnam,cc1993. a272 p. ;c24 cm. a"An Ace/Putnam book." 0aTelepathyxFiction. aLVLcSCIkSF McCaffrey bMAINp31000000005849r13.77u4252u21701061 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000270013424500920016126000360025330000290028950400510031852001090036960000320047865000190051065000150052965000310054470000250057594200220060095200420062295200420066495200410070643186LVL20020919140733.0911202s1992 nyua j b 00110beng a91045988 a0590446916 a 91045988 c127d127 aJB Truth10aMcKissack, Pat,d1944-10aSojourner truth :bain't I a woman? /cby Patricia C. McKissack and Fredrick McKissack.0 aNew York :bScholastic,cc1992. a186 p. :bill. ;c22 cm. aIncludes bibliographical references and index. aA biography of the former slave who became well-known as an abolitionist and advocate of women's rights.11aTruth, Sojourner,dd. 1883. 1aAbolitionists. 1aReformers. 1aAfro-AmericansxBiography.10aMcKissack, Fredrick. aLVLcNFkJB Truth bMAINp32000000037034r8.23u4253u218 bMAINp32000000052745r3.50u4254u219 bLB1p33000000014677r8.23u4255u22000353 2200145 450000100060000000300040000600500170001000800410002702000150006809000130008310000240009624500220012094200230014295200420016564243LVL19990217000000.0930423s19xx xxu 00010 eng d a0553280600 c128d128 aGronau, Mary Ellen.10aGentle conqueror. aLVLcAFkAF Gronau bMAINp31000000033064r2.00u4256u22100805 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200110012110000200013224501300015225000120028226000440029430000340033865000150037265000240038765000150041165000220042674000160044894200200046495200430048443187LVL19990313000000.0871001s1987 nyua 00010 eng a87028375 a0312013523 a 87028375 c129d129 a133 Go1 aGoodman, Linda.10aLinda Goodman's star signs :bthe secret codes of the universe : forgotten rainbows and forgotten melodies of ancient wisdom. a1st ed. aNew York :bSt. Martin's Press,cc1987. axli, 477 p. :bill. ;c24 cm. 0aOccultism. 0aPsychical research. 0aAstrology. 0aNew Age movement.01aStar signs. aLVLcNFk133 Go bMAINp32000000039424r14.27u4257u22200572 2200217 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200150011010000280012524500300015325000200018326000410020330000210024465000220026594200240028795200430031171263LVL19990401000000.0931015s1993 nyu d 00011 eng a0385310870 anpl93001264 c130d130 aLP Leonard1 aLeonard, Elmore,d1925-10aPronto /cElmore Leonard. aLarge print ed. aNew York :bDelacorte Press,cc1993. a392 p. ;c24 cm. 0aLarge type books. aLVLcLPkLP Leonard bMAINp31000000044962r27.95u4258u22301121 2200313 450000100060000000300040000600500170001000800390002701000130006602000250007903500160010404000200012005000250014008200160016509000130018110000350019424500450022926000440027430000210031850000400033950000270037951000430040651000220044951000090047152002500048052100110073094200230074195200430076450207LVL19990220000000.0880615r1989 nyu 00011 eng a88040311 a067082416X :c$19.95 aflb01770202 aDLCcDLCdICrlF0 aPR9199.3.D3bL9 19890 219a813/.54 c131d131 0aDavies, Robertson,d1913-1995.14aThe lyre of Orpheus /cRobertson Davies.0 aNew York, N.Y. :bViking,c1989, c1988. a472 p. ;c24 cm. aSequel to: What's bred in the bone. a1st American trade ed.0 aBooklist Editors' (Reviewers') Choice.0 aNYT Notable Book. aLJ*. aSequel to: The rebel angels and What's bred in the bone. The Cornish Foundation, against all common sense, undertakes to stage an opera. Many of the participants find unusual, unexplained happenings in their lives, as the production takes shape.2 aAdult. aLVLcAFkAF Davies bMAINp32000000023595r11.77u4259u22400644 2200229 450000100060000000300040000600500170001000800390002701000190006602000250008504000130011005000310012308200140015409000130016810000420018124500370022326000440026030000210030465000260032594200210035195200420037278283LVL20020911123411.0780503s1978 nyu 00011 eng a78003975 //r84 a0312282591 :c$12.95 aDLCcDLC0 aPZ4.K233aPR6061.A945bFar a823/.9/14 c132d13210aKaye, M. M.,d1908-q(Mary Margaret),14aThe far pavilions /cM. M. Kaye.0 aNew York :bSt. Martin's Press,cc1978. a957 p. ;c24 cm. 0aAfghan WarsxFiction. aLVLcAFkAF Kaye bMAINp31000000021931r7.77u4260u22500334 2200133 450000100060000000300040000600500170001000800410002709000130006810000310008124500240011294200220013695200420015836170LVL19990317000000.0940518s19xx xxu 00010 eng d c133d1331 aPercy, Walker,d1916-1990.14aThe last gentlemen. aLVLcAFkAF Percy bMAINp32000000008332r3.97u4261u22600960 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200170012110000220013824500420016026000510020230000330025344000160028650400250030252001610032765000130048865000170050194200270051895200420054595200420058795200410062943189LVL19990313000000.0870804s1988 wiua j b 00010 eng a87023226 a0817232656 a 87023226 c134d134 aJNF 551.5 Br10aBreiter, Herta S.10aWeather /cwords by Herta S. Breiter.0 aMilwaukee :bRaintree Childrens Books,cc1988. a46 p. :bcol. ill. ;c24 cm. 0aRead about. aBibliography: p. 46. aAn introduction to weather discussing such concepts as evaporation and condensation and the natural occurrence of rain, snow, thunderstorms, and hurricanes. 1aWeather. 1aMeteorology. aLVLcJNFkJNF 551.5 Br bMAINp32000000040211r8.50u4262u227 bMAINp31000000043557r8.50u4263u228 bLB1p33000000015754r8.50u4264u22900752 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200110012110000270013224500360015926000350019530000210023050000390025165000530029065000510034365000410039494200210043595200420045650208LVL20020912100959.0840827s1984 nyu 00011 eng a84020116 a0025515500 a 84020116 c135d135 aM Hill10aHill, Reginald,d1936-10aExit lines /cby Reginald Hill.0 aNew York :bMacmillan,cc1984. a262 p. ;c22 cm. a"A Dalziel-Pascoe murder mystery." 0aDalziel, Andrew (Fictitious character)xFiction. 0aPascoe, Peter (Fictitious character)xFiction. 0aPolicexFiction.zEnglandzYorkshire aLVLcMYSkM Hill bMAINp32000000001910r7.91u4265u23000997 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200100012110000280013124500670015926000490022630000350027552002070031065000230051794200210054095200430056195200420060495200430064695200420068936171LVL19990317000000.0920720s1993 mnua j 00011 eng a92028656 a0876147775 a 92028656 c136d136 aE Orr10aOrr, Katherine Shelley.10aStory of a dolphin /ctext and illustrations by Katherine Orr.0 aMinneapolis, MN :bCarolrhoda Books,cc1993. a[32] p. :bill. ;c22 x 27 cm. aLaura's father succeeds in befriending a dolphin who seems to like people, but other people on the island are not so considerate and must be educated in how to respect the dolphin's rights and feelings. 1aDolphinsxFiction. aLVLcEASYkE Orr bMAINp32000000043238r11.86u4266u231 bLB2p34000000010796r11.86u4267u232 bMAINp31000000045201r11.86u4268u233 bLB1p33000000016813r11.86u4269u23400608 2200217 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200140011210000180012624500270014426000370017130000230020850000520023194200230028395200420030695200420034843190LVL19990313000000.0920113s1966 nyu j 0110eng d a0440972922 aonv90001963 c137d137 aYA Duncan1 aDuncan, Lois.10aRansom /cLois Duncan. aNew York :bLaurel-Leaf,cc1966. a172 p. ;c18 cm.;. aAlso published under title "Five were missing." aLVLcYAkYA Duncan bMAINp32000000041347r2.31u4270u235 bMAINp31000000044146r2.31u4272u23600298 2200121 450000100060000000300040000600500170001000800410002709000130006824500370008194200160011895200420013450209LVL19990220000000.0940817s19xx xxu 00010 eng d c138d13810aConsumer Reports 1994 September. aLVLcPERkA bMAINp32000000018347r2.95u4273u23701689 2200385 450000100060000000300040000600500170001000700100002700800410003703500160007803700320009409000130012609200150013924502450015426000520039930000560045150000470050750600310055451100930058552001850067852100200086352100130088353800570089665000220095365000190097570000230099470000220101770000190103970000270105870000500108574000370113574000460117294200240121895200610124271266LVL19990401000000.0vf cbahos941013p19891987cau175 g vleng d avid93001354 a37070A/BbWarner Home Video c139d139 aAV Charles00aCharles Dickens' Little DorritcA Sands Film Production ; Cannon Screen Entertainment ; produced by John Brabourne and Richard Goodwin ; adapted for the screen and directed by Christine Edzard.h[videorecording] ,nFilm 1.pNobody's fault / aBurbank, CA :bWarner Home Video,c1989, c1987. a2 videocassettes (175 min.) :bsd., col. ;c1/2 in. aClosed-captioned for the hearing impaired. aFor private home use only.1 aSarah Pickering, Derek Jacobi, Alec Guinness, Joan Greenwood, Roshan Seth, Cyril Cusack. aFirst portion of a 2-part adaptation of the story about the daughter of a man in English debtor's prison who makes a life of her own. Second portion entitled Little Dorrit's story.8 aMPAA rating: G. aGeneral. aVHS Hi-fi digitally processed Dolby surround stereo. 0aHistorical films. 0aFeature films.11aEdzard, Christine.11aPickering, Sarah.11aJacobi, Derek.11aGuinness, Alec,d1914-11aDickens, Charles,d1812-1870.tLittle Dorrit.01aNobody's faulth[videorecording]01aLittle Dorrit, film oneh[videorecording] aLVLcAVkAV Charles bMAINdMAINp31000000030447r64.85u4274u238v2003-09-0100703 2200217 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200170011224501280012925000310025726000570028830000340034565000110037965000310039094200220042195200420044336172LVL20000911040113.0931228s1993 caua c 00000 eng d a0312919514 anpl93001770 c140d140 aREF 737.4 Ed00aEdmund's United States coin prices :bcomprehensive current market prices for all U.S. coins /cPeter Steinlauf, Publisher. avol. 15 No. 1 /April 1994.0 aEl Segundo, CA :bEdmund Publications Corp.,cc1993. a224 p. ;bill. ;c19 cm.; pa. 0aCoins. 0aCoins, AmericanxCatalogs. aLVLcNFk737.4 Ed bMAINp31000000046065r2.89u4275u23901221 2200325 450000100060000000300040000600500170001000700150002700800410004202000150008303500160009803700260011409000130014009200150015310000190016824500540018726000590024130000520030050000160035251100310036852002250039965000490062465000450067365000360071865000350075465000190078970000200080894200240082895200430085250210LVL19990220000000.0ss lsnjlcmnnce951124p19961995mdunnn f eng d a0788704672 anav96000109 a94660bRecorded Books c141d141 aAC Francis1 aFrancis, Dick.10aCome to griefcDick Francis.h[sound recording] /0 aPrince Frederick, MD :bRecorded Books,cp1996, c1995. a8 sound cassettes (10.75 hrs.) :banalog, mono. aUnabridged.0 aNarrated by Simon Prebble. aSid Halley faces the dilemmas, dangers, and decisions of the 1990s. He exposed an adored racing figure as a monster and must testify at the man's trial. But a suicide breaks the proceedings and jar's Halley's conscience. 0aHalley, Sid (Fictitious character)xFiction. 0aPrivate investigatorsxFiction.zEngland 0aHorse racingxFiction.zEngland 0aDetective and mystery stories. 0aTalking Books.1 aPrebble, Simon. aLVLcACkAC Francis bMAINp32000000062876r66.00u4276u24000662 2200241 450000100060000000300040000600500170001000800390002701000190006602000150008504000130010005000320011308200130014509000130015810000260017124500430019726000520024030000210029250000200031365000220033394200230035595200420037857229LVL20011101084800.0770408c19771950mau d 00011 eng a77006771 //r89 a0893400858 aDLCcDLC1 aPZ3.L8938aPS3523.O645bTm5 a813/.5/2 c142d14210aLoring, Emilie Baker.10aTo love and to honor /cEmilie Loring.0 aSouth Yarmouth, Ma. :bJ. Curley,c1977, c1950. a501 p. ;c22 cm. aLarge print ed. 0aLarge type books. aLVLcLPkLP Loring bMAINp31000000022710r9.95u4277u24100707 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000220013624500400015826000400019830000210023865100460025965100510030594200240035695200420038095200430042271267LVL20020925121726.0950316s1995 nyu 00011 eng a95013549 a0688142869 a 95013549 c143d143 aAF Lindsey10aLindsey, Johanna.10aLove me forever /cJohanna Lindsey.0 aNew York :bWilliam Morrow,cc1995. a338 p. ;c24 cm. 0aScotlandxHistoryxFiction.y19th century 0aGreat BritainxHistoryxFiction.y19th Century aLVLcAFkAF Lindsey bLB2p34000000012772r12.90u4278u242 bMAINp31000000058438r12.90u4279u24300687 2200241 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200160011010000220012624500450014826000360019330000300022965000160025965000190027594200260029495200410032095200430036195200410040478287LVL20030328150151.0910601s1990 nyua j 00011 eng a0590430955 aonv90000704 c144d144 aJE Bridwell10aBridwell, Norman.10aClifford's word book /cNorman Bridwell. aNew York :bScholastic,cc1990. a[32] p. :bill. ;c21 cm. 0aVocabulary. 0aDogsxFiction. aLVLcEASYkE Bridwell bLB1p36000000018936r5.95u4280u244 bMAINp31000000035891r10.89u4281u245 bLB1p33000000049541r5.00u4282u24600773 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000240013524500450015926000440020430000360024861000360028463000400032065000520036094200230041295200420043595200420047743193LVL19990313000000.0930304s1993 nyua 00010 eng a93000868 a0312094663 a 93000868 c145d145 a791.43 Li10aLinklater, Richard.10aDazed and confused /cRichard Linklater.0 aNew York :bSt. Martin's Press,cc1993. a124 p. :billus. ;c23 cm.; pa.10aUnited StatesxPopular culture.00aDazed and confused (Motion picture) 0aMotion picturesxSocial aspectszUnited States. aLVLcNFk791.43 Li bMAINp32000000042416r8.23u4284u247 bMAINp31000000044772r8.23u4285u24801299 2200385 450000100060000000300040000600500170001000800390002701000220006603500160008804000200010404300120012405000200013605100300015608200110018609000130019713000290021024500780023926000320031730000330034951000270038251000320040952001490044152100340059052100090062460000360063360000360066960000350070565000290074065000290076965000200079870000250081894200270084395200430087050212LVL20020909100912.0850919s1950 nyua j 000 0 eng a50009157 /AC/r852 aflb01670103 aDLCcDLCdICrlF ae-uk---0 aPZ8.1.W59bDi11 aPZ8.1.W59bDi 11cCopy 2. a398.22 c146d1460 aWhittington and his cat.00aDick Whittington and his cat ;ctold and cut in linoleum by Marcia Brown. aNew York,bScribner,c1950. a[32] p.bcol. illus.c26 cm.0 aCaldecott Medal/Honor.0 aNew York Times Book Review. aA retelling of the legend about a boy who became mayor of London, who heard his future in the Bells of Bow and made his fortune through his cat.0 a4.1bFollett Library Book Co.2 aK-3.10aWhittington, Richard,dd. 1423.11aWhittington, Richard,dd. 1423.17aWhittington, Richard, d. 1423. 1aFolklorezGreat Britain. 7aFolklorezGreat Britain. 7aCatsxFolklore.11aBrown, Marcia,eill. aLVLcJNFkJNF 398.2 Br bMAINp32000000031749r10.00u4286u24900323 2200133 450000100060000000300040000600500170001000800410002709000130006810000190008124500220010094200250012295200420014771269LVL19990401000000.0920214s19xx xxu 00010 eng d c147d1471 aCivardi, Anne.10aHow animals live. aLVLcJNFkJNF 599 Ci bMAINp31000000007880r8.96u4287u25000529 2200205 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200140011210000210012624500340014726000360018130000230021744000180024094200230025895200420028178288LVL19990331000000.0940817s1988 nyu j 00011 eng d a0590416774 anpl94001571 c148d148 aYA Cooney1 aCooney, Linda A.10aJunior /cby Linda A. Cooney. aNew York :bScholastic,cc1988. a220 p. :c18 cm.;. 0aClass of '89. aLVLcYAkYA Cooney bMAINp31000000050737r2.50u4288u25101459 2200421 450000100060000000300040000600500170001000800390002701000170006602000150008303500160009804000200011404300120013405000150014608200100016109000130017110000200018424500780020426000360028230000280031850000200034651000320036651000140039852001160041252100340052852100090056265000390057165000700061065000680068065000180074865000490076665000470081565000160086265000550087870000340093394200280096795200420099550213LVL20020917145956.0790517s1979 nyua j 00110 eng a79015487 /AC a0671329790 aflb00915700 aDLCcDLCdICrlF an------0 aTT22.bD35 a745.5 c149d14910aD'Amato, Janet.10aAlgonquian and Iroquois crafts for you to make /cJanet and Alex D'Amato.0 aNew York :bJ. Messner,cc1979. a96 p. :bill. ;c26 cm. aIncludes index.0 aChildren's Catalog (Wilson)0 aBooklist. aSuggested craft projects accompany a discussion of the life and customs of the Algonquian and Iroquois Indians.0 a6.5bFollett Library Book Co.2 a3-6. 0aIndian craftxJuvenile literature. 0aAlgonquian IndiansxSocial life and customsxJuvenile literature. 0aIroquois IndiansxSocial life and customsxJuvenile literature. 1aIndian craft. 1aAlgonquian IndiansxSocial life and customs. 1aIroquois IndiansxSocial life and customs. 1aHandicraft. 1aIndians of North AmericaxSocial life and customs.10aD'Amato, Alex,ejoint author. aLVLcJNFkJNF 745.5 D'A bMAINp31000000008305r7.79u4290u25201091 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200120012110000170013324500640015026000360021430000290025060000240027965000520030365000580035565000790041365000780049265100340057070000270060494200220063195200410065395200420069495200410073678289LVL19990331000000.0890208s1992 nyua 00110aeng a89001124 a0803706731 a 89001124 c150d150 aB Parks10aParks, Rosa.10aRosa Parks :bmy story /cby Rosa Parks with James Haskins.0 aNew York :bDial Books,cc1992. a192 p. :bill. ;c22 cm.10aParks, Rosa,d1913- 0aAfro-AmericansxBiography.zAlabamazMontgomery 0aCivil rights workersxBiography.zAlabamazMontgomery 0aSegregation in transportationxHistoryy20th century.zAlabamazMontgomery 0aAfro-AmericansxCivil rightsxHistoryy20th century.zAlabamazMontgomery 0aMontgomery (Ala.)xBiography.10aHaskins, James,d1941- aLVLcBIOkB Parks bLB2p34000000002627r9.86u4291u253 bMAINp31000000037867r9.86u4292u254 bLB1p33000000011554r9.86u4293u25500829 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000210013424500440015525000200019926000530021930000210027265000520029365000510034565000380039665000300043465000220046494200220048695200430050836176LVL20030421141040.0931201r19941993meu d 00011 eng a93047303 a0786201681 a 93047303 c151d151 aLP Moyes1 aMoyes, Patricia.10aTwice in a blue moon /cPatricia Moyes. aLarge print ed. aThorndike, Me. :bThorndike Press,c1994, c1993. a257 p. ;c22 cm. 0aTibbett, Henry (Fictitious character)xFiction. 0aTibbett, Emmy (Fictitious character)xFiction. 0aPolice spousesxFiction.zEngland 0aPolicexFiction.zEngland 0aLarge type books. aLVLcLPkLP Moyes bMAINp31000000047526r14.97u4294u25600866 2200205 450000100060000000300040000600500170001000800410002703500160006809000130008409200190009724502190011626001190033530000260045450000170048050000610049765100300055894200290058895200430061743195LVL19990313000000.0931111s1993 ohu 00000 eng d anpl93001485 c152d152 aREF 346.771 Yo00aYour questions answered :bOhio legal rights with emphasis on women's issues /ccompiled by the [Joint] Task Force on Gender Fairness, a joint effort of the Ohio State Bar Association and the Supreme Court of Ohio. a[Columbus, OH] :aPlain City, OH ;bOhio State Bar Association ;b[Distributed by] Bindery & Specialities,cc1993. av, 160 p. ;c28 cm.;. aCover title. a"The 1993 Ohio legal rights handbook" --p. [2] of cover. 0aOhioxLawxPopular works. aLVLcREFkREF 346.771 Yo bMAINp32000000043338r15.00u4295u25700569 2200205 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200140011010000190012424500330014325000200017626000790019665000220027594200230029795200430032057233LVL19990219000000.0910423c19901953enk d 00011 eng a1850578168 aonv90000536 c153d153 aLP Goodis10aGoodis, David.14aThe burglar /cDavid Goodis. aLarge print ed. aLong Preston, North Yorkshire, England :bMagna Print Books,c1990, c1953. 0aLarge type books. aLVLcLPkLP Goodis bMAINp31000000035631r16.95u4296u25800408 2200157 450000100060000000300040000600500170001000800410002702000150006809000130008310000210009624500430011725000250016094200230018595200420020871271LVL19990401000000.0930419s19xx xxu 00010 eng d a0860090787 c154d154 aGordon, Richard.10aDoctor in the house /cRichard Gordon. aLarge print edition. aLVLcLPkLP Gordon bMAINp31000000010610r9.95u4297u25900813 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000170013424501000015126000820025130000410033350000350037450400640040965000330047394200220050695200430052878290LVL19990331000000.0920514s1991 enka b 00110 eng a92160404 a0713721529 a 92160404 c155d155 a639.3 Da1 aDawes, John.10aLivebearing fishes :ba guide to their aquarium care, biology and classification /cJohn Dawes. aLondon :aNew York, N.Y. :bBlandford ;bDistributed by Sterling Pub.,c1991. a240 p. :bill. (some col.) ;c25 cm. aDistributor from label on t.p. aIncludes bibliographical references (p. 105-106) and index. 0aLivebearing aquarium fishes. aLVLcNFk639.3 Da bMAINp31000000042249r23.96u4298u26000681 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012124500770013526000380021230000290025050000200027965000410029973000450034094200230038595200430040836177LVL19990317000000.0930722s1994 nyua 00100 eng a93029734 a0688129633 a 93029734 c156d156 a629.28 Po00aPopular mechanics Saturday mechanic /cthe editors of Popular mechanics. aNew York :bHearst Books,cc1994. a360 p. :bill. ;c29 cm. aIncludes index. 0aAutomobilesxMaintenance and repair.01aPopular mechanics (Chicago, Ill. : 1959) aLVLcNFk629.28 Po bMAINp32000000047593r12.69u4299u26100504 2200145 4500020001500000090001300015100002000028245011600048260004400164300002700208650001700235942002300252952004200275952004100317 a0887306632 c157d15710aMackay, Harvey.10aSharkproof :bget the job you want, keep the job you love-- in today's frenzied job market /cHarvey B. Mackay.0 aNew York, NY :bHarperBusiness,cc1993. axii 339 p. ;c21 cm. ; 0aJob hunting. aLVLcNFk650.14 Ma bMAINp32000000044271r5.22u4301u262 bLB1p33000000017418r5.22u4303u26300939 2200277 450000100060000000300040000600500170001000800390002701000170006602000270008302000220011003500160013208200190014809000130016710000250018024500760020526000380028130000350031949000320035452001270038665000220051365000200053570000380055594200260059395200420061950215LVL19990220000000.0830922s1982 nyua j 00011 eng a81086499 /AC a0307681351 (lib. bdg.) a0307101355 (hard) aflb008011030 219aE Burrowes c158d15810aBurrowes, Elisabeth.12aA sleepy story /cby Elisabeth Burrowes ; illustrated by Richard Brown.0 aNew York :bGolden Press,cc1982. a[24] p. :bcol. ill. ;c16 cm.0 aA First little golden book. aA mother tells her daughter a bedtime story in which each of several animals hears the same bedtime story from its mother. 1aBedtimexFiction. 7aSleepxFiction.11aBrown, Richard Eric,d1946-eill. aLVLcEASYkE Burrowes bMAINp31000000004634r2.25u4305u26400808 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200120012110000240013324500480015726000470020530000230025252001400027565000250041565000210044065000300046194200210049195200420051236178LVL19990317000000.0940706r19911982nyu j 00011 eng a82001195 a0380711168 a 82001195 c159d159 aYA Hahn1 aHahn, Mary Downing.14aThe time of the witch /cMary Downing Hahn. aNew York, N.Y. :bAvon Books,c1991,c1982. a171 p. :c20 cm.;. aLaura tells an old woman of her wish that her parents were back together again, without realizing that she is speaking to a real witch. 1aWitchcraftxFiction. 1aWishesxFiction. 1aFamily problemsxFiction. aLVLcYAkYA Hahn bMAINp32000000048443r3.99u4306u26500372 2200145 450000100060000000300040000600500170001000800410002702000150006809000130008310000170009624500500011394200210016395200420018443197LVL19990313000000.0941027s19xx xxu 00010 eng d a0373114400 c160d16010aCook, Sally.10aInherit your love /bHarlequin Presents 1440. aLVLcAFkPB Cook bMAINp32000000051619r2.89u4308u26600847 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000230013424500760015726000310023330000320026450000260029650000200032250400300034265000670037265000400043965100260047994200220050595200420052750216LVL19990220000000.0860107s1986 nyub b 00110 eng a85045915 a0394551516 a 85045915 c161d161 a363.7 As10aAshworth, William.14aThe late, Great Lakes :ban environmental history /cWilliam Ashworth..0 aNew York :bKnopf,cc1986. ax, 274 p. :bmaps ;c22 cm. aMap on lining papers. aIncludes index. aBibliography: p. 255-262. 0aWaterxPollutionxEnvironmental aspectsxHistory.zGreat Lakes 0aLake ecologyxHistory.zGreat Lakes 0aGreat LakesxHistory. aLVLcNFk363.7 As bMAINp32000000032691r4.95u4309u26700554 2200205 450000100060000000300040000600500170001000800410002703500160006809000130008409200130009710000180011024500570012826000390018530000290022450000200025365000110027394200220028495200420030657235LVL20030614111408.0911031s1988 nyua 00110 eng d aonv90001559 c162d162 a635.9 Mc10aMcHoy, Peter.14aThe gardener's encyclopedia of bulbs /cPeter McHoy.0 aNew York :bGallery Books,cc1988. a151 p. :bill. ;c25 cm. aIncludes index. 0aBulbs. aLVLcNFk635.9 Mc bLB1p33000000009401r14.95u4310u26800522 2200193 450000100060000000300040000600500170001000800410002702000150006809000130008309200130009610000220010924500400013126000410017130000270021244000260023994200220026595200410028764254LVL20020308164603.0960220s19uu 000 0 eng d a0373289138 c163d163 aAF Mayne10aMayne, Elizabeth.10aMan of the mist /cElizabeth Mayne. aToronto :bHarlequin Books ;cc1996. a291 p. ;c18 cm. ; pa. 0aHarlequin Historical. aLVLcPBkPB Mayne bLB2p37000000011300r4.50u4311u26900819 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200120012110000250013324500520015825000120021026000440022230000210026650000290028765000500031665000410036665000400040765100290044794200220047695200430049843198LVL20010730140445.0950329s1995 nyu 00011 eng a95015232 a0312130244 a 95015232 c164d164 aM Zubro10aZubro, Mark Richard.10aAnother dead teenager /cby Mark Richard Zubro. a1st ed.0 aNew York :bSt. Martin's Press,cc1995. a194 p. ;c22 cm. a"A Paul Turner mystery." 0aTurner, Paul (Fictitious character)xFiction. 0aGay menxFiction.zIllinoiszChicago 0aPolicexFiction.zillinoiszChicago 0aChicago (Ill.)xFiction. aLVLcMYSkM Zubro bMAINp32000000063107r12.37u4313u27001352 2200409 450000100060000000300040000600500170001000800390002701000220006602000150008802000270010303500160013004000200014605000160016605100250018208200120020709000130021910000210023224500740025326000400032730000400036750000390040750000310044651000320047751000230050951000140053252001540054652100340070052100090073465000130074365000220075665000350077870000190081394200240083295200430085695200430089950217LVL19990220000000.0811202s1981 nyua j 000 1 eng a79002682 /AC/r864 a0060255234 a0060255242 (lib. bdg.) aflb00529707 aDLCcDLCdICrlF0 aPZ7.S47bOu aPZ7.S47bOucCopy 2.0 219a[E] c165d1651 aSendak, Maurice.10aOutside over there /cMaurice Sendak ; [calligraphy by Jeanyee Wong]. a[New York] :bHarper & Row,cc1981. a[40] p. :bcol. ill. ;c24 x 27 cm. a"An Ursula Nordstrom book"--p. [4] aIllustrated by the author.0 aChildren's Catalog (Wilson)0 aALA Notable Books.0 aBooklist. aWith Papa off to sea and Mama despondent, Ida must go outside over there to rescue her baby sister from goblins who steal her to be a goblin's bride.0 a4.3bFollett Library Book Co.2 aK-3. 1aFantasy. 1aSistersxFiction. 7aBrothers and sistersxFiction.10aWong, Jeanyee. aLVLcEASYkE Sendak bMAINp32000000014317r11.91u4314u271 bMAINp32000000024152r13.46u4315u27200860 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009409000130011009200170012310000210014024500740016126000420023530000280027750000570030550000200036252001040038265000150048670000240050194200270052595200420055257236LVL19990219000000.0930901s1992 ilua j 00110 eng a92000968 a1566740746 anpl93000983 c166d166 aJNF 551.2 Kr1 aKrafft, Maurice.10aVolcano! /c[written by Maurice Krafft ; illustrated by Luc Favreau]. aLincolnwood, IL :bHTS Books,cc1992. a35 p. :bill. ;c19 cm. aTranslation of: Les volcans, des montagnes vivantes. aIncludes index. aExamines prominent volcanoes of the world, discussing how volcanoes are created and why they erupt. 1aVolcanoes.11aFavreau, Luc,eill. aLVLcJNFkJNF 551.2 Kr bMAINp31000000044468r9.95u4316u27301124 2200325 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200120011010000230012224500400014526000370018530000370022252000940025965000260035365000230037965000210040294200230042395200420044695200420048895200420053095200600057295200410063295200420067395200420071595200410075736180LVL20020525092400.0930526s1994 maua j 00011 eng a0316110507 anpl96000707 c167d167 aE Brown10aBrown, Marc Tolon.10aArthur's chicken pox /cMarc Brown.0 aBoston :bLittle, Brown,cc1994. a[32] p. :bill. ;c26 cm. ;dpa. aArthur the aardvark catches chicken pox a week before he is supposed to go to the circus. 1aChicken poxxFiction. 1aAardvarkxFiction. 1aCircusxFiction. aLVLcEASYkE Brown bMAINp32000000063626r2.82u4317u274 bMAINp32000000112486r2.82u4318u275 bMAINp35000000001537r2.82u4319u276 bMAINdMAINp35000000006286r2.82u4320u277v2003-09-01 bLB2p34000000013448r2.82u4321u278 bMAINp31000000059135r2.82u4322u279 bMAINp31000000059136r2.82u4323u280 bLB1p33000000025266r2.82u4324u28100624 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000220013424500430015626000400019930000210023950000200026065000130028065000240029394200220031795200430033950218LVL19990220000000.0920228s1992 nyu 00110 eng a92001492 a068808544X a 92001492 c168d168 a641.5 Ro1 aRoberts, Michael.10aWhat's for dinner? /cMichael Roberts. aNew York :bWilliam Morrow,cc1992. a333 p. ;c26 cm. aIncludes index. 0aCookery. 0aDinners and dining. aLVLcNFk641.5 Ro bMAINp32000000037185r12.69u4326u28200845 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200120012110000350013324500470016826000610021530000350027649000230031150000320033452000970036665000270046370000240049094200240051495200410053864256LVL20020131135112.0901113r19911975nyua 00011 eng a90024308 a0815602553 a 90024308 c169d169 aEdmonds10aEdmonds, Walter Dumaux,d1903-10aBert Breen's barn /cby Walter D. Edmonds.0 aSyracuse, NY :bSyracuse University Press,c1991, c1975. a270 p. :bill. ;c21 cm. ; pa. 0aNew York classics. aIllustrated by Eric Sloane. aA young man attempts to claim ownership to an old barn rumored to contain a hidden treasure. 1aCountry lifexFiction.11aSloane, Eric,eill. aLVLcAFkAF Edmonds bLB1p36000000004194r5.97u4327u28300412 2200145 450000100060000000300040000600500170001000800410002701000130006809000130008110000200009424500830011494200270019795200420022478294LVL19990331000000.0920214s19xx xxu 00010 eng d a81017398 c170d1701 aThomas, Sherry.10aWe didn't have much, but we sure had plenty :brural women in their own words. aLVLcNFkLP 305.43 THO bMAINp31000000012059r8.95u4328u28400616 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000190013524500470015425000120020126000410021330000230025494200230027795200430030095200430034343200LVL19990313000000.0930706s1994 nyu 00010 eng a93026889 a0679429972 a 93026889 c171d171 a811.54 Cl1 aClampitt, Amy.10aSilence opens :bpoems /cby Amy Clampitt. a1st ed. aNew York :bAlfred A. Knopf,cc1994. ax, 96 p. ;c22 cm. aLVLcNFk811.54 Cl bMAINp32000000046978r11.51u4329u285 bMAINp31000000048172r11.51u4330u28600980 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000180013424500820015226000400023430000210027450400510029565000480034665000320039465000270042665000120045365000370046565000220050265100350052494200220055995200420058195200430062350219LVL20020812165758.0941020s1995 nyu b 00110 eng a94039206 a0531112144 a 94039206 c172d172 a305.8 Ga10aGay, Kathlyn.11a"I am who I am" :bspeaking out about multiracial identity /cby Kathlyn Gay.0 aNew York :bFranklin Watts,cc1995. a144 p. ;c24 cm. aIncludes bibliographical references and index. 0aPluralism (Social sciences)zUnited States. 0aPluralism (Social sciences) 0aRacismzUnited States. 0aRacism. 0aMulticulturalismzUnited States. 0aMulticulturalism. 0aUnited StatesxRace relations. aLVLcNFk305.8 Ga bLB2p34000000008260r11.94u4332u287 bMAINp31000000081498r11.94u4333u28801113 2200349 450000100060000000300040000600500170001000800390002701000170006602000220008303500160010503900180012104000200013905000230015908200140018209000130019610000190020924500810022826000360030930000280034544000260037352001270039952100340052652100090056065000240056965000330059365000240062665000310065070000240068194200230070595200350072864257LVL20000817000000.0850717s1986 nyua j 00011 eng a85018491 /AC a0380898683 (pbk.) aflb017187030 a2b3c3d3e3 aDLCcDLCdICrlF0 aPZ7.R5446bAt 19860 219a[Fic] c173d17310aRoberts, Thom.14aThe Atlantic free balloon race /cThom Roberts ; illustrated by Megan Lloyd.0 aNew York :bAvon Books,cc1986. a78 p. :bill. ;c19 cm. 3aAn Avon Camelot book. aEleven-year-old Ned joins his eccentric relative Mr. T. Gray and a pet Kangaroo in a balloon race from New York to London.0 a6.1bFollett Library Book Co.2 a3-6. 1aKangaroosxFiction. 1aBalloon ascensionsxFiction. 7aKangaroosxFiction. 7aHot air balloonsxFiction.11aLloyd, Megan,eill. aLVLcJFkJ Roberts bLB2p37000000012254u4335u28900437 2200145 450000100060000000300040000600500170001000800410002701000130006809000130008110000390009424500920013394200240022595200420024971276LVL20030621133306.0950323s19uu 000 0 eng d a89012549 c174d1741 aMorison, Samuel Eliot,d1887-1976.14aThe two-ocean war :ba short history of the United States Navy in the Second World War. aLVLcNFk940.54 MOR bMAINp32000000026536r9.12u4336u29001111 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009409000130011009200140012310000190013724500380015626000300019430000200022444000260024450000230027052002450029394200230053895200410056195200420060295200410064495200410068595200420072695200410076836182LVL20000203000000.0950203s1992 nyu j 00011 eng a94148039 a0440406595 anpl95000297 c175d175 aJ Paulsen10aPaulsen, Gary.10aDunc's Halloween /cGary Paulsen.0 aNew York :bDell,cc1992. a84 p. ;c20 cm.00aCulpepper adventures. a"A Yearling book." aDunc and his best friend, Amos, are planning the best route to get the most candy on Halloween. But their plans change when Amos is slightly bitten by a werewolf. He begins scratching himself and chasing UPS trucks: he's become a werepuppy! aLVLcJFkJ Paulsen bLB2p37000000006002r2.07u4337u291 bMAINp32000000055717r2.07u4338u292 bLB1p36000000001880r2.07u4339u293 bLB2p34000000007406r2.07u4340u294 bMAINp31000000053320r2.07u4341u295 bLB1p33000000021770r2.07u4342u29600891 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000290013424500810016325000220024426000410026630000180030750400560032565000550038165000360043665000290047265000480050194200220054995200420057150220LVL19990220000000.0920206s1992 nyu b 00010 eng a92052634 a0060969555 a 92052634 c176d176 a371.2 Gl1 aGlasser, William,d1925-14aThe quality school :bmanaging students without coercion /cWilliam Glasser. a2nd, expanded ed. aNew York :bHarperPerennial,cc1992. a310 p. ;ccm. aIncludes bibliographical references (p. [307]-310). 0aSchool management and organizationzUnited States. 0aQuality controlzUnited States. 0aMotivation in education. 0aSchool improvement programszUnited States. aLVLcNFk371.2 Gl bMAINp32000000035024r6.60u4344u29700622 2200217 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200190011210000220013124500430015326000290019630000280022594200270025395200410028095200420032195200410036364258LVL19990217000000.0911125s1989 nyu 00011 eng d a0451450892 aonv90001683 c177d177 aSF Prat- chett10aPratchett, Terry.10aGuards! guards! /cby Terry Pratchett.0 aNew York :bROC,cc1989. a350 p. ;c18 cm. ;dpa. aLVLcSCIkSF Pratchett bLB2p34000000006054r2.97u4345u298 bMAINp31000000037497r2.97u4346u299 bLB1p33000000009682r2.97u4347u30000363 2200145 450000100060000000300040000600500170001000800410002701000130006809000130008110000170009424500400011194200230015195200430017471277LVL19990401000000.0950324s19uu 000 0 eng d a73092816 c178d178 aMoore, Warr.10aWeapons of the American Revolution. aLVLcNFk973.3 MOO bMAINp31000000020164r10.49u4348u30100758 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000240013524500380015926000420019730000210023965000520026065000540031265100290036694200240039595200420041995200430046136183LVL20020417142216.0941220s1995 nyu 00011 eng a94048797 a0892965711 a 94048797 c179d179 aM MacLeod10aMacLeod, Charlotte.14aThe odd job /cCharlotte MacLeod.0 aNew York :bMysterious Press,cc1995. a278 p. ;c22 cm. 0aKelling, Sarah (Fictitious character)xFiction. 0aWomen detectivesxFiction.zMassachusettszBoston 0aBoston (Mass.)xFiction. aLVLcMYSkM MacLeod bLB2p37000000011531r15.00u4349u302 bMAINp32000000057187r11.18u4350u30300930 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010810000220012124500530014326000450019630000350024152001080027665000220038465000310040665100230043794200230046095200420048395200430052595200430056895200410061143202LVL19990313000000.0920812s1993 nyua j 00011 eng a92029793 a0688103529 a 92029793 c180d18010aStock, Catherine.10aWhere are you going Manyoni? /cCatherine Stock.0 aNew York :bMorrow Junior Books,cc1993. a[40] p. :bcol. ill. ;c29 cm. aA child living near the Limpopo River in Zimbabwe encounters several wild animals on her way to school. 1aAnimalsxFiction. 1aBlacksxZimbabwexFiction. 1aZimbabwexFiction. aLVLcEASYkE Stock bMAINp32000000047758r8.63u4352u304 bMAINp32000000081917r16.00u4353u305 bMAINp31000000072170r16.00u4354u306 bLB1p33000000019269r8.85u4355u30700782 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000510013624500410018726000520022830000330028044000270031350000250034050400260036580000700039194200250046195200420048650221LVL19990220000000.0951125s1985 caub b 00011 eng a85072029 a0884042820 a 85072029 c181d181 aSF Hubbard10aHubbard, L. Rond1911-1986.q(La Fayette Ron),14aThe invaders plan /cL. Ron Hubbard.0 aLos Angeles, CA :bBridge Publications,cc1985. axiv, 559 p. :bmap ;c18 cm.10aMission earth ;vv. 1. aMap on lining paper. aBibliography: p. xiv.1 aHubbard, L. Rond1911-q(La Fayette Ron),tMission earth ;vv. 1. aLVLcSCIkSF Hubbard bMAINp32000000060985r3.61u4356u30800476 2200181 450000100060000000300040000600500170001000800410002702000150006809000130008309200120009610000180010824500360012626000430016230000260020594200210023195200420025264259LVL20030401095427.0960228s19uu 000 0 eng d a0373240171 c182d182 aAF Toth10aToth, Pamela.10aBuchanan's baby /cPamela Toth. aNew York :bSilhouette Books ;cc1996. a249p. ;bpa. ;c18cm. aLVLcAFkAF Toth bMAINp31000000105133r3.99u4357u30900874 2200253 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200130011010000310012324500880015426000480024230000360029065000540032665000410038065100570042165100350047894200230051395200420053695200420057836184LVL20010828112910.0950713c19951981nyua 00011 eng a0446404373 anpl95000957 c183d183 aM Peters10aPeters, Ellis,d1913-1995.14aThe leper of Saint Giles :bthe fifth chronicle of Brother Cadfael /cEllis Peters.0 aNew York :bMysterious Press,c1995, c1981. a201 p. :bill. ;c17 cm. ;dpa. 0aCadfael, Brother (Fictitious character)xFiction. 0aMonksxFiction.zEnglandzShrewsbury 0aGreat BritainxHistoryxFiction.yStephen, 1135-1154 0aShrewsbury (England)xFiction. aLVLcMYSkM Peters bMAINp32000000058309r3.30u4358u310 bMAINp31000000055038r3.30u4359u31100894 2200253 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200120011010000250012224500350014726000340018230000360021652001910025265000270044365000240047094200210049495200410051595200420055695200420059843203LVL20020226155346.0911206s1992 nyuab j 00011 eng a0440409268 anpl94001870 c184d184 aJ Byars10aByars, Betsy Cromer.10aCoast to coast /cBetsy Byars.0 aNew York :bYearling,cc1992. a164 p. :bill. ;c20 cm. ;dpa. aThirteen-year-old Birch encourages her grandfather to fulfill his dream of flying his old Piper Cub plane from South Carolina to California and then informs him that she is coming along. 1aGrandfathersxFiction. 1aAirplanesxFiction. aLVLcJFkJ Byars bLB2p37000000007958r3.99u4360u312 bMAINp32000000050664r2.35u4361u313 bMAINp35000000002083r2.35u4362u31400811 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000190013624500290015526000500018430000330023449000320026750000200029952001040031965000100042380000440043394200250047795200430050250222LVL19990220000000.0880927s1989 flua j b 00110 eng a88031602 a0865923264 a 88031602 c185d185 aJNF 598 St1 aStone, Lynn M.10aOwls /c[Lynn M. Stone]. aVero Beach, FL :bRourke Enterprises,cc1989. a24 p. :bcol. ill. ;c19 cm.14aThe Bird discovery library. aIncludes index. aDescribes the appearance, habits, daily life, nesting, infancy, and enemies of this nocturnal bird. 1aOwls.1 aStone, Lynn M.tBird discovery library. aLVLcJNFkJNF 598 St bMAINp32000000039692r10.75u4363u31501160 2200349 450000100060000000300040000600500170001000800390002701000130006602000270007903500140010604000180012005000200013808200170015809000130017509200150018810000190020324500870022226000500030930000330035949000240039250000380041650000200045452001310047465000280060565000160063370000260064970000270067580000400070294200250074295200430076764260LVL20020102092432.0890227s1990 nyua j 00110 eng a89000918 a1854351540 (lib. bdg.) a 89000918 aDLCcDLCdDLC00aQ164.bK46 199000219a530/.078 c186d186 aJNF 530 Ke10aKerrod, Robin.10aHow things work /cRobin Kerrod ; illustrated by Mike Atkinson and Sarah Atkinson.0 aNew York :bMarshall Cavendish Corp.,cc1990. a32 p. :bcol. ill. ;c21 cm. 0aSecrets of science. a"Cherrytree books"--Cover p. [4]. aIncludes index. aProjects, activities, and experiments explore such areas of technology as the wheel, rocket power, kite-flying, and magnetism. 1aScientific recreations. 1aTechnology.11aAtkinson, Mike,eill.11aAtkinson, Sarah,eill.1 aKerrod, Robin.tSecrets of science. aLVLcJNFkJNF 530 Ke bMAINp31000000035052r10.95u4364u31601625 2200385 450000100060000000300040000600500170001000700150002700800410004202400160008302800350009903500160013409000130015009200190016310000350018224000480021724501030026526000440036830000690041250000180048150001130049950001180061251100820073051801000081265000160091265000230092865000360095170000290098770000250101670000770104171000290111874000220114794200270116995200430119636185LVL19990317000000.0sdufsngnnmmned951002p19911990gw syn di rus d 1a289435029202a435 039-2bDeutsche Grammophon anav95000242 c187d187 aCD Proko- fiev1 aProkofiev, Sergey,d1891-1953.00aSymphonies,nno. 5, op. 100,rB flat major.00aSymphonie No. 5 op. 100 ; Lieutenant KijÂebsuite, op. 60 /cSerge Prokofiev.h[sound recording] :0 aHamburg :bDeutsche Grammophon,cp1991. a1 sound disc (61 min., 39 sec.) :bdigital, stereo. ;c4 3/4 in. aCompact disc. aThe 2nd work is a suite from the film music, using baritone voice in 2nd and 4th movements; sung in Russian. aProgram notes by David Fanning and Russian (romanized) text with English translation in pamphlet (8 p. : ports.).0 aAndreas Schmidt, baritone ; Berliner Philharmoniker ; Seiji Ozawa, conductor. aRecorded in Jesus-Christus-Kirche, Berlin, Jan. and Nov. 1990 (symphony) and Nov. 1990 (KijÂe). 0aSymphonies. 0aSuites (Orchestra) 0aMotion picture musicxExcerpts.1 aSchmidt, Andreas,d1960-1 aOzawa, Seiji,d1935-12aProkofiev, Sergey,d1891-1953hSound recording.pSuite.tPoruchik Kizhe.2 aBerliner Philharmoniker.01aLieutenant KijÂe. aLVLcCDMkCD Prokofiev bMAINp32000000059386r11.91u4366u31700719 2200217 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200150011010000210012524500500014626000420019630000240023852001480026265000250041094200240043595200420045943204LVL19990313000000.0940928c19911990nyu j 00011 eng a0590452037 anpl94002014 c188d188 aJ Spinelli1 aSpinelli, Jerry.10aManiac Magee :ba novel /cby Jerry Spinelli. aNew York :bScholastic,c1991, c1990. a184 p. ;c20 cm. ;. aAfter his parents die, Jeffrey Lionel Magee's life becomes legendary, as he accomplishes athletic and other feats which awe his contemporaries. 7aNewbery Medal books. aLVLcJFkJ Spinelli bMAINp32000000052070r3.50u4367u31800820 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200180012110000240013924500500016326000400021330000330025344000210028650000200030752001160032765000230044365000170046694200280048395200430051150223LVL19990220000000.0930624s1989 ilua j 00110 eng a89000456 a0516011650 a 89000456 c189d189 aJNF 595.78 Le1 aLepthien, Emilie U.10aMonarch butterflies /cby Emilie U. Lepthien. aChicago :bChildrens Press,cc1989. a44 p. :bcol. ill. ;c22 cm. 2aA New true book. aIncludes index. aDescribes the physical characteristics and habits of the Monarch, the only butterfly to migrate for the winter. 1aMonarch butterfly. 1aButterflies. aLVLcJNFkJNF 595.78 Le bMAINp32000000040363r13.74u4368u31900612 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000310013624500400016725000200020726000460022730000210027365000220029494200240031695200420034064261LVL20020826115924.0901227r19911972meu d 00011 eng a90029099 a1560541199 a 90029099 c190d190 aLP Pilcher1 aPilcher, Rosamunde,d1924-10aSnow in April /cRosamunde Pilcher. aLarge print ed. aThorndike, Me. :bThorndike Press,c1991. a244 p. ;c22 cm. 0aLarge type books. aLVLcLPkLP Pilcher bMAINp31000000066009r3.50u4369u32000363 2200145 450000100060000000300040000600500170001000800410002701000130006809000130008110000210009424500360011594200230015195200430017471280LVL19990401000000.0950324s19uu 000 0 eng d a90052997 c191d1911 aPhillips, Roger.14aThe Random House book of herbs. aLVLcNFk635.7 Phi bMAINp31000000033453r13.54u4370u32100717 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000370013524500400017225000210021226000380023330000280027165000380029965000320033765000290036994200230039895200420042136186LVL20020123112431.0950620r19951980nyu 00011 eng a95032375 a0553377825 a 95032375 c192d192 aAF Atwood10aAtwood, Margaret Eleanor,d1939-10aLife before man /cMargaret Atwood. aBantam trade ed.0 aNew York :bBantam Books,cc1995. a351 p. ;c21 cm. ;dpa. 0aMan-woman relationshipsxFiction. 0aMiddle aged womenxFiction. 0aMarried peoplexFiction. aLVLcAFkAF Atwood bMAINp32000000062303r6.57u4371u32200983 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000190013424501540015326000340030730000470034150000430038850000200043165000280045165000270047994200220050695200420052895200410057095200410061195200410065243205LVL20010718093512.0880212s1988 nyua 00110 eng a88003781 a0806968621 a 88003781 c193d193 a746.3 La10aLammer, Jutta.10aChristmas cross stitch /cJutta Lammer ; [translated by Elizabeth Reinersmann ; photography by Fotostudio Thomas Weiss ; drawings by Gisele Thommel].0 aNew York :bSterling,cc1988. a64 p. :bill. (some col.) ;c28 cm. ;dpa. aTranslation of: Weihnachtsstickereien. aIncludes index. 0aCross-stitchxPatterns. 0aChristmas decorations. aLVLcNFk746.3 La bMAINp32000000054077r6.47u4372u323 bLB2p34000000002223r6.47u4373u324 bLB2p37000000017494r6.47u4374u325 bLB1p33000000021109r6.47u4375u32600804 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000200013624500660015626000410022230000210026365000560028465000630034065100370040394200250044095200430046595200420050850224LVL19990220000000.0921118s1993 nyu 00011 eng a92040280 a0385305052 a 92040280 c194d194 aM Pronzini10aPronzini, Bill.10aDemons :ba "nameless detective" mystery /cby Bill Pronzini.0 aNew York :bDelacorte Press,cc1993. a230 p. ;c22 cm. 0aNameless Detective (Fictitious character)xFiction. 0aPrivate investigatorsxFiction.zCaliforniazSan Francisco 0aSan Francisco (Calif.)xFiction. aLVLcMYSkM Pronzini bMAINp32000000052633r11.77u4376u327 bLB1p33000000016144r11.77u4377u32800841 2200265 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200180011010000190012824500880014725000200023526000370025530000210029260000440031360000260035765000450038365000220042865100550045094200270050595200430053264262LVL19990217000000.0900523s1990 mau d 00010deng a0816150478 aonv90000367 c195d195 aLP 973.927 No1 aNoonan, Peggy.10aWhat I saw at the revolution :ba political life in the Reagan era /cPeggy Noonan. aLarge print ed. aBoston, MA :bG.K. Hall,cc1990. a509 p. ;c24 cm.10aReagan, RonaldxFriends and associates.10aNoonan, Peggy,d1950- 0aSpeechwritersxBiography.zUnited States 0aLarge type books. 0aUnited StatesxPolitics and governmenty1981-1989. aLVLcNFkLP 973.927 No bMAINp31000000046697r20.95u4378u32901031 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000260013624501870016226000500034930000350039944000250043450400510045965100400051065100480055070000280059894200250062695200430065195200590069436187LVL19990317000000.0941214r19961988nyuab j b 00110 eng a94045827 a0791034135 a 94045827 c196d196 aJNF 909 Ay 0aAylesworth, Thomas G.10aTerritories and possessions :bPuerto Rico, U.S. Virgin Islands, Guam, American Samoa, Wake, Midway, and other islands, Micronesia /cby Thomas G. Aylesworth, Virginia L. Aylesworth.0 aNew York :bChelsea House Publishers,cc1996. a96 p. :bill. ; maps ;c21 cm. 0aDiscovering America. aIncludes bibliographical references and index. 1aUnited StatesxInsular possessions. 1aUnited StatesxTerritories and possessions.10aAylesworth, Virginia L. aLVLcJNFkJNF 909 Ay bMAINp32000000064897r18.95u4379u330 bLB2dLB2p37000000000338r18.95u4380u331v2004-12-1100653 2200229 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200150011010000260012524500420015126000460019330000330023950000200027265000450029265000200033794200240035795200420038143206LVL19990313000000.0930430s1993 mau 00110 eng a0201408325 anpl95000338 c197d197 a305.896 Re10aReed, Ishmael,d1938-10aAiring dirty laundry /cIshmael Reed.0 aReading, Mass. :bAddison-Wesley,cc1993. axxv, 287 p. ;c21 cm. ;dpa. aIncludes index. 0aAfro-AmericansxSocial conditionsy1975- 0aAfro-Americans. aLVLcNFk305.896 Re bMAINp32000000056052r6.92u4381u33200798 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012124501000013425000130023426000350024730000280028250000280031065000460033870000230038471000210040794200220042895200410045095200410049150225LVL20030514124029.0951207s1996 nyu 00000 eng a95052501 a0028610709 a 95052501 c198d198 a378.1 Pr00aPreparation for the SAT Scholastic Assessment Test /c[editors] Edward J. Deptula ... [et al.]. a1997 ed.0 aNew York :bMacmillan,cc1996. a604 p. ;c28 cm. ;dpa. aAt head of title: Arco. 0aScholastic assessment testxStudy guides.10aDeptula, Edward J.20aArco Publishing. aLVLcNFk378.1 Pr bLB2p37000000006492r7.64u4382u333 bLB1p33000000026097r7.64u4383u33400752 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200110012110000310013224500940016326000380025730000320029550000540032750000200038165000460040194200200044795200430046736188LVL19990317000000.0910313r19911990nyu 00110 eng a91012097 a0020852010 a 91012097 c199d199 a282 Gr10aGreeley, Andrew M.,d1928-14aThe Catholic myth :bthe behavior and beliefs of American Catholics /cAndrew M. Greeley.0 aNew York :bCollier Books,c1991. aix, 322 p. ;c21 cm. ;dpa. aOriginally published: New York : Scribner, c1990. aIncludes index. 0aCatholicsxReligious life.zUnited States aLVLcNFk282 Gr bMAINp32000000066193r10.95u4384u33501459 2200397 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000200013524500840015526000690023930000400030844000380034852001080038652100480049465000220054265000210056465000230058570000220060871000360063083000370066694200250070395200420072895200420077095200420081295200410085495200420089595200420093795200410097995200410102043207LVL20021114131258.0940606r19951989nyua j 00011 eng a94021151 a0679871462 a 94021151 c200d200 aE Hayward10aHayward, Linda.14aThe biggest cookie in the world /cby Linda Hayward ; illustrated by Joe Ewers.0 aNew York :bRandom House/Children's Television Workshop,cc1995. a31 p. :bcol. ill. ;c23 cm. ;dpa. 0aStep into reading. A Step l book. aWhile waiting for his cookies to bake in the oven, Cookie Monster daydreams about his favorite subject. a"A step 1 book Preschool- grade 1."--Cover. 1aCookiesxFiction. 1aBakingxFiction. 1aMonstersxFiction.11aEwers, Joe,eill.20aChildren's Television Workshop. 0aStep into reading.pStep 1 book. aLVLcEASYkE Hayward bMAINp32000000057317r2.31u4385u336 bMAINp32000000059795r9.99u4386u337 bMAINp35000000001688r2.31u4387u338 bLB2p34000000005260r2.31u4388u339 bMAINp31000000054362r2.31u4389u340 bMAINp31000000056356r9.99u4390u341 bLB1p33000000022362r2.31u4391u342 bLB1p33000000023658r9.99u4392u34300896 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000290013524500900016425000200025426000380027430000280031261000450034065000520038565000510043765000220048894200230051095200420053395200430057550226LVL19990220000000.0951107s1996 nyu d 00011 eng a95050059 a0679758844 a 95050059 c201d201 aLP Truman 0aTruman, Margaret,d1924-10aMurder at the National Gallery :ba new capitol crimes mystery /cby Margaret Truman. aLarge print ed.0 aNew York :bRandom House,cc1996. a553 p. ;c24 cm. ;dpa.20aNational Gallery of Art (U.S.)xFiction. 0aSmith, Annabel (Fictitious character)xFiction. 0aWomen art dealersxFiction.zWashington (D.C.) 0aLarge type books. aLVLcLPkLP Truman bLB1p36000000006339r14.40u4393u344 bMAINp31000000060642r14.40u4394u34500342 2200145 450000100060000000300040000600500170001000800410002701000130006809000130008110000180009424500200011294200220013295200420015457245LVL20000107000000.0950324s19uu 000 0 eng d a58010192 c202d202 aField, Peter.10aRustler's rock. aLVLcAFkAF Field bMAINp31000000034737r5.40u4395u34600827 2200265 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200110011010000210012124500670014226000310020930000280024060000320026865000560030065000390035665000340039565000270042994200200045695200430047695200420051936189LVL20000911204841.0930722s1994 nyu 00010deng a0688142346 anpl96001895 c203d203 a811 Gi10aGiovanni, Nikki.10aRacism 101 /cNikki Giovanni ; foreword by Virginia C. Fowler.0 aNew York :bQuill,cc1994. a203 p. ;c21 cm. ;dpa.10aGiovanni, NikkixBiography. 0aAfro-American women poetsxBiography.y20th century 0aAfro-AmericansxSocial conditions. 0aAfro-AmericansxCivilization. 0aRacismzUnited States. aLVLcNFk811 Gi bMAINp32000000098379r11.00u4397u347 bMAINp31000000062206r6.51u4398u34800575 2200205 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200160011210000210012824500410014926000440019030000280023494200250026295200410028795200410032843208LVL20020308162659.0951016r19931989nyu 00011 eng d a0671872001 anpl95001361 c204d204 aAF McMillan10aMcMillan, Terry.10aDisappearing acts /cTerry McMillan.0 aNew York :bPocket Books,c1993, c1989. a371 p. ;c18 cm. ;dpa. aLVLcAFkAF McMillan bLB1p36000000004507r3.84u4399u349 bLB2p34000000009887r3.84u4400u35000318 2200133 450000100060000000300040000600500170001000800410002709000130006810000280008124500180010994200210012795200360014864265LVL19990217000000.0950324s19uu 000 0 eng d c205d2051 aGrey, Zane,d1872-1939.10aDeer stalker. aLVLcWESkW Grey bMAINp31000000029202u4401u35100583 2200169 450000100060000000300040000600500170001000800410002702000150006809000130008310000240009624501590012065000400027965100350031994200230035495200360037736190LVL19990317000000.0941224s19uu 000 0 eng d a0346124344 c206d206 aWolk, Allan,d1936-14aThe naming of America :bhow continents, countries, states, counties, cities, towns, villages, hamlets & post offices came by their name /cby Allan Wolk. 0aNames, GeographicalzUnited States. 0aUnited StatesxHistory, Local. aLVLcNFk929.4 WOL bMAINp32000000012614u4402u35202157 2200505 450000100060000000300040000600500170001000700150002700800410004202400170008303500160010003700190011609000130013509200150014810000350016324000240019824501530022226000530037530000410042849000290046950000180049850000380051650000550055450502160060951100510082565000210087665000220089765000150091965000320093465000330096670000310099970000850103070000930111570001010120870000940130971000250140374000120142874000240144074000230146474000260148774000210151383000500153494200250158495200420160943209LVL20000912110257.0sdufsngnnmmnee950727s1985 nyuspn i d 1a07464367162 anav95000057 aMYK 36716bCBS c207d207 aCD Smetana1 aSmetana, BedÉrich,d1824-1884.00aMÂa vlast.pVltava.14aThe MoldaubVltava ; 3 dances from the Bartered bride /cSmetana. Carnival overture : op. 92 ; Four Slavonic dances / DvoÉrÂak.h[sound recording] =0 aNew York, NY :bCBS Records Masterworks,cp1985. a1 sound disc :bdigital ;c4 3/4 in.1 aGreat performances ;v3. aCompact disc. aThe 1st work is a symphonic poem. aThe Slavonic dances originally for piano, 4 hands.2 aThree dances from The bartered bride. Polka (5:10) ; Furiant (2:10) ; Dance of the comedians (3:58) -- Four Slavonic dances. Op. 46 no. 1 (3:52) ; op. 46 no. 3 (4:55) ; op. 72 no. 2 (5:58) ; op. 72 no. 7 (2:55).0 aCleveland Orchestra ; George Szell, conductor. 0aSymphonic poems. 0aOperasxExcerpts. 0aOvertures. 0aOrchestral music, Arranged. 0aDance musiczCzechoslovakia.1 aSzell, George,d1897-1970.12aSmetana, BedÉrich,d1824-1884.hSound recording.kSelectionstProdanÂa nevÉesta.12aDvoÉrÂak, AntonÂin,d1841-1904hSound recording.pKarneval.tPÉrÂiroda, Ézivot a lÂaska.12aDvoÉrÂak, AntonÂin,d1841-1904.hSound recording.kSelectionsnop. 46 ;oarr.tSlovanskÂe tance,12aDvoÉrÂak, AntonÂin,d1841-1904.hSound recording.kSelectionsnop. 72.tSlovanskÂe tance,2 aCleveland Orchestra.01aVltava.41aThe bartered bride.01aCarnival overture.01aFour Slavonic dances.01aSlavonic dances. 0aGreat performances (CBS Records (Firm)) ;v3. aLVLcCDMkCD Smetana bMAINp32000000058034r8.50u4403u35300564 2200193 450000100060000000300040000600500170001000800410002709000130006810000220008124500580010326000400016130000420020151100250024365000160026870000180028494200250030295200430032757247LVL19990424000000.0910708s19xx xxu 00010 eng d c208d2081 aHardwick, Mollie.10aMalice domesticcMollie Hardwick.h[sound recording]/0 aBoston, Mass. :bG.K. Hall,cc1987. a6 sound cassettes (7 hrs.) :banalog.0 aRead by Jan Francis. 0aAudiobooks.10aFrancis, Jan. aLVLcACkAC Hardwick bMAINp31000000017254r14.95u4404u35401157 2200325 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200120012110000240013324500390015726000420019630000210023844000180025952001770027765000410045465000190049565100500051480000390056494200210060395200410062495200420066595200410070795200420074895200410079050229LVL20000911001138.0920121s1992 nyu j 00011 eng a92002769 a0553081101 a 92002769 c209d209 aJ Nixon10aNixon, Joan Lowery.10aLand of hope /cJoan Lowery Nixon.0 aNew York, NY :bBantam Books,cc1992. a171 p. ;b22 cm. 0aEllis Island. aRebekah, a fifteen-year-old Jewish immigrant arriving in New York City in 1902, almost abandons her dream of getting an education when she is forced to work in a sweatshop. 1aEmigration and immigrationxFiction. 1aJewsxFiction. 1aNew York (N.Y.)xHistoryxFiction.y1898-19511 aNixon, Joan Lowery.tEllis Island. aLVLcJFkJ Nixon bLB2p37000000002514r9.28u4407u355 bMAINp32000000046152r9.28u4408u356 bLB2p34000000007393r9.28u4409u357 bMAINp31000000068118r9.28u4411u358 bLB1p33000000018514r9.28u4412u35900839 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200180012110000350013924500770017426000440025130000420029549000200033752001490035765000220050694200270052895200420055543211LVL19990313000000.0770202c19771956nyua j 00011 eng a77001976 a0140502068 a 77001976 c210d210 aE Bemel- mans 0aBemelmans, Ludwig,d1898-1962.10aMadeline and the bad hat /cwritten and illustrated by Ludwig Bemelmans.0 aNew York :bPuffin Books,c1977, c1956. a[64] p. :bcol. ill. ;c23 cm. ;dpa.0 aPicture puffin. aWhen the Spanish ambassador moves in next door, Madeline and the rest of the twelve little girls discover that his son is not the best neighbor. 1aStories in rhyme. aLVLcEASYkE Bemelmans bMAINp32000000066414r3.95u4413u36000982 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200190012110000200014024500830016026000430024330000280028644000240031450000400033852000990037861000480047765000230052574000300054894200290057895200430060795200420065050230LVL19990220000000.0930322s1993 mnua j 00010 eng a93013084 a1562392395 a 93013084 c211d211 aJNF 796.357 It10aItalia, Robert.14aThe Toronto Blue Jays :bworld champions of baseball /cwritten by Bob Italia.0 aEdina, MN :bAbdo & Daughters,cc1993. a40 p. :bill. ;c26 cm. 4aThe Year in sports. aBaseball champions, 1993: on spine. aPresents highlights of this Canadian team's 1992 season which ended with a world championship.21aToronto Blue Jays (Baseball team)xHistory. 1aBaseballxHistory.01aBaseball champions, 1993. aLVLcJNFkJNF 796.357 It bMAINp31000000048291r14.95u4415u361 bLB1p33000000018978r14.95u4416u36200772 2200241 450000100060000000300040000600500170001000800390002701000130006604000170007905000150009608200100011109000130012110000230013424501480015725000140030526000340031930000390035365000350039265000390042794200220046695200420048857249LVL20020916094649.0751021s1966 nyua 00010 eng a65028939 aDLCcWadDLC00aTT180.bC600a674.1 c212d21210aColeman, Donald G.10aWoodworking factbook ;bbasic information on wood for wood carvers, home workshop craftsmen, tradesmen, and instructors,cby Donald G. Coleman. a[1st ed.]0 aNew York,bR. Spellerc[1966] a240 p.billus. (part col.)c24 cm. 0aWoodxHandbooks, manuals, etc. 0aWoodworkxHandbooks, manuals, etc. aLVLcNFk684.8 Co bMAINp31000000023241r4.35u4417u36300894 2200289 450000100060000000300040000600500170001000800390002701000130006602000220007903900180010104000130011904300210013205000250015308200180017809000130019610000370020924500960024625000150034226000560035730000350041350000200044850400300046865000400049894200240053895200420056271287LVL19990401000000.0850307c19851984oncab b 00110 eng a85006046 a0553342266 (pbk.)0 a2b3c3d3e3 aDLCcDLC ae-fr---ae-gx---1 aD756.5.A7bM26 1985b0 219a940.54/21 c213d21310aMacDonald, Charles Brown,d1922-12aA time for trumpets :bthe untold story of the Battle of the Bulge /cCharles B. MacDonald. aBantam ed.0 aToronto ;aNew York :bBantam Books,cc1985, c1984. a712 p. :bill., maps ;c23 cm. aIncludes index. aBibliography: p. 682-686. 0aArdennes, Battle of the, 1944-1945. aLVLcNFk940.54 MCD bMAINp31000000021234r7.06u4418u36400330 2200133 450000100060000000300040000600500170001000800410002709000130006810000350008124500190011694200250013595200360016036193LVL19990317000000.0920714s19xx xxu 00010 eng d c214d2141 aChandler, Raymond,d1888-1959.10aThe big sleep. aLVLcMYSkM Chandler bMAINp32000000001627u4419u36500656 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000260013524500350016125000200019626000460021630000210026265000220028394200230030595200430032895200430037150231LVL19990220000000.0940127r19941938meu d 00011 eng a94005474 a1560547014 a 94005474 c215d215 aLP Dawson1 aDawson, Peter,d1907-10aDead man pass /cPeter Dawson. aLarge print ed. aThorndike, Me. :bThorndike Press,c1994. a280 p. ;c22 cm. 0aLarge type books. aLVLcLPkLP Dawson bMAINp32000000047887r13.46u4420u366 bMAINp31000000048915r13.46u4421u36700326 2200133 450000100060000000300040000600500170001000800410002709000130006810000260008124500200010794200230012795200420015036194LVL19990317000000.0930421s19xx xxu 00010 eng d c216d2161 aSontag, Susan,d1933-10aOn photography. aLVLcNFk770.1 SON bMAINp32000000025691r7.95u4422u36800359 2200145 450000100060000000300040000600500170001000800410002701000130006809000130008110000230009424500300011794200230014795200430017036195LVL19990317000000.0941224s19uu 000 0 eng d a91052722 c217d2171 aLansdown, Richard.10aYour child's development. aLVLcNFk155.4 LAN bMAINp32000000032064r17.38u4423u36900337 2200133 450000100060000000300040000600500170001000800410002709000130006810000220008124500290010394200280013295200430016043214LVL19990313000000.0930426s19xx xxu 00010 eng d c218d218 aMalcolmson, Anne.10aYankee Doodle's cousins. aLVLcJREFkJR 398.2 MAL bMAINp32000000016787r10.00u4424u37000773 2200265 450000100060000000300040000600500170001000800390002701000190006602000150008504000130010005000170011308200130013009000130014310000240015624500880018026000410026830000340030950000200034350400300036365000190039365000220041270000480043494200250048278309LVL19990331000000.0760312s1976 nyua b 00110 eng a76008194 //r82 a0440098823 aDLCcDLC0 aHQ772.5.bA4 a649/.122 c219d219 0aAmes, Louise Bates.10aYour two-year old :bterrible or tender /cby Louise Bates Ames and Frances L. Ilg.0 aNew York :bDelacorte Press,cc1976. avii, 149 p. :bill. ;c22 cm. aIncludes index. aBibliography: p. 139-142. 0aChild rearing. 0aChild psychology.10aIlg, Frances Lillian,d1902-ejoint author. aLVLcNFk649.122 AME00288 2200121 450000100060000000300040000600500170001000800410002709000130006824500270008194200160010895200420012443215LVL19990313000000.0941224s19uu 000 0 eng d c220d22010aCOBBLESTONE OCT. 1983. aLVLcPERkJ bMAINp32000000022100r1.95u4426u37100696 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000230013524500940015826000550025230000320030765000210033994200230036095200420038395200410042550234LVL19990220000000.0740621s1974 ohua 00010 eng a74012216 a0814202179 a 74012216 c221d221 a917.71 Mc10aMcMillen, Wheeler.10aOhio farm /cby Wheeler McMillen ;with illustrations by John D. Firestone and Associates.0 a[Columbus] :bOhio State University Press,cc1974. ax, 220 p. :bill. ;c24 cm. 0aFarm lifezOhio. aLVLcNFk917.71 Mc bMAINp32000000050679r8.80u4427u372 bLB2p34000000002478r8.80u4428u37300355 2200133 450000100060000000300040000600500170001000800410002709000130006810000540008124500180013594200260015395200420017957253LVL19990219000000.0950324s19uu 000 0 eng d c222d2221 aWodehouse, P. G.d1881-1975.q(Pelham Grenville),10aGirl in blue. aLVLcAFkAF Wodehouse bMAINp31000000019152r3.50u4429u37401102 2200325 450000100060000000300040000600500170001000800390002701000190006602000310008503900180011604000130013405000220014708200120016909000130018110000200019424000350021424501320024926000540038130000290043550000630046450000200052750400300054765000380057765000350061565000290065065000340067994200210071395200420073464272LVL19990217000000.0810306r19811975vtua bd 00110 eng a81002379 //r85 a0882660640 (pbk.) :c$5.950 a2b3c3d3e3 aDLCcDLC0 aS603.5.bR56 19810 219a635 c223d22310aRiotte, Louise.10aSecrets of companion planting.10aCarrots love tomatoes :bsecrets of companion planting for successful gardening /cLouise Riotte ; illustrations by the author.0 aCharlotte, Vt. :bGarden Way Pub.,c[1981] c1975. a226 p. :bill. ;c23 cm. aOriginally published: Secrets of companion planting. 1975. aIncludes index. aBibliography: p. 214-216. 0aCompanion plantingxDictionaries. 0aCompanion cropsxDictionaries. 0aGardeningxDictionaries. 0aPlants, UsefulxDictionaries. aLVLcNFk635 RIO bMAINp31000000024422r6.95u4430u37500537 2200193 450000100060000000300040000600500170001000800410002702000150006809000130008309200170009610000210011324500330013426000430016730000270021044000380023794200260027595200420030178310LVL20010804201531.0960514s19uu 000 0 eng d a0373240023 c224d224 aAF Henderson10aHenderson, Beth.10aMr. angel /cBeth Henderson. aNew York :bSilhouette Books ;cc1995. a249 p. ;c18 cm. ; pa. 0aSilhouette Special Editionv1002. aLVLcPBkPB Henderson bMAINp31000000020015r3.75u4432u37600989 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012124501500013626000480028630000290033449000360036350000220039965000270042165000230044870000190047170000170049070000280050774000420053594200240057795200430060195200430064450235LVL19990220000000.0801112s1980 iaua 00100 eng a79055159 a0696000253 a 79055159 c225d225 a745.594 Be00aBetter homes and gardens treasury of Christmas crafts & foods /c[crafts editors, Joan Cravens, Ann Levine, food editor, Rosemary C. Hutchinson].0 aDes Moines, Iowa :bMeredith Corp.,cc1980. a384 p. :bill. ;c29 cm. 0aBetter homes and gardens books. aIncludes indexes. 0aChristmas decorations. 0aChristmas cookery.10aCravens, Joan.10aLevine, Ann.10aHutchinson, Rosemary C.01aTreasury of Christmas crafts & foods. aLVLcNFk745.594 Be bMAINp32000000052291r12.95u4433u377 bMAINp31000000052215r15.95u4434u37800506 2200193 450000100060000000300040000600500170001000800390002701000160006604000130008205000180009509000130011310000260012624500330015226000400018530000210022594200240024695200420027078311LVL19990331000000.0730208c19601959nyu 00001 eng a60005312 /L aDLCcDLC0 aPZ4.K745bSe2 c226d22610aKnowles, John,d1926-12aA separate peace :ba novel.0 aNew York,bMacmillan,c1960 [c1959] a186 p. ;c21 cm. aLVLcAFkAF Knowles bMAINp31000000015201r2.34u4437u37900247 2200085 4500090001300000100003800013245004000051942002700091952004300118 c227d2271 aFitzgerald, F. Scott,d1896-1940.14aThe Great Gatsbyh[sound recording] aLVLcACkAC Fitzgerald bMAINp32000000029593r30.35u4438u38000815 2200277 450000100060000000300040000600500170001000800390002701000130006602000440007903900180012304000130014105000270015408200160018109000130019710000240021024500550023426000460028930000210033549000390035649000240039550000300041965000220044994200240047195200420049564274LVL19990217000000.0840619c19841983mau d 00011 eng a84013576 a0816137102 (pbk. : lg. print) :c$10.950 a2b3c3d3e3 aDLCcDLC1 aPS3563.A31865bS6 19840 219a813/.54 c228d22810aMacLeod, Charlotte.10aSomething the cat dragged in /cCharlotte MacLeod.0 aBoston, Mass. :bG.K. Hall,c1984, c1983. a294 p. ;c24 cm.0 aG.K. Hall large print book series.0 aNightingale series. aPublished in large print. 0aLarge type books. aLVLcLPkLP MacLeod bMAINp31000000010968r6.57u4440u38100777 2200253 450000100060000000300040000600500170001000800390002701000160006604000130008204300120009505000170010708200160012409000130014010000300015324501100018325000140029326000350030730000270034265100460036965100440041594200220045995200420048178312LVL20020911091524.0720420s1963 maua 00000 eng a63013450 /L aDLCcDLC an-usa--0 aHC107.K4bC3 a309.1769154 c229d22910aCaudill, Harry M.,d1922-10aNight comes to the Cumberlands :ba biography of a depressed area .cWith a foreword by Stewart L. Udall. a[1st ed.]0 aBoston,bLittle, Brownc[1963] a394 p.billus.c22 cm. 0aAppalachian PlateauxEconomic conditions. 0aAppalachian PlateauxSocial conditions. aLVLcNFk975.4 Ca bMAINp31000000020540r4.50u4441u38200856 2200265 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200150011210000210012724500540014826000440020230000230024694200240026995200420029395200430033595200420037895200420042095200430046295200430050595200420054836199LVL19990921000000.0930322s1993 nyu 00011 eng d a0671666258 aonv90004183 c230d230 aAF Collins10aCollins, Jackie.10aAmerican star :ba love story /cJackie Collins..0 aNew York :bSimon & Schuster,cc1993. . a624 p. ;c24 cm. . aLVLcAFkAF Collins bLB2p37000000004874r13.05u4442u383 bMAINp32000000041861r13.05u4443u384 bLB1p36000000001219r13.05u4444u385 bLB2p34000000002934r13.05u4446u386 bMAINp31000000042365r13.05u4447u387 bMAINp31000000058160r13.05u4448u388 bLB1p33000000015095r13.05u4449u38900674 2200217 450000100060000000300040000600500170001000800390002703500160006609000130008209200190009510000380011424500600015226000580021230000210027065000380029165000350032965000230036494200260038795200430041350237LVL19990220000000.0941216s1850 nyu j 00011 eng anpl94002660 c231d231 aYA Haw- thorne1 aHawthorne, Nathaniel,d1804-1864.14aThe scarlet letter :ba romance /cNathaniel Hawthorne. aNew York :bInternational Collectors Library,cc1950. a214 p. :c22 cm. 0aPuritansxFiction.zMassachusetts 0aWomenxFiction.zMassachusetts 0aAdulteryxFiction. aLVLcYAkYA Hawthorne bMAINp32000000054783r10.00u4450u39000989 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903900180009404000130011205000240012508200210014909000130017010000280018324500630021125000210027426000820029530000550037750000820043250000200051450400300053465000200056465000380058494200230062295200420064557256LVL20010718100409.0810417r19811978nyuaf b 00110 eng a81006125 a05173480120 a2b3c3d3e3 aDLCcDLC0 aNK4894.A2bK56 19810 219a688.7/221/09 c232d23210aKing, Constance Eileen.14aThe collector's history of dolls /cConstance Eileen King. aBonanza 1981 ed.0 aNew York :bBonanza Books :bDistributed by Crown Publishers,c[1981], c1977. axxxii, 608 p., [22] p. of plates :bill. ;c25 cm. aOriginally published: London : R. Hale ; New York : St. Martin's Press, 1978. aIncludes index. aBibliography: p. 599-601. 0aDollsxHistory. 0aDollsxCollectors and collecting. aLVLcNFk688.7 KIN bLB2p37000000017552r13.98u4451u39101055 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000210013524500710015625000170022726000560024430000420030052002060034265000200054865000190056870000290058794200250061695200410064195200410068295200420072371294LVL20000911152511.0860403c19891986nyua j 00011 eng a86080955 a0374429855 a 86080955 c233d233 aE Yorinks10aYorinks, Arthur.10aHey, Al /cstory by Arthur Yorinks ; pictures by Richard Egielski. aSunburst ed.0 aNew York :bFarrar, Straus and Giroux,c1989, 1986. a[32] p. :bcol. ill. ;c26 cm. ;dpa. aA city janitor and his treasured canine companion are transported by a large colorful bird to an island in the sky, where their comfortable paradise existence threatens to turn them into birds as well. 1aBirdsxFiction. 1aDogsxFiction.11aEgielski, Richard,eill. aLVLcEASYkE Yorinks bLB2p37000000000267r2.73u4452u392 bLB2p34000000011302r2.73u4453u393 bMAINp31000000007356r2.73u4454u39401605 2200421 450000100060000000300040000600500170001000800390002701000190006602000160008502000210010103500160012204000200013804300210015805000200017908200150019909000130021410000250022724502560025225000110050826000390051930000570055849000410061550000200065650400300067651000480070651000480075451000360080252000780083852100340091652100210095065000440097165000370101565000290105270000410108194200200112295200410114236200LVL20030514142827.0750812s1976 mauaf b 00110 eng a75026885 //r87 a0395240824. a0395240840bpbk. aflb01177101 aDLCcDLCdICrlF an-cn---an-us---0 aQL715.bB8 1976 a599/.09/73 c234d23410aBurt, William Henry.12aA field guide to the mammals :bfield marks of all North American species found north of Mexico /ctext and maps by William Henry Burt ; ill. by Richard Philip Grossenheider ; sponsored by the National Audubon Society and National Wildlife Federation. a3d ed.0 aBoston :bHoughton Mifflin,c1976. axxv, 289 p., [28] leaves of plates :bill. ;c19 cm.0 aThe Peterson field guide series ; 5. aIncludes index. aBibliography: p. 271-276.0 aSenior High School Library Catalog (Wilson)0 aJunior High School Library Catalog (Wilson)0 aPublic Library Catalog (Wilson) aOn t.p.: Field marks of all North American species found north of Mexico.0 a8.0bFollett Library Book Co.2 aYoung Ad.-Adult. 0aMammalsxIdentification.zUnited States 0aMammalsxIdentification.zCanada 7aMammalsxIdentification.10aGrossenheider, Richard Philip,eill. aLVLcNFk599 Bu bLB1p33000000004810r9.19u4456u39501200 2200385 450000100060000000300040000600500170001000800390002701000170006602000270008302000250011003500160013504000200015105000240017108200120019509000130020710000190022024500420023926000430028130000350032451000320035951000100039151000240040152000950042552100340052052100090055465000190056365000190058265000190060194200240062095200420064495200430068695200420072995200430077143219LVL20000823000000.0870526s1988 nyua j 00011 eng a87014936 /AC a0688075142 (lib. bdg.) a0688075134 :c$11.95 aflb01697001 aDLCcDLCdICrlF0 aPZ7.K28132bGd 19880 219a[E] c235d23510aKeller, Holly.10aGeraldine's big snow /cHolly Keller.0 aNew York :bGreenwillow Books,cc1988. a[26] p. :bcol. ill. ;c21 cm.0 aChildren's Catalog (Wilson) aSLJ*.0 aHorn Book Magazine. aGeraldine can't wait for the snow to come so that she can coast down the hill on her sled.0 a2.3bFollett Library Book Co.2 aK-3. 1aSnowxFiction. 1aPigsxFiction. 7aSnowxFiction. aLVLcEASYkE Keller bLB2p37000000012524r12.95u4457u396 bMAINp32000000026088r10.95u4458u397 bMAINp32000000043134r2.95u4459u398 bMAINp31000000014012r11.59u4460u39900844 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000180013624500910015425000120024526000540025730000400031152000840035165000210043565100280045670000270048494200250051195200420053650238LVL19990220000000.0900213s1990 nyua j 00010 eng a90006676 a0688091199 a 90006676 c236d236 aJNF 811 Jo10aJoseph, Lynn.10aCoconut kind of day :bisland poems /cby Lynn Joseph ; illustrated by Sandra Speidel. a1st ed.0 aNew York :bLothrop, Lee & Shepard Books,cc1990. a[30] p. :bcol. ill. ;c24 x 29 cm. aA collection of poems depicting the sights and sounds of the Caribbean islands. 1aAmerican poetry. 1aCaribbean AreaxPoetry.11aSpeidel, Sandra,eill. aLVLcJNFkJNF 811 Jo bMAINp32000000063915r8.02u4461u40000682 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903900180009404000130011205000280012508200160015309000130016910000280018224500410021025000200025126000470027130000210031865000220033994200240036195200430038557257LVL19990219000000.0850321s1985 meu d 00011 eng a85002877 a08962163810 a2b3c3d3e3 aDLCcDLC1 aPS3569.H3927bI35 1985b0 219a813/.54 c237d237 0aSheldon, Sidney,d1917-10aIf tomorrow comes /cSidney Sheldon. aLarge print ed.0 aThorndike, Me. :bThorndike Press,cc1985. a653 p. ;c22 cm. 0aLarge type books. aLVLcLPkLP Sheldon bMAINp31000000011332r17.95u4462u40100339 2200133 450000100060000000300040000600500170001000800410002709000130006810000320008124500290011394200210014295200420016378314LVL19990331000000.0950323s19uu 000 0 eng d c238d238 aHolt, Victoria,d1906-1993.10aMask of the enchantress. aLVLcAFkAF Holt bMAINp31000000014876r6.00u4463u40200985 2200313 450000100060000000300040000600500170001000800390002701000190006602000250008503500200011004000130013004300120014305000170015508200150017209000130018710000240020024501030022426000340032730000630036150000200042450400260044465000270047065000200049765000460051765000460056394200200060995200420062936201LVL20020920131907.0750129s1974 nyuaf b 001 0 eng a74019578 //r89 a0684140292 :c$14.95 a 74019578 //r89 aDLCcDLC an-us---0 aNK4007.bE92 a738.3/0973 c239d2391 aEvans, Paul,d1937-10aArt pottery of the United States :ban encyclopedia of producers and their marks /cby Paul Evans. aNew York :bScribner,c[1974] a353 p., [4] leaves of plates :bill. (some col.) ;c26 cm. aIncludes index. aBibliography: p. 345. 0aArt pottery, American. 0aPotteryxMarks. 0aArt potteryy19th centuryzUnited States. 0aArt potteryy20th centuryzUnited States. aLVLcNFk738 Ev bMAINp32000000011473r6.95u4464u40300361 2200145 450000100060000000300040000600500170001000800410002701000130006809000130008110000210009424500320011594200250014795200430017243220LVL20010501122105.0930423s19xx xxu 00010 eng d a91072891 c240d240 aKemelman, Harry.14aThe day the rabbi resigned. aLVLcMYSkM Kemelman bMAINp32000000028511r11.31u4465u40400784 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000340013624500760017025000120024626000430025830000240030160000340032560000190035965000380037865000350041694200240045195200430047550239LVL20010829101923.0940712s1995 nyu 00010deng a94028966 a0963662023 a 94028966 c241d241 a508.767 Ne10aNehring, Radine Trees,d1935-10aDear Earth :ba love letter from Spring Hollow /cRadine Trees Nehring. a1st ed.0 aBrooklyn, N.Y. :bBrett Books,cc1995. ax, 164 p. ;c22 cm.10aNehring, Radine Trees,d1935-10aNehring, John. 0aNatural historyzOzark Mountains. 0aCountry lifezOzark Mountains. aLVLcNFk508.767 Ne bMAINp31000000054461r10.77u4467u40500511 2200193 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200190011210000220013124500360015326000320018930000280022194200270024995200410027664277LVL20020306092427.0911125s1989 nyu 00011 eng d a0451162331 aonv90001684 c242d242 aSF Prat- chett10aPratchett, Terry.10aSourcery /cby Terry Pratchett.0 aNew York :bSignet,cc1989. a253 p. ;c18 cm. ;dpa. aLVLcSCIkSF Pratchett bLB2p34000000006050r2.39u4468u40600602 2200229 450000100060000000300040000600500170001000800390002701000130006602000240007904000130010305000300011608200130014609000130015910000200017224500390019225000120023126000430024330000210028694200240030795200410033178315LVL20020111154234.0780329s1978 nyu 00011 eng a77027717 a0385141580 :c$7.95 aDLCcDLC0 aPZ4.R688aPS3568.O346bKe a813/.5/4 c243d24310aRoderus, Frank.14aThe Keystone Kid /cFrank Roderus. a1st ed.0 aGarden City, N.Y. :bDoubleday,c1978. a185 p. ;c22 cm. aLVLcWESkW Roderus bLB2p37000000017916r3.00u4469u40700965 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200120012110000220013324500720015525000120022726000450023930000400028452001050032465000230042965000420045270000300049494200230052495200430054795200430059095200420063350240LVL20000111000000.0910312s1992 nyua j 00011 eng a91013434 a0060202491 a 91013434 c244d244 aE Dodds10aDodds, Dayle Ann.10aDo bunnies talk? /cby Dayle Ann Dodds ; pictures by A. Dubanevich. a1st ed.0 aNew York, N.Y. :bHarperCollins,cc1992. a[30] p. :bcol. ill. ;c21 x 27 cm. aIntroduces sounds made by animals, humans, and machines and the words used to describe those sounds. 1aSounds, Words for. 1aEnglish languagexOnomatopoeic words.11aDubanevich, Arlene,eill. aLVLcEASYkE Dodds bMAINp32000000058725r11.89u4470u408 bMAINp31000000084089r11.89u4471u409 bLB1p33000000023158r11.89u4472u41000762 2200241 450000100060000000300040000600500170001000800390002701000130006602000170007902000290009603500160012509000130014109200130015410000230016724500610019025000120025126000360026330000210029952001350032094200220045595200430047757259LVL19990219000000.0800721s1980 nyu j 00011 eng a80007772 a0397319134 : a0397319142 (lib. bdg.) : aflb00350706 c245d245 aJ Eyerly10aEyerly, Jeannette.10aIf I loved you Wednesday :ba novel /cJeannette Eyerly. a1st ed.0 aNew York :bLippincott,cc1980. a120 p. ;c21 cm. aSeventeen-year-old Dennis presents a ring to his first love, his substitute English teacher whose first name he doesn't even know. aLVLcJFkJ Eyerly bMAINp31000000008294r10.00u4473u41100954 2200265 450000100060000000300040000600500170001000800390002701000130006602000290007902000170010803500160012509000130014109200120015410000240016624500570019025000210024726000440026830000260031252002470033865000280058565000190061394200210063295200350065364278LVL20010804225020.0850530r1984 nyu j 00011 eng a85042642 a0060200375 (lib. bdg.) : a0060200367 : aflb01381204 c246d246 aJ Aiken10aAiken, Joan,d1924-10aUp the chimney down and other stories /cJoan Aiken. a1st American ed.0 aNew York, N.Y. :bHarper & Row,cc1984. avii, 248 p. ;c24 cm. aThe last chimney cuckoo -- Miss Hotting's legacy -- The gift-giving -- The dog on the roof -- The missing heir -- Up the chimney down -- Christmas at Troy -- The midnight rose -- The happiest sheep in London -- The fire dogs -- Potter's gray. 0aShort stories, English. 1aShort stories. aLVLcJFkJ Aiken bLB2p37000000013231u4474u41200573 2200205 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200140011210000280012624500420015426000360019630000280023294200240026095200420028495200410032636203LVL20011115165153.0931228c19941954nyu 00011 eng d a0440213088 anpl93001771 c247d247 aW Leonard10aLeonard, Elmore,d1925-14aThe law at Randado /cElmore Leonard.0 aNew York :bDell,c1994, c1954. a200 p. ;c17 cm. ;dpa. aLVLcWESkW Leonard bMAINp32000000044148r2.89u4477u413 bLB2p34000000004716r2.89u4478u41400710 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000250013424500690015926000420022830000450027050000200031560000250033565000430036094200220040395200430042550241LVL19990220000000.0950515s1995 nyuaf 00110aeng a95011361 a0684808943 a 95011361 c248d248 a070.4 Br10aBradlee, Benjamin C.12aA good life :bnewspapering and other adventures /cBen Bradlee.0 aNew York :bSimon & Schuster,cc1995. a514, [32] p. of plates :bill. ;c24 cm. aIncludes index.10aBradlee, Benjamin C. 0aJournalistsxBiography.zUnited States aLVLcNFk070.4 Br bMAINp32000000060133r16.20u4481u41501035 2200325 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009404000200011005000260013008200170015609000130017310000260018624500400021225000160025226000390026826300100030730000210031751000290033851000210036752001800038852100110056865000210057994200230060095200430062395200430066636204LVL19990317000000.0861008c19871985nyu 00011 eng a86026478 a0399132783 aflb01661602 aDLCcDLCdICrlF0 aPR6052.A6475bD3 19870 219a823/.914 c249d24910aBarker, Clive,d1952-14aThe damnation game /cClive Barker. aAce 1st ed.0 aNew York :bPutnams,c1987, c1985. a8705. a379 p. ;c24 cm.0 aFiction Catalog (Wilson)0 aLibrary Journal. aSprung from prison to serve as a bodyguard to a world-renowned industrialist, Marty finds someone is coming to collect the soul of his employer as payment for a gambling debt.2 aAdult. 7aHorrorxFiction. aLVLcAFkAF Barker bMAINp32000000010851r11.18u4482u416 bMAINp31000000012682r11.18u4483u41700333 2200121 4500020001500000090001300015100002200028245002800050300002300078942002600101952004200127952004200169 a0440207665 c250d25010aDickinson, Peter.10aEva /cPeter Dickinson. a219 p. ;c18 cm. ; aLVLcYAkYA Dickinson bMAINp32000000074542r4.50u4485u418 bMAINp31000000057099r2.35u4486u41900546 2200169 4500020001500000090001300015100002000028245003800048260003600086300002300122942002500145952004100170952004200211952004100253952004100294952004100335 a0380755025 c251d25110aZelazny, Roger.10aPrince of chaos /cRoger Zelazny.0 aNew York :bAvon Books,cc1991. a241 p. ;c18 cm. ; aLVLcSCIkSF Zelazny bLB2p37000000001275r2.89u4487u420 bMAINp32000000062568r2.94u4488u421 bLB1p36000000005314r2.89u4489u422 bLB2p34000000006074r2.89u4490u423 bLB2p34000000012693r2.94u4491u42400912 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000290013424500940016326000530025730000280031050000200033865000200035865000310037870000260040994200220043595200410045795200410049895200420053995200410058164280LVL19990217000000.0910426s1991 nju 00110 eng a91016097 a013656299X a 91016097 c252d252 a808.6 St10aSturgeon, Linda Braxton.10aPersonal letters that mean business /cby Linda Braxton Sturgeon and Anne Russell Hagler.0 aEnglewood Cliffs, N.J. :bPrentice Hall,cc1991. a348 p. ;c24 cm. ;dpa. aIncludes index. 0aLetter-writing. 0aCommercial correspondence.10aHagler, Anne Russell. aLVLcNFk808.6 St bLB1p36000000000955r7.51u4492u425 bLB2p34000000002380r7.51u4493u426 bMAINp31000000036490r7.51u4494u427 bLB1p33000000008371r7.51u4495u42800448 2200169 450000100060000000300040000600500170001000800410002701000130006809000130008109200120009410000300010624500360013694200210017295200430019395200420023678318LVL19990409000000.0930407s19xx xxu 00010 eng d a62007926 c253d253 aJ Verne1 aVerne, Jules,d1828-1905.10aAround the word in eighty days. aLVLcJFkJ Verne bMAINp31000000005813r11.77u4496u429 bMAINp31000000077808r5.00u4497u43001234 2200337 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010810000200012124500390014125000310018026000440021130000280025544000270028352001550031065000360046565100430050194200200054495200410056495200420060595200410064795200420068895200410073095200420077195200420081395200410085550243LVL20000301000000.0960123s1996 nyu j 00011 eng a96001393 a0689803869 a 96001393 c254d25410aDuey, Kathleen.10aAnisett Lundberg /cKathleen Duey. a1st Aladdin Paperbacks ed.0 aNew York :bAladdin Paperbacks,cc1996. a139 p. ;c20 cm. ;dpa. 0aAmerican diaries ;v3. aThe small piece of gold which Anisett carries in her pocket causes grave danger for her family living in the rough world of the California gold camps. 1aGold mines and miningxFiction. 1aCaliforniaxGold discoveriesxFiction. aLVLcJFkJ Duey bLB2p37000000007934r3.99u4498u431 bMAINp32000000065271r2.31u4499u432 bLB1p36000000001477r2.31u4500u433 bMAINp35000000002128r2.31u4501u434 bLB2p34000000013964r2.31u4502u435 bMAINp31000000060466r2.31u4503u436 bMAINp31000000065562r3.99u4504u437 bLB1p33000000026013r2.31u4505u43800835 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000220013624500980015826000450025652001720030165000310047370000340050494200260053895200410056457262LVL20000911205129.0850211c19851982nyua j 00011 eng a84040793 a0064432041 a 84040793 c255d255 aE Spinelli10aSpinelli, Eileen.10aThanksgiving at the Tappletons' /cby Eileen Spinelli ; illustrated by Maryann Cocca-Leffler.0 aNew York :bHarper Trophy,c1985, c1982. aWhen calamity stalks every step of the preparations for the Tappletons' Thanksgiving dinner, they realize that there is more to Thanksgiving than turkey and trimmings. 1aThanksgiving DayxFiction.21aCocca-Leffler, Maryann,eill. aLVLcEASYkE Spinelli bLB2p37000000005725r2.29u4506u43901104 2200349 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009405000210010808200170012909000130014609200150015910000190017424500870019326000440028030000330032449000240035750000310038150000200041252000780043265000240051065000170053470000260055170000270057780000400060494200250064495200430066995200420071264281LVL19990217000000.0890309s1990 nyua j 00110 eng a89000998 a1854351567 a 8900099800aQC365.bK47 198900220a635/.078 c256d256 aJNF 635 Ke10aKerrod, Robin.10aLight fantastic /cRobin Kerrod ; illustrated by Mike Atkinson and Sarah Atkinson.0 aNew York :bMarshall Cavendish,cc1990. a32 p. :bcol. ill. ;c21 cm. 0aSecrets of science. a"Cherrytree books"--Cover. aIncludes index. aA collection of science activities demonstrating the properties of light. 1aLightxExperiments. 1aExperiments.11aAtkinson, Mike,eill.11aAtkinson, Sarah,eill.1 aKerrod, Robin.tSecrets of science. aLVLcJNFkJNF 535 Ke bMAINp31000000035053r10.95u4508u440 bLB1p33000000007098r10.95u4509u44101333 2200397 450000100060000000300040000600500170001000700100002700800410003702000150007803500160009303700310010909000130014009200120015324501040016526000560026930000550032550000400038050600310042050800330045151100770048452000560056152100150061752100130063253800280064560000350067365000240070865000190073270000240075170000190077570000200079470000260081470000310084094200210087195200430089271300LVL19990401000000.0vf cbahos941013p19891956cau123 g vleng d a0792800818 avid93001355 aM200510bMGM/UA Home Video c257d257 aAV Lust00aLust for lifecMGM ; produced by John Houseman ; directed by Vincente Minnelli.h[videorecording] / aCulver City, CA :bMGM/UA Home Video,c1989, c1956. a1 videocassette (123 min.) :bsd., col. ;c1/2 in. aBased on the novel by Irving Stone. aFor private home use only. aScreenplay by Norman Corwin.1 aKirk Douglas, Anthony Quinn, James Donald, Pamela Brown, Everett Sloane. aBiography of the tormented artist Vincent Van Gogh.8 aNot rated. aGeneral. aVHS Hi-fi Dolby stereo.10aGogh, Vincent van,d1853-1890. 0aBiographical films. 0aFeature films.11aMinnelli, Vincente.11aDouglas, Kirk.11aQuinn, Anthony.11aDonald, James,d1917-11aStone, Irving,d1903-1989. aLVLcAVkAV Lust bMAINp31000000030417r14.55u4510u44200844 2200277 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200150011210000200012724500940014725000170024126000570025830000280031544000430034350000200038665100240040670000200043070000240045070000240047494200250049895200430052350244LVL19990220000000.0960821r19901990enka j 00110 eng d a0881104396 anpl96001661 c258d258 aJNF 937 Ma10aMarks, Anthony.14aThe Romans /cAnthony Marks ; Graham Tingay ; illustrated by Ian Jackson and Gerald Wood. aAmerican ed.0 aLondon :aTulsa :bUsborne ;bEDC Publishing,c1990. a96 p. :bill. ;c27 cm. 4aThe Usborne illustrated world history. aIncludes index. 1aRomexCivilization.10aTingay, Graham.11aJackson, Ian,eill.11aWood, Gerald,eill. aLVLcJNFkJNF 937 Ma bMAINp32000000066464r16.95u4512u44300512 2200193 450000100060000000300040000600500170001000800410002701000130006802000150008109000130009609200130010910000200012224500440014226000470018630000190023394200230025295200430027564282LVL19990217000000.0920924s19xx xxu 00010 eng d a90048647 a0316328944 c259d259 aM Grimes aGrimes, Martha.14aThe Old Contemptibles /cMartha Grimes.0 aBoston, MA :bLittle, Brown & Co.,cc1991. a333 p.c24 cm. aLVLcMYSkM Grimes bMAINp31000000035120r11.28u4513u44400314 2200133 450000100060000000300040000600500170001000800410002702000150006809000130008310000370009624500250013394200220015878320LVL19990331000000.0950323s19uu 000 0 eng d a0708909906 c260d2601 aMarsh, Ngaio,cDame,d1895-1982.10aSurfeit of lampreys. aLVLcAFkAF Marsh00884 2200301 450000100060000000300040000600500170001000800390002701000170006602000270008302000150011003500160012504000200014105000170016108200080017809000130018610000260019924500280022526000470025330000330030051000140033351000210034751000200036852001070038865000220049594200230051795200420054036207LVL19990317000000.0731220s1974 nyua j 000 1 eng a73022185 /AC a0819307637 (lib. bdg.) a0819307629 aflb00216303 aDLCcDLCdICrlF0 aPZ7.M462bYo a[E] c261d2611 aMayer, Mercer,d1943-10aYou're the scaredy-cat. aNew York,bParents' Magazine Pressc[1974] a[40] p.bcol. illus.c24 cm.0 aBooklist.0 aLibrary Journal.0 aKirkus Reviews. aA scary story followed by strange noises drives the campers inside during their night in the backyard. 1aCampingxFiction. aLVLcEASYkE Mayer bMAINp32000000031504r3.45u4515u44500383 2200145 450000100060000000300040000600500170001000800410002701000130006809000130008110000170009424500610011194200230017295200420019543226LVL19990313000000.0940813s19xx xxu 00010 eng d a75019191 c262d2621 aYolen, Jane.13aAn invitation to the butterfly ball :ba counting rhyme. aLVLcEASYkE Yolen bMAINp32000000015093r4.96u4516u44600541 2200205 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009409000130011009200150012310000240013824500650016225000200022726000430024730000210029094200240031164283LVL19990217000000.0900509r19901989mau d 00011 eng a90038995 a0816148503 aonv90000365 c263d263 aLP MacLeod1 aMacLeod, Charlotte.10aVane pursuit :ba Peter Shandy mystery /cCharlotte MacLeod. aLarge print ed. aBoston, MA :bG.K. Hall,c1990, c1989. a357 p. ;c24 cm. aLVLcLPkLP MacLeod01493 2200433 450000100060000000300040000600500170001000800390002701000170006602000250008303500160010803900180012404000200014205000230016208200170018509000130020224501440021525000120035926000370037130000240040851000320043251000480046451000280051252001000054052100340064052100090067465000450068365000320072865000550076065000250081565000110084065000250085165000110087665000340088770000270092171000390094894200300098795200420101736208LVL19990317000000.0850130s1985 mau j 00000 eng a85000180 /AC a0316753904 :c$14.95 aflb004056110 a2b3c3d3e3 aDLCcDLCdICrlF0 aBF723.D3bK53 19850 219a155.9/37 c264d26404aThe Kids' book about death and dying /cby and for kids ; the Unit at Fayerweather Street School ; edited and coordinated by Eric E. Rofes. a1st ed.0 aBoston :bLittle, Brown,cc1985. ax, 119 p. ;c22 cm.0 aChildren's Catalog (Wilson)0 aJunior High School Library Catalog (Wilson)0 aSchool Library Journal. aFourteen children offer facts and advice to give young readers a better understanding of death.0 a5.9bFollett Library Book Co.2 a3-6. 0aChildren and deathxJuvenile literature. 0aDeathxJuvenile literature. 0aDeathxPsychological aspectsxJuvenile literature. 0aChildren's writings. 1aDeath. 1aChildren's writings. 7aDeath. 7aDeathxPsychological aspects.10aRofes, Eric E.,d1954-20aFayerweather Street School.bUnit. aLVLcJNFkJNF 155.937 KID bMAINp32000000016994r8.33u4520u44700341 2200133 450000100060000000300040000600500170001000800410002701000130006809000130008124500480009494200290014295200360017150246LVL19990220000000.0941224s19uu 000 0 eng d a75029775 c265d26510aMasterpieces of mystery :bthe supersleuth. aLVLcMYSkM Masterpieces bMAINp32000000003443u4522u44800767 2200241 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200160011010000360012624500850016226000380024730000320028565000390031770000210035694200250037795200410040295200410044395200410048464284LVL20000910174452.0950525c19951919nyu 00011 eng a0140390596 anpl95000792 c266d266 aAF Anderson10aAnderson, Sherwood,d1876-1941.10aWinesburg, Ohio /cby Sherwood Anderson; with an introduction by Jeffrey Meyers.0 aNew York :bBantam Books,cc1995. axx, 232 p. ;c18 cm. ;dpa. 0aCity and town lifexFiction.zOhio10aMeyers, Jeffrey. aLVLcAFkAF Anderson bLB2p34000000005460r2.92u4523u449 bLB2p37000000009161r2.92u4524u450 bLB1p33000000022515r2.92u4525u45100752 2200205 4500010001300000020001500013090001300028100002000041245008100061260003800142300002900180650003800209650005300247650004100300650005600341700002100397942002300418952004200441952006300483 a91016212 a0394585305 c267d26710aPolmar, Norman.10aWorld War II :bAmerica at war, 1941-1945 /cNorman Polmar, Thomas B. Allen.0 aNew York :bRandom House,cc1991. a940 p. :bill. ;c25 cm. 0aWorld War, 1939-1945xChronology. 0aWorld War, 1939-1945xChronology.zUnited States 0aWorld War, 1939-1945xEncyclopedias. 0aWorld War, 1939-1945xEncyclopedias.zUnited States10aAllen, Thomas B. aLVLcNFk940.53 Po bLB1p33000000009222r20.36u4527u452 bMAINdMAINp31000000037061r20.36u327778u453v2005-03-0901038 2200325 450000100060000000300040000600500170001000800390002701000170006602000370008303500160012005000220013608200220015809000130018009200180019310000180021124500420022926000330027130000180030444000170032250400410033952001180038052100340049852100090053265000450054165000120058694200290059895200430062795200420067036209LVL19990317000000.0891020s1990 nyu j b 00110 eng a89029464 /AC a0531108597 (lib. bdg.) :c$11.90 aflb020638010 aRC281.C4bS6 19900 220a362.1/9892994 c268d268 aJNF 618.92 Sm10aSmail, Simon.10aLiving with cancer /cby Simon Smail.0 aNew York :bF. Watts,c1990. a32 p. :bill. 0aLiving with. aIncludes bibliographical references. aCovers various aspects of life for children with cancer, including their treatments and prospects for the future.0 a6.9bFollett Library Book Co.2 a3-6. 0aTumors in childrenxJuvenile literature. 1aCancer. aLVLcJNFkJNF 618.92 SMA bMAINp32000000028445r11.30u4528u454 bLB1p33000000001521r11.30u4530u45500336 2200145 450000100060000000300040000600500170001000800410002701000130006809000130008110000220009424500140011694200240013095200360015450247LVL19990220000000.0930426s19xx xxu 00010 eng d a72076282 c269d269 aMarlowe, Stephen.10aColossus. aLVLcAFkAF Marlowe bMAINp32000000006102u4531u45600642 2200229 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000130011009200140012310000190013724500320015626000470018830000300023594200240026595200410028995200410033095200410037157266LVL20011026162009.0930122c19911962nyu 00011 eng d a70088643 a0449212637 a 70088643 c270d270 aM Francis10aFrancis, Dick.10aDead cert /cDick Francis..0 aNew York :bFawcett Crest,c1991, c1962. . a310 p. ;c18 cm. ;dpa. . aLVLcMYSkM Francis bLB2p37000000013769r5.95u4532u457 bLB2p34000000006237r3.45u4533u458 bLB1p33000000014622r3.45u4534u45900344 2200145 450000100060000000300040000600500170001000800410002701000130006809000130008110000190009424500200011394200230013395200420015678323LVL19990331000000.0920425s19xx xxu 00010 eng d a85014871 c271d2711 aCrews, Donald.14aThe black dots. aLVLcEASYkE Crews bMAINp31000000001972r6.93u4535u46001552 2200421 450000100060000000300040000600500170001000700100002700800410003702000150007803500160009309000130010909200140012224501550013626000780029130000540036944000410042350000470046450600310051150800770054251100190061952001110063852100130074953800090076253800100077165000120078165000180079365000470081170000210085870000220087970000200090171000390092171000480096071000250100871000310103394200230106495200430108757267LVL19990219000000.0vfucbahom890803p19861985ctu060 g vleng d a0805100024 avid93001438 c272d272 aAV 599 La00aLand of the tigercNational Geographic Society and WQED/Pittsburgh ; produced and photographed by Belinda Wright, Stanley Breeden.h[videorecording] / aStamford, CT :bNational Geographic Video ;bVestron Video,c1986, c1985. a1 videocassette (60 min.) :bsd., col. ;c1/2 in. 0aNational Geographic Society special. aClosed-captioned for the hearing impaired. aFor private home use only. aEdited by Barry Nye ; narrated by Richard Kiley ; music, Terry Oldfield.1 aRichard Kiley. aA study of the jungle cats, with films of stalking prey, caring for young, swimming, playing and fighting. aGeneral. aVHS. aNTSC. 0aTigers. 0aAnimal films. 0aVideo recordings for the hearing impaired.11aWright, Belinda.11aBreeden, Stanley.11aKiley, Richard.21aNational Geographic Society (U.S.)21aWQED (Television station : Pittsburgh, Pa.)21aVestron Video (Firm)21aNational Geographic Video. aLVLcAVkAV 599 La bMAINp31000000030027r11.97u4536u46100328 2200133 450000100060000000300040000600500170001000800410002709000130006810000280008124500280010994200210013795200360015864286LVL19990217000000.0930419s19xx xxu 00010 eng d c273d2731 aGrey, Zane,d1872-1939.10aDesert goldcZane Grey. aLVLcWESkW Grey bMAINp31000000029203u4537u46200541 2200193 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200130011210000310012524500450015626000480020130000340024994200230028395200410030643230LVL20021024154402.0921124c19921991nyub 00011 eng c a0446400181 aonv90003662 c274d274 aM Peters10aPeters, Ellis,d1913-1995.14aThe summer of the Danes /cEllis Peters.0 aNew York :bMysterious Press,c1992, c1991. a245 p. :bmap ;c17cm. ;dpa. aLVLcMYSkM Peters bLB2p34000000006622r2.89u4538u46300361 2200145 450000100060000000300040000600500170001000800410002701000130006809000130008110000170009424500390011194200230015095200420017371306LVL19990401000000.0950324s19uu 000 0 eng d a74017741 c275d275 aPreston, An.10aNavies of the American revolution. aLVLcNFk973.3 PRE bMAINp31000000020165r6.98u4539u46400716 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200190012110000250014024500560016526000460022130000300026744000170029752000750031465000140038994200290040395200420043278325LVL19990331000000.0890906s1990 njua j 00110 eng a89027290 a0816719381 a 89027290 c276d276 aJNF 796.357 Wa1 aWalker, Dick,d1958-10aSoftball :ba step-by-step guide /cby Dick Walker. aMahwah, N.J. :bTroll Associates,cc1990. a64 p. :bill. ;c22 cm.;. 0aBe the best! aIntroduces the basic techniques of slow-pitch and fast-pitch softball. 1aSoftball. aLVLcJNFkJNF 796.357 Wa bMAINp31000000049815r2.95u4540u46501342 2200421 450000100060000000300040000600500170001000800390002701000170006602000250008302000370010803500160014503900180016104000200017905000230019908200120022209000130023410000190024724500710026625000120033726000380034930000510038751000320043851000140047051000280048452001420051252100340065452100090068865000210069765000250071865000200074365000210076365000250078465000200080970000260082994200220085595200430087736212LVL19990317000000.0850726s1986 nyuaf j 000 1 eng a85045273 /AC a0060250704 :c$11.50 a0060250712 (lib. bdg.) :c$10.89 aflb012368040 a2b3c3d3e3 aDLCcDLCdICrlF0 aPZ7.R6784bSo 19860 219a[E] c277d2771 aRoot, Phyllis.10aSoup for supper /cby Phyllis Root ; illustrated by Sue Truesdell. a1st ed. aNew York :bHarper & Row,cc1986. a24 p., [1] p. of plates :bcol. ill. ;c24 cm.0 aChildren's Catalog (Wilson)0 aBooklist.0 aSchool Library Journal. aA wee small woman catches a giant taking the vegetables from her garden and finds that they can share both vegetable soup and friendship.0 a3.1bFollett Library Book Co.2 aK-3. 1aGiantsxFiction. 1aVegetablesxFiction. 1aSoupsxFiction. 7aGiantsxFiction. 7aVegetablesxFiction. 7aSoupsxFiction.11aTruesdell, Sue,eill. aLVLcEASYkE Root bMAINp32000000024099r12.06u4541u46600341 2200133 450000100060000000300040000600500170001000800410002702000150006809000130008324500500009694200250014695200360017150250LVL19990220000000.0941224s19uu 000 0 eng d a0892870366 c278d27810aVolkswagen service & repair handbook 1961-76. aLVLcREFkREF 629.28 bMAINp32000000017386u4542u46701049 2200337 450000100060000000300040000600500170001000800390002701000170006602000150008303500160009803900180011404000200013205000250015208200180017709000130019510000240020824500690023226000470030130000400034844000340038852000930042252100340051552100090054965000340055865000130059265000130060570000230061894200280064195200420066971307LVL19990401000000.0830322s1983 mnua j 00010 eng a83005323 /AC a0896862194 aflb008973110 a2b3c3d3e3 aDLCcDLCdICrlF0 aQL737.R632bN46 19830 219a599.32/32 c279d27910aNentl, Jerolyn Ann.14aThe beaver /cby Jerolyn Ann Nentl ; edited by Howard Schroeder.0 aMankato, Minn. :bCrestwood House,cc1983. a47 p. :bill. (some col.) ;c23 cm. 0aWildlife, habits and habitat. aDescribes the physical characteristics, behavior, and natural environment of the beaver.0 a5.7bFollett Library Book Co.2 a3-6. 0aBeaversxJuvenile literature. 1aBeavers. 7aBeavers.10aSchroeder, Howard. aLVLcJNFkJNF 599.32 Ne bMAINp31000000007884r9.95u4543u46800396 2200145 450000100060000000300040000600500170001000800410002701000130006809000130008110000350009424500550012994200240018495200420020857270LVL19990219000000.0950323s19uu 000 0 eng d a88040515 c280d2801 aHammett, Dashiell,d1894-1961.10aWoman in the dark :ba novel of dangerous romance. aLVLcAFkAF Hammett bMAINp31000000011609r4.03u4544u46900800 2200265 450000100060000000300040000600500170001000800390002701000210006604000130008704300120010005000140011208200200012609000130014610000350015924500390019425000140023326000430024730000190029060000490030960000530035865000470041165100550045894200210051364289LVL19990217000000.0721219s1961 nyu 00000 eng a61009259 /L/r896 aDLCcDLC an-us---0 aE840.bW5 a329/.023/730921 c281d28110aWhite, Theodore Harold,d1915-14aThe making of the President, 1960. a[1st ed.]0 aNew York,bAtheneum Publishers,c1961. a400 p.c25 cm.10aNixon, Richard M.d1913-q(Richard Milhous),10aKennedy, John F.d1917-1963.q(John Fitzgerald), 0aPresidentsxElectiony1960.zUnited States 0aUnited StatesxPolitics and governmentz1953-1961. aLVLcNFk329 WHI00804 2200229 450000100060000000300040000600500170001000800410002703500160006809000130008409200180009724501540011526000430026930000260031250000220033865000450036065000350040570000240044074000400046494200280050495200420053278327LVL19990331000000.0950112c19531947nyu 00100 eng d anpl95000071 c282d282 aREF 821.08 On00a1000 years of Irish poetry :bthe Gaelic and Anglo-Irish poets from pagan times to the present /cedited, with an introduction, by Kathleen Hoagland. aNew York :bDevin-Adair,c1953, c1947. aliv, 830 p. ;c24 cm. aIncludes indexes. 0aIrish poetryxTranslations into English. 0aEnglish poetryxIrish authors.10aHoagland, Kathleen.01aOne thousand years of Irish Poetry. aLVLcREFkREF 821.08 On bMAINp31000000052731r4.00u4546u47001899 2200457 450000100060000000300040000600500170001000700100002700800410003702000150007802400180009303500160011103700360012709000130016309200120017624502420018824600590043026000600048930000540054950000360060350801100063952002060074952100150095552100130097053800220098354600470100565000250105265000200107765000220109765000470111970000160116670000190118270000230120170000210122471000220124571000310126771000370129894200210133595200430135695200420139936214LVL20000911201511.0vf cbahos961008p19951989gau026 g vaeng d a0780605926 1a053939802030 anav96000547 a8020bTurner Home Entertainment c283d283 aAVJ Dr.00aDr. Seuss' Butter battle bookcA Bakshi Animation Film ; Turner Network Television ; produced by Ralph Bakshi ; animation directors: Kent Butterworth, David Marshall ; written for television, with lyrics by Dr. Seuss.h[videorecording] /1 aButter Battle Book by Dr. SeussiContainer title: The.0 aAtlanta, GA :bTurner Home Entertainment,c1995, c1989. a1 videocassette (26 min.) :bsd., col. ;c1/2 in. aBased on the book by Dr. Seuss. aVoices: Charles Durning, Christopher Collins, Miriam Flynn ; edited by Brad Gunther ; score by Glen Daum. aParody on the arms race, in which the Yooks and the Zooks have been battling for years over how to spread butter on their bread. They develop more and more sophisticated machinery to outdo each other.. aNot rated. aGeneral. aVHS Hi-fi stereo. aClosed-captioned for the hearing impaired. 0aWarxJuvenile films. 0aAnimated films. 0aChildren's films. 0aVideo recordings for the hearing impaired.1 aSeuss,cDr.1 aBakshi, Ralph.1 aButterworth, Kent.1 aMarshall, David.2 aBakshi Animation.2 aTurner Network Television.2 aTurner Home Entertainment (Firm) aLVLcAVkAVJ Dr. bMAINp31000000061845r11.99u4547u471 bMAINp32000000067188r0.12u4548u47200809 2200265 450000100060000000300040000600500170001000800390002701000130006602000240007903500160010304000200011905000310013908200130017009000130018310000260019624500390022225000120026126000430027330000210031652001240033752100170046194200230047895200420050150252LVL20020124094813.0771219s1978 nyu 00011 eng a77078880 a0385133154 :c$8.95 aflb00834203 aDLCcDLCdICrlF0 aPZ4.K314aPS3561.E3975bGo a813/.5/4 c284d28410aKelton, Elmer,d1926-14aThe good old boys /cElmer Kelton. a1st ed.0 aGarden City, N.Y. :bDoubleday,c1978. a253 p. ;c22 cm. aIn 1906, cowboy Hewey Calloway realizes that the West is changing and that he must find a new way of life in a new era.2 aYoung Adult. aLVLcAFkAF Kelton bMAINp31000000026705r3.25u4549u47300356 2200145 450000100060000000300040000600500170001000800410002702000150006809000130008310000200009624500300011694200210014695200430016757271LVL19990219000000.0950324s19uu 000 0 eng d a0688094295 c285d285 aOutdoor Living.10aOutdoor living & gardens. aLVLcNFk712 OUT bMAINp31000000026812r17.38u4550u47400910 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000200013524500360015526000580019130000350024952001450028465000240042994200250045395200420047895200410052095200420056195200410060336215LVL19990317000000.0920723s1993 nyua j 00011 eng a92028234 a0385306237 a 92028234 c286d286 aE Le Tord10aLe Tord, Bijou.10aElephant moon /cBijou Le Tord.0 aNew York :bDoubleday Book for Young Readers,cc1993. a[32] p. :bill. ;c23 x 25 cm. aDescribes how God created elephants to be strong and powerful but also gentle and caring, especially in their relationships with each other. 1aElephantsxFiction. aLVLcEASYkE Le Tord bMAINp32000000043239r8.82u4551u475 bLB2p34000000010584r8.82u4552u476 bMAINp31000000045202r8.82u4553u477 bLB1p33000000016814r8.82u4554u47801326 2200385 450000100060000000300040000600500170001000800390002701000210006602000270008702000150011403500160012904000200014505000200016508200200018509000130020510000270021824500900024525000120033526000540034730000330040151000320043451000140046651000280048052001220050852100340063052100090066465000360067365000470070965000470075665000270080394200270083095200420085795200410089943234LVL20010629153021.0810928s1982 nyua j 00010 eng a81017191 /AC/r82 a068800895X (lib. bdg.) a0688008941 aflb01120102 aDLCcDLCdICrlF0 aQL696.P288bH440 219a639.9/78842 c287d28710aHeilman, Joan Rattner.10aBluebird rescue /cby Joan Rattner Heilman ; illustrated with full-color photographs. a1st ed.0 aNew York :bLothrop, Lee & Shepard Books,cc1982. a48 p. :bcol. ill. ;c22 cm.0 aChildren's Catalog (Wilson)0 aBooklist.0 aSchool Library Journal. aExplains the nesting, feeding, and breeding habits of bluebirds and instructs how to protect this endangered species.0 a5.1bFollett Library Book Co.2 aK-3. 0aBluebirdsxJuvenile literature. 0aBirds, Protection ofxJuvenile literature. 0aBirds, Attracting ofxJuvenile literature. 1aWildlife conservation. aLVLcJNFkJNF 639.9 He bMAINp32000000028228r2.49u4555u479 bLB1p33000000002439r2.49u4556u48000279 2200121 450000100060000000300040000600500170001000800410002709000130006810000310008124500240011294200210013657272LVL19990219000000.0950323s19uu 000 0 eng d c288d2881 aEden, Dorothy,d1912-1982.14aThe Salamanca drum. aLVLcAFkAF Eden00884 2200301 450000100060000000300040000600500170001000800390002701000190006602000270008502000340011204000130014605000240015908200140018309000130019710000240021024500480023425000200028226000460030230000410034849000390038965000200042865000250044865000200047365000220049394200240051595200430053964291LVL19990217000000.0860108c19861985mau d 00010 eng a86000195 //r88 a081614043X (lg. print) a0816140707 (pbk. : lg. print) aDLCcDLC1 aGV191.6.bM325 19860 219a796.5 c289d28910aMcManus, Patrick F.14aThe grasshopper trap /cPatrick F. McManus. aLarge print ed.0 aBoston, Mass. :bG.K. Hall,c1986, c1985. aviii, 292 p. (large print) ;c25 cm.0 aG.K. Hall large print book series. 0aHuntingxHumor. 0aOutdoor lifexHumor. 0aFishingxHumor. 0aLarge type books. aLVLcNFkAF McManus bMAINp31000000011021r14.41u4558u48100370 2200145 450000100060000000300040000600500170001000800410002702000150006809000130008310000350009624500280013194200230015995200420018271310LVL19990401000000.0950323s19uu 000 0 eng d a0854562613 c290d2901 aGoudge, Elizabeth,d1900-1984.14aThe castle on the hill. aLVLcAFkAF Goudge bMAINp31000000010611r8.50u4559u48200999 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009409000130011009200190012310000220014224500350016425000170019926000560021630000300027252001000030265000250040294200280042795200410045595200410049695200410053795200420057895200420062095200350066278329LVL19991220000000.0961030r19961975maua j 00011 eng a93010331 a156402931X anpl96001959 c291d291 aE Burning- ham10aBurningham, John.14aThe friend /cJohn Burningham. a2nd U.S. ed.0 aCambridge, Mass. :bCandlewick Press,c1996, c1975. a[18] p. :bill. ;c18 cm. aEasy-to-read text and drawings describe a young boy's relationship with his best friend Arthur. 1aFriendshipxFiction. aLVLcEASYkE Burningham bLB2p37000000006608r1.73u4560u483 bLB1p36000000005916r1.73u4561u484 bLB2p34000000014586r1.73u4562u485 bMAINp31000000062423r1.73u4563u486 bMAINp31000000062424r1.73u4564u487 bLB1p33000000026986u4565u48800875 2200265 450000100060000000300040000600500170001000800390002701000210006602000150008703500160010208200120011809000130013010000190014324500770016225000120023926000390025130000350029052001420032565000200046765000260048770000280051394200260054195200420056743235LVL20020328160646.0870727s1988 nyua j 00011 eng a87021199 /AC/r89 a0823406830 aflb0163450100219a[E] c292d29210aBirdseye, Tom.10aAirmail to the moon /cby Tom Birdseye ; illustrated by Stephen Gammell. a1st ed.0 aNew York :bHoliday House,cc1988. a[30] p. :bcol. ill. ;c25 cm. aWhen the tooth that she was saving for the tooth fairy disappears, Ora Mae sets out to find the thief and send him "airmail to the moon!" 1aTeethxFiction. 1aTooth FairyxFiction.11aGammell, Stephen,eill. aLVLcEASYkE Birdseye bMAINp32000000026059r8.37u4566u48901259 2200385 450000100060000000300040000600500170001000800390002701000210006602000150008702000290010203500160013104000200014705000190016708200100018609000130019610000270020924500440023625000140028026000360029430000190033035000110034951000320036051000480039251000520044052001690049252100340066152100100069565000200070565000200072565100230074594200220076895200420079095200410083250254LVL19990220000000.0721114s1972 nyu j 00001 eng a72076523 /AC/r85 a0060226684 a0060226692 (Harpercrest) aflb00405606 aDLCcDLCdICrlF0 aPZ7.M18543bSo a[Fic] c293d29310aHunter, Mollie,d1922-12aA sound of chariots,cby Mollie Hunter. a[1st ed.]0 aNew York,bHarper & Rowc[1972] a242 p.c22 cm. a$4.79.0 aChildren's Catalog (Wilson)0 aJunior High School Library Catalog (Wilson)0 aElementary School Library Collection (Bro-Dart) aA young girl growing up in Scotland after World War I tries to come to terms with her grief over her father's death and her increasing sense of the passage of time.0 a7.7bFollett Library Book Co.2 a7-10. 1aDeathxFiction. 7aDeathxFiction. 7aScotlandxFiction. aLVLcJFkJ Hunter bMAINp32000000026561r5.00u4567u490 bLB1p33000000030348r6.95u4568u49100606 2200205 450000100060000000300040000600500170001000800410002709000130006810000230008124500590010426000460016330000530020950000160026251100230027865000160030170000160031794200240033395200430035757273LVL20010126083602.0910706s19xx xxu 00010 eng d c294d2941 aCoffman, Virginia.14aThe orchid treecVirginia Coffman.h[sound recording]/0 aBoston, MA : :bG.K. Hall Audio,,cc1984. a8 sound cassettes : (11 hrs. 15 min.) :banalog. aUnabridged.0 aRead by Pat Starr. 0aAudiobooks.10aStarr, Pat. aLVLcACkAC Coffman bMAINp31000000017255r14.95u4569u49200737 2200253 450000100060000000300040000600500170001000800390002701000130006602000270007903900180010604000130012405000240013708200160016109000130017710000280019024500340021826000390025230000210029150000840031265000220039694200220041895200430044064292LVL19990217000000.0840601s1984 mau d 00011 eng a84010955 a0816135320 (lg. print)0 a2b3c3d3e3 aDLCcDLC1 aPS3511.A87bR3 19840 219a813/.52 c295d29510aBrand, Max,d1892-1944.10aRawhide justice /cMax Brand.0 aBoston, Mass. :bG.K. Hall,c1984. a385 p. ;c25 cm. a"Published in large print by arrangement with Dodd, Mead & Co."-- Verso of t.p. 0aLarge type books. aLVLcWESkW Brand bMAINp31000000010136r12.71u4570u49300346 2200133 450000100060000000300040000600500170001000800410002709000130006810000210008124500470010294200210014995200420017071311LVL19990401000000.0950324s19uu 000 0 eng d c296d2961 aMcKearin, Helen.10aTwo hundred years of American blown glass. aLVLcNFk748 MCK bMAINp31000000023582r6.95u4571u49400973 2200277 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000130011009200130012310000210013624500760015726000570023330000450029050400520033560000410038761000460042865000480047465000590052265100490058194200220063095200430065236217LVL19990317000000.0930122s1992 vauaf b 00010beng d a92074071 a155618123X a 92074071 c297d297 a277.3 We1 aWeckman, George.10aMy brothers place :ban American Lutheran monastery /cGeorge Weckman.. aLawrenceville, VA :bBrunswick Pub. Corp.,cc1992. . a73, [8] p. of plates :bill. ;c21 cm.;. aIncludes bibliographical references (p. 69-73).10aKreinheder, Arthur Carl,d1905-1989.20aSt. Augustine's House (Oxford, Michigan). 0aMonasticism and religious orders, Lutheran. 0aLutheran ChurchxHistoryy20th century.zUnited States 0aUnited StatesxChurch historyy20th century. aLVLcNFk277.3 We bMAINp32000000036888r12.00u4572u49500965 2200301 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000130011009200170012310000510014024500930019125000280028426000480031230000310036065000170039165000190040870000180042770000210044594200270046695200430049395200420053695200430057895200420062143236LVL19990313000000.0930130s1992 caua j 00010 eng d a92003087 a0811802302 a 92003087 c298d298 aJNF 398.2 An10aAndersen, H. C.d1805-1875.q(Hans Christian),10aFairy tales from Hans Christian Andersen /ccompiled by Russell Ash and Bernard Higton.. aClassic illustrated ed.0 aSan Francisco :bChronicle Books,cc1992. . a118 p. :bill. ;c29 cm. . 0aFairy tales. 0aShort stories.10aAsh, Russell.10aHigton, Bernard. aLVLcJNFkJNF 398.2 An bMAINp32000000037035r10.00u4573u496 bLB2p34000000007968r10.00u4574u497 bMAINp31000000041874r10.00u4575u498 bLB1p33000000014678r10.00u4576u49900361 2200145 450000100060000000300040000600500170001000800410002702000150006809000130008310000190009624500350011594200220015095200430017250255LVL19990220000000.0941224s19uu 000 0 eng d a0880224177 c299d2991 aDurr, Michael.10aNetworking personal computers. aLVLcNFk004.6 Du bMAINp32000000030005r14.72u4577u50001212 2200373 450000100060000000300040000600500170001000800390002701000170006602000310008302000360011403500160015004000200016605000230018608200120020909000130022110000200023424500650025426000380031930000330035744000390039051000140042951000280044352000990047152100340057052100090060465000260061365000260063965000190066570000450068494200260072995200410075595200420079643237LVL20010804213243.0850705s1986 nyua j 00011 eng a85014467 /AC a0394879872 (pbk.) :c$2.95 a0394979877 (lib. bdg.) :c$5.99 aflb00919912 aDLCcDLCdICrlF0 aPZ7.P5376bLu 19860 219a[E] c300d30010aPhillips, Joan.10aLucky bear /cby Joan Phillips ; illustrated by J.P. Miller.0 aNew York :bRandom House,cc1986. a30 p. :bcol. ill. ;c24 cm. 0aStep into reading.pA Step 1 book.0 aBooklist.0 aSchool Library Journal. aA teddy bear's luck saves him from one calamity after another and eventually finds him a home.0 a1.5bFollett Library Book Co.2 aK-3. 1aTeddy bearsxFiction. 7aTeddy bearsxFiction. 7aToysxFiction.11aMiller, J. P.d1913-eill.q(John Parr), aLVLcEASYkE Phillips bLB2p37000000013781r3.50u4578u501 bMAINp32000000024216r6.08u4579u50200761 2200253 450000100060000000300040000600500170001000800390002701000170006602000240008303500160010708200130012309000130013610000200014924500710016926000350024030000350027549000250031052000750033565000130041070000180042394200240044195200420046564294LVL19990217000000.0770520s1977 ilua j 00010 eng a77009408 /AC a0807551481 :c$4.00 aflb00082603 aE Albert c301d30110aAlbert, Burton.10aMine, yours, ours /cBurton Albert, Jr. ; pictures by Lois Axeman.0 aChicago :bA. Whitman,cc1977. a[32] p. :bcol. ill. ;c19 cm.0 aA Self-starter book. aPictures and brief text illustrate the concepts of owning and sharing. 1aSharing.10aAxeman, Lois. aLVLcEASYkE Albert bMAINp31000000002174r8.19u4580u50301047 2200337 450000100060000000300040000600500170001000700090002700800410003602000150007703500160009209000130010809200140012124500710013526000430020630000570024950000470030651100630035352100130041653800160042965000220044565000190046770000170048670000220050370000220052570000180054794200240056595200420058995200360063195200420066736219LVL20000613000000.0vd cbaho930426n cau126 g 0 0vleng d a1558900535 avid93000064 c302d302 aAVJ Swiss00aSwiss Family Robinson /cWalt Disney Home Video.h[videorecording]0 aBurbank, CA :bWalt Disney Home Video. a1 videocassette ; (126 min.) :bsd., col. ;c1/2 in. aClosed captioned for the hearing impaired.1 aJohn Mills, Dorothy McGuire, James MacArthur, Janet Munro. aRated G. aVHS Format. 0aChildren's films. 0aFeature films.11aMills, John.11aMcGuire, Dorothy.11aMacArthur, James.11aMunro, Janet. aLVLcAVJkAVJ Swiss bLB2p34000000012089r14.98u4582u504 bMAINp32000000070152u4583u505 bLB1p33000000015744r19.99u4584u50600933 2200313 450000100060000000300040000600500170001000800390002701000130006602000250007902000340010403500140013803900180015204000130017004300120018305000210019508200190021609000130023510000190024824500340026725000120030126001060031330000460041950000200046561000290048594200200051495200430053495200420057750257LVL20011105154827.0830906s1983 dcua f001 0 eng a83040203 a0895990121 :c$34.96 a0810916800 (Abrams) :c$60.00 a 830402030 a2b3c3d3e3 aDLCcDLC an-us-dc0 aQ11.S8bP37 19830 219a069/.09753 c303d3031 aPark, Edwards.10aTreasures of the Smithsonian. a1st ed. aWashington, D.C. :aNew York, N.Y. :bSmithsonian Books ;bTrade distribution by H.N. Abrams,cc1983. axxv, 470 p. :bill. (some col.) ;c32 cm. aIncludes index.20aSmithsonian Institution. aLVLcNFk069 Pa bMAINp32000000032202r15.00u4585u507 bLB1p36000000011886r15.00u4586u50800901 2200277 450000100060000000300040000600500170001000800390002701000170006602000150008302000240009804000130012205000230013508200120015809000130017010000210018324500740020425000120027826000440029030000350033452001330036965000260050270000290052894200240055795200420058164295LVL19990217000000.0870603s1987 nyua j 00011 eng a87042757 /AC z0312010680 a0312010672 :c$4.95 aDLCcDLC0 aPZ7.H2436bMe 19870 219a[E] c304d30410aHarris, Robie H.10aMessy Jessie /cby Robie H. Harris ; illustrated by Nicole Hollander. a1st ed.0 aNew York :bSt. Martin's Press,cc1987. a[18] p. :bcol. ill. ;c24 cm. aPresents the adventures of a curious toddler who explores by squeezing, throwing, tipping, kicking, mixing, and pinching things. 1aCleanlinessxFiction.11aHollander, Nicole,eill. aLVLcEASYkE Harris bMAINp31000000002968r4.95u4587u50901126 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000260013624501250016226000320028730000210031950400640034061000610040465000640046565000580052965000520058765100580063970000200069794200240071795200420074195200410078336220LVL19990319000000.0950323s1991 nyu 00110 eng a90027632 a0393309037 a 90027632 c305d305 a324.973 Ed10aEdsall, Thomas Byrne.10aChain reaction :bthe impact of race, rights, and taxes on American politics /cThomas Byrne Edsall with Mary D. Edsall.0 aNew York :bNorton,cc1991. a343 p. ;c24 cm. aIncludes bibliographical references (p. 311-328) and index.20aRepublican Party (U.S. : 1854- )xHistoryy20th century. 0aPresidentsxElectionxHistoryy20th century.zUnited States 0aElectioneeringxHistoryy20th century.zUnited States 0aTaxationxHistoryy20th century.zUnited States 0aUnited StatesxRace relationsxHistoryy20th century.10aEdsall, Mary D. aLVLcNFk324.973 Ed bMAINp32000000041191r6.57u4588u510 bLB2p34000000001343r6.57u4589u51100828 2200253 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000130011009200140012310000240013724501100016126000460027130000340031750400390035165000450039065000510043570000230048694200230050995200420053250258LVL20020703110742.0870317s1987 flua b 00110 eng d a87007538 a0811907228 a 87007538 c306d306 a618.92 Gr10aGrundfast, Kenneth.10aEar infections in your child /cKenneth Grundfast and Cynthia J. Carney ; illustrations by Joyce Hurwitz.0 aHollywood, Fla. :bCompact Books,cc1987. axii, 283 p. :bill. ;c24 cm. aIncludes bibliographies and index. 0aOtitis media in childrenxPopular works. 2aOtitisxin infancy & childhoodxpopular works.10aCarney, Cynthia J. aLVLcNFk618.92 Gr bLB2p34000000013537r10.59u4590u51201065 2200289 450000100060000000300040000600500170001000800390002701000170006602000370008304000130012005000240013308200140015709000130017110000260018424500430021025000260025326000760027926300100035530000110036550000530037652002120042965000350064165000350067694200230071195200410073464296LVL20000817000000.0891122c19901988nyu j 00011 eng a89018457 /AC a0689713878 :c$3.95 ($5.50 Can.) aDLCcDLC00aPZ7.R54465bMe 199000220a[Fic] c307d30710aRoberts, Willo Davis.10aMegan's island /cWillo Davis Roberts. a1st Aladdin Books ed.0 aNew York :aLondon :bAladdin Books ;bCollier Macmillan,c1990, c1988. a9004. ap. cm. aOriginally published: New York : Atheneum. 1988. aFirst eleven-year-old Megan is astonished when her mother insists on taking her and her younger brother up to the lake cottage a week before school is out; then they find mysterious strangers following them. 1aSingle-parent familyxFiction. 1aMystery and detective stories. aLVLcJFkJ Roberts bLB2p37000000012318r3.95u4591u51301009 2200301 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200180011210000190013024500980014925000120024726000480025930000350030750400490034265000330039165000410042470000200046570000290048594200280051495200410054295200410058395200420062495200410066636221LVL20020711133701.0930921s1993 nyua j b 00010 eng d a0812520483 anpl93001147 c308d308 aJNF 422.03 Si10aSimons, Scott.10aOpening a can of words /cby Scott Simons and Evelyn Simons; illustrated by Martha Underwood. a1st ed.0 aNew York :bTom Doherty Associates,cc1993. a64 p. :bill. ;c26 cm. ;dpa. aIncludes bibliographical references (p. 64). 0aEnglish languagexEtymology. 0aEnglish languagexTerms and phrases.10aSimons, Evelyn.11aUnderwood, Martha,eill. aLVLcJNFkJNF 422.03 Si bLB2p37000000002975r2.03u4592u514 bLB2p34000000008102r2.03u4593u515 bMAINp31000000044650r2.03u4594u516 bLB1p33000000016497r2.03u4595u51701174 2200361 450000100060000000300040000600500170001000800390002701000130006602000270007903500140010605000220012008200170014209000130015909200150017210000190018724500880020626000500029430000330034449000240037750000390040150000200044052000820046065000250054265000250056765000170059270000260060970000270063580000400066294200250070295200430072795200420077064297LVL19990217000000.0890309s1990 nyua j 00110 eng a89000996 a1854351575 (lib. bdg.) a 8900099600aQK52.6.bK47 199000220a581/.078 c309d309 aJNF 581 Ke10aKerrod, Robin.10aPlants in action /cRobin Kerrod ; illustrated by Mike Atkinson and Sarah Atkinson.0 aNew York :bMarshall Cavendish Corp.,cc1990. a32 p. :bcol. ill. ;c21 cm. 0aSecrets of science. a"Cherrytree books."--Cover p. [4]. aIncludes index. aScience activities and experiments demonstrate how plants make food and grow. 1aPlantsxExperiments. 1aBotanyxExperiments. 1aExperiments.11aAtkinson, Mike,eill.11aAtkinson, Sarah,eill.1 aKerrod, Robin.tSecrets of science. aLVLcJNFkJNF 581 Ke bMAINp31000000035054r10.95u4596u518 bLB1p33000000007099r10.95u4597u51901356 2200361 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000190013524500350015426000410018930000210023052002030025165000530045465000290050765000530053665000470058965100260063674000190066294200230068195200410070495200420074595200420078795200410082995200410087095200420091195200410095336222LVL19990604000000.0930727s1994 nyu j 00011 eng a93031180 a0385311699 a 93031180 c310d310 aJ Paulsen10aPaulsen, Gary.10aMr. Tucket /cby Gary Paulsen.0 aNew York :bDelacorte Press,cc1994. a166 p. ;c22 cm. aIn 1848, while on a wagon train headed for Oregon, fourteen-year-old Francis Tucket is kidnapped by Pawnee Indians and then falls in with a one-armed trapper who teaches him how to live in the wild. 1aFrontier and pioneer lifexFiction.zWest (U.S.) 1aPawnee IndiansxFiction. 1aIndians of North AmericaxFiction.zGreat Plains 1aOverland journeys to the PacificxFiction. 1aWest (U.S.)xFiction.01aMister Tucket. aLVLcJFkJ Paulsen bLB2p37000000002585r8.82u4598u520 bMAINp32000000045059r8.82u4599u521 bMAINp32000000058315r8.82u4600u522 bLB1p36000000001886r8.82u4601u523 bLB2p34000000007413r8.82u4602u524 bMAINp31000000055045r8.82u4604u525 bLB1p33000000017819r8.82u4605u52600798 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000270013424500750016126000340023630000280027050400660029865000290036465000480039365000400044194200220048195200410050364298LVL20030514131551.0900102s1990 nyu be 00110 eng a89026367 a067174092X a 89026367 c311d311 a613.2 He10aHendler, Sheldon Saul.14aThe doctors' vitamin and mineral encyclopedia /cSheldon Saul Hendler.0 aNew York :bFireside,cc1990. a496 p. ;c24 cm. ;dpa. aIncludes bibliographical references (p. [437]-475) and index. 0aVitaminsxEncyclopedias. 0aMinerals in human nutritionxEncyclopedias. 0aDietary supplementsxEncyclopedias. aLVLcNFk613.2 He bLB2p34000000001636r7.05u4606u52700810 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000260013424500610016025000200022126000460024130000210028765000270030865000360033565000310037165000220040294200220042495200430044695200430048936223LVL19990319000000.0931026r19941992meu d 00011 eng a93038923 a0786201290 a 93038923 c312d312 aLP Clark1 aClark, Carol Higgins.10aDecked :ba Regan Reilly mystery /cCarol Higgins Clark. aLarge print ed. aThorndike, Me. :bThorndike Press,c1994. a342 p. ;c22 cm. 0aOcean travelxFiction. 0aPrivate investigatorsxFiction. 0aWomen detectivesxFiction. 0aLarge type books. aLVLcLPkLP Clark bMAINp32000000045929r15.72u4607u528 bMAINp31000000047527r15.72u4608u52900919 2200301 450000100060000000300040000600500170001000800390002701000130006602000260007902000150010503500160012004000250013605000280016108200160018909000130020510000210021824500390023926000460027826300100032430000210033451000390035552001040039452100110049894200220050995200430053195200430057443242LVL20011127125508.0901227s1991 nyu 001 1 eng a90029106 a0385305109 (ltd. ed.) a0385299095 aflb00824803 aDLCcDLCdDLCdICrlF00aPS3569.T33828bN57 199100220a813/.54 c313d3131 aSteel, Danielle.10aNo greater love /cDanielle Steel. aNew York, N.Y. :bDelacorte Press,c1991. a9110. a392 p. ;c24 cm.0 aPublishers Weekly Editors' Choice. aThe story of the Winfield family and their experiences during and after the sinking of the Titanic.2 aAdult. aLVLcAFkAF Steel bMAINp32000000031833r12.57u4609u530 bMAINp32000000043208r12.57u4610u53101148 2200325 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009403900180011004000200012805000250014808200160017309000130018910000210020224500370022326000420026030000210030251000140032352002140033752100170055165000450056865000380061394200240065195200610067595200430073695200430077950261LVL19990220000000.0850429s1985 nyu 00011 eng a85040005 a044651280X aflb010380060 a2b3c3d3e3 aDLCcDLCdICrlF0 aPS3554.E472bW6 19850 219a813/.54 c314d31410aDeMille, Nelson.10aWord of honor /cNelson DeMille.0 aNew York, NY :bWarner Books,cc1985. a518 p. ;c24 cm.0 aBooklist. aSixteen years after the Vietnam war corporate executive Ben Tyson thought he had put the horror of the war behind him. Then allegations of a civilian massacre by soldiers under his command brings him to trial.2 aYoung Adult. 0aVietnamese Conflict, 1961-1975xFiction. 7aVietnam Ward1961-1975.xFiction, aLVLcAFkAF DeMille bMAINdMAINp32000000003689r10.03u4611u532v2003-09-01 bMAINp31000000013202r10.03u4612u533 bMAINp31000000013203r10.03u4613u53400460 2200169 450000100060000000300040000600500170001000800410002701000130006809000130008110000280009424500470012260000280016960000290019794200210022695200430024757280LVL19990219000000.0930419s19xx xxu 00010 eng d a87032032 c315d3151 aDole, Robert J.,d1923-14aThe Doles /cRobert J. and Elizabeth Dole.10aDole, Robert J.,d1923-10aDole, Elizabeth Hanford. aLVLcBIOkB Dole bMAINp31000000021270r11.48u4614u53500469 2200181 450000100060000000300040000600500170001000800410002701000130006809000130008110000200009424500430011425000190015726000470017630000190022365000220024294200230026464299LVL19990217000000.0920924s19xx xxu 00010 eng d a83017955 c316d316 aGrimes, Martha.14aThe Anodyne Necklace /cMartha Grimes. a[Large print].0 aThorndike, Me. :bThorndike Press,cc1983. a420 p.c22 cm. 0aLarge type books. aLVLcLPkLP Grimes00630 2200217 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009910000160011224500310012826000380015930000280019794200210022595200410024695200410028795200420032895200420037071318LVL20011127125859.0870716s1987 nyu 00011 eng d a0553266578 aonv90000411 c317d31710aSaul, John.14aThe unwanted /cJohn Saul.0 aNew York :bBantam Books,cc1987. a339 p. ;c18 cm. ;dpa. aLVLcAFkAF Saul bLB2p37000000004200r2.92u4616u536 bLB2p34000000004063r2.92u4617u537 bMAINp31000000001519r4.50u4618u538 bMAINp31000000049248r4.50u4619u53900406 2200157 450000100060000000300040000600500170001000800410002709000130006810000210008124500300010226000290013230000200016194200240018195200430020536224LVL19990319000000.0960620s19uu 000 0 eng d c318d3181 aMcGavin, George.10aInsects of North America. aThunder Bay Pressb1995. a81 P. Col. Ill. aLVLcJNFkJNF 595.7 bMAINp32000000063865r12.95u4620u54001022 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200120012110000230013324500730015626000450022930000280027452001980030265000310050065000400053170000280057194200210059995200420062095200410066295200410070343243LVL20000911174205.0950321s1995 miua 00011 eng a95013431 a0802851061 a 95013431 c319d319 aJ Kroll10aKroll, Virginia L.10aShelter folks /cby Virginia Kroll ; illustrated by Jan Naimo Jones.0 aGrand Rapids, Mich. :bEerdmans,cc1995. a40 p. :bill. ;c21 cm. aJoelle is embarrassed that her family has to move into a shelter, but when she gets to know the other people living there and they come to see her in a school play, she no longer feels ashamed. 1aHomeless personsxFiction. 1aShelters for the homelessxFiction.11aJones, Jan Naimo,eill. aLVLcJFkJ Kroll bMAINp32000000063339r8.67u4621u541 bLB2p37000000012612r8.67u4622u542 bLB1p33000000025080r8.67u4623u54300519 2200205 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000170013424500380015126000380018930000210022794200220024895200430027050262LVL19990220000000.0900518s1991 nyu 00011 eng a90039347 a0446515841 a 90039347 c320d320 aAF Davis10aDavis, Gwen.10aJade :ba novel /cby Gwen Davis.0 aNew York :bWarner Books,cc1991. a374 p. ;c24 cm. aLVLcAFkAF Davis bMAINp31000000036494r11.67u4624u54400334 2200133 450000100060000000300040000600500170001000800410002709000130006810000280008124500340010994200210014395200360016464300LVL19990217000000.0930421s19xx xxu 00010 eng d c321d3211 aGrey, Zane,d1872-1939.14aThe dude ranger /cZane Grey. aLVLcWESkW Grey bMAINp31000000029204u4625u54501137 2200337 450000100060000000300040000600500170001000800390002701000170006602000270008302000220011003500160013205000230014808200120017109000130018310000230019624501050021926000370032426300100036130000180037149000260038950000100041552001670042552100090059265000330060170000220063470000240065680000530068094200250073395200410075871319LVL20011221112828.0880920s1989 nyu j 00010 eng a88030202 /AC a0394943090 (lib. bdg.) a0394843096 (pbk.) aflb021351010 aQL617.2.bH66 19890 219a597 c322d32210aHornblow, Leonora.10aFish do the strangest things /cwritten by Leonora and Arthur Hornblow ; illustrated by John Eggert.0 aNew York :bRandom House,c1989. a8909. a62 p. :bcol.1 aStep-up nature books. anews. aDescribes seventeen fish that have peculiar characteristics and habits, including fish that spit, fly, climb trees, blow up like balloons, and sleep out of water.2 a3-6. 0aFishesxJuvenile literature.10aHornblow, Arthur.11aEggert, John,eill.1 aHornblow, Leonora,d1920-tStep-up nature books. aLVLcJNFkJNF 597 Ho bLB1p33000000002438r2.29u4626u54600947 2200289 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200190011210000230013124500930015425000170024726000460026430000350031044000190034552000770036465000230044165000290046465000280049370000230052194200290054495200420057395200420061543244LVL19990313000000.0960815r19891975enka j b 00010 eng d a0860200078 anpl96001571 c323d323 aJNF 629.133 Mc10aMcNeil, Mary Jean.10aFlying models /cMary Jean McNeil; illustrated by Colin King; designed by John Jamieson. aAmerican ed.0 aLondon ;aTulsa :bEDC Publishing,c1989. a32 p. :bill. ;c28 cm. ;dpa. 0aKnowhow books. aProvides step-by-step instruction for making a variety of flying models. 1aAirplanesxModels. 1aFlying machinesxModels. 1aModels and modelmaking.11aKing, Colin,eill. aLVLcJNFkJNF 629.133 Mc bMAINp32000000066341r2.95u4627u547 bMAINp31000000061273r2.95u4628u54800987 2200277 450000100060000000300040000600500170001000800390002701000190006602000380008503500160012304000250013905000250016408200160018909000130020510000320021824500500025026001010030030000380040144000340043950400410047350501120051452100170062694200240064395200420066750263LVL19990220000000.0890816s1990 nyuac b 000 1 eng a89062930 //r90 a0940450534 (alk. paper) :c$35.00 aflb01704604 aDLCcDLCdDLCdICrlF00aPS3545.H16bA6 1990b00220a813/.52 c324d3241 aWharton, Edith,d1862-1937.10aNovellas and other writings /cEdith Wharton. aNew York, N.Y. :bLiterary Classics of the United States :bDistributed by Viking Press,cc1990. a1137 p. :bill., ports. ;c21 cm. 4aThe Library of America ;v47. aIncludes bibliographical references.0 aMadame de Treymes -- Ethan Frome -- Summer -- Old New York -- The mother's recompense -- A backward glance.2 aYoung Adult. aLVLcAFkAF Wharton bMAINp32000000032147r8.50u4629u54900847 2200241 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200140011224501000012626000400022630000620026650400570032865000550038565100420044070000180048294200230050095200410052395200410056436226LVL19990319000000.0940603s1994 nyuabf b 00000 eng d a0786700904 anpl94000822 c325d325 a940.54 Ey00aEye-witness D-Day :bthe story of the battle by those who were there /cedited by Jon E. Lewis.0 aNew York :bCarroll & Graf,cc1994. axiii, 314, [8] p. of plates :bill.; map ;c20 cm. ;dpa. aIncludes bibliographical references: p. ([311]-314). 0aWorld War, 1939-1945xCampaignszFrancezNormandy. 0aNormandy (France)xHistory, Military.10aLewis, Jon E. aLVLcNFk940.54 Ey bLB2p34000000002500r7.05u4630u550 bLB1p33000000019222r7.05u4631u55100781 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000200013624500440015626000510020030000330025144000160028450400250030052000650032565000170039094200250040795200420043295200410047443245LVL20030506163609.0870731s1988 wiua j b 00010 eng a87020796 a0817232532 a 87020796 c326d326 aJNF 537 Ba10aBailey, Mark W.10aElectricity /cwords by Mark W. Bailey.0 aMilwaukee :bRaintree Childrens Books,cc1988. a48 p. :bcol. ill. ;c24 cm. 0aRead about. aBibliography: p. 48. aDiscusses different ways of producing and using electricity. 1aElectricity. aLVLcJNFkJNF 537 Ba bMAINp32000000040212r8.50u4632u552 bLB1p33000000015755r8.50u4633u55300832 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000160013424500580015026000440020830000220025244000170027450500690029165000200036065000210038065000190040183000170042094200220043795200420045995200410050136227LVL20000911231656.0940706s1990 nju j 00011 eng a89005230 a0816716854 a 89005230 c327d327 aYA Razzi1 aRazzi, Jim.10aTerror in the mirror, and other stories /cJim Razzi. aMahwah, NJ :bTroll Associates,cc1990. a92 p. :c19 cm.;. 0aHorror show.0 aTerror in the mirror -- Howling success -- The girl on the road. 1aHorror stories. 1aGhostsxFiction. 1aShort stories. 0aHorror show. aLVLcYAkYA Razzi bMAINp32000000048444r2.95u4637u554 bLB2p37000000012237r2.95u4638u55500609 2200217 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200190011210000460013124500390017725000200021626000440023630000210028065000220030194200260032395200420034950265LVL20030128124531.0920720c19821976enk d 00011 eng d a0708908950 aonv90002844 c328d328 aLP Slaugh- ter10aSlaughter, Frank G.d1908-q(Frank Gill),10aPlague ship /cFrank G. Slaughter. aLarge print ed.0 aLeicester :bUlverscroft,c1982, c1976. a526 p. ;c22 cm. 0aLarge type books. aLVLcLPkLP Slaughter bMAINp31000000053561r7.98u4640u55600369 2200145 450000100060000000300040000600500170001000800410002702000150006809000130008310000240009624500450012094200220016595200360018764303LVL20020905091623.0950324s19uu 000 0 eng d a0882661035 c329d3291 aBraren, Ken,d1934-10a101 easy-to-make things for your garden. aLVLcNFk690.8 Br bMAINp31000000033078u4641u55700669 2200229 450000100060000000300040000600500170001000800390002702000150006603500230008109000130010409200150011710000220013224500470015426000490020130000210025065000310027165000270030294200240032995200430035395200430039636228LVL19990319000000.0961001s1986 ilu 00011 eng a089107919X anpl96001834 //r933 c330d330 aAF Peretti10aPeretti, Frank E.10aThis present darkness /cFrank E. Peretti.0 aWestchester, Ill. :bCrossway Books,cc1986. a375 p. ;c22 cm. 0aNew Age movementxFiction. 0aBaal (Deity)xFiction. aLVLcAFkAF Peretti bMAINp32000000067098r15.00u4642u558 bMAINp31000000061940r15.00u4643u55900758 2200241 450000100060000000300040000600500170001000800390002701000230006603500160008908200190010509000130012424500600013726000320019730000280022952001030025765000120036065000210037265000270039370000270042094200270044795200420047450266LVL20010725143823.0770920s1961 nyua j 00011 eng a61014769 /L/AC/r81 aflb001042000 219aE BrownaE c331d33110aOnce a mouse-- :ba fable cut in woodcby Marcia Brown.0 aNew York,bScribnerc[1961] a[32] p.billus.c25 cm. aAs it changes from mouse, to cat, to dog, to tiger, a hermit's pet also becomes increasingly vain. 1aFables. 1aFolklorezIndia. 7aCaldecott Medal books.11aBrown, Marcia,eillus. aLVLcJNFkJNF 398.2 Br bMAINp32000000035536r5.95u4644u56000574 2200229 450000100060000000300040000600500170001000800390002701000130006604000130007905000290009208200130012109000130013410000250014724500250017226000300019730000190022735000110024649000220025794200230027995200420030264304LVL19990217000000.0710810s1971 nyu 00001 eng a75156881 aDLCcDLC0 aPZ3.D626aPS3507.I75bCh a813/.5/2 c332d33210aDisney, Doris Miles.14aThe Chandler policy.0 aNew York,bPutnamc[1971] a188 p.c21 cm. a$4.95.0 aRed mask mystery. aLVLcAFkAF Disney bMAINp31000000031121r3.20u4645u56100733 2200253 450000100060000000300040000600500170001000800390002701000190006602000150008504000130010004300120011305000160012508200200014109000130016110000250017424500650019926000440026430000370030850000200034550400260036561000640039194200240045564305LVL20021021100333.0800724s1980 njua b 00110 eng a79092977 //r85 a0890093369 aDLCcDLC an-us---0 aJK2356.bF70 219a324.2734/09 c333d33310aFrank, Beryl,d1927-10aPictorial history of the Republican Party /cby Beryl Frank.0 aSecaucus, N.J. :bCastle Books,cc1980. a187 p. :bchiefly ill. ;c29 cm. aIncludes index. aBibliography: p. 185.20aRepublican Party (U.S. : 1854- )xHistoryxPictorial works. aLVLcNFk329.973 Fr01081 2200325 450000100060000000300040000600500170001000800390002701000170006602000240008303500160010704000200012304300120014305000220015508200140017709000130019110000230020424500440022726000320027130000290030350400510033251000140038352001420039752100170053965000500055665000290060665000540063594200240068995200420071371324LVL19990401000000.0770617s1977 nyua j b 00110 eng a77024116 /AC a0399206124 :c$6.95 aflb00579002 aDLCcDLCdICrlF apoxf---0 aD774.M5bM47 1977 a940.54/26 c334d33410aMercer, Charles E.10aMiracle at Midway /cby Charles Mercer.0 aNew York :bPutnam,cc1977. a160 p. :bill. ;c21 cm. aIncludes bibliographical references and index.0 aBooklist. aRecreates the naval battle between Japanese and American forces which was the decisive factor in the Pacific theater during World War II.2 aYoung Adult. 0aMidway, Battle of, 1942xJuvenile literature. 1aMidway, Battle of, 1942. 1aWorld War, 1939-1945xNaval operations, American. aLVLcNFk940.54 MER bMAINp31000000021232r3.25u4647u56200681 2200241 450000100060000000300040000600500170001000800390002701000130006603500140007909000130009309200130010610000200011924500780013926000370021730000290025465000270028365000180031065000240032874000230035294200220037595200420039736230LVL19990319000000.0730831s1972 nyua 00110 eng a72080848 a 72080848 c335d335 a641.6 Cr1 aCrocker, Betty.10aBetty Crocker's do-ahead cookbook /cphotography director: George Ancona. aNew York,bGolden Press,cc1972. a160 p. :bill. ;c26 cm. 0aCookery (Frozen foods) 0aCold Storage. 0aMake-ahead cookery.01aDo-ahead cookbook. aLVLcNFk641.6 Cr bMAINp32000000052754r3.95u4648u56300733 2200241 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200150011210000240012724500710015126000390022230000390026150400390030065000240033965000210036394200240038495200420040895200410045043249LVL19990313000000.0931111s1993 nyua b 00010 eng d a0425138739 anpl93001486 c336d336 a623.825 Cl10aClancy, Tom,d1947-10aSubmarine :ba guided tour inside a nuclear warship /cTom Clancy.0 aNew York :bBerkley Books,cc1993. axx, 328 p. :bill. ;c23 cm. ; pa. aIncludes bibliography: p. 325-328. 0aNuclear submarines. 0aSubmarine boats. aLVLcNFk623.825 Cl bMAINp32000000043340r8.82u4649u564 bLB1p33000000016897r8.82u4650u56501216 2200349 450000100060000000300040000600500170001000800390002701000170006602000150008303500160009804000200011405000160013408200100015009000130016010000170017324500700019026000520026030000280031249000250034052002240036552100340058952100090062365000370063265000320066965000160070165000110071770000410072870000270076994200280079695200420082450268LVL19990220000000.0750124s1975 mnua j 00010 eng a74033532 /AC a0822508672 aflb00514301 aDLCcDLCdICrlF0 aTT160.bM48 a745.5 c337d33710aMiller, Jay.10aMaking gifts /cby Jay and Frank Miller : pictures by G. Overlie.0 aMinneapolis :bLerner Publications Co.,cc1975. a32 p. :bill. ;c20 cm.0 aAn Early craft book. aDirections for making practical and attractive gifts from readily available and inexpensive materials. Includes decorated stationery, crepe paper flowers, planters, wind chimes, picture albums, checkerboards, and games.0 a4.4bFollett Library Book Co.2 a3-6. 0aHandicraftxJuvenile literature. 0aGiftsxJuvenile literature. 1aHandicraft. 1aGifts.10aMiller, Frank,d1919-ejoint author.11aOverlie, George,eill. aLVLcJNFkJNF 745.5 MIL bMAINp32000000015791r4.95u4651u56601015 2200289 450000100060000000300040000600500170001000800390002701000170006602000240008303500160010708200180012309000130014110000300015424500870018425000120027126000520028330000330033550000340036852001580040265000250056065000210058565000220060670000310062894200250065995200410068471325LVL20000911152559.0840925s1985 nyua j 00011 eng a84022369 /AC a0030045525 :c$6.95 aflb001444100 219aE Brennan c338d33810aBrennan, Joseph Killorin.10aGobo and the river /cby Joseph Killorin Brennan ; pictures by Diane Dawson Hearn. a1st ed.0 aNew York :bHolt, Rinehart and Winston,cc1985. a44 p. :bcol. ill. ;c22 cm. a"A Fraggle rock book"--Cover. aWhile trying to rescue Wembley when he falls in the river, Gobo accidentally knocks himself out and floats away to distant places he's never seen before. 1aFriendshipxFiction. 1aRiversxFiction. 1aPuppetsxFiction.11aHearn, Diane Dawson,eill. aLVLcEASYkE Brennan bLB2p37000000002552r3.95u4652u56700753 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000210013424500700015526000510022530000330027652000780030965000140038765000130040170000200041494200240043495200410045850269LVL20020705102544.0781121s1979 wiua j 00010 eng a78026648 a0817213023 a 78026648 c339d339 aE Manley10aManley, Deborah.10aAnimals one to ten /cDeborah Manley ; pictures by Michele Noble.0 aMilwaukee :bRaintree Childrens Books,cc1979. a31 p. :bcol. ill. ;c24 cm. aBrief text and pictures of animals introduce the numbers from one to ten. 1aCounting. 1aAnimals.10aNoble, Michele. aLVLcEASYkE Manley bLB2p34000000011468r3.98u4654u56800662 2200181 4500020001500000090001300015100002100028245010400049260005100153300002900204500002000233650003400253650004600287700001800333942002300351952004300374952006300417 a0891450785 c340d34010aHuxford, Sharon.14aThe collector's encyclopedia of Brush McCoy pottery :bupdated values /cby Sharon and Bob Huxford.0 aPaducah, Ky. :bCollector Books,c1996, c1978. a191 p. :bill. ;c29 cm. aIncludes index. 0aBrushxMcCoy Pottery Company. 0aPotteryxCollectors and collecting.zOhio10aHuxford, Bob, aLVLcNFk738.37 Hu bMAINp32000000063322r14.97u4655u569 bMAINdMAINp31000000058889r14.97u328153u570v2005-03-1100567 2200193 450000100060000000300040000600500170001000800410002709000130006810000320008124500610011326000500017430000210022474000170024574000260026274000180028894200240030695200430033050270LVL19990220000000.0921209s19xx xxu 00010 eng d c341d3411 aWharton, Edith,d1862-1937.14aThe Edith Wharton omnibus /cIntroduction by Gore Vidal.0 aGarden City, N.Y. :bNelson Doubleday,c1978. a588 p. :c22 cm.02aEthan Frome.42aThe age of innocence.02aOld New York. aLVLcAFkAF Wharton bMAINp32000000022548r10.00u4657u57100708 2200253 450000100060000000300040000600500170001000800390002701000130006602000270007903900180010604000130012405000240013708200160016109000130017710000280019024500380021826000460025630000210030250000440032365000220036794200220038995200430041164308LVL19990217000000.0821119c19831932mau d 00011 eng a82021367 a0816134359 (lg. print)0 a2b3c3d3e3 aDLCcDLC1 aPS3511.A87bR5 19830 219a813/.52 c342d34210aBrand, Max,d1892-1944.10aRide the wild trail /cMax Brand.0 aBoston, Mass. :bG.K. Hall,c1983, c1932. a440 p. ;c25 cm. a"Published in large print"--T.p. verso. 0aLarge type books. aLVLcWESkW Brand bMAINp31000000010174r11.86u4658u57200834 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200190012110000250014024500870016526000460025230000350029852001100033365000310044365000140047470000230048894200270051195200420053871327LVL19990401000000.0840710s1985 njua j 00011 eng a84008831 a081670371X a 84008831 c343d343 aE White- headd10aWhitehead, Patricia.10aBest Thanksgiving book /cwritten by Pat Whitehead ; illustrated by Susan T. Hall.0 aMahwah, N.J. :bTroll Associates,cc1985. a[29] p. :bcol. ill. ;c24 cm. aRetells the story of the first Thanksgiving, while introducing the reader to the letters of the alphabet. 1aThanksgiving DayxFiction. 1aAlphabet.11aHall, Susan,eill. aLVLcEASYkE Whitehead bMAINp31000000003835r8.96u4659u57301148 2200349 450000100060000000300040000600500170001000800390002701000210006603500160008704000200010305000160012308200120013909000130015110000210016424500700018526000380025530000380029351000320033151000520036351000240041552001240043952100340056352100090059765000130060665000230061965000210064265000270066394200240069095200420071495200420075650271LVL19990220000000.0730213s1963 nyua j 000 1 eng a63021253 /AC/r80 aflb00105000 aDLCcDLCdICrlF0 aPZ7.S47bWh0 219a[E] c344d3441 aSendak, Maurice.10aWhere the wild things are.cStory and pictures by Maurice Sendak. a[New York]bHarper & Row,cc1963. a[40] p.bcol. illus.c25 x 26 cm.0 aChildren's Catalog (Wilson)0 aElementary School Library Collection (Bro-Dart)0 aHorn Book Magazine. aA naughty little boy, sent to bed without his supper, sails to the land of the wild things where he becomes their king.0 a4.4bFollett Library Book Co.2 aK-3. 1aFantasy. 1aMonstersxFiction. 7aDreamsxFiction. 7aCaldecott Medal books. aLVLcEASYkE Sendak bMAINp32000000010714r9.71u4660u574 bMAINp32000000014318r9.51u4661u57500839 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903900180009404000130011205000240012508200270014909000130017610000170018924500840020626000350029030000510032550000200037650400300039660000200042665000500044694200230049695200420051957290LVL20000912145941.0850927s1985 nyuaf b 00110beng a85024131 a00252210000 a2b3c3d3e3 aDLCcDLC0 aTP983.A66bL35 19850 219a338.7/668/50924aB c345d34510aIsrael, Lee.10aEstÂee Lauder :bbeyond the magic : an unauthorized biography /cby Lee Israel.0 aNew York :bMacmillan,cc1985. ax, 186 p., [16] p. of plates :bill. ;c25 cm. aIncludes index. aBibliography: p. 150-175.10aLauder, EstÂee. 0aCosmetics industryxBiography.zUnited States aLVLcBIOkB Lauder bMAINp31000000021329r9.20u4662u57600742 2200265 450000100060000000300040000600500170001000800390002701000130006602000400007904000130011904300120013205000230014408200190016709000130018610000250019924500420022425000230026626000470028930000350033661000240037165000380039565000220043394200210045564309LVL20000911034232.0870121s1986 meu d 00010 eng a87001891 a0896217922 (lg. print : alk. paper) aDLCcDLC aln-----1 aG530.T6bL56 1986b0 219a909/.09631 c346d34610aLord, Walter,d1917-14aThe night lives on /cby Walter Lord. a[Large print ed.].0 aThorndike, Me. :bThorndike Press,cc1986. a313 p. (large print) ;c22 cm.20aTitanic (Steamship) 0aShipwreckszNorth Atlantic Ocean. 0aLarge type books. aLVLcNFk910 LOR00740 2200241 450000100060000000300040000600500170001000800390002701000130006603500140007909000130009309200140010610000200012024500480014026000490018830000290023749000340026650000880030050400330038865000110042194200230043295200430045571328LVL19990401000000.0740802s1968 nyua b 00010 eng a68012854 a 68012854 c347d347 a749.63 Fr10aFreeman, Larry.10aNew light on old lamps /cby Larry Freeman.0 aWatkins Glen, N.Y. :bCentury House,cc1968. a220 p. :bill. ;c23 cm. 0aLibrary of Victorian culture. aRev. and enl. ed. of the author's Light on old lamps, originally published in 1944. aBibliography: p. [221]-[222] 0aLamps. aLVLcNFk749.63 Fr bMAINp31000000023610r15.00u4664u57701032 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000190013624500960015525000120025126000410026330000240030450000450032850000250037352001530039865000270055165000290057865000430060774000140065094200240066495200420068836234LVL19990319000000.0950203s1993 cau 00011 eng a93013777 a0152753230 a 93013777 c348d348 aAF Paulsen10aPaulsen, Gary.10aSisters =bHermanas /cGary Paulsen ; translated into Spanish by Gloria De AragÂon Andujar. a1st ed. aSan Diego :bHarcourt Brace,cc1993. a65, 63 p. ;c19 cm. aTitle on added t.p.: Hermanas = Sisters. aEnglish and Spanish. aThe lives of a fourteen-year-old Mexican prostitute, living in the United States illegally, and a wealthy American girl intersect in a dramatic way. 1aProstitutionxFiction. 1aIllegal aliensxFiction. 1aSpanish language materialsxBilingual.01aHermanas. aLVLcAFkAF Paulsen bMAINp32000000055718r6.57u4665u57800792 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000260013624500330016225000120019526000430020730000350025052001020028565000140038765000220040174000160042394200270043995200600046650272LVL19990220000000.0810611s1982 nyua j 00010 eng a81006352 a0688006159 a 81006352 c349d349 aE Hutchins1 aHutchins, Pat,d1942-10a1 hunter /cby Pat Hutchins. a1st ed. aNew York :bGreenwillow Books,cc1982. a[24] p. :bcol. ill. ;c26 cm. aOne hunter walks through the forest observed first by two elephants, then by three giraffes, etc. 1aCounting. 1aAnimalsxFiction.01aOne hunter. aLVLcEASYkE Huthchins bMAINdMAINp32000000039693r8.93u4669u579v2003-09-0100974 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000190013424501340015325000280028726000510031530000280036650000670039450000200046165000310048165000260051294200220053895200410056095200410060195200420064264310LVL19991016000000.0950322c19911978nyu 00110 eng a91011588 a0060919752 a 91011588 c350d350 a158.1 Dy10aDyer, Wayne W.10aPulling your own strings :bdynamic techniques for dealing with other people and living your life as you choose /cWayne W. Dyer. a1st HarperPerennial ed.0 aNew York, NY :bHarperPerennial,c1991, c1978. a262 p. ;c21 cm. ;dpa. aReprint. Originally published: New York : T.Y. Crowell, c1978. aIncludes index. 0aAssertiveness (Psychology) 0aAutonomy (Psychology) aLVLcNFk158.1 Dy bLB2p37000000004517r5.19u4670u580 bLB2p34000000001257r5.19u4672u581 bMAINp31000000036492r5.19u4673u58200552 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000220013524500400015725000120019726000370020930000210024694200240026795200430029136235LVL20010730142727.0950201s1995 nyu 00011 eng a95005595 a0060391464 a 95005595 c351d351 aM Lashner10aLashner, William.10aHostile witness /cWilliam Lashner. a1st ed.0 aNew York :bRegan Books,cc1995. a501 p. ;c24 cm. aLVLcMYSkM Lashner bMAINp32000000057188r13.80u4674u58300934 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000210013624500440015725000170020126000540021830000350027250000880030752000780039565000340047394200250050795200420053295200410057495200410061543254LVL19990313000000.0921208s1993 nyua j 00010 eng a92038207 a0688045685 a 92038207 c352d352 aJNF 820 Hu10aHughes, Shirley.10aStories by firelight /cShirley Hughes. a1st U.S. ed.0 aNew York :bLothrop, Lee & Shepard Books,cc1993. a[62] p. :bcol. ill. ;c29 cm. a"First published in Great Britain by the Bodley Head Children's Books"--facing T.p. aPresents a collection of stories and poems celebrating the winter season. 1aWinterxLiterary collections. aLVLcJNFkJNF 820 Hu bMAINp32000000047760r9.20u4676u584 bLB1p36000000006528r9.44u4677u585 bLB1p33000000019271r9.44u4678u58601131 2200373 450000100060000000300040000600500170001000800390002701000130006602000250007903500160010403900180012004000200013805000250015808200160018309000130019910000210021224500360023325000250026926000440029430000210033844000320035951000290039151000140042052000940043452100110052865000290053965000290056865000350059774000150063294200260064795200420067395200420071550273LVL20000316000000.0840711c19851984nyu 00011 eng a84048165 a0060153962 :c$13.95 aflb017383010 a2b3c3d3e3 aDLCcDLCdICrlF0 aPS3558.I45bG48 19850 219a813/.54 c353d35310aHillerman, Tony.14aThe ghostway /cTony Hillerman. a1st Harper & Row ed.0 aNew York :bHarper & Row,c1985, c1984. a213 p. ;c22 cm. 2aA Harper novel of suspense.0 aFiction Catalog (Wilson)0 aBooklist. aTribal policeman Jim Chee's search for a killer takes him from the desert to Los Angeles.2 aAdult. 0aNavajo IndiansxFiction. 7aNavajo IndiansxFiction. 7aMystery and detective stories.01aGhost way. aLVLcMYSkM Hillerman bMAINp32000000032737r7.91u4679u587 bMAINp31000000014853r7.91u4680u58800539 2200193 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200160011010000300012624500430015625000200019926000790021965000220029894200250032057292LVL20020320143743.0910491c19901986enk d 00011 eng a185057877X aonv90000538 c354d354 aLP Cartland10aCartland, Barbara,d1902-10aNever forget love /cBarbara Cartland. aLarge print ed. aLong Preston, North Yorkshire, England :bMagna Print Books,c1990, c1986. 0aLarge type books. aLVLcLPkLP Cartland00975 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000180013424500250015226000410017730000210021852002340023965000190047365000440049265000260053665100300056294200220059295200410061495200420065536236LVL19990319000000.0930824s1994 nyu j 00011 eng a93035491 a0385311753 a 93035491 c355d355 aJ Reaver10aReaver, Chap.10aBill /cChap Reaver.0 aNew York :bDelacorte Press,cc1994. a216 p. ;c22 cm. aWith the help of her faithful dog Bill and the officer responsible for putting her father in jail, thirteen-year-old Jessica faces changes in her life when she realizes that her father will not stop drinking and making moonshine. 1aDogsxFiction. 1aCountry lifexFiction.zSouthern States 1aProhibitionxFiction. 1aSouthern StatesxFiction. aLVLcJFkJ Reaver bLB2p34000000006413r8.82u4683u589 bMAINp31000000055039r8.82u4684u59000736 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000180013524500570015326000350021030000340024550400650027965000440034494200230038895200420041195200410045343255LVL20010817142211.0950323s1994 cau b 00110 eng a94020570 a0912333472 a 94020570 c356d356 a305.23 Ch10aChen, Milton.14aThe smart parent's guide to kids' TV /cMilton Chen.0 aSan Francisco :bKQED,cc1994. axiii, 209 p. ;c22 cm. ;dpa. aIncludes bibliographical references: p. (187-190) and index. 0aTelevision and childrenzUnited States. aLVLcNFk305.23 Ch bMAINp32000000050665r5.28u4686u591 bLB2p34000000001292r5.28u4687u59200882 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200110012110000200013224500620015226000430021430000360025750000200029365000150031365000140032865000220034270000260036494200200039095200430041095200420045395200430049595200420053850274LVL19990719000000.0940516s1994 nyua 00110 eng a94016846 a0806982489 a 94016846 c357d357 a684 Du10aDuginske, Mark.10aShaker band saw projects /cMark Duginske & Chris Morris.0 aNew York :bSterling Pub. Co.,cc1994. a144 p. :bill. ;c26 cm. ;dpa. aIncludes index. 0aBand saws. 0aWoodwork. 0aShaker furniture.10aMorris, Chris,d1972- aLVLcNFk684 Du bMAINp32000000061612r11.65u4688u593 bLB2p34000000013853r11.40u4689u594 bMAINp31000000057811r11.65u4690u595 bLB1p33000000025790r11.40u4691u59600409 2200145 450000100060000000300040000600500170001000800410002701000130006809000130008110000330009424500650012794200280019295200430022057293LVL19990220000000.0920222s19xx xxu 00010 eng d a86022950 c358d3581 aStockman, David Alan,d1946-14aThe triumph of politics :bhow the Reagan revolution failed. aLVLcNFkLP 338.973 STO bMAINp31000000012060r19.51u4692u59700888 2200241 450000100060000000300040000600500170001000800390002703500160006609000130008209200200009510000310011524501320014625000140027826000490029230000350034150400410037660000540041765000470047165000580051894200280057695200420060471331LVL19990401000000.0930727s1953 nyua b 00110beng anpl93000645 c359d359 aB Rocke- feller1 aNevins, Allan,d1890-1971.10aStudy in power :bJohn D. Rockefeller, industrialist and philanthropist /cby Allan Nevins ; with a foreword by Robert Bezilla. a[1st ed.] aNew York :bCharles Scribner's Sons,cc1953. av. 1, 441 p. :bill. ;c24 cm. aIncludes bibliographical references.10aRockefeller, John D.d1839-1937.q(John Davison), 0aPhilanthropistsxBiography.zUnited States 0aCapitalists and financiersxBiography.zUnited States aLVLcBIOkB Rockefeller bMAINp31000000043888r5.00u4693u59800916 2200265 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200140011010000190012424500370014326000400018030000240022050000400024452001730028465000350045765000350049265000340052765100240056194200230058595200420060843256LVL19990313000000.0940928c19911989nyu j 00011 eng a0440802288 anpl94002015 c360d360 aJ Paulsen1 aPaulsen, Gary.14aThe winter room /cGary Paulsen. aNew York :bYearling,c1991, c1989. a103 p. ;c20 cm. ;. a"A Richard Jackson Book"--Half t.p. aA young boy growing up on a northern Minnesota farm describes the scenes around him and recounts his old Norwegian uncle's tales of an almost mythological logging past. 1aFarm lifexFiction.zMinnesota 1aLumber and lumberingxFiction. 1aNorwegian AmericansxFiction. 1aMinnesotaxFiction. aLVLcJFkJ Paulsen bMAINp32000000052071r3.50u4694u59900998 2200325 450000100060000000300040000600500170001000800390002701000190006602000250008503500200011004000130013005000230014308200170016609000130018310000190019624501060021525000120032126000430033330000320037650000200040850400320042865000290046065000280048965000290051765000370054665000220058394200250060595200420063050275LVL19990220000000.0860115s1987 nyua b 001 0 eng a86002058 //r89 a0385231490 :c$16.95 a 86002058 //r89 aDLCcDLC0 aBF432.C48bH4 19870 219a155.4/13 c361d3611 aHealy, Jane M.10aYour child's growing mind :ba parent's guide to learning from birth to adolescence /cJane M. Healy. a1st ed. aGarden City, N.Y. :bDoubleday,c1987. ax, 324 p. :bill. ;c22 cm. aIncludes index. aBibliography: p. [303]-311. 0aBrainxPsychophysiology. 0aEducational psychology. 0aLearning, Psychology of. 0aLearningxPhysiological aspects. 0aParent and child. aLVLcNFk155.413 HEA bMAINp32000000024414r5.28u4695u60001132 2200349 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009405000200010808200170012809000130014509200150015810000190017324500840019226000440027630000330032049000240035350000310037750000200040852001230042865000280055165000260057965000170060570000260062270000270064880000400067594200250071595200420074064313LVL19990217000000.0890227s1990 nyua j 00110 eng a89000919 a1854351559 a 8900091900aQ164.bK47 198900219a530/.078 c362d362 aJNF 530 Ke10aKerrod, Robin.10aIs it magic? /cRobin Kerrod ; illustrated by Mike Atkinson and Sarah Atkinson.0 aNew York :bMarshall Cavendish,cc1990. a32 p. :bcol. ill. ;c21 cm. 0aSecrets of science. a"Cherrytree books"--Cover. aIncludes index. aProjects, activities, and experiments explore such aspects of physics as gravity, temperature, and static electricity. 1aScientific recreations. 1aPhysicsxExperiments. 1aExperiments.11aAtkinson, Mike,eill.11aAtkinson, Sarah,eill.1 aKerrod, Robin.tSecrets of science. aLVLcJNFkJNF 530 Ke bLB1p33000000007100r10.95u4697u60100481 2200181 450000100060000000300040000600500170001000800410002702000150006809000130008309200150009610000200011124500330013126000430016430000260020794200240023395200420025771332LVL20000131000000.0950307s19xx xxu 00010 eng d a0373099339 c363d363 aAF Mallery10aMallery, Susan.14aBest bride /cSusan Mallery.0 aNew York :bSilhouette Books ;cc1995. a248p. ;bpa. ;c17cm. aLVLcAFkAF Mallery bMAINp31000000031207r3.50u4698u60200700 2200205 4500010001300000020001500013090001300028100002200041245009700063260004100160300002300201500002000224650003300244650003300277710003500310942002200345952004300367952004200410952004200452 a91055390 a0062730452 c364d36410aSomer, Elizabeth.14aThe essential guide to vitamins and minerals /cHealth Media of America and Elizabeth Somer.0 aNew York :bHarperPerennial,cc1992. a403 p. ;c24 cm. ; aIncludes index. 0aVitamins in human nutrition. 0aMinerals in human nutrition.10aHealth Media of America (Firm) aLVLcNFk612.3 So bMAINp32000000062304r10.03u4699u603 bLB2p34000000012590r10.03u4701u604 bLB1p33000000024494r10.03u4702u60500830 2200265 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200140011010000230012424500460014725000160019326000480020930000450025750000200030260000400032265000490036265000430041194200240045495200430047895200430052143257LVL19990313000000.0941122r19941989nyuaf 00111beng a1559722665 anpl94002479 c365d365 aB Onassis1 aHeymann, C. David.12aA Woman named Jackie /cC. David Heymann. aUpdated ed. aNew York :bCarol Publishing Group,cc1994. a766, [16] p. of plates :bill. ;c24 cm. aIncludes index.10aOnassis, Jacqueline Kennedy,d1929- 0aPresidentsxWivesxBiography.zUnited States aCelebritiesxBiography.zUnited States aLVLcBIOkB Onassis bMAINp32000000054078r14.72u4703u606 bMAINp31000000052235r14.72u4704u60701047 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200110012110000280013224500730016026000430023330000400027665000100031665000220032665000380034865000430038674000570042974000610048694200200054795200420056795200410060995200420065095200410069250276LVL19990220000000.0950710s1995 nyua 00010 eng a95023753 a0312134207 a 95023753 c366d366 a649 Kr10aKranowitz, Carol Stock.10a101 activities for kids in tight spaces /cby Carol Stock Kranowitz.0 aNew York :bSt. Martin's Press,c1995. axi, 162 p. :bill. ;c21 cm. ;dpa. 0aPlay. 0aParent and child. 0aCreative activities and seatwork. 0aPersonal spacexPsychological aspects.01aOne hundred one activities for kids in tight spaces.01aOne hundred and one activities for kids in tight spaces. aLVLcNFk649 Kr bMAINp32000000061002r5.87u4705u608 bLB2p34000000010992r5.87u4706u609 bMAINp31000000057542r5.87u4707u610 bLB1p33000000024233r5.87u4708u61100870 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009409000130011009200170012310000380014024500560017826000310023430000310026552001530029665000230044970000340047294200270050695200410053395200420057464314LVL19990217000000.0941203s1952 nyua j 00011 eng a52007858 a069019272X anpl94002567 c367d367 aJNF 232.9 Br10aBrown, Margaret Wise,d1910-1952.10aChristmas in the Barn.cPictures by Barbara Cooney.0 aNew York,bCrowellcc1952. a[32] p. :billus.,c19 cm. aA poem telling of the birth of a child in a barn among the animals, with illustrations which depict the barn and people of a twentieth-century farm. 1aChristmasxPoetry.11aCooney, Barbara,d1917-eill. aLVLcJNFkJNF 232.9 Br bLB2p34000000007817r9.89u4709u612 bMAINp31000000052346r9.89u4710u61301696 2200385 450000100060000000300040000600500170001000700100002700800410003703500160007803700320009409000130012609200150013924502520015426000520040630000560045850000470051450600310056151100930059252001780068552100200086352100130088353800570089665000220095365000190097570000230099470000220101770000190103970000270105870000500108574000440113574000460117994200240122595200610124971333LVL19990401000000.0vf cbahos941013p19891987cau184 g vleng d avid93001356 a37071A/BbWarner Home Video c368d368 aAV Charles00aCharles Dickens' Little DorritcA Sands Film Production ; Cannon Screen Entertainment ; produced by John Brabourne and Richard Goodwin ; adapted for the screen and directed by Christine Edzard.h[videorecording] ,nFilm 2.pLittle Dorrit's story / aBurbank, CA :bWarner Home Video,c1989, c1987. a2 videocassettes (184 min.) :bsd., col. ;c1/2 in. aClosed-captioned for the hearing impaired. aFor private home use only.1 aSarah Pickering, Derek Jacobi, Alec Guinness, Joan Greenwood, Roshan Seth, Cyril Cusack. aSecond portion of a 2-part adaptation of the story about the daughter of a man in English debtor's prison who makes a life of her own. First portion entitled Nobody's fault.8 aMPAA rating: G. aGeneral. aVHS Hi-fi digitally processed Dolby surround stereo. 0aHistorical films. 0aFeature films.11aEdzard, Christine.11aPickering, Sarah.11aJacobi, Derek.11aGuinness, Alec,d1914-11aDickens, Charles,d1812-1870.tLittle Dorrit.01aLittle Dorrit's storyh[videorecording]01aLittle Dorrit, film twoh[videorecording] aLVLcAVkAV Charles bMAINdMAINp31000000030448r64.85u4711u614v2003-09-0101121 2200337 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000270013624500840016324600340024725000120028126000500029330000330034344000480037665000120042470000250043694200250046195200420048695200430052895200420057195200430061395200420065695200430069895200420074136239LVL19990728000000.0960601s1996 nyua j 00010 eng a94006543 a0060244291 a 94006543 c369d369 aJNF 597 Pf10aPfeffer, Wendy,d1929-10aWhat's it like to be a fish? /cby Wendy Pfeffer ; illustrated by Holly Keller.3 aWhat is it like to be a fish? a1st ed. aNew York :bHarperCollins Publishers,cc1996. a32 p. :bcol. ill. ;c21 cm. 0aLet's-read-and-find-out science ;nStage 1. 1aFishes.10aKeller, Holly,eill. aLVLcJNFkJNF 597 Pf bLB2p37000000002946r14.95u4712u615 bMAINp32000000064898r13.95u4713u616 bLB1p36000000002708r14.95u4714u617 bMAINp35000000002292r14.95u4715u618 bLB2p34000000014778r14.95u4716u619 bMAINp31000000060164r13.95u4717u620 bLB1p33000000025788r13.95u4718u62101170 2200337 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000270013624501140016325000120027726000390028930000330032852000600036160000510042165000210047270000240049394200250051795200410054295200420058395200410062595200420066695200410070895200420074995200410079143258LVL20000705000000.0910723s1992 nyua j 00010 eng a91028245 a0823409570 a 91028245 c370d370 aJNF 811 Li10aLivingston, Myra Cohn.10aLet freedom ring :ba ballad of Martin Luther King, Jr. /cMyra Cohn Livingston ; illustrated by Samuel Byrd. a1st ed.0 aNew York :bHoliday House,cc1992. a32 p. :bcol. ill. ;c29 cm. aA poetic treatment of Martin Luther King and his dream.11aKing, Martin Luther,cJr.,d1929-1968xPoetry. 1aAmerican poetry.11aByrd, Samuel,eill. aLVLcJNFkJNF 811 Li bLB2p37000000006610r9.25u4719u622 bMAINp32000000056053r9.25u4720u623 bLB1p36000000002962r9.25u4721u624 bMAINp35000000002262r9.25u4722u625 bLB2p34000000009185r9.25u4723u626 bMAINp31000000053464r9.25u4724u627 bLB1p33000000021849r9.25u4725u62800507 2200205 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200120012110000180013324500260015126000380017730000210021594200220023695200430025871334LVL19990401000000.0950602s1996 nyu 00011 eng a95024114 a0553097105 a 95024114 c371d371 aM Title10aTitle, Elise.10aRomeo /cElise Title.0 aNew York :bBantam Books,cc1996. a433 p. ;c24 cm. aLVLcMYSkM Title bMAINp31000000058440r12.95u4727u62900614 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000160013624500450015225000170019726000310021430000290024565000470027494200200032195200430034136240LVL20020425091330.0910306r19911990mau d 00010 eng a91002958 a1559701331 a 91002958 c372d372 aREF 422 Ay10aAyto, John.10aDictionary of word origins /cJohn Ayto. a1st U.S. ed.0 aNew York :bArcade,c1991. a582 p. ;c24 cm. ;dpa.. 0aEnglish languagexEtymologyxDictionaries. aLVLcNFk422 Ay bMAINp32000000066194r15.00u4728u63001160 2200325 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000180013424500610015226000380021330000400025144000380029152001370032965000200046665000280048694200240051495200410053895200420057995200410062195200480066295200410071095200420075195200410079343259LVL19991112000000.0931214s1995 nyua j 00011 eng a93048023 a0679860509 a 93048023 c373d373 aE Sandin10aSandin, Joan.10aPioneer bear /cbased on a true story /cby Joan Sandin.0 aNew York :bRandom House,cc1995. a43, [5] p. :bill. ;c23 cm. ;dpa. 0aStep into reading. A Step 2 book. aAndrew and his family are excited when a photographer comes to take a picture of their dancing bear, but then Bearly can't be found. 1aBearsxFiction. 1aPhotographersxFiction. aLVLcEASYkE Sandin bLB2p37000000005974r2.31u4729u631 bMAINp32000000057318r2.31u4730u632 bLB1p36000000003912r2.31u4731u633 bMAINdMAINp32000000149622r2.31u4732u634 bLB2p34000000005261r2.31u4733u635 bMAINp31000000054363r2.31u4734u636 bLB1p33000000022363r2.31u4735u63700620 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200120012110000220013324500330015526000290018830000210021750000270023894200220026595200600028795200430034750278LVL19990220000000.0930607s1993 nyu 00011 eng a93021613 a0312851049 a 93021613 c374d374 aSF Bova aBova, Ben,d1932-10aEmpire builders /cBen Bova. aNew York :bTOR,cc1993. a383 p. ;c22 cm. aSequel to: Privateers. aLVLcSCIkSF Bova bMAINdMAINp32000000063783r2.00u4736u638v2003-09-01 bMAINp31000000044253r12.95u4737u63900839 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000230013624500640015926000410022330000330026449000430029752000700034065000370041070000180044794200250046595200420049095200410053257297LVL19990220000000.0790131s1978 ilua j 00011 eng a78106127 a0813650348 a 78106127 c375d375 aJE Hillert10aHillert, Margaret.10aPlay ball /cMargaret Hillert ; illustrated by Dick Martin.0 aChicago :bFollett Pub. Co.,cc1978. a32 p. :bcol. ill. ;c21 cm. 2aA Follett just beginning-to-read book. aTwo boys look for just the right type of ball with which to play. 1aBalls (Sporting goods)xFiction.10aMartin, Dick. aLVLcEASYkE Hillert bMAINp31000000043357r7.69u4738u640 bLB1p33000000007346r6.95u4739u64100338 2200133 450000100060000000300040000600500170001000800410002709000130006810000340008124500230011594200240013895200420016264316LVL19990217000000.0950324s19uu 000 0 eng d c376d3761 aSimenon, Georges,d1903-1989.10aMaigret hesitates. aLVLcMYSkM Simenon bMAINp31000000027264r1.75u4740u64200759 2200169 4500010001300000020001900013090001300032100001700045245006400062260004500126300005600171505017900227650005500406942002200461952004300483952006300526 a95141684 a0891456325 v.1 c377d37710aRana, Margo.10aBarbie exclusives :bidentification & values /cMargo Rana.0 aPaducah, Ky. :bCollector Books,cc1995. av.1, 157 p. :bchiefly ill. (some col.) ;c28 cm. ;1 a[1] featuring department store specials, porcelain treasures & Disney -- bk. 2. featuring Toys "R" Us dolls of the world, assorted customized dolls & Mattel's festival dolls. 0aBarbie dollsxCatalogs.xCollectors and collecting aLVLcNFk688.7 Ra bMAINp32000000067399r11.70u4741u643 bMAINdMAINp31000000062207r11.69u328159u644v2005-03-1101707 2200433 450000100060000000300040000600500170001000700150002700800410004202400180008303500160010103700230011709000130014009200160015310000330016924000820020224501570028426000330044130000490047449000260052350000180054950000760056750000650064351100980070851800780080665000620088465000170094670000200096370000230098370000980100671000210110474000110112574000110113674000210114774000190116874000180118794200260120595200420123143260LVL20000912035347.0sdufsngnnmmnee950727s1991 nyuuun hi eng d 1a028942071629 anav95000058 a420 716-2bPhilips c378d378 aCD Schubert1 aSchubert, Franz,d1797-1828.00aQuintets,mpiano, violin, viola, violoncello, double bass,nD. 667,rA major.00aPiano quintet in A, op. 114, D. 667b"The trout" /cFranz Schubert. Piano trio in D, op. 70 no. 1 : "Ghost" / Ludwig van Beethoven.h[sound recording] :0 aNew York :bPhilips,cp1991. a1 sound disc (61:58) :bdigital ;c4 3/4 in.0 aSilver line classics. aCompact disc. aTitles from container: Forellenquintet = Trout quintet ; Geister-Trio.. aProgram notes by Robin Golding (6 p. : ports.) in container.0 aSamuel Rhodes, viola (1st work) ; Georg HÈortnagel, double bass (1st work) ; Beaux Arts Trio. aRecorded: Amsterdam, June 1975 (1st work); London, Sept. 1981 (2nd work). 0aQuintets (Piano, violin, viola, violoncello, double bass) 0aPiano trios.1 aRhodes, Samuel.1 aHÈortnagel, Georg.12aBeethoven, Ludwig van,d1770-1827hSound recording.mpiano, strings.nop. 70.nNo. 1,tTrios,2 aBeaux Arts Trio.02aTrout.02aGhost.02aForellenquintet.02aTrout quintet.02aGeister-Trio. aLVLcCDMkCD Schubert bMAINp32000000058429r8.98u4743u64500872 2200277 450000100060000000300040000600500170001000800390002701000120006602000150007803500140009309000130010709200150012010000220013524500910015726000400024830000300028865000200031865000170033894200260035595200430038195200420042495200430046695200430050995200420055250279LVL19990220000000.0960701s1996 txua j 00011 eng a9579189 a1570640726 a 95079189 c379d379 aE Bernthal10aBernthal, Mark S.10aBarney & BJ go to the fire station /cby Mark S. Bernthal ;photography by Dennis Full.0 aTexas :bBarney Publishing,cc1996. a[26] p. :bill.,cc21 cm. 1aBarney stories. 1aFirestation. aLVLcEASYkE Bernthal bMAINp32000000065432r12.89u4744u646 bLB2p34000000014041r12.89u4745u647 bMAINp31000000060704r12.89u4746u648 bMAINp31000000061890r12.95u4747u649 bLB1p33000000026124r12.89u4748u65000329 2200133 450000100060000000300040000600500170001000800410002709000130006810000280008124500230010994200210013295200420015364317LVL19990217000000.0950324s19uu 000 0 eng d c380d3801 aGrey, Zane,d1872-1939.10aFighting caravans. aLVLcWESkW Grey bMAINp31000000029206r1.85u4749u65101175 2200337 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200190012110000290014024500660016926000380023530000290027344000240030252001430032665000220046965000290049165000200052065000350054070000280057574000350060380000480063894200260068695200410071295200430075395200410079650280LVL19990220000000.0920824s1993 nyua j 00011 eng a92032565 a0679940324 a 92032565 c381d381 aJ Beren- stain10aBerenstain, Stan,d1923-14aThe Berenstain Bears gotta dance /cby Stan & Jan Berenstain.0 aNew York :bRandom House,cc1993. a101 p. :bill. ;c20 cm. 2aA big chapter book. aWith the help of Sister's ballet teacher, Brother Bear conquers his fear of dancing and can ask his favorite girl cub to the school dance. 1aDancingxFiction. 1aBallet dancingxFiction. 1aBearsxFiction. 1aBrothers and sistersxFiction.10aBerenstain, Jan,d1923-01aBerenstain Bears got to dance.1 aBerenstain, Stan,d1923-tBig chapter book. aLVLcJFkJ Berenstain bLB2p34000000006808r9.89u4750u652 bMAINp31000000045769r10.96u4751u653 bLB1p33000000019326r9.89u4752u65400730 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012124500850013426000460021930000420026550400660030765000410037370000210041494200220043595200430045743262LVL19990313000000.0910325s1992 ohua b 00100 eng a91015106 a0935470611 a 91015106 c382d382 a303.3 Th00aThoughts on leadership :ba treasury of quotations /cedited by William D. Hitt.0 aColumbus, Ohio :bBattelle Press,cc1992. axxxv, 294 p. :bill. ;c24 cm. ;dpa. aIncludes bibliographical references (p. 269-281) and indexes. 0aLeadershipxQuotations, maxims, etc.10aHitt, William D. aLVLcNFk303.3 Th bMAINp32000000062419r17.95u4753u65501364 2200385 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000260013624500360016225000120019826000430021030000350025352001010028865000250038965000290041494200260044395200420046995200420051195200430055395200430059695200420063995200430068195200420072495200420076695200430080895200430085195200420089495200420093650281LVL20020717131611.0940228s1993 nyua j 00011 eng a91048354 a0688114865 a 91048354 c383d383 aE Hutchins10aHutchins, Pat,d1942-10aMy best friend /cPat Hutchins. a1st ed.0 aNew York :bGreenwillow Books,cc1993. a[32] p. :bcol. ill. ;c26 cm. aDespite differences in abilities, two little girls appreciate each other and are "best friends." 1aFriendshipxFiction. 1aAfro-AmericansxFiction. aLVLcEASYkE Hutchins bLB2p37000000022430r13.95u4754u656 bLB2p37000000022431r13.95u4755u657 bMAINp32000000045252r12.54u4756u658 bMAINp32000000056091r13.44u4757u659 bLB1p36000000018876r13.95u4758u660 bMAINp35000000010247r13.95u4760u661 bLB2p34000000010448r13.44u4761u662 bLB2p34000000028385r13.95u4762u663 bMAINp31000000046898r12.54u4763u664 bMAINp31000000053519r13.44u4764u665 bLB1p33000000022765r12.54u4765u666 bLB1p33000000051940r13.95u4766u66700352 2200145 450000100060000000300040000600500170001000800410002702000150006809000130008310000190009624500260011594200230014195200420016436244LVL19990319000000.0940712s19xx xxu 00010 eng d a0027227901 c384d384 aCohen, Miriam.10aWill I have a friend? aLVLcEASYkE Cohen bMAINp32000000016312r9.56u4767u66800901 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200180012110000350013924500530017426000440022730000350027149000200030652001750032665000210050165000220052265000220054494200270056695200420059343263LVL19990313000000.0770707c19771958nyua j 00011 eng a77023792 a0140502610 a 77023792 c385d385 aE Bemel- mans 0aBemelmans, Ludwig,d1898-1962.10aMadeline and the gypsies /cby Ludwig Bemelmans.0 aNew York :bPuffin Books,c1977, c1958. a[59] p. :bcol. ill. ;c21 cm.0 aPicture puffin. aPepito, son of the Spanish ambassador, and Madeline, rescued by gypsies during a storm, travel and perform with their wandering friends until they again find Miss Clavel. 1aCircusxFiction. 1aGypsiesxFiction. 1aStories in rhyme. aLVLcEASYkE Bemelmans bMAINp32000000066415r3.95u4768u66900382 2200145 450000100060000000300040000600500170001000800410002702000150006809000130008310000300009624500460012694200220017295200420019436245LVL19990319000000.0940829s19xx xxu 00010 eng d a0898457785 c386d3861 aJoyce, James,d1882-1941.10aJames Joyce reading: "Ulysses" and... AC. aLVLcACkAC Joyce bMAINp32000000021856r5.37u4769u67000747 2200253 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000130011009200150012310000250013824500890016326000500025230000350030265000140033765000140035165000200036594200240038595200420040995200420045143264LVL19990313000000.0961025s1995 utua 00010 eng d a95061189 a0943604486 a 95061189 c387d387 a745.594 Wy20aWynne-Evans, Sigrid.10aEarring designs by Sig :bbook III /cwritten and illustrated by Sigrid Wynne-Evans.0 aLiberty, UT :bEagle's View Pub. Co.,cc1995. a72 p. :bill. ;c23 cm. ;dpa. 0aBeadwork. 0aEarrings. 0aJewelry making. aLVLcNFk745.594 Wy bMAINp32000000067528r9.95u4770u671 bMAINp31000000062334r9.95u4771u67200856 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200190012110000200014024500610016026000460022130000280026744000240029550000420031961000460036165000250040774000320043294200290046495200430049395200420053650283LVL19990220000000.0930915s1993 mnua j 00010 eng a93035817 a1562392379 a 93035817 c388d388 aJNF 796.323 It10aItalia, Robert.14aThe Chicago Bulls :bbasketball champions /cBob Italia.0 aEdina, Minn. :bAbdo & Daughters,cc1993. a48 p. :bill. ;c26 cm. 4aThe Year in sports. aBasketball champions, 1993: on spine.21aChicago Bulls (Basketball team)xHistory. 1aBasketballxHistory.01aBasketball champions, 1993. aLVLcJNFkJNF 796.323 It bMAINp31000000048292r14.95u4773u673 bLB1p33000000018979r14.95u4774u67400349 2200145 450000100060000000300040000600500170001000800410002701000130006809000130008110000180009424500290011294200200014195200420016157302LVL19990220000000.0950323s19uu 000 0 eng d a84056032 c389d389 aShea, George.10aESP McGee to the rescue. aLVLcJFkJ Shea bMAINp31000000006561r1.33u4775u67501124 2200373 450000100060000000300040000600500170001000800390002701000130006602000150007902000220009403500160011603900180013204000200015005000200017008200190019009000130020910000190022224500340024125000120027526000390028730000290032650000200035551000320037551000280040752001360043552100340057152100090060565000180061465000160063265000110064894200300065995200610068964321LVL19990217000000.0820331s1982 nyua 00110 eng a82080820 a0823404676 a0823404692 (pbk.) aflb011070020 a2b3c3d3e3 aDLCcDLCdICrlF0 aBS613.bB4 19820 219a745.5/0242 c390d39010aBecker, Joyce.10aBible crafts /cJoyce Becker. a1st ed.0 aNew York :bHoliday House,cc1982. a120 p. :bill. ;c29 cm. aIncludes index.0 aChildren's Catalog (Wilson)0 aSchool Library Journal. aIllustrations and step-by-step instructions explain how to produce Bible characters and events using clay, wood, fabric, and paper.0 a5.1bFollett Library Book Co.2 a3-6. 0aBible crafts. 7aHandicraft. 7aBible. aLVLcJNFkJNF 745.502 BEC bMAINdMAINp31000000008314r12.95u4776u676v2003-09-0100733 2200205 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200140011010000260012424500510015026000380020130000230023952002000026294200230046295200420048550285LVL19990220000000.0940716c19931978nyu j 00011 eng a0440218934 anpl94001198 c391d391 aYA Greene1 aGreene, Bette,d1934-10aMorning is a long time coming /cBette Greene. aNew York :bPuffin,c1993, c1978. a261 p. :c18 cm.;. aEn route to Germany in search of the maternal love she never had, eighteen-year-old Patty Bergen lingers in Paris and experiences her first love affair. A sequel to "Summer of My German Soldier." aLVLcYAkYA Greene bMAINp31000000050193r3.99u4779u67700376 2200157 450000100060000000300040000600500170001000800410002701000130006809000130008110000230009424500110011760000260012894200220015495200420017671342LVL19990401000000.0950324s19uu 000 0 eng d a69017936 c392d3921 aZierold, Norman J.10aGarbo.10aGarbo, Greta,d1905-. aLVLcBIOkB Garbo bMAINp31000000022233r2.58u4780u67800288 2200121 450000100060000000300040000600500170001000800410002709000130006824500270008194200160010895200420012443267LVL19990313000000.0941224s19uu 000 0 eng d c393d39310aCOBBLESTONE NOV. 1983. aLVLcPERkJ bMAINp32000000022101r1.95u4781u67900979 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200120012110000180013324500970015126000410024830000210028952002290031065000220053965000260056165000220058794200210060995200420063095200410067250286LVL20000911174341.0961001s1996 nyu j 00011 eng a96002464 a0385322429 a 96002464 c394d394 aJ Jukes10aJukes, Mavis.10aHuman interactions with Mrs. Gladys Furley, R.N. :bexpecting the unexpected /cMavis Jukes.0 aNew York :bDelacorte Press,cc1996. a132 p. ;c22 cm. aTwelve-year-old River and her sixth-grade classmates handle the information from their sex education class in different ways, and it leads River to the conclusion that her older sister's unusual behavior is due to pregnancy. 1aSchoolsxFiction. 1aFamily lifexFiction. 1aSistersxFiction. aLVLcJFkJ Jukes bMAINp32000000067078r9.57u4782u680 bLB2p37000000012628r9.57u4783u68100357 2200145 450000100060000000300040000600500170001000800410002701000130006809000130008110000190009424500370011394200250015095200360017543268LVL19990313000000.0930415s19xx xxu 00010 eng d a66010064 c395d395 aSerage, Nancy.14aThe prince who gave up a throne. aLVLcJNFkJB Gautama bMAINp32000000001979u4784u68200340 2200145 450000100060000000300040000600500170001000800410002701000130006809000130008110000200009424500150011494200230012995200420015243269LVL19990313000000.0920609s19xx xxu 00010 eng d a88001444 c396d396 aLasky, Kathryn.10aSea swan . aLVLcEASYkE Lasky bMAINp32000000026093r8.37u4785u68300804 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000470013424500600018125000180024126000420025930000240030150000200032565000210034565000210036674000440038774000300043194200220046195200430048350288LVL19990220000000.0860311s1986 nyu 00110 eng a85040653 a0446512826 a 85040653 c397d397 a613.9 We1 aWestheimer, Ruth K.d1928-q(Ruth Karola),10aDr. Ruth's guide for married lovers /cRuth Westheimer. aBook club ed. aNew York, NY :bWarner Books,cc1986. ax, 244 p. ;c22 cm. aIncludes index. 0aSex in marriage. 0aSex instruction.01aDoctor Ruth's guide for married lovers.01aGuide for married lovers. aLVLcNFk613.9 We bMAINp32000000052292r10.00u4786u68400585 2200205 450000100060000000300040000600500170001000800410002709000130006810000280008124500520010926000540016130000330021550000140024851100240026265000160028670000170030294200240031995200360034357307LVL19990220000000.0910708s1989 onc 00010 eng d c398d3981 aLeonard, Elmore,d1925-10aCat chasercLeonard Elmore.h[sound recording]/0 aBurlington, Ont. :bListen for Pleasure,,cc1989. a2 sound cassettes :banalog. aAbridged.0 aRead by Ken Howard. 0aAudiobooks.10aHoward, Ken. aLVLcACkAC Leonard bMAINp31000000032402u4787u68500926 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000210013524501040015626000460026030000480030650000230035450400640037765000470044165000460048870000280053471000210056294200230058395200420060650289LVL20030628104149.0940715s1994 nyuaf b 00110 eng a94030270 a0671899465 a 94030270 c399d399 a746.75 De1 aDenny, Walter B.10aSotheby's guide to oriental carpets /cby Walter B. Denny ; illustrations by Noram Jean Jourdenais. aNew York, NY :bSimon & Schuster,cc1994. a203, [24] p. of plates :bill. ;c22 cm. ;. a"A Fireside book." aIncludes bibliographical references (p. 181-189) and index.00aRugs, OrientalxCollectors and collecting.00aRugs, IslamicxCollectors and collecting.10aJourdenais, Noram Jean.20aSotheby's (Firm) aLVLcNFk746.75 De bMAINp32000000053413r9.44u4789u68600557 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007904000180009405000260011208200160013809000130015410000220016724500390018926000380022830000270026670000210029394200250031457308LVL19990220000000.0890124s1989 nyu 00011 eng a89000113 a055305371X aDLCcDLCdDLC00aPS3569.T3342bT3 198900219a813/.54 c400d40010aKaminsky, Howard.10aTalent /cHoward & Susan Kaminsky.0 aNew York :bBantam Books,cc1989. aviii, 391 p. ;c24 cm.10aKaminsky, Susan. aLVLcAFkAF Kaminsky00782 2200241 450000100060000000300040000600500170001000800390002701000210006602000150008703500160010208200160011809000130013410000180014724500770016526000400024230000330028252001020031565000350041770000220045294200230047495200430049764327LVL19990217000000.0860429s1986 ilua j 00011 eng a86011723 /AC/r89 a0516034766 aflb010349070 219aE Alder c401d40110aAlder, Katie.10aFor sale, one sister cheap! /cwritten by Katie Alder & Rachael McBride.0 aChicago :bChildrens Press,cc1986. a31 p. :bcol. ill. ;c26 cm. aSarah makes such a pest of herself that her big brother decides to get rid of her by selling her. 1aBrothers and sistersxFiction.10aMcBride, Rachael. aLVLcEASYkE Alder bMAINp31000000043276r10.89u4791u68700708 2200253 450000100060000000300040000600500170001000800390002701000190006602000150008503500200010004000130012005000320013308200140016509000130017910000510019224500460024325000140028926000500030330000230035335000100037694200260038695200420041243272LVL19990313000000.0691024s1969 nyu 000 1 eng a78080335 //r85 a0030665558 a 78080335 //r85 aDLCcDLC0 aPZ3.S8472aPR6037.T458bGe3 a823/.9/12 c402d4021 aStevenson, D. E.d1892-1973.q(Dorothy Emily),10aGerald and Elizabethcby D. E. Stevenson. a[1st ed.] aNew York,bHolt, Rinehart and Winstonc[1969] avi, 245 p.c22 cm. a5.95. aLVLcAFkAF Stevenson bMAINp32000000020229r3.97u4793u68800792 2200253 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200130011210000240012524500590014926000410020830000380024950000210028752000890030865000210039765000150041894200220043395200420045595200410049750291LVL20010702112542.0950518s1995 nyua 00110 eng d a0020529627 anpl95000745 c403d403 a641.8 Mi10aMitchell, Paulette.14aThe complete book of dressings /cPaulette Mitchell. .0 aNew York :bMacmillan USA,cc1995. . a154 p. :bill. ;c20 cm. ;dpa. . aIncludes index.. 0a100 recipes for salads, seafood, poultry, pasta, grains and beans, fruit, and more.. 0aSalad dressing.. 0aDressings. aLVLcNFk641.8 Mi bMAINp32000000057600r7.20u4794u689 bLB2p37000000017279r7.20u4795u69000627 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007904000130009405000270010708200160013409000130015010000220016324500490018526000330023430000210026794200240028895200420031295200430035457310LVL19990713000000.0871104s1988 nyu 00011 eng a87031772 a0689116268 aDLCcDLC0 aPS3562.I51193bI5 19880 219a813/.54 c404d40410aLindsey, David L.10aIn the lake of the moon /cDavid L. Lindsey.0 aNew York :bAtheneum,c1988. a341 p. ;c25 cm. aLVLcAFkAF Lindsey bLB2p37000000003162r10.59u4797u691 bMAINp31000000015417r10.59u4798u69200809 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200170012110000190013824500460015726000400020330000400024352000740028365000150035765000170037294200270038995200420041695200430045895200420050164329LVL19990217000000.0870901s1988 nyua j 00010 eng a87025695 a0027512312 a 87025695 c405d405 aJNF 617.6 Ku10aKuklin, Susan.10aWhen I see my dentist /cby Susan Kuklin.0 aNew York :bBradbury Press,cc1988. a[32] p. :bcol. ill. ;c21 x 26 cm. aFour-year-old Erica describes her visit to the dentist for a checkup. 1aDentistry. 1aDental care. aLVLcJNFkJNF 617.6 Ku bLB2p34000000008631r11.66u4799u693 bMAINp31000000037504r11.66u4800u694 bLB1p33000000009690r11.66u4801u69501083 2200325 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009405000200010808200120012809000130014009200150015310000260016824501210019426000390031530000460035449000190040050400590041952001140047865100170059265100170060965100190062665100180064570000280066394200250069195200410071664330LVL19990217000000.0891124s1991 nyuab j b 00110 eng a89070885 a0791010384 a 8907088500aF4.3.bA96 199100220a974 c406d406 aJNF 974 Ay 0aAylesworth, Thomas G.10aSouthern New England :bConnecticut, Massachusetts, Rhode Island /cby Thomas G. Aylesworth, Virginia L. Aylesworth.0 aNew York :bChelsea House,cc1991. a64 p. :bill. (some col.), maps ;c22 cm. 0aState reports. aIncludes bibliographical references (p. 62) and index. aDiscusses the geographical, historical, and cultural aspects of Connecticut, Massachusetts, and Rhode Island. 1aNew England. 1aConnecticut. 1aMassachusetts. 1aRhode Island.10aAylesworth, Virginia L. aLVLcJNFkJNF 974 Ay bLB1p33000000007101r6.95u4803u69601298 2200361 450000100060000000300040000600500170001000800390002701000190006602000150008503500160010004000200011604300120013605000230014808200150017109000130018610000310019924501450023026000440037530000210041950000200044051000360046051000430049651000220053952001200056152100110068165000500069265000380074265100520078065100380083294200230087095200430089336255LVL20020319095030.0860905s1987 nyu 00110 eng a86024768 //r88 a0671479903 aflb01618902 aDLCcDLCdICrlF an-us---0 aE169.1.bB653 19870 219a973.92 c407d40710aBloom, Allan David,d1930-14aThe closing of the American mind :bhow higher education has failed democracy and impoverished the souls of today's students /cAllan Bloom.0 aNew York :bSimon and Schuster,cc1987. a392 p. ;c25 cm. aIncludes index.0 aPublic Library Catalog (Wilson)0 aBooklist Editors' (Reviewers') Choice.0 aNYT Notable Book. aBloom's theory on why and how higher education has failed democracy and impoverished the souls of today's students.2 aAdult. 0aEducation, HigherxPhilosophy.zUnited States 7aEducation, HigherzUnited States. 0aUnited StatesxIntellectual lifey20th century. 7aUnited StatesxIntellectual life. aLVLcNFk973.92 Bl bMAINp32000000034805r10.00u4804u69700747 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000320013424500400016625000120020626000340021830000210025265000430027365000370031665000360035365100270038994200220041695200430043850293LVL20010613141130.0950119s1995 nyu 00011 eng a95005413 a0786861045 a 95005413 c408d408 aAF Elkin10aElkin, Stanley,d1930-1995.10aMrs. Ted Bliss /cby Stanley Elkin. a1st ed.0 aNew York :bHyperion,cc1995. a291 p. ;c25 cm. 0aCondominiumsxFiction.zFloridazMiami 0aWidowsxFiction.zFloridazMiami 0aWomenxFiction.zFloridazMiami 0aMiami (Fla.)xFiction. aLVLcAFkAF Elkin bMAINp32000000060136r13.47u4805u69800420 2200169 450000100060000000300040000600500170001000800410002702000150006809000130008309200140009610000180011024500350012826000380016330000260020194200230022764331LVL19990217000000.0950803s19uu 000 0 eng d a0821748653 c409d409 aAF Kidder1 aKidder, Jane.10aPassion's gift /cJane Kidder. aNew York :bZebra Books ;cc1995. a399p. ;bpa. ;c18cm. aLVLcAFkAF Kidder00677 2200241 450000100060000000300040000600500170001000800390002701000130006602000310007904000130011005000230012308200180014609000130016410000220017724500520019926000360025130000340028750000200032165000300034194200220037195200420039371350LVL20020920080414.0861126s1987 azua 00110 eng a86031872 a0895864770 (pbk.) :c$9.95 aDLCcDLC0 aRM237.6.bE34 19870 219a641.5/637 c410d41010aEgan, Jeanette P.10aHealthy high-fiber cooking /cJeanette P. Egan.0 aTucson, AZ :bHP Books,cc1987. a160 p. :bcol. ill. ;c26 cm. aIncludes index. 0aHigh-fiber dietxRecipes. aLVLcNFk641.5 Eg bMAINp31000000023996r5.87u4807u69900712 2200241 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200120011210000200012424500420014426000330018630000280021944000370024794200210028495200410030595200410034695200420038795200410042936256LVL20000910174023.0931228s1994 nyu 00011 eng d a0671794833 anpl93001772 c411d411 aJ Keene10aKeene, Carolyn.10aIf looks could kill /cCarolyn Keene.0 aNew York :bArchway,cc1994. a150 p. ;c17 cm. ;dpa. 4aThe Nancy Drew Files ;vcase 91. aLVLcJFkJ Keene bLB2p37000000008771r2.31u4808u700 bLB2p34000000007276r2.31u4810u701 bMAINp31000000046067r2.31u4811u702 bLB1p33000000017339r2.31u4812u70300935 2200325 450000100060000000300040000600500170001000800390002701000130006602000150007902000220009402000270011603500140014303900180015704000130017505000220018808200190021009000130022910000270024224500450026926000340031430000410034850000200038950400260040965000250043574000400046074000440050094200230054495200420056743275LVL20000911212949.0820109s1982 nyua b 001 0 eng a81085037 a0806954604 a0806976047 (pbk.) a0806954612 (lib. bdg.) a 810850370 a2b3c3d3e3 aDLCcDLC0 aTT835.bM347 19820 219a746.46/041 c412d4121 aMalone, Maggie,d1942-10a1001 patchwork designs /cMaggie Malone. aNew York :bSterling,cc1982. a224 p. :bill. (some col.) ;c27 cm. aIncludes index. aBibliography: p. 217. 0aPatchworkxPatterns.01aOne thousand one patchwork designs.01aOne thousand and one patchwork designs. aLVLcNFk746.46 Ma bMAINp32000000021040r7.51u4814u70400766 2200241 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200120011010000280012224500810015026000300023130000280026150000350028965000560032465000390038094200220041995200410044195200420048250294LVL20020417111611.0940503s1995 nyu 00011 eng a0451180739 anpl96000276 c413d413 aM Block10aBlock, Lawrence,d1938-10aBurglars can't be choosers :ba Bernie Rhodenbarr mystery /cLawrence Block.0 aNew York :bOnyx,cc1995. a302 p. ;c18 cm. ;dpa. a"A Bernie Rhodenbarr mystery." 0aRhodenbarr, Bernie (Fictitious character)xFiction. 0aThievesxFiction.zNew York (N.Y.) aLVLcMYSkM Block bLB2p37000000001837r3.53u4815u705 bMAINp32000000062569r3.53u4816u70600668 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000310013624500430016725000200021026000460023030000210027665000220029794200240031995200410034395200420038464332LVL19990217000000.0890816r19901972meu d 00011 eng a89039527 a0896218864 a 89039527 c414d414 aLP Seifert 0aSeifert, Elizabeth,d1897-10aDoctor's destiny /cElizabeth Seifert. aLarge print ed.0 aThorndike, Me. :bThorndike Press,c1990. a314 p. ;c23 cm. 0aLarge type books. aLVLcLPkLP Seifert bLB2p34000000002723r3.50u4817u707 bMAINp31000000045778r3.50u4818u70801320 2200337 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009710000200011024500690013026000440019930000360024352002090027965000400048865000260052865000230055465100270057770000240060494200220062895200410065095200410069195200420073295200420077495200410081695200420085795200410089995200420094050295LVL20000107000000.0960618r19961993nyua j 00011 eng a0671526081 anpl96001117 c415d41510aLawlor, Laurie.10aGeorge on his own /cLaurie Lawlor ; illustrated by Toby Gowing.0 aNew York :bPocket Books,c1996, c1993. a191 p. :bill. ;c19 cm. ;dpa. aAddie's twelve-year-old brother, George, doesn't think anyone appreciates his musical talent, and when his father threatens to sell his trombone, George decides to run away from the family's prairie home. 1aFrontier and pioneer lifexFiction. 1aFamily lifexFiction. 1aRunawaysxFiction. 1aGreat PlainsxFiction.11aGowing, Toby,eill. aLVLcJFkJ Lawlor bLB2p37000000003713r4.60u4819u709 bLB2p37000000006292r2.03u4820u710 bMAINp32000000065272r2.03u4821u711 bMAINp32000000093115r4.60u4822u712 bLB1p36000000001669r2.03u4823u713 bMAINp35000000002087r2.03u4824u714 bLB2p34000000013965r2.03u4825u715 bMAINp31000000065563r3.50u4827u71600920 2200277 450000100060000000300040000600500170001000800390002701000210006602000150008704000130010205000170011508200110013209000130014310000180015624501550017425000120032926000370034130000290037852001040040765000210051165000210053270000240055394200230057795200420060057314LVL19990220000000.0770623s1978 maua 00010 eng a77024305 /AC/r79 a0316542334 aDLCcDLC0 aHQ770.5.bM3 a649/.6 c416d41610aMack, Alison.10aToilet learning :bthe picture book technique for children and parents /cby Alison Mack ; pictures by George C. Phillips ; foreword by Paul L. Adams. a1st ed.0 aBoston :bLittle, Brown,cc1978. a109 p. :bill. ;c25 cm. aIncludes separate discussions for parents and children about the whys and hows of using the toilet. 0aToilet training. 1aToilet training.10aPhillips, George C. aLVLcNFk649.6 MAC bMAINp31000000022338r9.12u4829u71700830 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200180012124500930013925000120023226000390024430000330028352001080031665000230042470000270044770000310047494200280050595200430053364333LVL19990217000000.0941203s1984 nyua j 00000 eng a83018559 a0823405087 a 83018559 c417d417 aJNF 808.81 Ch00aChristmas poems /cselected by Myra Cohn Livingston ; illustrated by Trina Schart Hyman. a1st ed. aNew York :bHoliday House,cc1984. a32 p. :bcol. ill. ;c24 cm. aEighteen selections include offerings by Harry Behn, X.J. Kennedy, Christina Rossetti, and John Ciardi. 1aChristmasxPoetry.10aLivingston, Myra Cohn.11aHyman, Trina Schart,eill. aLVLcJNFkJNF 808.81 Ch bMAINp31000000052347r11.66u4830u71800878 2200253 450000100060000000300040000600500170001000800390002701000170006602000220008303500160010509000130012109200150013410000220014924500890017126000460026030000330030644000330033952001470037265000100051970000270052994200250055695200430058171352LVL19990401000000.0831118c19801979caua j 00010 eng a80080669 /AC a0865500207 (hard) aflb00466503 c418d418 aJNF 597 Wo10aWootton, Anthony.14aThe amazing fact book of fish /cby Anthony Wootton ; illustrated by Sergio Borella.0 aBenecia, CA :bA & P Books,c1980, c1979. a32 p. :bcol. ill. ;c27 cm. 0aAmazing fact books ;vv. 11. aBrief descriptions and larger-than-life pictures of twenty-two insects, including the pirate spider, the spitting spider, and the crab spider. 1aFish.11aBorella, Sergio,eill. aLVLcJNFkJNF 597 Le bMAINp31000000046257r10.00u4831u71900869 2200289 450000100060000000300040000600500170001000800390002701000200006602000150008603500210010104000130012204100110013505000270014608200140017309000130018710000290020024000470022924500990027625000190037526000360039430000190043035000110044950000550046094200220051595200420053736258LVL19990319000000.0710506s1971 nyu 000 1 eng a70138796 //r853 a0060137479 a 70138796 //r853 aDLCcDLC1 aengfre0 aPZ4.Q9aPQ2633.U74bFe a843/.9/14 c419d4191 aSagan, Francoise,d1935-10aPeu de soleil dans l'eau froide.lEnglish.12aA few hours of sunlight,cby Francoise Sagan. Translated from the French by Terence Kilmartin. a[1st U.S. ed.] aNew York,bHarper & Rowc[1971] a185 p.c22 cm. a$5.95. aTranslation of Un Peu de soleil dans l'eau froide. aLVLcAFkAF Sagan bMAINp32000000007351r3.97u4832u72000764 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000190013524501000015426000430025430000280029750000280032550000200035365000280037394200230040195200430042495200430046750296LVL19990220000000.0961104s1996 nyua 00110 eng a96001186 a0806948809 a 96001186 c420d420 a746.44 Ra10aRankin, Chris.10aSplendid silk ribbon embroidery :bembellishing clothing, linens & accessories /cChris Rankin.0 aNew York :bSterling Pub. Co.,cc1996. a128 p. :bill.,c26 cm. a"A Sterling/Lark book." aIncludes index. 0aSilk ribbon embroidery. aLVLcNFk746.44 Ra bMAINp32000000067723r17.33u4833u721 bMAINp31000000062472r17.33u4834u72201431 2200409 450000100060000000300040000600500170001000800390002701000210006602000220008702000270010903500160013603900180015204000200017005000220019008200140021209000130022610000200023924500930025926000390035230000330039151000320042451000140045651000280047052001290049852100340062752100090066165000620067065000510073265000410078365000300082465000410085465000300089570000270092594200270095295200420097957315LVL19990220000000.0820524s1983 nyua j 00010 eng a82009585 /AC/r84 a0899191649 (pbk.) a0899191533 (lib. bdg.) aflb000524080 a2b3c3d3e3 aDLCcDLCdICrlF0 aPE1689.bT44 19830 219a428.1 c421d42110aTerban, Marvin.10aIn a pickle, and other funny idioms /cby Marvin Terban ; illustrated by Giulio Maestro.0 aNew York :bClarion Books,cc1983. a64 p. :bcol. ill. ;c24 cm.0 aChildren's Catalog (Wilson)0 aBooklist.0 aSchool Library Journal. aThirty common English phrases, such as "a chip off the old block" and "cry over spilled milk" are illustrated and explained.0 a4.9bFollett Library Book Co.2 a3-6. 0aEnglish languagexTerms and phrasesxJuvenile literature. 0aEnglish languagexIdiomsxJuvenile literature. 1aEnglish languagexTerms and phrases. 1aEnglish languagexIdioms. 7aEnglish languagexTerms and phrases. 7aEnglish languagexIdioms.11aMaestro, Giulio,eill. aLVLcJNFkJNF 428.1 Te bMAINp31000000006766r9.96u4835u72300332 2200133 450000100060000000300040000600500170001000800410002709000130006810000280008124500320010994200210014195200360016264334LVL19990217000000.0950324s19uu 000 0 eng d c422d4221 aGrey, Zane,d1872-1939.14aThe heritage of the desert. aLVLcWESkW Grey bMAINp31000000029208u4836u72400854 2200277 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200150011210000200012724500900014725000170023726000570025430000360031144000430034750000200039065000190041065000280042970000240045770000270048194200250050895200430053350297LVL19990220000000.0960821r19871987enkab j 00110 eng d a0881102326 anpl96001662 c423d423 aJNF 909 Ch10aChisholm, Jane.10aWorld history dates /cJane Chisholm ; illustrated by Ian Jackson and Richard Draper. aAmerican ed.0 aLondon :aTulsa :bUsborne ;bEDC Publishing,c1987. a128 p. :bill. ; maps ;c26 cm. 4aThe Usborne illustrated world history. aIncludes index. 1aWorld History. 1aChronology, Historical.11aJackson, Ian,eill.11aDraper, Richard,eill. aLVLcJNFkJNF 909 Ch bMAINp32000000066465r16.95u4838u72501221 2200385 450000100060000000300040000600500170001000800390002701000220006602000150008803500160010304000200011905000230013908200170016209000130017910000200019224500570021225000120026926000300028130000330031152001580034452100340050252100090053665000240054565000430056965000290061265000110064165000220065265000140067465000110068865000220069994200290072195200430075095200420079336260LVL19990319000000.0801110s1981 nyua j 00010 eng a80008808 /AC/r863 a0394519116 aflb00549111 aDLCcDLCdICrlF0 aBF723.D3bK73 19810 219a155.9/37 c424d42410aKrementz, Jill.10aHow it feels when a parent dies /cby Jill Krementz. a1st ed.0 aNew York :bKnopf,c1981. axi, 110 p. :bill. ;c22 cm. aEighteen young people ranging in age from seven to sixteen discuss the questions, fears, and bereavement they experienced when one of their parents died.0 a7.0bFollett Library Book Co.2 a3-6. 0aChildren and death. 0aParentsxDeathxPsychological aspects. 0aBereavement in children. 1aDeath. 1aParent and child. 7aChildren. 7aDeath. 7aParent and child. aLVLcJNFkJNF 155.937 Kr bMAINp32000000047914r11.95u4839u726 bMAINp32000000082107r4.69u4840u72701028 2200277 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200120011224500730012426000420019730000330023952001480027265000210042065100510044170000290049294200220052195200410054395200420058495200410062695200410066795200420070843279LVL20020311132836.0960307r19961994nyu 00001 eng d a0515118400 anpl96000539 c425d425 aW Great00aGreat stories of the American West /cedited by Martin H. Greenberg.0 aNew York :bJove Books,c1996, c1994. axii, 382 p. ;c18 cm. ;dpa. aNineteen tales of the frontier by Louis L'Amour, Elmore Leonard, Loren D. Estleman, Elmer Kelton, John Jakes, Dorothy M. Johnson and many more. 0aWestern stories. 0aWest (U.S.)xSocial life and customsxFiction.10aGreenberg, Martin Harry. aLVLcWESkW Great bLB2p37000000001277r3.47u4841u728 bMAINp32000000063220r3.47u4842u729 bLB1p36000000005555r3.47u4843u730 bLB2p34000000013302r3.47u4844u731 bMAINp31000000058801r3.47u4845u73200368 2200145 450000100060000000300040000600500170001000800410002701000130006809000130008110000200009424500460011494200260016095200360018650298LVL19990220000000.0940610s19xx xxu 00010 eng d a65014902 c426d426 aLongsworth, Po.10aEmily Dickinson: her letter to the world. aLVLcBIOkB Dickinson bMAINp32000000003447u4846u73301393 2200409 450000100060000000300040000600500170001000800390002701000170006602000270008303500160011004000250012604300120015105000210016308200170018409000130020110000160021424500430023026000330027330000290030649000200033550400500035551000140040551000280041951000200044752001870046752100340065452100100068865000680069865000510076665000320081765000150084965000320086465000150089694200290091195200430094043280LVL19990313000000.0900216s1990 nyua j b 001 0 eng a90033027 /AC a053110947X (lib. bdg.) aflb01092007 aDLCcDLCdDLCdICrlF an-us---00aTD788.bL43 199000220a363.72/8 c427d4271 aLee, Sally.14aThe throwaway society /cby Sally Lee. aNew York :bF. Watts,c1990. a128 p. :bill. ;c24 cm.0 aAn Impact book. aIncludes bibliographical references (p. 123).0 aBooklist.0 aSchool Library Journal.0 aKirkus Reviews. aExamines the growing problem of how to handle solid wastes, exploring such areas as collecting and transporting waste, sanitary landfills, incineration, recycling, and ocean dumping.0 a8.8bFollett Library Book Co.2 a7-10. 0aRefuse and refuse disposalxJuvenile literature.zUnited States 0aPollutionxJuvenile literature.zUnited States 1aRefuse and refuse disposal. 1aPollution. 7aRefuse and refuse disposal. 7aPollution. aLVLcJNFkJNF 363.72 LEE bMAINp32000000030643r11.61u4848u73400320 2200133 450000100060000000300040000600500170001000800410002709000130006810000270008124500210010894200210012995200360015050299LVL19990220000000.0940527s19xx xxu 00010 eng d c428d4281 aHill, Reginald,d1936-13aAn April shroud. aLVLcMYSkM Hill bMAINp32000000009845u4849u73500326 2200145 450000100060000000300040000600500170001000800410002702000150006809000130008310000320009624500200012830000080014894200240015664337LVL19990217000000.0930416s19xx xxu 00010 eng d a0553250302 c429d4291 aL'Amour, Louis,d1908-1988.10aBorden Chantry. cpa. aLVLcAFkAF L'Amour00336 2200133 450000100060000000300040000600500170001000800410002709000130006810000340008124500200011594200250013595200420016050300LVL19990220000000.0921009s19xx xxu 00010 eng d c430d4301 aDe Angeli, Marguerite,d1889-10aHenner's Lydia. aLVLcJFkJ De Angeli bMAINp32000000013451r5.00u4851u73600831 2200265 450000100060000000300040000600500170001000800390002701000190006602000240008504000130010905000210012208200160014309000130015910000250017224500780019726000500027530000290032560000360035465000460039065000400043670000240047694200230050095200420052357319LVL19990220000000.0790618s1979 njua 00010aeng a79016686 //r87 a0800710363 :c$8.95 aDLCcDLC0 aPS3568.I28bZ467 a811/.5/4aB c431d431 0aRice, Helen Steiner.10aIn the vineyard of the Lord /cHelen Steiner Rice, as told to Fred Bauer.0 aOld Tappan, N.J. :bF. H. Revell Co.,cc1979. a127 p. :bill. ;c26 cm.10aRice, Helen SteinerxBiography. 0aPoets, AmericanxBiography.y20th century 0aChristian biographyzUnited States.10aBauer, Fred,d1934- aLVLcNFk811.5 RIC bMAINp31000000032036r5.37u4852u73700599 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000220013424500410015625000120019726000440020930000210025365000310027494200230030595200410032836263LVL20020123091604.0860411s1986 nyu 00011 eng a86008995 a0385236980 a 86008995 c432d432 aW Conley 0aConley, Robert J.10aBack to Malachi /cRobert J. Conley. a1st ed.0 aGarden City, N.Y. :bDoubleday,cc1986. a179 p. ;c22 cm. 0aCherokee IndiansxFiction. aLVLcWESkW Conley bLB2p34000000014825r6.00u4854u73800314 2200121 450000100060000000300040000600500170001000800410002709000130006824500500008194200250013195200360015650301LVL19990220000000.0941224s19uu 000 0 eng d c433d43310aVolkswagen service & repair handbook 1961-72. aLVLcREFkREF 629.28 bMAINp32000000017388u4855u73900950 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000240013624500820016026000460024230000340028844000420032250000340036450000550039850000200045352100280047352100190050165000170052065000140053770000170055194200250056895200430059364339LVL19990217000000.0931213s1994 nyua j 00110 eng a93049351 a0590493582 a 93049351 c434d434 aJNF 510 Ze10aZeman, Anne,d1951-10aEverything you need to know about math homework /cAnne Zeman and Kate Kelly.0 aNew York :bScholastic Reference,cc1994. a136 p. :bcol. ill. ;c28 cm. 0aScholastic homework reference series. a"An Irving Place Press book." a"In collaboration with UFT Dial-A-Teacher"--Cover. aIncludes index.0 aFourth to sixth grades.1 aAges 9 and up. 1aMathematics. 1aHomework.10aKelly, Kate. aLVLcJNFkJNF 510 Ze bMAINp31000000060767r18.95u4856u74001078 2200373 450000100060000000300040000600500170001000800390002701000170006602000250008303500160010804000200012405000220014408200120016609000130017810000190019124500370021025000120024726000400025926300100029930000350030951000320034451000230037651000190039952000820041852100340050052100090053465000190054365000270056265000190058965000270060894200260063595200430066136264LVL19990319000000.0860428s1987 nyu j 000 1 eng a86010665 /AC a0027815005 :c$12.95 aflb00378610 aDLCcDLCdICrlF0 aPZ7.S406bOm 19870 219a[E] c435d4351 aSchwartz, Amy.10aOma and Bobo /cby Amy Schwartz. a1st ed. aNew York :bBradbury Press,cc1987. a8703. a(32) p. :bcol. ill. ;c27 cm.0 aChildren's Catalog (Wilson)0 aALA Notable Books.0 aSLJ Best Book. aBobo the dog learns to sit, stay, and fetch with the help of Grandmother Oma.0 a3.1bFollett Library Book Co.2 aK-3. 1aDogsxFiction. 1aGrandmothersxFiction. 7aDogsxFiction. 7aGrandmothersxFiction. aLVLcEASYkE Schwartz bMAINp32000000024160r12.76u4857u74100879 2200277 450000100060000000300040000600500170001000800390002701000170006602000360008302000150011903500160013408200130015009000130016310000200017624500690019625000120026526000440027730000330032149000300035452001060038465000220049070000230051294200240053595200420055943283LVL19990313000000.0781228s1979 nyua j 00011 eng a78020710 /AC a0385142145 (lib. bdg.) :c$4.95 a0385142137 aflb00274106 aE Bishop c436d43610aBishop, Bonnie.10aRalph rides away /cby Bonnie Bishop ; illustrated by Jack Kent. a1st ed.0 aGarden City, N.Y. :bDoubleday,cc1979. a63 p. :bcol. ill. ;c25 cm.0 aA Reading on my own book. aWhen Mr. and Mrs. Muggs take their pet parrot Ralph on a picnic, he embarks on an exciting adventure. 1aParrotsxFiction.10aKent, Jack,d1920- aLVLcEASYkE Bishop bMAINp32000000005336r2.72u4858u74200745 2200253 450000100060000000300040000600500170001000800390002701000130006602000270007903900180010604000130012405000270013708200160016409000130018010000280019324500450022126000550026630000210032150000600034265000220040294200240042495200430044857321LVL19990220000000.0830317r19831982meu d 00011 eng a83004671 a0896214397 (lg. print)0 a2b3c3d3e3 aDLCcDLC1 aPS3569.H3927bM37 19830 219a813/.54 c437d437 0aSheldon, Sidney,d1917-10aMaster of the game /cby Sidney Sheldon.0 aThorndike, Me. :bThorndike Press,c[1983], c1982. a735 p. ;c22 cm. aOriginally published: New York, N.Y. : W. Morrow, 1982. 0aLarge type books. aLVLcLPkLP Sheldon bMAINp31000000011333r15.95u4859u74300845 2200229 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200140011210000170012624502510014326000420039430000510043644000250048770000180051274000210053094200230055195200410057464340LVL20000911013209.0960629s1992 nyuaf 00011 eng d a0061067865 anpl96001236 c438d438 aYA Gilden10aGilden, Mel.10aBeverly Hills 90210 :b'Tis the season /ca novelization by Mel Gilden based on an episode with teleplay by Steve Wasserman & Jessica Klein and story by Steve Wasserman & Jessica Klein and Michael Swerdlick, and an episode written by Darren Star.0 aNew York :bHarperPaperbacks,cc1992. a182, [8] p. of plates :bill. ;c18 cm. ;dpa. 0aBeverly Hills 90210.10aStar, Darren.01a'Tis the season. aLVLcYAkYA Gilden bLB2p37000000006334r3.99u4860u74400732 2200229 450000100060000000300040000600500170001000800390002701000130006603500160007909000130009510000150010824500580012326000410018130000400022252000960026265000220035865000220038070000340040294200250043695200410046171359LVL20000911175047.0780615s1966 nyua j 00001 eng a66011407 aflb00255413 c439d43910aE Brenner.10aMr. Tall and Mr. Small.cWith illus. by Tomi Ungerer.0 aNew York,bYoung Scott Booksc[1966] a1 v. (unpaged)bcol. illus.c27 cm. aA story in verse about a mouse and a giraffe who are each convinced of his own superiority. 0aAnimalsxFiction. 0aStories in rhyme.11aUngerer, Tomi,d1931-eillus. aLVLcEASYkE Brenner bLB2p37000000012157r3.75u4862u74500854 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200180012110000200013924500610015926000400022030000470026050000380030752001530034565000110049865000210050994200280053095200420055836265LVL19990319000000.0871015s1989 nyua j 00010 eng a87029162 a0399215468 a 87029162 c440d440 aJNF 599.74 Yo1 aYoshida, Toshi.10aYoung lions /cwritten and illustrated by Toshi Yoshida. aNew York :bPhilomel Books,cc1989. a[36] p. :bill. (some col.) ;c22 x 30 cm. aTranslation of: Hajimete no kari. aThree young lion cubs go on their first hunt, passing numerous animals on the grassy African plain before returning unsuccessfully to their parents. 1aLions. 1aZoologyzAfrica. aLVLcJNFkJNF 599.74 Yo bMAINp32000000035812r6.95u4863u74600801 2200253 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200130011210000240012524500940014926000400024330000280028365000200031170000270033194200240035895200410038295200420042395200410046595200410050643284LVL20020514110750.0920309s1988 wiua j 00011 eng d a0876170483 aonv90002284 c441d441 aE Buddle10aBuddle, Jacqueline.10aFun with sizes and shapes /cwritten by Jacqueline Buddle; illustrated by Annelies Davis.0 aMilwaukee, WI :bPenworthy,cc1988. a32 p. :bill. ;c21 cm. 1aSize and shape.11aDavis, Annelies,eill. aLVLcEASYkE Buddle bLB2p37000000006227r3.95u4864u747 bMAINp32000000032806r3.95u4865u748 bLB2p34000000011473r3.95u4866u749 bLB1p33000000011978r3.95u4867u75001346 2200397 450000100060000000300040000600500170001000800390002701000210006603500160008703900180010304000200012105000230014108200120016409000130017610000200018924500690020926000320027830000350031051000320034551000140037751000280039152001780041952100340059752100090063165000340064065000210067465000230069565000360071865000210075465000360077570000270081194200260083895200420086495200420090671360LVL19990404000000.0840913s1985 nyua j 00011 eng a84018212 /AC/r85 aflb008961130 a2b3c3d3e3 aDLCcDLCdICrlF0 aPZ7.J6478bQu 19850 219a[E] c442d44210aJohnston, Tony.14aThe quilt story /cby Tony Johnston ; pictures by Tomie dePaola.0 aNew York :bPutnam,cc1985. a[32] p. :bcol. ill. ;c27 cm.0 aChildren's Catalog (Wilson)0 aBooklist.0 aSchool Library Journal. aA pioneer mother lovingly stitches a beautiful quilt which warms and comforts her daughter Abigail; many years later another mother mends and patches it for her little girl.0 a2.0bFollett Library Book Co.2 aK-3. 0aChildren's stories, American. 1aQuiltsxFiction. 1aQuiltingxFiction. 1aMothers and daughtersxFiction. 7aQuiltsxFiction. 7aMothers and daughtersxFiction.11aDe Paola, Tomie,eill. aLVLcEASYkE Johnston bMAINp31000000002585r9.00u4868u751 bMAINp31000000002586r7.64u4869u75200952 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000260013424501020016026000470026230000290030950400510033865000140038965000400040370000200044370000180046370000190048194200220050095200430052295200430056595200420060836266LVL20000707000000.0950406s1995 maua b 00110 eng a95012619 a0395693802 a 95012619 c443d443 a155.4 Se10aSeligman, Martin E.P.14aThe optimistic child /cMartin E.P. Seligman ; with Karen Reivich, Lisa Jaycox, and Jane Gillham.0 aBoston, Mass. :bHoughton Mifflin,cc1995. a336 p. :bill. ;c24 cm. aIncludes bibliographical references and index. 0aOptimism. 0aDepression in childrenxPrevention.10aReivich, Karen.10aJaycox, Lisa.10aGillham, Jane. aLVLcNFk155.4 Se bMAINp32000000059213r14.67u4870u753 bMAINp31000000055785r14.67u4871u754 bLB1p33000000023390r14.67u4872u75501102 2200313 450000100060000000300040000600500170001000800390002701000170006602000150008304000130009805000210011108200200013209000130015210000230016524500310018825000230021926000410024230000330028349000420031650000200035850400280037852002210040665000340062765000130066180000450067494200260071995200430074564342LVL19990217000000.0870808s1987 nyua j b 00110 eng a87023867 /AC a0863078206 aDLCcDLC0 aGB611.bJ46 19870 219a910/.0215/4 c444d44410aJennings, Terry J.10aDeserts /cTerry Jennings. aNorth American ed.0 aFreeport, NY :bM. Cavendish,c1987. a48 p. :bcol. ill. ;c29 cm.1 aExploring our world / Terry Jennings. aIncludes index. aBibliography: p. 44-45. aDiscusses, in text and illustrations, the characteristics of deserts, where they are located, and the plants, animals, and people that inhabit them. Includes suggestions for projects, further reading, and a glossary. 0aDesertsxJuvenile literature. 1aDeserts.1 aJennings, Terry J.tExploring our world. aLVLcJNFk910.021 JEN bMAINp31000000008662r13.33u4873u75600551 2200205 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200120011010000240012224500360014626000300018230000270021294200240023995200410026395200410030471361LVL20020108142543.0910315s1985 nyu 00011 eng a0451402383 aonv90000412 c445d445 aCoulter10aCoulter, Catherine.10aFire song /cCatherine Coulter. aNew York :bOnyx,cc1985. a463 p. ;c18 cm. ; pa. aLVLcAFkAF Coulter bLB2p37000000013684r4.50u4874u757 bLB1p33000000006413r2.92u4875u75801320 2200409 450000100060000000300040000600500170001000800390002701000170006602000360008302000310011903500160015003900180016604000200018405000230020408200120022709000130023910000200025224500800027226000420035230000330039449000380042752001080046552100340057352100090060765000220061665000190063865000190065765000220067665000190069865000190071770000270073683000370076394200260080095200420082695200420086843286LVL19990313000000.0850820s1986 nyua j 00011 eng a85019673 /AC a0394980565 (lib. bdg.) :c$5.99 a0394880560 (pbk.) :c$2.95 aflb004409140 a2b3c3d3e3 aDLCcDLCdICrlF1 aPZ7.P5376bTi 19860 219a[E] c446d44610aPhillips, Joan.10aTiger is a scaredy cat /cby Joan Phillips ; illustrated by Norman Gorbaty.0 aNew York, NY :bRandom House,cc1986. a32 p. :bcol. ill. ;c23 cm.1 aStep into reading. A Step 1 book. aTiger, a scaredy cat who is even afraid of the mice in his house, conquers his fear to help Baby Mouse.0 a1.0bFollett Library Book Co.2 aK-3. 1aCouragexFiction. 1aCatsxFiction. 1aMicexFiction. 7aCouragexFiction. 7aCatsxFiction. 7aMicexFiction.11aGorbaty, Norman,eill. 0aStep into reading.pStep 1 book. aLVLcEASYkE Phillips bMAINp32000000024218r6.08u4876u759 bMAINp31000000003170r6.08u4877u76000585 2200217 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000130011009200190012310000210014224500590016326000320022230000230025470000200027794200270029795200430032436268LVL20020306092644.0930322s1993 nyu 00011 eng d a93002651 a0671721666 a 93002651 c447d447 aSF McCaf- frey10aMcCaffrey, Anne.10aThe city who fought /cAnne McCaffrey, S.M. Stirling..0 aNew York :bBaen,cc1993. . a435 p. ;c24 cm. .10aStirling, S. M. aLVLcSCIkSF McCaffrey bMAINp32000000050301r11.21u4878u76100614 2200217 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200150011010000220012524500420014725000200018926000790020930000190028865000220030794200240032995200430035357325LVL19990220000000.0910423c19901989enk d 00011 eng a1850577587 aonv90000539 c448d448 aLP O'Brien10aO'Brien, Maureen.10aClose-up on death /cMaureen O'Brien. aLarge print ed. aLong Preston, North Yorkshire, England :bMagna Print Books,c1990, c1989. a399 p.c22 cm. 0aLarge type books. aLVLcLPkLP O'Brien bMAINp31000000035634r17.95u4881u76200703 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903900180009404000130011205000270012508200160015209000130016810000270018124500450020826000470025330000210030050000380032165000220035994200250038195200430040664344LVL19990217000000.0810407s1979 meu d 00011 eng a81005336 a08962128740 a2b3c3d3e3 aDLCcDLC1 aPS3563.A31898bB8 19790 219a813/.54 c449d44910aMcMullen, Mary,d1920-10aBut Nellie was so nice /cMary McMullen.0 aThorndike, Me. :bThorndike Press,cc1979. a339 p. ;c22 cm. a"Large print edition"--Verso t.p. 0aLarge type books. aLVLcAFkAF McMullen bMAINp31000000011024r10.95u4882u76300600 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000220013624500390015825000200019726000430021730000210026065000220028194200240030395200430032771363LVL19990404000000.0901129c19911982mau d 00011 eng a90025736 a0816151431 a 90025736 c450d450 aLP Spencer10aSpencer, LaVyrle.14aThe endearment /cLaVyrle Spencer. aLarge print ed.0 aBoston, Ma :bG.K. Hall,c1991, c1982. a434 p. ;c25 cm. 0aLarge type books. aLVLcLPkLP Spencer bMAINp31000000036705r13.17u4883u76400905 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009409000130011009200180012310000360014124500670017726000460024430000230029052001660031365000210047994200250050095200420052595200420056795200420060936269LVL19990319000000.0930122c19881976nyu j 00011 eng a76012508 a0553156055 aonv90003915 c451d451 aJ Pink- water1 aPinkwater, Daniel Manus,d1941-10aLizard music /cwritten and illustrated by D. Manus Pinkwater. aNew York :bBantam Skylark,c1988, c1976. a136 p. ;c20 cm.;. aWhen left to take care of himself, a young boy becomes involved with a community of intelligent lizards who tell him of a little known invasion from outer space. 1aScience fiction. aLVLcJFkJ Pinkwater bMAINp32000000036889r1.77u4884u765 bMAINp32000000036890r1.77u4885u766 bMAINp32000000036891r1.77u4886u76701006 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009403900180011004000200012805000250014808200160017309000130018910000260020224500480022825000180027626000670029430000210036151000480038251000140043052001750044452100170061994200250063695200430066143288LVL19990313000000.0850524s1985 nyu 00011 eng a85040221 a0394547020 aflb006090100 a2b3c3d3e3 aDLCcDLCdICrlF0 aPS3503.R167bD3 19850 219a813/.54 c452d452 0aBradbury, Ray,d1920-10aDeath is a lonely business /cRay Bradbury. a1st trade ed.0 aNew York, N.Y. :bKnopf :bDistributed by Random House,c1985. a277 p. ;c23 cm.0 aSenior High School Library Catalog (Wilson)0 aBooklist. aIn California in 1949, a young writer and a detective believe a number of deaths associated with an amusement park were murders. Suddenly the killer begins stalking them.2 aYoung Adult. aLVLcMYSkM Bradbury bMAINp32000000067969r15.95u4887u76800513 2200193 450000100060000000300040000600500170001000800410002702000150006809000130008309200130009610000170010924500310012626000410015730000270019844000300022594200220025595200420027757326LVL20030703114001.0961125s19uu 000 0 eng d a0373118570 c453d453 aAF Darcy10aDarcy, Emma.10aJack's baby /cEmma Darcy. aToronto :bHarlequin Books ;cc1997. a186 p. ;c18 cm. ; pa. 0aHarlequin Presentsv1857. aLVLcPBkPB Darcy bMAINp35000000005705r3.50u4888u76900963 2200301 450000100060000000300040000600500170001000800390002701000130006602000430007903500160012203900180013804000200015605000190017608200160019509000130021110000270022424500460025125000290029726000410032630000280036752001000039552100170049560000460051260000460055894200210060495200360062564345LVL19990217000000.0820226s1981 nyub 00011 eng a80066552 a0345284801 (pbk.) :c$6.95 ($8.25 Can) aflb009257110 a2b3c3d3e3 aDLCcDLCdICrlF0 aPS3570.H47bF60 219a813/.54 c454d454 0aThom, James Alexander.10aFollow the river /cJames Alexander Thom. a1st Ballantine books ed.0 aNew York :bBallantine Books,c1981. a399 p. :bmap ;c21 cm. aThe story of Mary Ingles' daring escape from Indian captivity and her journey home around 1755.2 aYoung Adult.10aIngles, Mary Draper,d1732-1815xFiction.17aIngles, Mary Draper,d1732-1815xFiction. aLVLcAFkAF Thom bMAINp31000000018449u4889u77000879 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200180012110000260013924500400016526000390020530000280024444000230027250400590029565000480035480000420040294200290044495200430047395200430051695200420055936270LVL19990319000000.0950818s1996 caua j b 00110 eng a95040340 a1560063327 a 95040340 c455d455 aYA 306.874 St10aStewart, Gail,d1949-10aTeen mothers /cby Gail B. Stewart.0 aSan Diego :bLucent Books,cc1996. a96 p. :bill. ;c24 cm. 4aThe other America. aIncludes bibliographical references (p. 93) and index. 1aTeenage mothersxInterviews.zUnited States10aStewart, Gail,d1949-tOther America. aLVLcYANFkYA 306.874 St bMAINp32000000065470r16.95u4890u771 bMAINp31000000060744r16.95u4891u772 bLB1p33000000026155r16.95u4892u77300754 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012124501510013426000440028530000290032950000200035865000130037870000210039173000350041294200220044795200430046943289LVL19990313000000.0920114s1992 nyua 00100 eng a92001146 a0671735721 a 92001146 c456d456 a641.5 Fa04aThe Family circle cookbook :bnew tastes for new times /cby the editors of Family circle and David Ricketts ; photographs by Steven Mark Needham.0 aNew York :bSimon and Schuster,cc1992. a648 p. :bill. ;c26 cm. aIncludes index. 0aCookery.10aRicketts, David.01aFamily circle (New York, N.Y.) aLVLcNFk641.5 Fa bMAINp31000000041332r13.28u4893u77401276 2200361 450000100060000000300040000600500170001000800390002701000130006602000220007902000370010103500160013804000250015405000210017908200150020009000130021524501820022826000470041030000350045750000200049250000310051252000780054352100170062165000310063865000340066965000340070365000240073770000260076170000210078771000400080894200230084895200430087150308LVL20030524130930.0870311s1987 nyua 00100 eng a87006809 a0385295979 (pbk.) a0385295413 (Delacorte) :c$39.95 aflb01580503 aDLCcDLCdDLCdICrlF00aRJ61.bN389 198700219a618.92 c457d45704aThe New child health encyclopedia :bthe complete guide for parents /cBoston Children's Hospital ; Frederick H. Lovejoy, Jr., medical editor ; David Estridge, executive editor.0 aNew York, N.Y. :bDelacorte Press,cc1987. axxiv, 740 p. :bill. ;c27 cm. aIncludes index. a"A Merloyd Lawrence book." aAn easy reference for any situation involving a child's health or safety.2 aYoung Adult. 0aPediatricsxPopular works. 0aChildrenxHealth and hygiene. 7aChildrenxHealth and hygiene. 7aChildrenxDiseases.10aLovejoy, Frederick H.10aEstridge, David.20aChildren's Hospital (Boston, Mass.) aLVLcNFk618.92 Ne bMAINp32000000013314r23.57u4895u77500768 2200193 4500020001500000082001300015090001300028100002100041245005500062260003900117300002800156500002000184520019500204650002700399650004100426942002200467952004300489952004200532 a0792450825 a355.1/34 c458d45810aKerrigan, Evans.10aAmerican medals and decorations /cEvans Kerrigan.0 aNew York :bMallard Press,cc1990. a80 p. :bill. ;c31 cm. aIncludes index. aA complete visual reference to the medals of America. Fascinating insight into the military achievements of the nation through its medals and decorations. Lavishly illustrated in full color. 0aMedalszUnited States. 0aDecorations of honorzUnited States. aLVLcNFk355.1 Ke bMAINp31000000037229r14.95u4896u776 bLB1p33000000006777r11.98u4897u77701069 2200313 450000100060000000300040000600500170001000700090002700800410003602000150007703500160009209000130010809200120012124501600013326000500029330000560034350000470039951100510044652100140049753800160051165000190052770000180054670000230056470000200058794200210060795200420062895200430067095200420071336271LVL19990319000000.0vd cbaho930426s1991 cau099 g 0 0vleng d a1558902244 avid93000065 c459d459 aAV What00aWhat about Bob? /cTouchstone Pictures in association with Touchwood Pacific Partners I ; produced by Laura Ziskin, directed by Frank Oz.h[videorecording]0 aBurbank, CA :bTouchstone Home Video,c1991.. a1 videocassette ; (99 min.) :bsd., col. ;c1/2 in. aClosed captioned for the hearing impaired.1 aBill Murray, Richard Dreyfuss, Julie Hagerty,. aRated PG. aVHS Format. 0aFeature films.11aMurray, Bill.11aDreyfuss, Richard.11aHagerty, Julie. aLVLcAVkAV What bLB2p34000000012024r19.99u4898u778 bMAINp31000000043075r19.99u4899u779 bLB1p33000000015742r19.99u4900u78001022 2200301 450000100060000000300040000600500170001000800390002701000130006602000420007903500160012104000250013705000250016208200170018709000130020410000260021724500390024325000170028226000320029930000210033151000140035251000200036652002210038652100110060765000350061894200240065395200430067743290LVL19990313000000.0910327r1991 nyu 000 1 eng a91014509 a0688110355 (acidfree paper) :c$18.00 aflb01660005 aDLCcDLCdDLCdICrlF00aPR6069.T46bS74 199100220a823/.914 c460d460 aStewart, Mary,d1916-14aThe stormy petrel /cMary Stewart. a1st U.S. ed. aNew York :bMorrow,cc1991. a189 p. ;c25 cm.0 aBooklist.0 aKirkus Reviews. aWhen Rose Fenemore sets out to meet her brother Crispin on the island of Moila off the west coast of Scotland, the island's peace is shattered by the appearance of two men seeking shelter from a violent summer storm.2 aAdult. 7aMystery and detective stories. aLVLcAFkAF Stewart bMAINp32000000031615r10.15u4901u78100630 2200229 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000130011009200140012310000230013724500440016026000370020430000300024165000200027194200240029195200430031595200420035864347LVL19990217000000.0911126s1989 maua j 00011 eng d a89083660 a0316042617 a 89083660 c461d461 aJE Anholt10aAnholt, Catherine.10aTom's rainbow walk /cCatherine Anholt.0 aBoston :bLittle, Brown,cc1989. a[26] p. :bill. ;c21 cm. 1aColorxFiction. aLVLcEASYkE Anholt bMAINp31000000037505r11.21u4902u782 bLB1p33000000009691r11.21u4903u78301142 2200325 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000180013624501360015426000440029030000270033452000960036165000110045765000220046870000260049070000260051694200250054295200410056795200420060895200420065095200410069295200420073395200410077536272LVL19990823000000.0930804s1993 nyu j 00010 eng a92029786 a0688125212 a 92029786 c462d462 aJNF 793 Co10aCole, Joanna.10aPin the tail on the donkey and other party games /ccompiled by Joanna Cole and Stephanie Calmenson ; illustrated by Alan Tiegreen.0 aNew York :bMulberry Paperback,cc1993. a48 p. :bill.,c25 cm. aProvides instructions for such party games as Musical Chairs, Giant Steps, and Peanut Hunt. 1aGames. 1aChildren's games.10aCalmenson, Stephanie.11aTiegreen, Alan,eill. aLVLcJNFkJNF 793 Co bLB2p37000000002795r4.08u4904u784 bMAINp32000000041192r4.08u4905u785 bMAINp35000000002657r4.08u4907u786 bLB2p34000000008872r4.08u4908u787 bMAINp31000000044046r4.08u4909u788 bLB1p33000000016077r4.08u4910u78900597 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000190013524500550015425000220020926000550023130000280028694200230031495200420033743291LVL19990313000000.0860908c19871983nyu 00011 eng a86024791 a0684188112 a 86024791 c463d463 aAF Hannah1 aHannah, Barry.14aThe tennis handsome :ba novel /cby Barry Hannah. a1st Signature ed. aNew York :bCharles Scribner's Sons,c1987, c1983. a163, [3] p. ;c21 cm.;. aLVLcAFkAF Hannah bMAINp32000000039429r4.95u4911u79001099 2200325 450000100060000000300040000600500170001000700090002700800410003603500160007703700330009309000130012609200140013924501070015326000570026030000540031750600310037151100210040252000890042352100130051253800200052565000360054565000260058170000250060770000220063271000250065471000280067994200230070795200430073057329LVL19990220000000.0vf cbaho870209s1986 nyu035 g vleng d avid93001440 a300bBest Film & Video Corp. c464d464 aAV 371 Mo00aMontessori in your homecPhileas Productions/BFV ; directed by Fred Barney Taylor.h[videorecording] / aGreat Neck, N.Y. :bBest Film & Video Corp.,cp1986. a1 videocassette (35 min.) :bsd., col. ;c1/2 in. aFor private home use only.2 aJacqueline Fogg. aActivities for preschool children to develop learning skills, using household items. aGeneral. aVHS Hi-fi mono. 0aMontessori method of education. 0aEducation, Preschool.11aTaylor, Fred Barney.11aFogg, Jacqueline.21aPhileas Productions.21aBest Film & Video Corp. aLVLcAVkAV 371 Mo bMAINp31000000030431r14.55u4912u79102326 2200637 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012124500780013526000350021330000330024850000220028165000280030365000260033165000310035765000170038870000250040571000200043074000210045074000330047174000410050474000300054574000250057574000260060074000550062674000320068174000260071374000280073974000260076794200250079395200440081895200440086295200440090695200440095095200440099495200440103895200440108295200440112695200440117095200440121495200430125895200430130195200430134495200430138795200430143095200430147395200430151695200430155995200430160295200430164571367LVL20000911213232.0910515s1991 ilua j e 001 0 eng a91065812 a0716627914 a 91065812 c465d465 aJR 503 Wo00aWorld Book's young scientist /c[illustrated by Hemesh Alles ... et al.].0 aChicago :bWorld Book,cc1991. a10 v. :bcol. ill. ;c28 cm. aIncludes indexes. 1aSciencexEncyclopedias. 1aSciencexExperiments. 1aTechnologyxEncyclopedias. 1aExperiments.11aAlles, Hemesh,eill.20aWorld Book Inc.01aYoung scientist.02aSpace technology. Computers.02aLight & electricity. Magnetic power.02aAtoms & molecules. Gases.02aPlanet Earth. Water.02aLiving world. Plants.02aAnimals without backbones. Animals with backbones.02aHuman body. Communications.02aEnergy. Conservation.02aConstruction. Machines.02aStudent guide. Index. aLVLcJNFkJNF 503 Wo bMAINp31000000042761r119.00u4913u792 bMAINp31000000042762r119.00u4914u793 bMAINp31000000042763r119.00u4915u794 bMAINp31000000042765r119.00u4916u795 bMAINp31000000042766r119.00u4917u796 bMAINp31000000042767r119.00u4918u797 bMAINp31000000042768r119.00u4919u798 bMAINp31000000042769r119.00u4920u799 bMAINp31000000042770r119.00u4921u800 bMAINp31000000082609r119.00u4922u801 bLB1p33000000015338r119.00u4923u802 bLB1p33000000015339r119.00u4924u803 bLB1p33000000015340r119.00u4925u804 bLB1p33000000015341r119.00u4926u805 bLB1p33000000015342r119.00u4927u806 bLB1p33000000015343r119.00u4928u807 bLB1p33000000015344r119.00u4929u808 bLB1p33000000015345r119.00u4930u809 bLB1p33000000015346r119.00u4931u810 bLB1p33000000015347r119.00u4932u81100876 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000280013624500650016426000400022930000210026974000300029094200240032095200420034495200430038695200420042995200420047195200430051395200420055636273LVL19990319000000.0950403s1995 nyu 00011 eng a95016031 a0688084923 a 95016031 c466d466 aAF Sheldon 0aSheldon, Sidney,d1917-10aMorning, noon & night :bthe new novel /cby Sidney Sheldon.0 aNew York :bWilliam Morrow,cc1995. a375 p. ;c24 cm.01aMorning, noon, and night. aLVLcAFkAF Sheldon bLB2p37000000001693r13.92u4933u812 bMAINp32000000059223r13.92u4934u813 bLB1p36000000004747r13.92u4935u814 bLB2p34000000008270r13.92u4937u815 bMAINp31000000055794r13.92u4938u816 bLB1p33000000023398r13.92u4939u81700571 2200205 450000100060000000300040000600500170001000800410002701000130006802000150008109000130009610000160010924500580012526000370018330000270022065000210024770000290026894200260029795200420032364349LVL19990217000000.0950215s19xx xxu 00010 eng d a82082651 a0307681483 c467d46710aE Friendly.14aThe friendly beasts /cillustrated by Ruth Sanderson.0 aNew York :bGolden Press,c1983. a22 p. :bill.,c18 cm. 7aChristmas poems.11aSanderson, Ruth,eillus. aLVLcEASYkE Friendly bMAINp31000000004031r2.75u4940u81800329 2200133 450000100060000000300040000600500170001000800410002701000130006809000130008124500350009494200230012995200430015236274LVL19990319000000.0930415s19xx xxu 00010 eng d a90024938 c468d46814aThe American health food book. aLVLcNFk641.5 AME bMAINp32000000032065r14.72u4941u81901036 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200180012110000230013924500750016226000520023730000330028944000350032250000200035752001840037765000490056165000280061065000200063870000200065894200250067895200430070343293LVL19990313000000.0930130s1989 mnua j 00110 eng a88012924 a0822514877 a 88012924 c469d469 aJNF 599.74 Jo1 aJohnson, Sylvia A.10aElephant seals /cby Sylvia A. Johnson ; photographs by Frans Lanting. aMinneapolis :bLerner Publications Co.,cc1989. a48 p. :bcol. ill. ;c23 cm. 2aA Lerner natural science book. aIncludes index. aDescribes the physical characteristics, habits, and natural environment of the elephant seals, so named because of their size and the proboscis that the males have on their noses. 0aNorthern elephant sealxJuvenile literature. 1aNorthern elephant seal. 1aSeals (Animals)10aLanting, Frans. aLVLcJNFkJNF 599.74 bMAINp32000000037036r13.46u4942u82000777 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009409000130011009200150012310000260013824500570016426000390022130000260026052001400028665000220042665000210044894200240046995200420049350312LVL19990220000000.0831229s1984 mau j 00011 eng a83027299 a0395353785 aflb00169910 c470d470 aJ Clifford10aClifford, Eth,d1915-10aHarvey's horrible snake disaster /cby Eth Clifford.0 aBoston :bHoughton Mifflin,c1984. avii, 108 p. ;c23 cm. aWhen ten-year-old Harvey is visited by his cousin Nora, trouble is bound to ensue, and this year's episode with snakes is no exception. 1aCousinsxFiction. 1aSnakesxFiction. aLVLcJFkJ Clifford bMAINp32000000021679r2.50u4943u82100350 2200145 450000100060000000300040000600500170001000800410002702000150006809000130008310000160009624500270011294200230013995200420016257331LVL19990220000000.0950323s19uu 000 0 eng d a0671657909 c471d471 aRural Livi.10aRural living handbook. aLVLcNFk630.1 RUR bMAINp31000000011612r7.05u4945u82200815 2200253 450000100060000000300040000600500170001000800390002701000130006602000140007903500140009309000130010709200150012010000280013524500690016325000140023226000290024630000280027552001570030365000200046065000130048094200260049395200420051964350LVL19990217000000.0941203s1952 nyua j 00011 eng a53006391 a394908686 a 53006391 c472d472 aE Duvoisin1 aDuvoisin, Roger,d1900-10aPetunia's Christmas,cwritten and illustrated by Roger Duvoisin. a[1st ed.] aNew York,bKnopfcc1952. a[34] p.billus.c26 cm. aA goose, to save a handsome gander who is being fattened for Christmas, disguises herself as a monster, begs, and makes and sells Christmas decorations. 1aGeesexFiction. 1aFantasy. aLVLcEASYkE Duvoisin bMAINp31000000052348r6.29u4946u82300634 2200217 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200140011010000290012424500390015326000500019230000280024260000270027063000540029794200230035195200420037436275LVL20021028133809.0951117r19881987nyu 00011 eng a0060640111 anpl95001594 c473d473 aAF Holmes10aHolmes, Marjorie,d1910-14aThe Messiah /cby Marjorie Holmes.0 aNew York :bHarperSanFrancisco,c1988, c1987. a396 p. ;c21 cm. ;dpa.00aJesus ChristxFiction.00aBible.pN.TxHistory of Biblical eventsxFiction. aLVLcAFkAF Holmes bMAINp32000000060902r6.49u4947u82401007 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200180012110000290013924500330016826000580020130000280025944000210028750000330030850000420034150400510038352001880043465000140062265000100063694200280064695200430067443294LVL19990313000000.0910206s1991 wiua j b 00110 eng a91009427 a0836806859 a 91009427 c474d474 aJNF 599.74 Ka1 aKappeler, Markus,d1953-10aBig cats /cMarkus Kappeler. aMilwaukee :bGareth Stevens Children's Books,cc1991. a48 p. :bill. ;c25 cm. 0aAnimal families. aTranslation of: Grosskatzen. a"North American edition"--T.p. verso. aIncludes bibliographical references and index. aPresents an evolutional and historical accounting of the cat family, as well as the physical attributes, life expectancies, native environments, and daily habits of its major members. 1aPanthera. 1aCats. aLVLcJNFkJNF 599.74 Ka bMAINp32000000040213r11.50u4949u82500631 2200217 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200140011010000210012424500750014526000380022030000290025844000370028770000240032494200230034895200420037150313LVL19990220000000.0870828s1990 nyua j 00011 eng a0553284401 aonv90002233 c475d475 aJ Packard1 aPackard, Edward.10aThrough the black hole /cEdward Packard ; illustrated by Frank Bolle. aNew York :bBantam Books,cc1990. a116 p. :bill. ;c18 cm. 0aChoose your own adventure ;v97.11aBolle, Frank,eill. aLVLcJFkJ Packard bMAINp31000000046229r1.95u4950u82601085 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200110012110000190013224501160015126000380026730000500030550400510035561000590040665000390046565000520050465000680055665100470062465100610067194200200073295200430075236276LVL19990319000000.0920626s1994 nyuaf b 00110 eng a92050532 a0446515949 a 92050532 c476d476 a355 Wa1 aWaugh, John C.14aThe class of 1846 :bfrom West Point to Appomattox : Stonewall, McClellan, and their brothers /cJohn C. Waugh. aNew York :bWarner Books,cc1994. axvi, 635, [16] p. of plates :bill. ;c24 cm. aIncludes bibliographical references and index.20aUnited States Military AcademyxHistoryy19th century. 0aMexican War, 1846-1848xCampaigns. 0aGeneralsxHistoryy19th century.zUnited States 0aMilitary art and sciencexHistoryy19th century.zUnited States 0aUnited StatesxHistory, MilitaryyTo 1900. 0aUnited StatesxHistoryxCampaigns.yCivil War, 1861-1865 aLVLcNFk355 Wa bMAINp32000000045060r17.67u4952u82700600 2200217 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200130011210000170012524500310014226000380017330000280021144000370023994200230027695200420029995200410034143295LVL20011109125845.0930927s1993 nyu 00011 eng d a0671872753 anpl93001184 c477d477 aSF Jeter10aJeter, K. W.10aBloodletter /cK.W. Jeter.0 aNew York :bPocket Books,cc1993. a276 p. ;c18 cm. ;dpa. 0aStar Trek: Deep Space Nine ;v3. aLVLcSCIkSF Jeter bMAINp32000000042419r3.19u4953u828 bLB2p34000000005958r3.19u4954u82901392 2200409 450000100060000000300040000600500170001000800390002701000170006602000240008303500160010704000250012305000240014808200180017209000130019010000190020324500620022225000260028426000760031030000350038650000420042151000320046351000520049551000140054752001030056152100340066452100090069865000120070765000210071965000210074065000270076194200270078895200410081595200420085695200420089895200420094050314LVL20001109133346.0890315c19891961nyua j 00010 eng a89032057 /AC a0689713436 :c$3.95 aflb01063902 aDLCcDLCdDLCdICrlF00aPZ8.2.B668bOn 198900220a398.24/52 c478d47810aBrown, Marcia.10aOnce a mouse-- :ba fable cut in wood /cby Marcia Brown. a2nd Aladdin Books ed.0 aNew York :aLondon :bAladdin Books ;bCollier Macmillan,c1989, c1961. a[32] p. :bcol. ill. ;c23 cm. aAt head of title: From ancient India.0 aChildren's Catalog (Wilson)0 aElementary School Library Collection (Bro-Dart)0 aBooklist. aAs it changes from mouse, to cat, to dog, to tiger, a hermit's pet also becomes increasingly vain.0 a3.4bFollett Library Book Co.2 aK-3. 1aFables. 1aFolklorezIndia. 7aFolklorezIndia. 7aCaldecott Medal books. aLVLcJNFkJNF 398.2 Br bLB2p37000000006690r2.29u4955u830 bMAINp32000000025814r2.29u4956u831 bMAINp35000000002159r2.29u4957u832 bMAINp31000000011853r2.29u4958u83300343 2200145 450000100060000000300040000600500170001000800410002709000130006809200110008110000280009224500200012094200210014095200360016164352LVL19990217000000.0930402s19xx xxu 00010 eng d c479d479 aW Grey1 aGrey, Zane,d1872-1939.14aThe last trail. aLVLcWESkW Grey bMAINp31000000029209u4959u83400794 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200220012110000260014324500480016925000200021726000460023730000210028350000280030465000490033265000530038165000220043494200290045695200430048536277LVL20030114141937.0931201r19941993meu d 00011 eng a93047302 z0786201667 a 93047302 c480d480 aLP Golds- borough1 aGoldsborough, Robert.14aThe missing chapter /cRobert Goldsborough. aLarge print ed. aThorndike, Me. :bThorndike Press,c1994. a337 p. ;c22 cm. a"A Nero Wolfe mystery." 0aWolfe, Nero (Fictitious character)xFiction. 0aPrivate investigatorsxFiction.zNew York (N.Y.) 0aLarge type books. aLVLcLPkLP Goldsborough bMAINp31000000047528r15.72u4960u83500364 2200133 450000100060000000300040000600500170001000800410002709000130006810000480008124500340012994200250016395200420018843296LVL20001025133759.0930420s19xx xxu 00010 eng d c481d4811 aForester, C. S.d1899-1966.q(Cecil Scott),14aThe captain from Connecticut. aLVLcAFkAF Forester bMAINp32000000016005r5.00u4961u83601099 2200349 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200160012110000190013724500350015625000120019126000390020330000400024260000490028265000570033165000280038865000320041665000250044865000290047365100230050265100280052594200250055395200430057895200430062195200430066495200420070736278LVL19990319000000.0950511s1996 nyuab 00010beng a95020008 a067942850X a 95020008 c482d482 a917.9804 Kr10aKrakauer, Jon.10aInto the wild /cJon Krakauer. a1st ed.0 aNew York :bVillard Books,cc1996. axi, 207 p. :bill. ; maps ;c25 cm.10aMcCandless, Christopher Johnson,d1968-1992. 0aAdventure and adventurersxBiography.zUnited States 0aWayfaring lifezAlaska. 0aWayfaring lifezWest (U.S.) 0aHitchhikingzAlaska. 0aHitchhikingzWest (U.S.) 0aAlaskaxBiography. 0aWest (U.S.)xBiography. aLVLcNFk917.9804 Kr bMAINp32000000062630r12.68u4962u837 bMAINp32000000069268r12.68u4963u838 bMAINp31000000058376r12.68u4964u839 bLB1p33000000024676r12.68u4965u84000866 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000220013624500330015826000450019130000280023665000230026465000240028765000340031194200240034595200410036995200420041095200410045295200420049395200410053543297LVL20000910174133.0920224s1992 ilu 00011 eng a92004850 a0891076182 a 92004850 c483d483 aAF Peretti10aPeretti, Frank E.10aProphet /cFrank E. Peretti.0 aWheaton, Ill. :bCrossway Books,cc1992. a416 p. ;c23 cm. ;dpa. 0aProphetsxFiction. 0aIntegrityxFiction. 0aTelevision stationsxFiction. aLVLcAFkAF Peretti bLB2p37000000008987r7.05u4966u841 bMAINp32000000060812r7.66u4967u842 bLB2p34000000010074r7.66u4968u843 bMAINp31000000057326r7.66u4969u844 bLB1p33000000024096r7.66u4970u84501033 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200110012110000160013224500270014825000320017526000350020730000230024252002610026565000300052665000220055665000350057865100260061394200200063995200430065995200410070236280LVL20010906155454.0940706r19921991nyu j 00011 eng a90040574 a0380718057 a 90040574 c484d484 aYA Avi0 aAvi,d1937-10aWindcatcher /cby Avi. aFirst Avon Camelot Edition. aNew York :bAvon,c1992,c1991. a120 p. :c20 cm.;. aWhile learning to sail during a visit to his grandmother's at the Connecticut shore, eleven-year-old Tony becomes excited about the rumors of sunken treasure in the area and starts following a couple who seem to be making a mysterious search for something. 1aBuried treasurexFiction. 1aSailingxFiction. 1aMystery and detective stories. 1aConnecticutxFiction. aLVLcJFkYA Avi bMAINp32000000047806r11.86u4971u846 bLB2p37000000018349r3.50u4973u84700983 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200110012110000230013224502200015526000480037530000320042350400300045565000420048565000460052794200200057395200420059395200410063595200410067643299LVL19990428000000.0940105c19941972nyua b 00110 eng a78154274 a0374523908 a 78154274 c485d485 a630 La10aLanger, Richard W.10aGrow it!bThe beginner's complete in-harmony-with-nature small farm guide; from vegetable and grain growing to livestock carec[by] Richard W. Langer. Illus. by Susan McNeill. Agricultural consultant: Wayne Stayton.0 aNew York,bThe Noonday Presscc1994, c1972. axiv, 365 p.billus.c24 cm. aBibliography: p. 344-351. 0aAgriculturexHandbooks, manuals, etc. 0aOrganic farmingxHandbooks, manuals, etc. aLVLcNFk630 La bMAINp32000000044273r7.08u4974u848 bLB2p34000000001774r7.08u4975u849 bLB1p33000000017420r7.08u4977u85001116 2200361 450000100060000000300040000600500170001000800390002701000210006602000150008703500160010204000320011805000180015008200080016809000130017610000250018924500770021425000140029126000360030530000330034135000110037451000320038551000520041751000140046952000600048352100340054352100090057765000350058665000350062170000330065694200230068995200420071250318LVL19990220000000.0710315s1971 nyua j 000 1 eng a72136825 /AC/r91 a067034270X aflb00768201 aDLCcDLCdDLCdOCoLCdICrlF00aPZ7.B9836bGo00a[E] c486d4861 aByars, Betsy Cromer.10aGo and hush the babyc[by] Betsy Byars. Illustrated by Emily A. McCully. a[1st ed.] aNew York,bViking Pressc[1971] a[32] p.bcol. illus.c20 cm. a$3.50.0 aChildren's Catalog (Wilson)0 aElementary School Library Collection (Bro-Dart)0 aBooklist. aWill tries everything to quiet his crying baby brother.0 a3.2bFollett Library Book Co.2 a3-6. 1aBrothers and sistersxFiction. 7aBrothers and sistersxFiction.11aMcCully, Emily Arnold,eill. aLVLcEASYkE Byars bMAINp32000000005487r9.56u4978u85100432 2200169 450000100060000000300040000600500170001000800410002702000150006809000130008310000220009624500140011860000230013261000380015594200260019395200430021957337LVL19990220000000.0930416s19xx xxu 00010 eng d a0310379407 c487d487 aDelorean, John Z.10aDeLorean.10aDe Lorean, John Z.20aDe Lorean Motor CompanyxHistory. aLVLcBIOkB De Lorean bMAINp31000000021274r10.77u4979u85201124 2200337 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000260013624501160016226000400027830000360031844000430035450000200039765000270041765000200044465000230046465000270048794200240051495200410053895200420057995200410062195200410066295200420070395200410074543300LVL19990702000000.0930729s1994 paua 00110 eng a93006103 a0875966128 a 93006103 c488d488 a635.049 Mi10aMichalak, Patricia S.10aControlling pests and diseases /ctext by Patricia S. Michalak ; insect and disease guide by Linda A. Gilkeson.0 aEmmaus, PA :bRodale Press,cc1994. a160 p. :bill. ;c28 cm. ;dpa. 0aRodale's successful organic gardening. aIncludes index. 0aGarden pestsxControl. 0aPlant diseases. 0aOrganic gardening. 0aPlants, Protection of. aLVLcNFk635.049 Mi bLB2p37000000000264r8.82u4980u853 bMAINp32000000046068r8.82u4981u854 bLB1p36000000000519r8.82u4982u855 bLB2p34000000002956r8.82u4983u856 bMAINp31000000047604r8.82u4984u857 bLB1p33000000021695r8.82u4985u85800908 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200170012110000270013824500890016526000430025430000410029750000280033850000220036665000150038865000180040394200270042195200430044895200430049195200420053495200420057650319LVL20001116142819.0940929s1995 nyua j 00110 eng a94037108 a0806909986 a 94037108 c489d489 aJNF 635.9 Rh10aRhoades, Diane,d1952-10aGarden crafts for kids :b50 great reasons to get your hands dirty /cDiane Rhoades.0 aNew York :bSterling Pub. Co.,cc1995. a144 p. :bill. (some col.) ;c27 cm. a"A Sterling/Lark book." aIncludes indexes. 1aGardening. 1aNature craft. aLVLcJNFkJNF 635.9 Rh bMAINp32000000060282r13.05u4986u859 bMAINp31000000056875r13.05u4987u860 bLB1p33000000023901r13.05u4988u861 bLB1p33000000043500r19.95u4989u86200933 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200170012110000300013824500690016826000450023730000380028252000630032065000200038365000200040370000240042394200260044795200430047395200420051695200430055895200420060143301LVL19990313000000.0920313s1993 nyua j 00011 eng a92010585 a0688108962 a 92010585 c490d490 aJ Reid Banks20aReid Banks, Lynne,d1929-14aThe magic hare /cLynne Reid Banks ; illustrated by Barry Moser.0 aNew York :bMorrow Junior Books,cc1993. avii, 49 p. :bcol. ill. ;c29 cm. aA hare uses his magic to help a lot of people and animals. 1aHaresxFiction. 1aMagicxFiction.11aMoser, Barry,eill. aLVLcJFkJ Reid Banks bMAINp32000000046980r13.44u4990u863 bLB2p34000000007502r13.44u4991u864 bMAINp31000000048174r13.44u4992u865 bLB1p33000000018875r13.44u4993u86601200 2200361 450000100060000000300040000600500170001000800390002701000170006602000150008303500160009804000200011405000250013408200120015909000130017110000190018424500680020325000120027126000460028330000400032951000320036951000430040151000100044452001660045452100340062052100090065465000200066365000220068365000200070570000280072594200250075395200600077850320LVL19990220000000.0880315s1988 nyua j 000 1 eng a88009345 /AC a0689504551 aflb01669903 aDLCcDLCdICrlF0 aPZ8.3.S4688bWh 19880 219a[E] c491d4911 aSerfozo, Mary.10aWho said red? /cMary Serfozo ; illustrated by Keiko Narahashi. a1st ed. aNew York :bM.K. McElderry Books,cc1988. a[30] p. :bcol. ill. ;c24 x 22 cm.0 aChildren's Catalog (Wilson)0 aBooklist Editors' (Reviewers') Choice. aSLJ*. aA dialogue between two speakers, one of whom must keep insisting on an interest in the color red, introduces that hue as well as green, blue, yellow, and others.0 a2.0bFollett Library Book Co.2 aK-3. 1aColorxFiction. 1aStories in rhyme. 7aColorxFiction.11aNarahashi, Keiko,eill. aLVLcEASYkE Serfozo bMAINdMAINp32000000026113r7.77u4994u867v2003-09-0100342 2200145 450000100060000000300040000600500170001000800410002701000130006809000130008110000180009424500200011294200220013295200420015457339LVL20000107000000.0950324s19uu 000 0 eng d a55010226 c492d492 aField, Peter.10aBreakneck pass. aLVLcAFkAF Field bMAINp31000000034740r5.40u4995u86800924 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000190013424500370015325000210019026000420021130000290025350000550028260000190033765000440035665000280040065000190042865000280044765000350047565000350051094200220054595200430056736283LVL19990319000000.0950531r19961995nyua 00010aeng a95021281 a0517701820 a 95021281 c493d493 a598.4 Li10aLishman, Bill.10aFather Goose /cby Bill Lishman. a1st American ed.0 aNew York :bCrown Publishers,cc1996. a211 p. :bill. ;c26 cm. aOriginally published: Canada : Little Brown, 1995.10aLishman, Bill. 0aCanada goosexMigrationzNorth America. 0aCanada goosexBehavior. 0aBirdsxFlight. 0aImprinting (Psychology) 0aSculptorsxBiography.zOntario 0aUltralight aircraftxPiloting. aLVLcNFk598.4 Li bMAINp31000000059189r15.00u4997u86900708 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200110012110000290013224500680016125000120022926000470024130000320028850000200032050400320034065000200037294200200039295200420041236284LVL19990319000000.0750804s1976 ilua b 00110 eng a75025949 a0673079902 a 75025949 c494d494 a808 Le1 aLester, James D.,d1935-10aWriting research papers :ba complete guide /cJames D. Lester. a2nd ed. aGlenview, Ill. :bScott, Foresman,cc1976. a196 p. :bill. ;c23 cm. ;. aIncludes index. aBibliography: p. [155]-187. 0aReport writing. aLVLcNFk808 Le bMAINp32000000052756r2.95u4999u87000908 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200120012110000180013324500290015125000120018026000490019230000350024152000980027665000290037465000250040394200230042895200420045195200420049395200420053595200410057743303LVL19990313000000.0930405s1994 nyua j 00011 eng a93013364 a0525450777 a 93013364 c495d495 aE James10aJames, Betsy.10aMary Ann /cBetsy James. a1st ed.0 aNew York :bDutton Children's Books,cc1994. a[30] p. :bcol. ill. ;c25 cm. aAfter her best friend Mary Ann moves away, Amy finds a praying mantis and names her Mary Ann. 1aPraying mantisxFiction. 1aFriendshipxFiction. aLVLcEASYkE James bMAINp32000000047761r8.04u5000u871 bMAINp32000000047762r8.04u5001u872 bMAINp31000000048841r8.25u5002u873 bLB1p33000000019272r8.25u5003u87400726 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000190013524500520015426000820020630000270028850400510031565000260036665000270039294200230041995200420044243304LVL20010817111957.0960131s1996 cau b 00110 eng a96003659 a1565654455 a 96003659 c496d496 a616.99 Dr10aDrum, David E.10aMaking the chemotherapy decision /cDavid Drum.0 aLos Angeles, Calif. :aChicago :bLowell House :bContemporary Books,cc1996. axvii, 270 p. ;c24 cm. aIncludes bibliographical references and index. 0aCancerxChemotherapy. 0aCancerxPopular works. aLVLcNFk616.99 Dr bLB2p34000000013484r15.93u5005u87501147 2200349 450000100060000000300040000600500170001000800390002701000130006602000250007903500160010404000250012004300120014505000240015708200160018109000130019710000210021024501140023125000120034526000380035730000210039550500670041652100110048365000290049465000450052365000560056865000290062465000350065394200260068895200420071495200410075650323LVL20010730143515.0890111s1989 nyu 00011 eng a89045079 a0060161744 :c$14.95 aflb01816001 aDLCcDLCdDLCdICrlF an-ust--00aPS3558.I45bJ6 198900220a813/.54 c497d49710aHillerman, Tony.14aThe Joe Leaphorn mysteries :bthree classic Hillerman mysteries featuring Lt. Joe Leaphorn /cTony Hillerman. a1st ed.0 aNew York :bHarper & Row,cc1989. a499 p. ;c25 cm.0 aThe blessing way -- Dance hall of the dead -- Listening woman.2 aAdult. 0aNavajo IndiansxFiction. 0aDetective and mystery stories, American. 0aLeaphorn, Joe, Lt. (Fictitious character)xFiction. 7aNavajo IndiansxFiction. 7aMystery and detective stories. aLVLcMYSkM Hillerman bMAINp32000000025934r8.82u5007u876 bLB1p33000000010757r8.82u5008u87700319 2200133 450000100060000000300040000600500170001000800410002709000130006810000170008124500230009894200220012195200420014371380LVL19990404000000.0950324s19uu 000 0 eng d c498d498 aAnderton, J.14aThe glass rainbow. aLVLcNFk748.2 An bMAINp31000000023585r0.82u5009u87801205 2200361 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000270013524500370016226000440019930000290024344000270027250000310029950400500033065000380038065000350041865000340045365000340048780000510052194200230057295200410059595200420063695200410067895200410071995200420076095200410080236286LVL20000724000000.0950203s1994 paua b 00011 eng a94005836 a0836136683 a 94005836 c499d499 aAF Bender10aBender, Carrie,d1953-12aA joyous heart /cCarrie Bender.0 aScottdale, Pa. :bHerald Press,cc1994. a168 p. :bill. ;c20 cm.10aMiriam's journal ;v3. aSequel to: A winding path. aIncludes bibliographical references (p. 168). 0aFarm lifexFiction.zPennsylvania 0aFamilyxFiction.zPennsylvania 0aAmishxFiction.zPennsylvania 0aWomenxFiction.zPennsylvania1 aBender, Carrie,d1953-tMiriam's journal ;v3. aLVLcAFkAF Bender bLB2p37000000011666r4.10u5010u879 bMAINp32000000055719r4.10u5011u880 bLB1p36000000001122r4.10u5012u881 bLB2p34000000008972r4.10u5013u882 bMAINp31000000053322r4.10u5014u883 bLB1p33000000021772r4.10u5015u88400916 2200277 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200140011010000280012424500980015225000120025026000390026230000280030150400550032965000360038465000290042094200230044995200420047295200410051495200420055595200410059743305LVL19990313000000.0951117r19961988nyu b 00010 eng a1569248192 anpl95001584 c500d500 a929.44 Sc10aSchwegel, Janet,d1959-14aThe baby name countdown :bpopularity and meanings of today's baby's names /cJanet Schwegel. a3rd ed.0 aNew York :bMarlowe & Co.,cc1996. a418 p. ;c21 cm. ;dpa. aIncludes bibliographical references: p. (416-418). 0aNames, PersonalzUnited States. 0aNames, PersonalzCanada. aLVLcNFk929.44 Sc bMAINp32000000060874r6.46u5016u885 bLB2p34000000010970r6.46u5017u886 bMAINp31000000057386r6.46u5018u887 bLB1p33000000024142r6.46u5019u88800370 2200145 450000100060000000300040000600500170001000800410002701000130006809000130008110000290009424500330012394200260015695200420018257343LVL19990220000000.0950323s19uu 000 0 eng d a66015648 c501d501 aLindgren, Astrid,d1907-10aSpringtime in Noisy Village. aLVLcEASYkE Lindgren bMAINp31000000002845r3.37u5020u88900610 2200217 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200150011210000270012724500290015426000350018330000210021894200250023995200430026495200430030795200420035036287LVL19990319000000.0950426s1995 nyu 00011 eng d a0886776384 anpl95000660 c502d502 aSF Cherryh10aCherryh, C. J.,d1942-10aInvader /cC.J. Cherryh.0 aNew York :bDAW Books,cc1995. a426 p. ;c24 cm. aLVLcSCIkSF Cherryh bMAINp32000000057189r11.97u5022u890 bMAINp31000000054261r11.97u5023u891 bLB1p33000000022287r11.97u5024u89200583 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200160012110000340013724500570017125000120022826000350024030000210027594200260029695200430032250325LVL20030527151942.0921026s1993 nyu 00011 eng a92021149 a0441126286 a 92021149 c503d503 aSF McKillip10aMcKillip, Patricia A.,d1948-14aThe cygnet and the firebird /cPatricia A. McKillip. a1st ed.0 aNew York :bAce Books,cc1993. a233 p. ;c22 cm. aLVLcSCIkSF McKillip bMAINp32000000041589r10.59u5026u89301013 2200289 450000100060000000300040000600500170001000800410002702000150006803500160008303700270009909000130012609200140013924500560015326000470020930000740025650001060033052000520043665000600048870000190054870000300056774000110059774000320060874000170064094200240065795200420068157344LVL19990220000000.0910706s1984 mnunnn r j10 eng d a0886761301 anav96000042 aLC 710bLearning Curve c504d504 aAC 428 En00aEnglish 1cthe Learning Curve.h[sound recording] / aMinneapolis, MN :bLearning Curve,cp1984. a1 sound cassette (60 min.) :banalog., mono. +e1 test (22 p. : ill.) aAdded title : ESL 1. Text, by Jerry L. Messec and Theresa C. Dale has title Listen & speak English I. aEssential English phrases for foreign speakers. 7aEnglish languagexStudy and teachingxForeign speakers.1 aMessec, Jerry.1 aDale, Theresa Corasaniti.0 aESL 1.0 aListen & speak English one.0 aEnglish one. aLVLcACkAC English bMAINp31000000032404r5.39u5027u89401149 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200180012110000230013924500700016225000120023226000540024430000330029852001640033160000430049565000470053865100270058570000260061294200270063895200430066595200420070895200430075095200420079336288LVL19990319000000.0930625s1994 nyuab j 00011 eng a93026709 a0803715277 a 93026709 c505d505 aJ Van Leeuwen10aVan Leeuwen, Jean.10aBound for Oregon /cJean Van Leeuwen ; pictures by James Watling. a1st ed.0 aNew York :bDial Books for Young Readers,cc1994. a167 p. :bill.,map ;c21 cm. aA fictionalized account of the journey made by nine-year-old Mary Ellen Todd and her family from their home in Arkansas westward over the Oregon Trail in 1852.11aTodd, Mary Ellen,d1843-1924xFiction. 1aOverland journeys to the PacificxFiction. 1aOregon TrailxFiction.11aWatling, James,eill. aLVLcJFkJ Van Leeuwen bMAINp32000000058311r12.66u5028u895 bLB2p34000000006414r12.66u5029u896 bMAINp31000000055040r12.66u5030u897 bLB1p33000000022949r12.66u5031u89801113 2200325 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200100012110000140013124500900014525000210023526000650025630000350032150000260035652001030038265000210048565000220050670000310052894200210055995200410058095200420062195200420066395200410070595200410074650326LVL20020405130207.0850613r1985 nyua j 00011 eng a85014720 a0916291049 a 85014720 c506d506 aE Fox10aFox, Mem.10aWilfrid Gordon McDonald Partridge /cwritten by Mem Fox ; illustrated by Julie Vivas. a1st American ed.0 aBrooklyn, N.Y. :bKane/Miller Book Publishers,c1985, c1984. a[32] p. :bcol. ill. ;c26 cm. a"A Cranky Nell book." aA small boy tries to discover the meaning of "memory" so he can restore that of an elderly friend. 1aMemoryxFiction. 1aOld agexFiction.11aVivas, Julie,d1947-eill. aLVLcEASYkE Fox bLB2p37000000001502r8.09u5032u899 bMAINp32000000037187r8.30u5033u900 bMAINp32000000037188r8.30u5034u901 bLB2p34000000010257r8.09u5035u902 bLB1p33000000014721r8.09u5036u90300786 2200253 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200110011210000170012324500800014026000500022030000350027044000330030565000140033865000320035294200200038495200430040495200430044795200420049036289LVL19990319000000.0960603s1995 caua 00010 eng d a156824097X anpl96001014 c507d507 a395 Ge10aGeller, Nan.10aHow to create the wedding of your dreams on a small budget /c[Nan Geller].0 aScotts Valley, Ca :bMark Publishing,cc1995. a71 p. :bill. ;c28 cm. ;dpa. 0aEasy projects for beginners. 0aWeddings. 0aMarriage customs and rites. aLVLcNFk395 Ge bMAINp32000000064901r16.95u5037u904 bMAINp31000000060165r16.95u5038u905 bLB1p33000000025789r16.95u5039u90600334 2200145 450000100060000000300040000600500170001000800410002701000130006809000130008110000180009424500120011294200210012495200430014543308LVL19990313000000.0940825s19xx xxu 00010 eng d a77082085 c508d508 aHuygen, Will.10aGnomes. aLVLcNFk398 HUY bMAINp32000000009155r12.70u5040u90700774 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200180012110000220013924500300016126000410019130000210023252002030025365000210045694200250047795200420050250327LVL19990220000000.0900907s1991 nyu j 00011 eng a90048457 a0385304366 a 90048457 c509d509 aJ Prat- chett1 aPratchett, Terry.10aWings /cTerry Pratchett. aNew York :bDelacorte Press,cc1991. a200 p. ;c22 cm. aMasklin, one of a race of beings four inches high who live secretly among humans, tries to use the portable computer known as Thing to summon back the spaceship in which his ancestors came to Earth. 1aScience fiction. aLVLcJFkJ Pratchett bMAINp32000000039694r8.93u5041u90800355 2200145 450000100060000000300040000600500170001000800410002702000150006809000130008310000240009624500220012094200250014295200420016771384LVL19990404000000.0950324s19uu 000 0 eng d a088150176X c510d5101 aWestlake, Donald E.10aLemons never lie. aLVLcAFkAF Westlake bMAINp31000000033457r2.92u5042u90901045 2200229 4500010001300000020002100013090001300034245011400047250001200161260004700173300004800220500027600268505002400544650002800568650003200596700002600628700002400654740002900678942002000707952004400727952004400771 a94029100 a0442018649 (set) c511d51100aVan Nostrand's scientific encyclopedia /cDouglas M. Considine, editor ; Glenn D. Considine, managing editor. a8th ed.0 aNew York :bVan Nostrand Reinhold,cc1995. a2 v. (xvi, 3455 p.) :bill., maps ;c30 cm. a"Animal life, biosciences, chemistry, earth and atmospheric sciences, energy sources and power technology, mathematics and information sciences, materials and engineering sciences, medicine, anatomy, and physiology, physics, plant sciences, space and planetary sciences."0 a[1] A-I -- [2] J-Z. 0aSciencexEncyclopedias. 0aEngineeringxEncyclopedias.10aConsidine, Douglas M.10aConsidine, Glenn D.01aScientific encyclopedia. aLVLcNFk503 Va bMAINp31000000056378r159.71u5045u910 bMAINp31000000056379r159.71u5046u91100789 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200190012110000490014024500490018925000130023826000410025130000210029265000510031365000620036494200260042695200420045295200410049443309LVL19990313000000.0841003s1985 nyu 00011 eng a84023373 a0394538994 a 84023373 c512d512 aAF Mac- Donald10aMacDonald, John D.d1916-1986.q(John Dann),14aThe lonely silver rain /cJohn D. MacDonald. a1st. ed.0 aNew York :bAlfred A. Knopf,cc1985. a232 p. ;c22 cm. 0aMcGee, Travis (Fictitious character)xFiction. 0aPrivate investigatorsxFiction.zFloridazFort Lauderdale aLVLcMYSkM MacDonald bMAINp32000000018725r9.12u5047u912 bLB2p34000000003464r9.12u5048u91300735 2200241 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200120011210000230012424500440014726000380019130000350022994200210026495200420028595200420032795200410036995200420041095200410045264366LVL20020226155810.0911126s1991 nyu j 00011 eng d a0671730576 aonv90001687 c513d513 aJ Dixon10aDixon, Franklin W.10aThree-ring terror /cFranklin W. Dixon.0 aNew York :bPocket Books,cc1991. a152 p. ;c19 cm. ;dpa. ;dpa. aLVLcJFkJ Dixon bMAINp32000000032025r2.03u5049u914 bMAINp35000000002428r2.03u5050u915 bLB2p34000000007012r2.03u5051u916 bMAINp31000000037506r2.03u5052u917 bLB1p33000000009692r2.03u5053u91801095 2200325 450000100060000000300040000600500170001000800390002701000190006602000310008504000180011604300120013405000220014608200170016809000130018510000220019824500950022025000300031526000440034530000260038950000590041550000200047450000320049450400300052665000570055665000670061370000230068094200240070395200420072771385LVL20020909075732.0860124r19861985nyu b 00110 eng a85045232 //r90 a0060970200 (pbk.) :c$7.95 aDLCcDLCdDLC an-us---00aHV5132.bS44 198600219a362.2/92 c514d51410aSeixas, Judith S.10aChildren of alcoholism :ba survivor's manual /cby Judith S. Seixas and Geraldine Youcha. a1st Perennial Library ed.0 aNew York :bHarper & Row,c1986, c1985. axiv, 208 p. ;c21 cm. aReprint. Originally published: New York : Crown, 1985. aIncludes index. a"Perennial Library PL 7020" aBibliography: p. 195-200. 0aChildren of alcoholicsxCase studies.zUnited States 0aAlcoholicsxFamily relationshipsxCase studies.zUnited States10aYoucha, Geraldine. aLVLcNFk362.292 Se bMAINp31000000029408r4.69u5054u91901196 2200325 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012124501380013425000220027226000800029430000430037444000460041750000200046365000690048365000590055265100400061165100300065170000210068171000170070294200220071995200430074195200430078495200430082736291LVL20011107082020.0950301s1996 nyuab 00100 eng a95011447 a0679764968 a 95011447 c515d515 a917.8 Si04aThe Sierra Club guides to the national parks of the Rocky Mountains and the Great Plains /c[text by Conger Beasley, Jr. ... et al.]. aRev. and updated.0 aNew York :bStewart, Tabori & Chang :bDistributed by Random House,cc1996. a272 p. :bill. ; maps ;c22 cm. ;dpa. 0aSierra Club guides to the national parks. aIncludes index. 0aNational parks and reservesxGuidebooks.zRocky Mountains Region 0aNational parks and reservesxGuidebooks.zGreat Plains 0aRocky Mountains RegionxGuidebooks. 0aGreat PlainsxGuidebooks.10aBeasley, Conger.20aSierra Club. aLVLcNFk917.8 Si bMAINp32000000062305r14.97u5055u920 bMAINp32000000120136r24.95u5056u921 bMAINp31000000058105r14.97u5057u92201241 2200349 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010810000160012124500390013726000380017630000300021452001410024465000220038565000220040765000220042994200230045195200410047495200420051595200420055795200410059995200420064095200410068295200430072395200420076695200420080895200410085043310LVL19991112000000.0940406s1994 nyua j 00011 eng a94011349 a0679867120 a 94011349 c516d51610aSeuss,cDr.10aDaisy-head Mayzie /cby Dr. Seuss.0 aNew York :bRandom House,cc1994. a[48] p. :bill. ;c29 cm. aYoung Mayzie McGrew becomes a worldwide sensation when a daisy grows out of the top of her head, and everyone attempts to get rid of it. 1aDaisiesxFiction. 1aHumorous stories. 1aStories in rhyme. aLVLcEASYkE Seuss bLB2p37000000005879r8.55u5058u923 bMAINp32000000056054r8.55u5059u924 bMAINp32000000056055r8.55u5060u925 bLB1p36000000003922r8.55u5061u926 bMAINp35000000004115r8.55u5062u927 bLB2p34000000011520r8.55u5063u928 bMAINp31000000072242r15.00u5064u929 bMAINp31000000053465r8.55u5065u930 bMAINp31000000053466r8.55u5066u931 bLB1p33000000021850r8.55u5067u93200785 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200180012110000190013924500390015826000400019730000330023744000210027050000200029152001290031161000200044094200280046095200430048850329LVL19990220000000.0930624s1983 ilua j 00110 eng a83010068 a0516017101 a 83010068 c517d517 aJNF 341.23 Gr1 aGreene, Carol.10aUnited Nations /cby Carol Greene. aChicago :bChildrens Press,cc1983. a45 p. :bcol. ill. ;c23 cm. 2aA New true book. aIncludes index. aAn introduction to the United Nations describing its purpose and organization and the work of its many specialized agencies.21aUnited Nations. aLVLcJNFkJNF 341.23 Gr bMAINp32000000040365r13.74u5068u93300965 2200277 450000100060000000300040000600500170001000800390002701000210006603500160008704000200010305000170012308200100014009000130015010000290016324500540019226000360024630000270028252002050030952100340051452100090054865000260055770000380058394200250062195200410064664367LVL20000817000000.0850906s1968 nyua j 00001 eng a68016074 /AC/r85 aflb00036801 aDLCcDLCdICrlF0 aPZ7.R547bYe a[Fic] c518d51810aRobertson, Keith,d1914-14aThe year of the jeep.cIllustrated by W. T. Mars.0 aNew York,bViking Pressc[1968] a254 p.billus.c22 cm. aBy taking gardening jobs, catching bats and thieves, diving for bricks in a swimming pool, and inciting the interest of some helpful friends, a young boy makes his daydream of owning a jeep come true.0 a5.3bFollett Library Book Co.2 a3-6. 1aAutomobilesxFiction.11aMars, W. T.eillus.q(Witold T.), aLVLcJFkJ Robertson bLB2p37000000012160r4.06u5069u93400967 2200325 450000100060000000300040000600500170001000800390002701000170006602000150008304000130009805000230011108200160013409000130015010000200016324500720018326000480025526300100030330000110031349000190032450000200034350400210036352000830038465000330046765000120050070000260051283000350053894200250057395200430059871386LVL19990404000000.0890217c19901989nyu j b 00110 eng a89031200 /AC a0531183084 aDLCcDLC0 aQL638.9.bP43 19900 219a597/.31 c519d51910aPenny, Malcolm.10aLet's look at sharks /cby Malcolm Penny ; [artist, Wendy Meadway].0 aNew York :bBookwright Press,c1990, c1989. a9001. ap. cm.1 aLet's look at. aIncludes index. aBibliography: p. aAn introduction to sharks, the different types, and their habits and behavior. 0aSharksxJuvenile literature. 1aSharks.11aMeadway, Wendy,eill. 0aLet's look at (New York, N.Y.) aLVLcJNFkJNF 597 Pe bMAINp31000000049364r10.30u5070u93500643 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200120012110000170013324500260015026000380017630000210021465000600023565000530029594200220034895200430037036292LVL19990319000000.0951011s1996 nyu 00011 eng a95045751 a0553102443 a 95045751 c520d520 aM Rucka10aRucka, Greg.10aKeeper /cGreg Rucka.0 aNew York :bBantam Books,cc1996. a275 p. ;c24 cm. 0aAbortion servicesxFiction.zNew York (State)zNew York 0aBodyguardsxFiction.zNew York (State)zNew York aLVLcMYSkM Rucka bMAINp31000000062208r13.61u5071u93601272 2200349 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000230013424500860015726000380024330000400028144000380032152001390035952100400049865000230053865000220056170000250058394200240060895200410063295200420067395200410071595200420075695200410079895200420083995200410088143311LVL19991112000000.0930524s1995 nyua j 00011 eng a93025258 a0679841717 a 93025258 c521d521 aE Prager10aPrager, Annabelle.14aThe baseball birthday party /cby Annabelle Prager ; illustrated by Marilyn Mets.0 aNew York :bRandom House,cc1995. a46 p. :bcol. ill. ;c23 cm. ;dpa. 0aStep into reading. A Step 2 book. aBilly decides to have a party to show the other kids that he can play baseball, but his young helper's mistake almost spoils the plan. a"A step 2 book grades 1-3."--Cover. 1aBaseballxFiction. 1aPartiesxFiction.11aMets, Marilyn,eill. aLVLcEASYkE Prager bLB2p37000000006269r2.31u5072u937 bMAINp32000000057319r2.31u5073u938 bLB1p36000000003783r2.31u5074u939 bMAINp35000000001752r2.31u5075u940 bLB2p34000000005262r2.31u5076u941 bMAINp31000000054364r2.31u5077u942 bLB1p33000000022364r2.31u5078u94301016 2200301 450000100060000000300040000600500170001000800390002701000210006604000180008704300120010505000180011708200150013509000130015024500760016326000380023930000250027735000110030244000400031352001140035365000510046765000350051865000340055370000310058770000300061894200240064895200420067257349LVL19990220000000.0710903s1971 nyu j 00100 eng a72156989 /AC/r90 aDLCcDLCdDLC an-us-ny00aPS591.S3bY6800a811/.5/408 c522d52200aYoung voices.cCollected by Charles E. Schaefer and Kathleen C. Mellor.0 aNew York,bBruce Pub. Co.c[1971] aviii, 148 p.c24 cm. a$5.95. 4aThe Poetry search anthology,v1969. aPoems by fourth, fifth, and sixth graders about nature, the city, emotions, war, prejudice, and other topics. 0aChildren's writings, AmericanzNew York (N.Y.) 0aAmerican poetryy20th century. 1aAmerican poetryxCollections.10aSchaefer, Charles E.,eed.10aMellor, Kathleen C.,eed. aLVLcJNFk811.5 YOU bMAINp31000000008592r3.87u5079u94400754 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012124500620013625000130019826000790021130000430029050000200033365000130035365100280036694200240039495200410041895200410045964368LVL20000209000000.0910508c19851963dcuaf 00100 eng a85051287 a091620006X a 85051287 c523d523 a351.862 We00aWe, the people :bthe story of the United States Capitol. a13th ed. aWashington, D.C. :bUnited States Capitol Historical Society,cc1985,1963. a144 p. :bill, plates ;c25 cm. ;dpa. aIncludes index. 0aCapitol. 0aUnited StatesxCapitol. aLVLcNFk351.862 We bLB2p34000000001422r5.81u5080u945 bLB1p33000000007103r5.81u5081u94600968 2200313 450000100060000000300040000600500170001000800390002701000130006602000250007902000310010403900180013504000130015305000210016608200180018709000130020510000180021824000320023624500860026825000210035426000400037530000250041550000200044050000950046065000240055565000110057994200220059095200420061271387LVL20020920084825.0821025r19831982nyu 00110 eng a82019097 a0394530608 :c$17.50 a0394714024 (pbk.) :c$6.950 a2b3c3d3e3 aDLCcDLC0 aTX837.bE43 19830 219a641.5/636 c524d52410aElliot, Rose.10aGourmet vegetarian cooking.14aThe festive Vegetarian :brecipes and menus for every occasion /cby Rose Elliot. a1st American ed.0 aNew York :bPantheon Books,cc1983. axi, 208 p. ;c24 cm. aIncludes index. aReprint. Originally published: Gourmet vegetarian cooking. London : W. Collins Sons, 1982. 0aVegetarian cookery. 0aMenus. aLVLcNFk641.5 El bMAINp31000000024125r4.10u5082u94701281 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200160012110000230013724500590016026000670021930000410028650001080032750400300043560000480046560000990051360000920061265000400070465000570074465000500080171000480085194200250089995200430092436293LVL19990319000000.0860827s1986 nyua bc 00010beng a86021871 a0810917343 a 86021871 c525d525 a759.9492 Pi10aPickvance, Ronald.10aVan Gogh in Saint-Remy and Auvers /cRonald Pickvance.0 aNew York :bMetropolitan Museum of Art :bH.N. Abrams,cc1986. a325 p. :bill. (some col.) ;c29 cm. aCatalog of an exhibition held at the Metropolitan Museum of Art, New York, Nov. 25, 1986-Mar. 22, 1987. aBibliography: p. 323-325.10aGogh, Vincent van,d1853-1890xExhibitions.10aGogh, Vincent van,d1853-1890xHomes and hauntsxExhibitions.zFrancezSaint-Remy-de-Provence.10aGogh, Vincent van,d1853-1890xHomes and hauntsxExhibitions.zFrancezAuvers-sur-Oise. 0aPaintersxExhibitions.zNetherlands 0aSaint-Remy-de-Provence (France) in artxExhibitions. 0aAuvers-sur-Oise (France) in artxExhibitions.20aMetropolitan Museum of Art (New York, N.Y.) aLVLcNFk759.9492 Pi bMAINp32000000066196r25.00u5083u94801884 2200421 450000100060000000300040000600500170001000700140002700800220004102400150006302800270007803500160010509000130012109200150013410000340014924501860018326000850036930000580045449000140051250001310052650000180065751100910067551800640076665000210083065000260085165000270087770000350090470000340093970000510097370000820102470000960110670000780120271000590128074000140133974000410135394200250139495200430141943312LVL19990313000000.0sduzsnznnmlne921002p19911989nyuuun a902660173202a60173-2-RCbRCA Victor anav95000059 c526d526 aCD Strauss10aStrauss, Richard,d1864-1949.10aDon Juanbop. 20 ; Burleske in D minor for piano and orchestra ; Serenade in E-flat for winds ; Till Eulenspiegels lustige Streiche : op. 28 /cRichard Strauss.h[sound recording] :0 aNew York, NY :bRCA Victor :bmanufactured and distributed by BMG Music,cp1991. a1 sound disc (64:25) :bdigital, stereo. ;c4 3/4 in.0 aRed seal. aFirst and last works are symphonic poems; 3rd work for 2 flutes, 2 oboes, 2 clarinets, 4 horns, 2 bassoons, and contrabassoon. aCompact disc.0 aSergei Edelmann, piano ; Stockholm Philharmonic Orchestra ; Paavo Berglund, conductor. aRecorded June 19-22, 1989, in Philharmonic Hall, Stockholm. 0aSymphonic poems. 0aPiano with orchestra. 0aSuites (Wind ensemble)104prf.aEdelmann, Sergei,d1960-104cnd.aBerglund, Paavo,d1929-12aStrauss, Richard,d1864-1949f1991.tDon Juan.12aStrauss, Richard,d1864-1949f1991.,mpiano, orchestra,rD minor.tBurlesque.12aStrauss, Richard,d1864-1949f1991.,mwoodwinds, horns (4),nop. 7.rEÅf major.tSerenades,12aStrauss, Richard,d1864-1949f1991.tTill Eulenspiegels lustige Streiche.204prf.aKonsertfÈoreningens orkester (Stockholm, Sweden)01aDon Juan.01aTill Eulenspiegels lustige Streiche. aLVLcCDMkCD Strauss bMAINp32000000058032r11.75u5084u94900763 2200241 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200140011010000200012424500610014426000390020530000550024450000200029965000600031965100370037994200230041695200410043995200410048050331LVL20021115085725.0941007s1995 nyuaf 00110 eng a0140173897 anpl96001159 c527d527 a940.54 Le10aLeckie, Robert.10aOkinawa :bthe last battle of WW II /cby Robert Leckie.0 aNew York :bPenguin Books,cc1995. ax, 220, [16] p. of plates :bill. ;c20 cm. ;dpa. aIncludes index. 0aWorld War, 1939-1945xCampaignszJapanzOkinawa Island. 0aOkinawa Island (Japan)xHistory. aLVLcNFk940.54 Le bLB2p34000000014023r8.23u5085u950 bLB1p33000000026104r8.23u5086u95100371 2200145 450000100060000000300040000600500170001000800410002701000130006809000130008110000230009424500390011794200260015695200430018257350LVL19990220000000.0920222s19xx xxu 00010 eng d a86033575 c528d5281 aPileggi, Nicholas.10aWiseguy :blife in a Mafia family. aLVLcNFkLP 364.1 PIL bMAINp31000000015725r16.96u5087u95200708 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200110012110000180013224501460015026000380029630000290033465000280036374000250039194200200041695200420043664369LVL19990217000000.0910201s1991 nyua 00010 eng a91008083 a0553077201 a 91008083 c529d529 a081 Ha10aHarvey, Paul.10aPaul Harvey's for what it's worth /cedited by Paul Harvey, Jr. ; compiled by Liz Murray ; art direction by Paul Harvey, Jr., and Liz Murray.0 aNew York :bBantam Books,cc1991. a149 p. :bill. ;c22 cm. 0aAmerican wit and humor.0 aFor what it's worth. aLVLcNFk081 Ha bMAINp31000000036495r9.00u5088u95301100 2200349 450000100060000000300040000600500170001000800390002701000190006602000150008503500160010003900180011604000200013404300120015405000250016608200180019109000130020910000180022224500520024026000400029230000520033250000200038450400300040451000480043451000320048252000900051452100170060465000310062165000310065294200240068395200430070771389LVL19990404000000.0840630s1985 nyuaf b 00110 eng a84015186 //r85 a0814908950 aflb006511120 a2b3c3d3e3 aDLCcDLCdICrlF apo-----0 aD767.99.I9bR67 19850 219a940.54/26 c530d53010aRoss, Bill D.10aIwo Jima :blegacy of valor /cby Bill D. Ross.0 aNew York :bVanguard Press,cc1985. axv, 376 p., [24] p. of plates :bill. ;c24 cm. aIncludes index. aBibliography: p. 363-365.0 aSenior High School Library Catalog (Wilson)0 aNew York Times Book Review. aChronicles the United States assault against the Japanese forces on Iwo Jima in 1945.2 aYoung Adult. 0aIwo Jima, Battle of, 1945. 7aIwo Jima, Battle of, 1945. aLVLcNFk940.54 ROS bMAINp31000000021215r13.50u5091u95400955 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012124501000013426000400023430000420027450400410031665000470035765000460040465000570045065000490050770000370055670000190059394200220061295200430063443314LVL19990313000000.0920127s1992 ohua b f10010 eng a92004935 a0935470506 a 92004935 c531d531 a574.5 Wa00aWater quality in North American river systems /cedited by C. Dale Becker and Duane A. Neitzel.0 aColumbus :bBattelle Press,cc1992. axiii, 304 p. :bill. ;c26 cm. ;dpa. aIncludes bibliographical references. 0aStream ecologyxCongresses.zNorth America 0aWater qualityxCongresses.zNorth America 0aWater quality managementxCongresses.zNorth America 0aWaterxPollutionxCongresses.zNorth America10aBecker, C. Daleq(Clarence Dale)10aNeitzel, D. A. aLVLcNFk574.5 Wa bMAINp32000000062420r44.95u5092u95500770 2200193 4500010001300000090001300013100001800026245010200044260006600146300003500212520010900247650001400356650002200370700002300392700001800415942002400433952005800457952006100515 a89004315 c532d53210aMartin, Bill.10aChicka chicka boom boom /cby Bill Martin, Jr. and John Archambault ; illustrated by Lois Ehlert.0 aNew York :bSimon & Schuster Books for Young Readers,cc1989. a[34] p. :bcol. ill. ;c29 cm. aAn alphabet rhyme/chant that relates what happens when the whole alphabet tries to climb a coconut tree. 1aAlphabet. 1aStories in rhyme.10aArchambault, John.10aEhlert, Lois, aLVLcEASYkE Martin bLB1dLB1p33000000017905r8.23u5094u956v2003-09-01 bLB1dLB1p33000000063306r15.00u306313u957v2004-07-0900776 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000300013524500810016525000200024626000460026630000210031265000530033365000480038665000220043494200230045695200430047964371LVL19990217000000.0881017c19891988mau d 00011 eng a88031988 a0816146942 a 88031988 c533d533 aLP Peters1 aPeters, Elizabeth,d1927-14aThe deeds of the disturber :ban Amelia Peabody mystery /cElizabeth Peters. aLarge print ed. aBoston, Mass. :bG.K. Hall,c1989, c1988. a498 p. ;c25 cm. 0aPeabody, Amelia (Fictitious character)xFiction. 0aWomen detectivesxFiction.zEnglandzLondon 0aLarge type books. aLVLcLPkLP Peters bMAINp31000000043657r16.11u5095u95800367 2200145 450000100060000000300040000600500170001000800410002702000150006809000130008310000200009624500390011694200240015595200420017936296LVL19990319000000.0941224s19uu 000 0 eng d a0553153579 c534d5341 aBellairs, John.14aThe spell of the sorcerer's skull. aLVLcJFkJ Bellairs bMAINp32000000016314r3.45u5096u95900765 2200229 450000100060000000300040000600500170001000800390002703500160006609000130008209200140009510000220010924500440013126000380017530000280021344000240024150000270026552001560029265000200044894200250046895200420049343315LVL19990313000000.0700504s1970 nyua j 00011 eng anpl96001617 c535d535 aE Wiseman10aWiseman, Bernard.10aMorris goes to school /cby B. Wiseman.0 aNew York :bHarper & Row,cc1970. a64 p. :bill. ;c23 cm. 3aAn I can read book. a"Weekly Reader Books." aMorris the moose has an exciting day in school learning the alphabet, counting, singing, spelling, and doing other things that make him a unique moose. 1aMoosexFiction. aLVLcEASYkE Wiseman bMAINp32000000066416r8.95u5097u96000506 2200145 4500010001300000020001500013090001300028100004000041245008300081260004800164300002100212942002300233952004300256952006100299 a93042785 a0374208476 c536d5361 aSinger, Isaac Bashevis,d1904-1991.10aMeshugah /cIsaac Bashevis Singer ; translated by the author and Nili Wachtel. aNew York :bFarrar, Straus, Giroux,cc1994. a232 p. ;c24 cm. aLVLcAFkAF Singer bMAINp32000000046154r12.98u5098u961 bLB1dLB1p33000000062392r12.98u309040u962v2004-08-0600562 2200217 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200120011010000260012224500390014825000200018726000310020730000210023865000220025994200210028195200420030264372LVL20000324000000.0931206s1993 nyua d 00011 eng a0670849367 anpl93001599 c537d537 aLP King1 aKing, Stephen,d1947-10aDolores Claiborne /cStephen King. aLarge print ed. aNew York :bViking,c1993. a331 p. ;c25 cm. 0aLarge type books. aLVLcLPkLP King bMAINp31000000045780r3.50u5099u96300522 2200157 4500020001500000090001300015100001900028245010600047260003500153300002900188500002000217650001700237942002400254952004300278952004300321 a0831728485 c538d53810aBrown, Roland.14aThe encyclopedia of motorcycles :bthe complete book of motorcycles and their riders /cRoland Brown.0 aNew York :bSmithmark,cc1996. a256 p. :bill. ;c31 cm. aIncludes index. 0aMotorcycles. aLVLcNFk629.227 Br bMAINp32000000067529r19.98u5100u964 bMAINp31000000062335r19.98u5101u96500359 2200133 450000100060000000300040000600500170001000800410002709000130006810000520008124500240013394200250015795200430018250335LVL19990220000000.0940516s19xx xxu 00010 eng d c539d5391 aMarquand, John P.d1893-1960.q(John Phillips),10aPoint of no return. aLVLcAFkAF Marquand bMAINp32000000006103r10.00u5102u96600937 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200120012110000200013324500700015326000990022330000350032244000230035750000410038065000250042165000220044665000300046865000220049865000220052070000270054294200230056995200430059264373LVL19990217000000.0941203s1992 wiua j 00011 eng a91073155 a0307690083 a 91073155 c540d540 aE Davis1 aDavis, Allison.10aBest friends /cby Allison Davis ; illustrated by David Prebenna. a[Racine, Wis.] :bWestern Pub. Co. in conjunction with Children's Television Workshop,cc1992. a[28] p. :bcol. ill. ;c22 cm. 2aA Growing-up book. a"A Sesame Street/Golden Press book." 1aFriendshipxFiction. 1aSharingxFiction. 1aNursery schoolsxFiction. 1aSchoolsxFiction. 1aPuppetsxFiction.11aPrebenna, David,eill. aLVLcEASYkE Davis bMAINp31000000052349r10.95u5103u96700993 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200190012110000200014024500670016026000460022730000280027344000240030150000400032552001210036561000300048674000300051694200290054695200430057595200430061895200420066150336LVL19990220000000.0930312s1993 mnua j 00010 eng a93015260 a1562392387 a 93015260 c541d541 aJNF 796.332 It10aItalia, Robert.14aThe Dallas Cowboys :b1993 Super Bowl champions /cBob Italia.0 aEdina, Minn. :bAbdo & Daughters,cc1993. a48 p. :bill. ;c26 cm. 4aThe Year in sports. aFootball champions, 1993: on spine. aProvides a detailed account of the Dallas Cowboy's 1992-93 football season, ending with the Super Bowl championship.21aDallas Cowboys (Football)01aFootball champions, 1993. aLVLcJNFkJNF 796.332 It bMAINp32000000047063r14.95u5104u968 bMAINp31000000048293r14.95u5105u969 bLB1p33000000018980r14.95u5106u97000804 2200241 450000100060000000300040000600500170001000800410002701000130006802000150008109000130009609200120010910000200012124500580014126000400019930000290023952001550026865000210042365000300044465000220047494200230049695200430051964374LVL19990217000000.0950215s19xx xxu 00010 eng d a86007682 a0060223936 c542d542 aE Hoban10aHoban, Lillian.10aSilly Tilly and the Easter Bunny /cby Lillian Hoban.0 aNew York :bHarpter Trophy,cc1987. a31 p. :billus.,c21 cm. aSilly Tilly Mole is so forgetful and silly on Easter morning that whe cannot find her bonnet and nearly fails to let the Easter Bunny into the house.. 7aEasterxFiction. 7aMoles [animals]xFiction. 7aRabbitsxFiction. aLVLcEASYkE Hoban bMAINp31000000043262r11.69u5107u97100288 2200121 450000100060000000300040000600500170001000800410002709000130006824500270008194200160010895200420012443318LVL19990313000000.0941224s19uu 000 0 eng d c543d54310aCOBBLESTONE DEC. 1983. aLVLcPERkJ bMAINp32000000022102r1.95u5108u97200704 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200120012110000280013324500250016125000200018626000460020630000210025265000480027365000220032194200210034395200430036495200430040750337LVL19990220000000.0940303r19941926meu d 00011 eng a94008813 a0786202084 a 94008813 c544d544 aLP Grey1 aGrey, Zane,d1872-1939.10aNevada /cZane Grey. aLarge print ed. aThorndike, Me. :bThorndike Press,c1994. a433 p. ;c22 cm. 0aFrontier and pioneer lifexFiction.zNevada 0aLarge type books. aLVLcLPkLP Grey bMAINp32000000047889r14.22u5109u973 bMAINp31000000048917r14.22u5110u97400581 2200205 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200160011010000210012624500400014725000200018726000780020765000220028594200250030795200430033257356LVL19990220000000.0910423c19901980enk d 00011 eng a0750500468 aonv90000540 c545d545 aLP Chambers10aChambers, Peter.10aNothing personal /cPeter Chambers. aLarge print ed. aLong Preston, North Yorkshire, England :bMagna Print Books,cc1990,1980. 0aLarge type books. aLVLcLPkLP Chambers bMAINp31000000035635r17.95u5111u97500322 2200133 450000100060000000300040000600500170001000800410002709000130006810000190008124500250010094200210012595200420014664375LVL19990217000000.0950324s19uu 000 0 eng d c546d546 aLaberge, Arma.10aWoodworking for fun. aLVLcNFk680 LAB bMAINp31000000025246r2.25u5112u97600740 2200241 450000100060000000300040000600500170001000800410002702000150006809000130008309200140009610000190011024500380012926000410016730000260020844000300023494200230026495200420028795200430032995200420037295200420041495200420045657357LVL20030529102736.0961125s19uu 000 0 eng d a0373118651 c547d547 aAF Donald10aDonald, Robyn.14aThe mirror bride /cRobyn Donald. aToronto :bHarlequin Books ;cc1996. a186p. ;bpa. ;c18cm. 0aHarlequin Presentsv1865. aLVLcAFkAF Donald bLB2p37000000018638r15.99u5113u977 bMAINp32000000119447r15.99u5114u978 bLB1p36000000017394r15.99u5115u979 bLB2p34000000026875r15.99u5116u980 bLB1p33000000047383r15.99u5117u98100332 2200133 450000100060000000300040000600500170001000800410002709000130006810000280008124500320010994200210014195200360016264376LVL19990217000000.0950324s19uu 000 0 eng d c548d5481 aGrey, Zane,d1872-1939.14aThe light of western stars. aLVLcWESkW Grey bMAINp31000000029210u5118u98200443 2200169 450000100060000000300040000600500170001000800410002701000130006809000130008110000150009424500230010991000550013291000190018794200240020695200430023036301LVL20000714000000.0941224s19uu 000 0 eng d a90080313 c549d5491 aNiles, Bo.10aCountry Christmas. a1997 September --bAPL --gdecorative & minor arts a1997 September aLVLcNFk745.594 Ni bMAINp32000000029218r12.66u5119u98300788 2200217 450000100060000000300040000600500170001000800390002701000130006603500140007909000130009309200140010610000320012024500410015226000390019330000210023252002240025365000280047794200230050595200420052857358LVL19990220000000.0690410s1969 nyu j 00011 eng a69012916 a 69012916 c550d550 aJ Wellman10aWellman, Manly Wade,d1905-10aMountain feud /cManly Wade Wellman.0 aNew York :bIves Washburn,cc1969. a147 p. ;c21 cm. aThe Searcy-Coulter feud is rekindled when a cousin of the Coulters is shot. However, a young Coulter returning to his North Carolina home from college discovers a third party wants the families to annihilate each other. 1aMountain lifexFiction. aLVLcJFkJ Wellman bMAINp31000000005850r2.15u5121u98400360 2200145 450000100060000000300040000600500170001000800410002701000130006809000130008110000230009424500310011794200240014895200420017264377LVL19990217000000.0930415s19xx xxu 00010 eng d a72097090 c551d5511 aErskine, Margaret.10aBesides the wench is dead. aLVLcAFkAF Erskine bMAINp31000000031127r2.50u5122u98500715 2200229 450000100060000000300040000600500170001000800390002701000170006602000150008308200160009809000130011410000230012724500730015026000320022326300100025552001080026565000230037365000240039694200230042095200420044371396LVL19990404000000.0890613s1990 nyu j 00011 eng a89036095 /AC a03992219210 220aE Brett c552d55210aBrett, Jan,d1949-14aThe wild Christmas reindeer /cwritten and illustrated by Jan Brett.0 aNew York :bPutnam,cc1990. a9011. aAfter a few false starts, Teeka discovers the best way to get Santa's reindeer ready for Christmas Eve. 1aReindeerxFiction. 1aChristmasxFiction. aLVLcEASYkE Brett bMAINp31000000033522r8.82u5123u98600894 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200180012124501200013926000640025930000320032365000300035565000340038570000180041970000260043773000190046391000500048291000180053294200230055095200430057350340LVL19990220000000.0830412s1983 nyua bd 00000deng a83004791 a0671440713 a 83004791 c553d553 aREF 784.54 Ro04aThe Rolling stone encyclopedia of rock & roll /cedited by Jon Pareles, consulting editor, and Patricia Romanowski. aNew York, N.Y. :bRolling Stone Press/Summit Books,cc1983. a615 p. :bill. ;c24 cm. ;. 0aRock musicxDictionaries. 0aRock musicxBio-bibliography.10aPareles, Jon.10aRomanowski, Patricia.01aRolling stone. a1998 November --bAPL --gvoice & vocal music a1998 November aLVLcNFk784.54 Ro bMAINp32000000052293r12.95u5125u98700686 2200229 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200130011210000210012524500500014626000390019630000280023550400510026361000350031494200220034995200430037195200420041457359LVL19990220000000.0911101s1990 nyua b 00110 eng d a0792450795 aonv90001562 c554d554 a355.1 Fo10aFowler, William.10aAmerican military insignia /cWilliam Fowler.0 aNew York :bMallard Press,cc1990. a80 p. :bill. ;c30 cm. aIncludes bibliographical references and index.10aUnited StatesbArmyxInsignia. aLVLcNFk355.1 Fo bMAINp31000000037230r14.95u5126u988 bLB1p33000000009403r14.95u5127u98900629 2200217 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200190011010000210012924500600015026000360021030000280024670000270027494200270030195200420032895200410037071397LVL20030307135352.0910315s1990 nyu 00011 eng a0671698842 aonv90000413 c555d555 aSF Mc- Caffrey10aMcCaffrey, Anne.14aThe death of sleep /cAnne McCaffrey and Jody Lynn Nye. aNew York :bBaen Books,cc1990. a380 p. ;c18 cm. ;dpa.10aNye, Jody Lynn,d1957- aLVLcSCIkSF McCaffrey bMAINp32000000029964r2.92u5128u990 bLB2p34000000005973r2.92u5129u99100751 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009404000130010805000260012108200170014709000130016409200100017710000250018724500660021225000210027826000490029930000310034894200210037995200430040095200420044336303LVL20020822102944.0900501c19901989maua 00011 eng a90004669 a0395538416 a 90004669 aDLCcDLC00aPR6069.A42bM58 1990b00220a823/.914 c556d556 aSaint10aRead,cMiss,d1913-.10aMrs. Pringle /cMiss Read ; illustrations by John S. Goodall. a1st American ed.0 aBoston :bHoughton Mifflin Co.,cc1990,1989. a[158] p. :bill. ;c21 cm. aLVLcAFkAF Read bMAINp32000000029638r11.18u5130u992 bLB1p33000000003828r11.18u5131u99301652 2200457 450000100060000000300040000600500170001000800390002701000170006602000150008302000270009803500160012504000200014105000230016109000130018410000210019724500380021826000470025630000460030351000320034951000100038151000140039152000620040552100090046765000660047665000620054265000450060494200260064995200410067595200430071695200420075995200420080195200410084395200480088495200420093295200420097495200430101695200420105995200420110195200510114343322LVL20000522000000.0861209s1988 nyua j 00010 eng a86027345 /AC a0688071007 a0688071015 (lib. bdg.) aflb01706101 aDLCcDLCdICrlF0 aPE1591.bM434 1988 c557d55710aMcMillan, Bruce.10aDry or wet? /cby Bruce McMillan.0 aNew York :bLothrop, Lee & Shepard,c1988. a29 p. :bchiefly col. ill. ;c21 x 26 cm.0 aChildren's Catalog (Wilson) aSLJ*.0 aBooklist. aPaired photographs illustrate the concept of wet and dry.2 aK-3. 0aEnglish languagexSynonyms and antonymsxJuvenile literature. 1aEnglish languagexSynonyms and antonymsxPictorial works. 7aEnglish languagexSynonyms and antonyms. aLVLcEASYkE McMillan bLB2p37000000010287r9.95u5132u994 bMAINp32000000026102r11.59u5133u995 bMAINp32000000077274r3.98u5135u996 bMAINp32000000104048r9.95u5136u997 bLB1p36000000010708r3.98u5137u998 bMAINdMAINp32000000009924r9.95u5139u999 bLB2p34000000017915r3.98u5140u1000 bLB2p34000000024061r9.95u5141u1001 bMAINp31000000086049r9.95u5142u1002 bLB1p33000000031372r3.98u5144u1003 bLB1p33000000040820r9.95u5145u1004 bMAINdMAINp32000000002005r9.95u327662u100500921 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200180012110000250013924500780016426000460024230000350028852001840032365000220050765000210052965000140055070000210056494200270058595200430061271398LVL19990404000000.0840705s1985 njua j 00011 eng a84008833 a0816703612 a 84008833 c558d558 aE White- head10aWhitehead, Patricia.10aWhat a funny bunny /cwritten by Pat Whitehead : illustrated by Don Page.0 aMahwah, N.J. :bTroll Associates,cc1985. a[30] p. :bcol. ill. ;c24 cm. aA clumsy Easter Bunny keeps losing the eggs and candy he is carrying in his basket. A letter of the alphabet appears on each page accompanied by an appropriate word from the text. 1aRabbitsxFiction. 1aEasterxFiction. 1aAlphabet.11aPage, Don,eill. aLVLcEASYkE Whitehead bMAINp31000000003836r8.96u5147u100600851 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000200013424500660015425000210022026000330024130000270027450000200030165000240032173000200034594200220036595200440038795200430043195200440047495200430051850342LVL19990220000000.0960314s1996 nyua 00110 eng a95044328 a156458853X a 95044328 c559d559 a793.2 Wi10aWilkes, Angela.10aChild magazine's book of children's parties /cAngela Wilkes. a1st American ed. aNew York :bDk Pub.,cc1996. a80 p. :bill.,c24 cm. aIncludes index. 0aChildren's parties.01aChild magazine. aLVLcNFk793.2 Wi bMAINp32000000063397r11.18u5148u1007 bLB2p34000000013331r11.18u5149u1008 bMAINp31000000058913r11.18u5150u1009 bLB1p33000000025089r11.18u5151u101001052 2200289 450000100060000000300040000600500170001000700090002700800410003603500160007709000130009309200140010624500980012026000500021830000540026850600310032251100280035352001820038152100130056353800090057665000420058570000290062770000200065671000190067694200230069595200440071857361LVL19990220000000.0vd cbaho890909s1984 cau062 g vleng d avid93001441 c560d560 aAV 468 Su00aSurvival SpanishcLanguage Plus ; produced and directed by Cheryl Gordon.h[videorecording] / aCanoga Park, CA :bU.S.A. Home Video,cc1984. a1 videocassette (62 min.) :bsd., col. ;c1/2 in. aFor private home use only.2 aAna Luisa Salas-Porras. aA humorously presented 10-lesson course in basic Spanish for the English-speaker. Includes money talk, family words, restaurant and travel vocabulary and making telephone calls. aGeneral. aVHS. 0aSpanish languagexStudy and teaching.21aSalas-Porras, Ana Luisa.11aGordon, Cheryl.21aLanguage Plus. aLVLcAVkAV 468 Su bMAINp31000000030030r14.97u5152u101100604 2200217 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200210011210000280013324500420016125000200020326000490022330000210027265000220029394200280031595200430034371399LVL19990404000000.0920716c19801977enk d 00011 eng d a0708905323 aonv90002795 c561d561 aLP Blanken- ship1 aBlankenship, William D.10aYukon gold /cWilliam D. Blankenship. aLarge print ed. aLeicestershire :bUlverscroft,c1980, c1977. a506 p. ;c23 cm. 0aLarge type books. aLVLcLPkLP Blankenship bMAINp31000000039877r7.98u5153u101200910 2200301 450000100060000000300040000600500170001000800390002701000170006603500180008304000130010105000160011408200100013009000130014010000200015324500550017325000140022826000420024230000270028435000110031152001340032265000340045665000310049065000100052165000130053194200210054495200430056536305LVL19990319000000.0711220s1972 nyua j 001 0 eng a78145991 /AC a 78145991 /AC aDLCcDLC0 aSF413.bV57 a636.9 c562d5621 aVilliard, Paul.10aWild mammals as pets.cWith photos. by the author. a[1st ed.] aGarden City, N.Y.,bDoubledayc[1972] a159 p.billus.c25 cm. a$4.95. aDiscusses the physical characteristics, habits, feeding, and housing of a variety of small wild mammals that may be kept as pets. 0aMammalsxJuvenile literature. 0aPetsxJuvenile literature. 1aPets. 1aMammals. aLVLcNFk599 VIL bMAINp32000000009549r3.30u5154u101300549 2200217 450000100060000000300040000600500170001000800390002701000130006603500140007904000130009305000180010609000130012410000270013724500220016425000140018626000470020030000190024794200220026695200430028843324LVL19990313000000.0740410s1967 nyu 000 0 eng a67011965 a 67011965 aDLCcDLC0 aPZ4.B536bPl2 c563d563 aBerry, Wendell,d1934-12aA place on earth. a[1st ed.] aNew York,bHarcourt, Brace & Worldc[1967] a550 p.c22 cm. aLVLcAFkAF Berry bMAINp32000000001207r5.00u5155u101400751 2200229 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200110011010000170012124500360013826000690017430000460024352001020028965000220039194200220041395200430043595200430047850343LVL19990220000000.0810428s1981 nyua j 00011 eng a0671662783 anpl94002662 c564d564 aE Asch1 aAsch, Frank.10aGoodnight horsey /cFrank Asch. aNew York :bSimon and Schuster Books for Young Readers,ccc1981. a[32] p. :bchiefly col. ill. ;c21 cm. ;. aA request for a bedtime glass of water results in a fantastic horsey ride with a surprise ending. 1aBedtimexFiction. aLVLcEASYkE Asch bMAINp32000000054786r3.22u5156u1015 bMAINp32000000056084r3.22u5157u101600773 2200217 4500010001300000020001500013082001500028090001300043100003200056245012400088250001200212260003000224300004100254650003200295650003300327650004200360650004200402942002400444952004400468952004300512 a87045132 a03947524490 a738.3/0973 c565d5651 aKetchum, William C.,d1931-10aAmerican country pottery :byellowware and spongeware /cby William C. Ketchum, Jr. ; with photographs by Schector Lee. a1st ed. aNew York :bKnopf,c1987. a148 p. :bill. (some col.) ;c26 cm. 0aYellow warezUnited States. 0aSponged warezUnited States. 0aPotteryy19th centuryzUnited States. 0aPotteryy20th centuryzUnited States. aLVLcNFk738.309 Ke bMAINp32000000010632r11.77u5158u1017 bLB1p33000000052292r24.95u5160u101800962 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009404000250011005000240013508200170015909000130017610000320018924500430022126000310026426300100029530000210030551000150032652001640034152100110050565000350051694200230055195200430057495200430061743325LVL20010815105158.0900202s1990 nyu 000 1 eng a90050049 a0670832863 aflb02193301 aDLCcDLCdDLCdICrlF00aPR6037.Y5bD38 199000220a823/.912 c566d5661 aSymons, Julian,d1912-1994.10aDeath's darkest face /cJulian Symons. aNew York :bViking,c1990. a9010. a272 p. ;c22 cm. aBOOKLIST*. aSymons attempts to clear the name of an actor's father while investigating a decades-old mystery that took place in an upper-class seaside resort in the 1930s.2 aAdult. 7aMystery and detective stories. aLVLcMYSkM Symons bMAINp32000000039213r5.00u5161u1019 bLB1p36000000017066r10.59u5162u102000845 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000320013424501130016626000310027930000330031050400510034365000360039470000220043074000740045294200220052695200430054850344LVL20010918182508.0940927s1995 nyu b 00110 eng a94038921 a0452271010 a 94038921 c567d567 a616.1 Pa10aPashkow, Fredric J.,d1945-10a50 essential things to do when the doctor says it's heart disease /cFredric J. Pashkow and Charlotte Libov.0 aNew York :bPlume,cc1995. axii, 192 p. ;c21 cm. ;dpa. aIncludes bibliographical references and index. 0aHeartxDiseasesxPopular works.10aLibov, Charlotte.01aFifty essential things to do when the doctor says it's heart disease. aLVLcNFk616.1 Pa bMAINp32000000057601r6.57u5163u102100734 2200241 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200120011210000260012424500350015026000770018530000280026244000270029074000210031794200230033895200440036195200440040595200430044950345LVL19990220000000.0950808s1994 nyua j 00011 eng d a0307159841 anpl95001069 c568d568 aE Mayer10aMayer, Mercer,d1943-10aMercer Mayer's the cat's meow.0 aNew York :aRacine, WI :bGolden Book ;bWestern Publishing Co.,cc1994. a46 p. :bill. ;c23 cm. 0aLC & the critter kids.41aThe cat's meow.. aLVLcEASYkE Mayer bMAINp32000000058731r10.89u5164u1022 bMAINp31000000055358r10.89u5165u1023 bLB1p33000000023163r10.89u5166u102400656 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903900180009404000130011205000250012508200160015009000130016610000280017924500310020726000350023830000210027350000550029494200220034995200430037164383LVL19990217000000.0850926r19861938nyu b 00011 eng a85025278 a03960880070 a2b3c3d3e3 aDLCcDLC0 aPS3511.A87bS53 19860 219a813/.52 c569d56910aBrand, Max,d1892-1944.10aSinging guns /cMax Brand.0 aNew York :bDodd, Mead,c1986. a280 p. ;c22 cm. aOriginally published: New York : Dodd, Mead, 1938. aLVLcWESkW Brand bMAINp31000000028472r8.53u5167u102500545 2200205 450000100060000000300040000600500170001000800410002701000130006803500140008109000130009509200110010810000210011924500470014026000450018730000280023265000160026094200200027695200430029671402LVL19990404000000.0930727s1961 njua 00 10 eng d a61017405 a 61017405 c570d570 a580 Gi1 aGilbert, Miriam.10aStarting a terrarium /cby Miriam Gilbert. aMaplewood, N.J. :bC.S. Hammond,cc1961. a45 p. :bill. ;c26 cm. 0aTerrariums. aLVLcNFk580 Gi bMAINp31000000043890r1.38u5168u102600560 2200205 450000100060000000300040000600500170001000800390002701000130006603500140007904000130009305000190010609000130012510000300013824500700016826000320023830000270027094200200029795200370031736308LVL19990319000000.0790611s1957 nyua j 000 0 eng a57006471 a 57006471 aDLCcDLC0 aPZ7.P993bOt23 c571d5711 aPyle, Howard,d1853-1911.10aOtto of the Silver Hand.cWritten and illustrated by Howard Pyle. aNew York,bScribnerc[1957] a136 p.billus.c21 cm. aLVLcJFkJ Pyle bMAINp32000000014160u5169u102700964 2200325 450000100060000000300040000600500170001000800390002701000130006602000250007903500160010403900180012004000200013805000210015808200150017909000130019410000240020724500460023126000460027730000410032350000200036451000140038452001040039852100170050265000140051965000240053365000140055794200230057195200440059443327LVL20020904130842.0840210s1985 alua 00110 eng a84060287 a084870634X :c$18.95 aflb001074100 a2b3c3d3e3 aDLCcDLCdICrlF0 aTT835.bB59 19850 219a746.46 c572d57210aBonesteel, Georgia.10aMore lap quilting with Georgia Bonesteel.0 aBirmingham, Ala. :bOxmoor House,cc1985. a131 p. :bill. (some col.) ;c29 cm. aIncludes index.0 aBooklist. aTakes the reader step-by-step through planning a quilt, transferring templates, and piecing blocks.2 aYoung Adult. 0aQuilting. 0aQuiltingxPatterns. 7aQuilting. aLVLcNFk746.46 Mo bMAINp31000000023509r10.75u5170u102800849 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000200013424501340015426000460028830000350033450400670036965000220043665000330045865000380049194200220052995200440055150346LVL20030524130644.0950518s1995 maua b 00110 eng a95004873 a020140768X a 95004873 c573d573 a618.2 Pr10aProfet, Margie.10aProtecting your baby-to-be :bpreventing birth defects in the first trimester /cMargie Profet ; illustrations by Mary Krikorian.0 aReading, Mass. :bAddison-Wesley,cc1995. aviii, 312 p. :bill. ;c22 cm. aIncludes bibliographical references: p. ([291]-301) and index. 0aMorning sickness. 0aPregnancyxTrimester, First. 0aAbnormalities, HumanxPrevention. aLVLcNFk618.2 Pr bMAINp32000000060137r11.54u5171u102900482 2200181 450000100060000000300040000600500170001000800410002702000150006809000130008309200110009610000310010724500400013826000320017830000220021094200250023295200430025771403LVL19990404000000.0931222s19xx xxu 00010 eng d a0441102662 c574d574 aSF Dic10aDickson, Gordon R.,d1923-10aChantry Guild /cGordon R. Chantry.0 aNew YorkbACE Bookscc1988. a423p.bpa.c17cm. aLVLcSCIkSF Dickson bMAINp31000000010204r4.50u5173u103000364 2200145 450000100060000000300040000600500170001000800410002701000130006809000130008110000190009424500430011394200250015695200370018136309LVL19990319000000.0941224s19uu 000 0 eng d a63010175 c575d5751 aMiller, Shane.14aThe Romans: in the days of the empire. aLVLcJNFkJNF 937 Mi bMAINp32000000012620u5174u103100695 2200253 450000100060000000300040000600500170001000800390002701000130006602000220007903500140010104000180011505000250013308200160015809000130017410000320018724500630021926000520028226300100033430000110034450000200035594200230037595200430039843328LVL19990313000000.0880217c19881987nyu 000 1 eng a88005133 a0452261376 (pbk.) a 88005133 aDLCcDLCdDLC10aPS3505.A59bA83 198800219a813/.54 c576d5761 aCapote, Truman,d1924-1984.10aAnswered prayers :bthe unfinished novel /cTruman Capote. aNew York :bNew American Library,c1988, c1987. a8809. ap. cm. a"A Plume book." aLVLcAFkAF Capote bMAINp32000000022454r4.69u5175u103200779 2200229 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200150011210000320012724500440015925000280020326000440023130000510027544000150032650001410034194200250048295200420050750347LVL20030123145614.0960130r19951994nyuaf 00011 eng d a0671537539 anpl96000277 c577d577 aSF Dillard10aDillard, J. M.q(Jeanne M.)10aGenerations /ca novel by J.M. Dillard. aSpecial collector's ed.0 aNew York :bPocket Books,c1995, c1994. a290, [8] p. of plates :bill. ;c18 cm. ;dpa. 0aStar Trek. aBased on Star Trek "Generations". Story by Rick Berman & Ronald D. Moore & Brannon Braga. Screenplay by Ronald D. Moore & Brannon Braga. aLVLcSCIkSF Dillard bLB2p37000000016211r5.99u5176u103300743 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000230013624500660015926000360022530000360026165000500029765000420034794200240038995200440041395200440045750348LVL19990220000000.0951020s1996 gaua 00010deng a95042484 a1570362289 a 95042484 c578d578 a781.642 Oe10aOermann, Robert K.10aAmerica's music :bthe roots of country /cby Robert Oermann.0 aAtlanta :bTurner Pub.,cc1996. a240 p. :bill. ;c28 cm. ;dpa. 0aCountry musiciansxQuotations.zUnited States 0aCountry musicxHistory and criticism. aLVLcNFk781.642 Oe bMAINp32000000065273r14.97u5178u1034 bMAINp31000000060468r14.97u5179u103500494 2200181 450000100060000000300040000600500170001000800410002702000150006809000130008309200170009610000230011324500380013626000430017430000260021794200260024395200430026971405LVL19990404000000.0950307s19xx xxu 00010 eng d a0373059051 c579d579 aAF Delacorte10aDelacorte, Shawna.10aMiracle baby /cShawna Delacorte.0 aNew York :bSilhouette Books ;cc1995. a184p. ;bpa. ;c17cm. aLVLcAFkAF Delacorte bMAINp31000000029711r2.99u5180u103601675 2200433 450000100060000000300040000600500170001000800390002701000170006602000250008303500160010803900180012404000200014204300120016205000240017408200170019809000130021510000240022824501090025226000320036130000300039351000320042351000480045551000140050352001590051752100340067652100090071065000840071965000770080365000760088065000750095665000110103165000260104265000340106865000400110265000260114294200300116895200430119836311LVL19990319000000.0850618s1986 nyuc j 000 0 eng a85012395 /AC a0399212434 :c$11.95 aflb012625040 a2b3c3d3e3 aDLCcDLCdICrlF an-us---0 aHQ1073.3.bR53 19860 219a155.9/37 c580d5801 aRichter, Elizabeth.10aLosing someone you love :bwhen a brother or sister dies : text and photography /cby Elizabeth Richter. aNew York :bPutnam,cc1986. a80 p. :bports. ;c24 cm.0 aChildren's Catalog (Wilson)0 aJunior High School Library Catalog (Wilson)0 aBooklist. aSixteen young people ranging in age from ten to twenty-four describe the fears, sorrow, and other emotions they experienced when a brother or sister died.0 a5.9bFollett Library Book Co.2 a5-8. 0aDeathxPsychological aspectsxCase studiesxJuvenile literature.zUnited States 0aDeathxSocial aspectsxCase studiesxJuvenile literature.zUnited States 0aBrothers and sistersxCase studiesxJuvenile literature.zUnited States 0aBereavementxPsychological aspectsxCase studiesxJuvenile literature. 1aDeath. 1aBrothers and sisters. 7aDeathxPsychological aspects. 7aBereavementxPsychological aspects. 7aBrothers and sisters. aLVLcJNFkJNF 155.937 RIC bMAINp32000000021470r7.77u5181u103700918 2200289 450000100060000000300040000600500170001000800390002701000190006602000150008503500160010004000200011605000290013608200120016509000130017710000310019024500610022125000120028226000510029430000290034551000290037451000210040352001240042452100170054894200260056595200370059143330LVL19990313000000.0800502s1980 nyub 00011 eng a80007943 //r82 a0151353387 aflb01258201 aDLCcDLCdICrlF0 aPR9199.3.S7876bG48 1980 a813/.54 c581d58110aStevenson, William,d1925-14aThe ghosts of Africa :ba novel /cby William Stevenson. a1st ed.0 aNew York :bHarcourt Brace Jovanovich,cc1980. a400 p. :bmaps ;c24 cm.0 aFiction Catalog (Wilson)0 aLibrary Journal. aA German military commander in East Africa during World War I builds a force to oppose the British and white supremacy.2 aYoung Adult. aLVLcAFkAF Stevenson bMAINp32000000022982u5182u103800698 2200229 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200150011210000260012724500850015326000360023830000490027450000240032365000100034794200250035795200430038295200430042550349LVL19990301000000.0960821s1993 nyuaf j 00010 eng d a0590471120 anpl96001663 c582d582 aJNF 818 Sa10aSanderson, Jeannette.10aDog to the rescue :bseventeen true tales of dog heroism /cJeannette Sanderson.0 aNew York :bScholastic,cc1993. a87, [8] p. of plates :bil. ;c20 cm. ;dpa. a"Apple Paperbacks." 1aDogs. aLVLcJNFkJNF 818 Sa bMAINp32000000066466r2.95u5183u1039 bMAINp31000000061380r2.95u5184u104000317 2200133 450000100060000000300040000600500170001000800410002709000130006810000160008124500220009794200220011995200420014157368LVL20010801135611.0950324s19uu 000 0 eng d c583d5831 aWayne, Roy.10aTrail to Mesilla. aLVLcWESkW Wayne bLB2p37000000017977r6.95u5185u104100830 2200277 450000100060000000300040000600500170001000800390002701000130006602000250007903900180010404000130012205000240013508200160015909000130017510000270018824500530021525000120026826000380028030000470031860000410036560000270040661100540043394200210048795200440050864387LVL19990217000000.0840524s1984 nyuaf 00011 eng a83040622 a0394538714 :c$19.950 a2b3c3d3e3 aDLCcDLC0 aPS3570.H47bF7 19840 219a813/.54 c584d584 0aThom, James Alexander.10aFrom sea to shining sea /cJames Alexander Thom. a1st ed.0 aNew York :bVillard Books,c1984. a931 p., [3] p. of plates :bill. ;c22 cm.10aClark, William,d1770-1838xFiction.30aClark familyxFiction.20aLewis and Clark Expeditiond(1804-1806)xFiction. aLVLcAFkAF Thom bMAINp31000000018056r11.48u5186u104200945 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200110012110000270013224500390015925000120019826000450021030000210025565000480027665000300032465100510035494200210040595200440042695200430047095200430051395200440055695200430060043331LVL19990313000000.0951026s1996 nyu 00011 eng a95026164 a0425154688 a 95026164 c585d585 aM Coel10aCoel, Margaret,d1937-14aThe ghost walker /cMargaret Coel. a1st ed.0 aNew York :bBerkley Prime Crime,cc1996. a243 p. ;c23 cm. 0aIndians of North AmericaxFiction.zWyoming 0aArapaho IndiansxFiction. 0aWind River Indian Reservation (Wyo.)xFiction. aLVLcMYSkM Coel bMAINp32000000068119r12.95u5187u1043 bLB1p36000000005037r12.95u5188u1044 bLB2p34000000014754r12.95u5189u1045 bMAINp31000000062751r12.95u5190u1046 bLB1p33000000027119r12.95u5191u104700781 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000330013424500580016726000510022530000210027650400510029760000260034865000420037494200230041695200440043995200440048350350LVL19990223000000.0961104s1996 gaua b s00110beng a96006350 a0820318620 a 96006350 c586d586 aB Carter10aMorris, Kenneth Earl,d1955-10aJimmy Carter, American moralist /cKenneth E. Morris. aAthens :bUniversity of Georgia Press,cc1996. a397 p. ;c24 cm. aIncludes bibliographical references and index.10aCarter, Jimmy,d1924- 0aPresidentsxBiography.zUnited States aLVLcBIOkB Carter bMAINp32000000067724r17.97u5192u1048 bMAINp31000000062473r17.97u5193u104901143 2200337 450000100060000000300040000600500170001000800390002701000170006602000250008303500160010804000250012405000210014908200170017009000130018710000210020024500340022126000430025530000280029844000280032650000200035450400250037452001490039952100090054865000530055765000360061094200290064695200430067595200440071895200430076243332LVL20010804005301.0890413s1989 caua j b 00110 eng a89009382 /AC a1560061006 :c$10.95 aflb01453804 aDLCcDLCdDLCdICrlF00aTD792.bO26 198900220a363.72/8 c587d58710aO'Connor, Karen.10aGarbage /cby Karen O'Connor.0 aSan Diego, CA :bLucent Books,cc1989. a80 p. :bill. ;c23 cm. 0aLucent overview series. aIncludes index. aBibliography: p. 75. aExamines the dumping of garbage in oceans, on land, in the air, and in space and suggests possible solutions to this problem of waste pollution.2 a5-8. 0aRefuse and refuse disposalxJuvenile literature. 0aPollutionxJuvenile literature. aLVLcJNFkJNF 363.72 O'C bLB2p37000000001577r10.11u5194u1050 bMAINp32000000028259r10.11u5195u1051 bLB1p33000000001245r10.11u5197u105200399 2200157 450000100060000000300040000600500170001000800410002702000150006809000130008309200140009624500330011030000310014394200240017495200430019857370LVL19990220000000.0910712s19xx xxu 00010 eng d a0590334492 c588d588 aKit Three14aThe three billy goats Gruff. a1 Kit; 1 cassette; 1 book. aLVLcKITkKit Three bMAINp31000000023249r5.95u5198u105300674 2200229 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200120011010000230012224500400014526000380018530000280022344000460025194200210029795200420031895200420036095200420040264389LVL19990222000000.0910405s1990 nyu 00011 eng a0553284460 aonv90001031 c589d589 aPB Ross10aRoss, Dana Fuller.10aOklahoma pride /cDana Fuller Ross.0 aNew York :bBantam Books,cc1990. a309 p. ;c18 cm. ;dpa. 4aThe Holts: an American dynasty ;vvol. 2. aLVLcAFkAF Ross bLB2p37000000001293r2.66u5199u1054 bLB2p34000000003951r2.66u5201u1055 bLB1p33000000008375r2.66u5203u105600728 2200241 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200120011210000200012424500520014426000380019630000280023444000330026294200210029595200420031695200430035895200420040195200430044364390LVL20020226173505.0911126s1991 nyu j 00011 eng d a0671730509 aonv90001688 c590d590 aJ Keene10aKeene, Carolyn.14aThe mystery of the jade tiger /cCarolyn Keene.0 aNew York :bPocket Books,cc1991. a149 p. ;c19 cm. ;dpa. 0aNancy Drew Mysteries ;v104. aLVLcJFkJ Keene bLB2p37000000008008r3.50u5204u1057 bMAINp35000000002420r2.03u5205u1058 bLB2p34000000007229r2.03u5206u1059 bMAINp31000000037507r2.03u5207u106001160 2200361 450000100060000000300040000600500170001000800390002701000230006603500160008904000200010505000200012508200080014509000130015310000330016624500690019926000680026830000260033649000230036251000320038551000520041751000210046952000870049052100340057752100090061165000220062065000220064265000220066465000220068670000190070894200280072795200430075536315LVL19990319000000.0790126s1958 nyua j 000 0 eng a58009018 /L/AC/r79 aflb00391600 aDLCcDLCdICrlF0 aPZ8.3.M1325bFl a[E] c591d5911 aMcClintock, Marshall,d1906-12aA fly went by,cby Mike McClintock. Illustrated by Fritz Siebel. a[New York]bBeginner Books; distributed by Random Housec[1958] a62 p.billus.c24 cm.0 aBeginner books, 3.0 aChildren's Catalog (Wilson)0 aElementary School Library Collection (Bro-Dart)0 aLibrary Journal. aA sheep with its foot caught in a tin can sets off a chase with a fly in the lead.0 a2.5bFollett Library Book Co.2 aK-3. 1aStories in rhyme. 1aAnimalsxFiction. 7aAnimalsxFiction. 7aStories in rhyme.10aSiebel, Fritz. aLVLcEASYkE McClintock bMAINp32000000005585r4.79u5209u106101629 2200457 450000100060000000300040000600500170001000800390002701000210006602000150008703500160010204000200011805000240013808200190016209000130018110000290019424501050022326000390032830000400036750000200040751000320042751000480045951000430050752001790055052100340072952100090076365000410077265000370081365000470085065000200089765000160091765000230093365000270095665000210098365000230100465000270102765000180105470000270107294200280109995200440112743334LVL20000912072526.0880212s1988 nyua j 00110 eng a88002871 /AC/r89 a0899194559 aflb01634504 aDLCcDLCdICrlF0 aQL696.G84bP38 19880 219a639.9/7831 c592d59210aPatent, Dorothy Hinshaw.14aThe whooping crane :ba comeback story /cby Dorothy Hinshaw Patent ; photographs by William MuÄnoz.0 aNew York :bClarion Books,cc1988. a88 p. :bill. (some col.) ;c24 cm. aIncludes index.0 aChildren's Catalog (Wilson)0 aJunior High School Library Catalog (Wilson)0 aChild Study Children's Book Committee. aTraces the forty-year-old and ongoing attempt to save the endangered whooping crane from extinction, focusing on efforts at wildlife refuges and the captive breeding program.0 a5.7bFollett Library Book Co.2 a5-8. 0aWhooping cranexJuvenile literature. 0aRare birdsxJuvenile literature. 0aBirds, Protection ofxJuvenile literature. 1aWhooping crane. 1aRare birds. 1aBirdsxProtection. 1aWildlife conservation. 7aWhooping cranes. 7aBirdsxProtection. 7aWildlife conservation. 7aRare animals.11aMuÄnoz, William,eill. aLVLcJNFkJNF 639.9 PAT bMAINp32000000027774r13.46u5210u106200522 2200193 450000100060000000300040000600500170001000800410002701000130006802000150008109000130009610000210010924500450013026000400017530000280021570000200024394200220026395200430028564391LVL19990217000000.0930415s19xx xxu 00010 eng d a85007701 a0027772004 c593d59310aRylant, Cynthia.10aEvery living thing /cby Cynthia Rylant.0 aNew York :bBradbury Press,cc1985. a81 p. :billus.c21 cm.11aSchindler, S.D. aLVLcJFkJ Rylant bMAINp31000000007413r7.10u5211u106301143 2200313 450000100060000000300040000600500170001000700100002700800410003702000150007803500160009303700200010909000130012909200190014224501350016126000610029630000550035751100780041252001220049052100140061253800150062665000180064165000190065970000320067870000240071070000260073494200260076095200430078643335LVL20000126000000.0vfucbahom951026p19881958cau110 g vleng d a0792106288 anav95000305 a5806bParamount c594d594 aAV House- boat00aHouseboatcParamount Pictures and Scribe Productions ; produced by Jack Rose ; directed by Melville Shavelson.h[videorecording] /0 aHollywood, Calif. :bParamount Home Video,c1988, c1958. a1 videocassette (110 min.) :bsd., col. ;c1/2 in.1 aCary Grant, Sophia Loren, Martha Hyer, Harry Guardino, Eduardo Ciannelli. aA widowed government attorney with three unruly kids hires a beautiful woman to be a governess in his houseboat home. aGeneral.. aVHS Hi-fi. 0aComedy films. 0aFeature films.1 aShavelson, Melville,d1917-1 aGrant, Cary,d1904-1 aLoren, Sophia,d1934- aLVLcAVkAV Houseboat bMAINp32000000100192r9.99u5212u106400409 2200157 450000100060000000300040000600500170001000800410002702000150006809000130008310000100009624500270010694200300013395200440016395200440020750354LVL19971129000000.0940831s19xx xxu 00010 eng d a0878516328 c595d595 aAuto.10aAuto repair 1981-1987. aLVLcREFkREF 629.287 AUT bMAINp32000000017389r12.39u5213u1065 bMAINp35000000000923r12.39u5214u106600327 2200133 450000100060000000300040000600500170001000800410002709000130006810000310008124500230011294200210013595200370015657373LVL19990220000000.0950323s19uu 000 0 eng d c596d5961 aEden, Dorothy,d1912-1982.10aWaiting for Willa. aLVLcAFkAF Eden bMAINp31000000013491u5215u106700696 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000350013624501180017125000200028926000460030930000210035565000220037694200240039895200440042264392LVL19990217000000.0891003r19901988meu d 00011 eng a89028552 a0896219321 a 89028552 c597d597 aLP Hammett1 aHammett, Dashiell,d1894-1961.10aWoman in the dark :ba novel of dangerous romance /cDashiell Hammett ; with an introduction by Robert B. Parker. aLarge print ed. aThorndike, Me. :bThorndike Press,c1990. a128 p. ;c22 cm. 0aLarge type books. aLVLcLPkLP Hammett bMAINp31000000043658r15.95u5216u106800339 2200133 450000100060000000300040000600500170001000800410002709000130006810000210008124500400010294200210014295200420016371411LVL20000822000000.0950323s19uu 000 0 eng d c598d598 aMason, Miriam E.10aCaroline and her kettle named Maud. aLVLcJFkJ Mason bLB2p37000000012642r1.50u5217u106900734 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200190012110000230014024500430016326000480020630000350025452000860028965000220037565000250039794200280042295200420045043336LVL20020108170105.0920309c19821976nyua j 00011 eng a81084546 a0448123177 a 81084546 c599d599 aE Har- greaves10aHargreaves, Roger.10aHippo leaves home /cRoger Hargreaves.0 aNew York :bGrosset & Dunlap,c1982, c1976. a[28] p. :bcol. ill. ;c25 cm. aTired of being taken for granted by Potto and Mouse, Hippo decides to leave home. 1aAnimalsxFiction. 1aFriendshipxFiction. aLVLcEASYkE Hargreaves bLB2p37000000006636r1.98u5218u107000672 2200253 450000100060000000300040000600500170001000800390002701000190006602000250008503500200011003900180013004000130014805000260016108200160018709000130020310000260021624500340024225000120027626000430028830000210033194200230035295200430037550355LVL20020110111007.0841127s1985 nyu 000 1 eng a84026012 //r86 a0385230540 :c$12.95 a 84026012 //r860 a2b3c3d3e3 aDLCcDLC0 aPS3563.A2932bD3 19850 219a813/.54 c600d6001 aKelton, Elmer,d1926-10aDark thicket /cElmer Kelton. a1st ed. aGarden City, N.Y. :bDoubleday,c1985. a182 p. ;c22 cm. aLVLcAFkAF Kelton bMAINp31000000029473r4.89u5221u107100640 2200229 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200130011210000250012524500470015025000200019726000420021730000210025965000220028094200220030295200430032495200430036764393LVL20020913092925.0931206s1992 nyu d 00011 eng d a0671792334 anpl93001601 c601d601 aLP Clark aClark, Mary Higgins.10aAll around the town /cMary Higgins Clark. aLarge print ed. aNew York :bSimon & Schuster,cc1992. a480 p. ;c25 cm. 0aLarge type books. aLVLcLPkLP Clark bMAINp31000000045781r3.50u5222u1072 bLB1p33000000049325r10.00u5223u107300872 2200277 450000100060000000300040000600500170001000800390002701000130006602000250007903500140010403900180011804000130013604300120014905000230016108200210018409000130020510000240021824501340024226000420037630000410041850400260045961000430048594200220052895200440055036318LVL20020909080352.0840411s1984 nyua b 000 0 eng a84050777 a050001342X :c$24.95 a 840507770 a2b3c3d3e3 aDLCcDLC ae-fr---0 aUA703.L5bY68 19840 219a355.3/5/0944 c602d6021 aYoung, John Robert.10aFrench Foreign Legion :bthe inside story of the world-famous fighting force /cJohn Robert Young ; introduction by Len Deighton. aNew York :bThames and Hudson,c1984. a212 p. :bill. (some col.) ;c28 cm. aBibliography: p. 209.10aFrance.bArmÂee.bLÂegion ÂetrangÁere. aLVLcNFk355.3 Yo bMAINp32000000021607r14.70u5225u107401339 2200433 450000100060000000300040000600500170001000800390002701000170006602000150008303500160009804000200011405000230013408200120015709000130016910000360018224500350021825000210025326000350027430000400030951000320034951000140038151000280039552001340042352100340055752100090059165000200060065000250062065000190064565000220066465000200068665000250070665000190073165100210075065100210077194200270079295200430081995200430086243337LVL19990313000000.0880208r1988 nyua j 00011 eng a88001736 /AC a0027746615 aflb01663302 aDLCcDLCdICrlF0 aPZ7.P6335bAu 19880 219a[E] c603d60310aPinkwater, Daniel Manus,d1941-10aAunt Lulu /cDaniel Pinkwater. a1st American ed.0 aNew York :bMacmillan,cc1988. a[32] p. :bcol. ill. ;c19 x 24 cm.0 aChildren's Catalog (Wilson)0 aBooklist.0 aSchool Library Journal. aTired of working as a librarian in Alaska, Aunt Lulu takes her sled and her fourteen Huskies and moves to Parsippany, New Jersey.0 a3.1bFollett Library Book Co.2 aK-3. 1aAuntsxFiction. 1aLibrariansxFiction. 1aDogsxFiction. 1aHumorous stories. 7aAuntsxFiction. 7aLibrariansxFiction. 7aDogsxFiction. 1aAlaskaxFiction. 7aAlaskaxFiction. aLVLcEASYkE Pinkwater bMAINp32000000022752r7.64u5226u1075 bMAINp31000000003173r7.69u5227u107601022 2200325 450000100060000000300040000600500170001000800410002701000130006802000150008103500160009604000240011208200080013609000130014410000170015724501040017426000560027830000230033444000320035752000870038952100340047652100090051065000190051965000240053865000240056265000190058670000250060594200230063095200430065357375LVL19990220000000.0890916c19871977mnua j 00011 engsd a77074679 a0871917815 aflb00013310 aICrlFcICrlFdIMchF14a[E] c604d60410aLogan, Dick.14aThe egg /cDick Logan and the boys and girls in Marilyn Hargis' class ; [pictures by] Judy Coldren.0 aMankato, Minn. :bCreative Education,c1987, c1977. a30 p. :bcol. ill. 0aThunder the dinosaur books. aA group of children and animals discover a huge egg which hatches into a dinosaur.0 a2.0bFollett Library Book Co.2 aK-3. 1aEggsxFiction. 1aDinosaursxFiction. 7aDinosaursxFiction. 7aEggsxFiction.11aColdren, Judy,eill. aLVLcEASYkE Logan bMAINp31000000002849r9.95u5228u107701077 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200100012110000160013124501130014726000360026030000300029644000280032650000230035452001030037765000390048065000210051970000280054094200210056895200430058995200440063295200440067695200430072064394LVL19990217000000.0941005s1995 nyua j 00011 eng a94039721 a0590265849 a 94039721 c605d605 aE Kim10aKim, Grace.10aShe sells seashells by the seashore :ba tongue twister story /cby Grace Kim ; illustrated by Patti Hammel.0 aNew York :bScholastic,cc1995. a[32] p. :bill. ;c23 cm. 0aHello reader!pLevel 3. a"Cartwheel Books." aPeter Piper and Silly Sally visit Betty Botter, reciting well-known tongue twisters along the way. 1aCharacters in literaturexFiction. 1aTongue twisters.11aHammel, Patricia,eill. aLVLcEASYkE Kim bLB1p36000000003630r11.95u5229u1078 bMAINp35000000001767r11.95u5230u1079 bMAINp31000000062855r11.95u5231u1080 bLB1p33000000027198r11.95u5232u108100951 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000270013424500780016125000120023926000370025130000280028849000230031652002340033965000220057370000250059594200220062095200430064236319LVL19990319000000.0880907s1989 maua j 00011 eng a88029761 a0316501476 a 88029761 c606d606 aJ Koller1 aKoller, Jackie French.10aImpy for always /cby Jackie French Koller ; illustrated by Carol Newsom. a1st ed. aBoston :bLittle, Brown,cc1989. a57 p. :bill. ;c21 cm.00aSpringboard books. aEight-year-old Impy, dismayed at the changes she sees in her rapidly maturing twelve-year-old cousin Christina, stubbornly tries to continue their former sharing of dolls and funny nicknames, but Christina persists in growing up. 1aCousinsxFiction.11aNewsom, Carol,eill. aLVLcJFkJ Koller bMAINp32000000035813r6.95u5234u108200884 2200253 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200130011010000170012324500500014026000490019030000280023952001780026765000350044565000300048065000300051065000250054094200220056595200430058757376LVL19990220000000.0960629r19951993nyu 00011 eng a0440219744 anpl96001223 c607d607 aYA Blume10aBlume, Judy.10aHere's to you, Rachel Robinson /cJudy Blume.0 aNew York :bLaurel-Leaf Books,c1995, c1993. a196 p. ;c18 cm. ;dpa. aExpelled from boarding school, Charles' presence at home proves disruptive, especially for sister Rachel, a gifted seventh grader juggling friendships and school activities. 1aBrothers and sistersxFiction. 1aFamily problemsxFiction. 1aGifted childrenxFiction. 1aFriendshipxFiction. aLVLcYAkYA Blume bMAINp31000000060665r4.50u5236u108300633 2200217 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200170011210000230012924500840015226000400023630000310027660000200030765000180032794200270034595200430037236320LVL19990319000000.0930122s1964 nyua j 00010beng d a0553248987 aonv90003916 c608d608 aJNF 970.3 Kr1 aKroeber, Theodora.10aIshi, last of his tribe /cby Theodora Kroeber; illustrations by Ruth Robbins.. aNew York :bBantam Books,cc1964. . a213 p. :bill. ;c18 cm.;.00aIshi,dd. 1916. 0aYahi Indians. aLVLcJNFkJNF 970.3 Kr bMAINp32000000036892r2.10u5237u108400327 2200133 450000100060000000300040000600500170001000800410002709000130006810000280008124500260010994200210013595200370015664396LVL19990217000000.0950324s19uu 000 0 eng d c609d6091 aGrey, Zane,d1872-1939.14aThe Lone Star ranger. aLVLcAFkAF Grey bMAINp31000000029211u5238u108500711 2200241 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200120011010000210012224500460014326000450018930000260023444000320026065000500029265000400034265100220038294200220040495200430042650359LVL20000204000000.0960109s1994 nyu 00011 eng a0425144054 anpl96000060 c610d610 aM Crane10aCrane, Hamilton.10aMiss Seeton undercover /cHamilton Crane.0 aNew York :bBerkley Prime Crime,cc1994. a265 p. ;c17 cm.dpa. 0aHeron Carvic's Miss Seeton. 0aSeeton, Miss (Fictitious character)xFiction. 0aWomen detectivesxFiction.zEngland 0aEnglandxFiction. aLVLcMYSkM Crane bMAINp32000000062031r4.99u5239u108600664 2200229 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000130011009200140012310000310013724500440016826000460021230000210025894200240027995200440030395200440034795200430039136322LVL19990319000000.0930322s1993 nyu 00011 eng d a92046655 a0385247931 a 92046655 c611d611 aSF Asimov10aAsimov, Isaac,d1920-1992.10aForward the foundation /cIsaac Asimov.0 aNew York :bFoundation/Doubleday,cc1993. a415 p. ;c24 cm. aLVLcSCIkSF Asimov bMAINp32000000038003r13.87u5240u1087 bMAINp31000000042368r13.87u5241u1088 bLB1p33000000015097r13.87u5242u108900818 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200110012110000250013224502060015726000400036330000290040365000480043294200200048095200440050095200440054443341LVL19990313000000.0920721s1992 nyua 00010 eng a92026054 a0688109349 a 92026054 c612d612 a747 St1 aStoddard, Alexandra.10aCreating a beautiful home :bfrom starting fresh to freshening up : inspiring ideas to help you turn your house into a warm and welcoming home /cAlexandra Stoddard ; illustrations by Stephen Freeburg. aNew York :bWilliam Morrow,cc1992. a229 p. :bill. ;c24 cm. 0aInterior decorationxPsychological aspects. aLVLcNFk747 St bMAINp32000000035936r14.46u5243u1090 bMAINp31000000041333r14.46u5244u109100365 2200145 450000100060000000300040000600500170001000800410002702000150006809000130008310000190009624500360011594200250015195200430017636323LVL19990319000000.0940910s19xx xxu 00010 eng d a0886775981 c613d61310aWilliams, Tad.10aTo Green Angel Tower /bPart 1. aLVLcAFkPB Williams bMAINp32000000050197r5.99u5245u109200732 2200229 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200140011210000250012624501270015126000400027830000350031865000190035370000220037294200230039495200430041795200420046036324LVL20020328115116.0951026s1995 mau 00010 eng d a0395711797 anpl95001416 c614d614 a813.09 Sm10aSmiley, Jane,d1949-14aThe best American short stories: 1995 :bselected from U.S. and Canadian magazines /cby Jane Smiley with Katrina Kenison.0 aBoston :bHoughton Mifflin,cc1995. axviii, 366 p. ;c21 cm. ;dpa. 0aShort stories.10aKenison, Katrina. aLVLcNFk813.09 Er bMAINp32000000060276r7.49u5246u1093 bLB2p34000000009949r7.49u5247u109401118 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000230013624500710015926000510023030000330028144000350031450000490034950000200039852002200041865000350063865000140067370000280068770000320071594200250074795200440077243343LVL19990313000000.0930130s1984 mnua j 00110 eng a84005760 a0822514591 a 84005760 c615d615 aJNF 635 Jo1 aJohnson, Sylvia A.10aPotatoes /cby Sylvia A. Johnson ; photographs by Masaharu Suzuki. aMinneapolis :bLerner Publications Co.,c1984. a47 p. :bcol. ill. ;c23 cm. 2aA Lerner natural science book. aAdaptation of: Jagaimo / by Masaharu Suzuki. aIncludes index. aDescribes the development of the potato, including information on planting seed potatoes, sprouting, the growth of the plant and its underground tubers, and the role played by tubers in the life of the potato plant. 0aPotatoesxJuvenile literature. 1aPotatoes.11aSuzuki, Masaharu,eill.11aSuzuki, Masaharu.tJagaimo. aLVLcJNFkJNF 635 Jo bMAINp32000000037037r13.46u5249u109500638 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200110012110000210013224500810015326000530023430000450028765000230033294200210035595200440037650362LVL20030605130908.0710714s1971 nyuac 00110 eng a72145412 a0823049116 a 72145412 c616d616 a792 Bu10aBuchman, Herman.10aStage makeup /cHerman Buchman; demonstration photographs by Susan E. Meyer.0 aNew York :bWatson-Guptill Publications,cc1971. a191 p. :bill. ; ports. ;c28 cm. ;dpa. 0aTheatrical makeup. aLVLcNFk792 BUC bMAINp32000000024666r11.77u5250u109600347 2200145 450000100060000000300040000600500170001000800410002702000150006809000130008310000150009624500200011194200260013195200440015757381LVL20020916124634.0920222s19xx xxu 00010 eng d a070890629X c617d617 aCookridge.10aOrient express. aLVLcNFkLP 385.22 Co bMAINp31000000012067r12.00u5251u109700528 2200193 450000100060000000300040000600500170001000800390002701000200006604000070008605000190009309000130011210000340012524500480015926000340020730000250024194200250026695200430029171419LVL19990404000000.0751223s1922 nyu 00011 eng a22012469 //r842 cWa0 aPZ3.C4637bSe2 c618d61810aChristie, Agatha,d1890-1976.14aThe secret adversary /cby Agatha Christie.0 aNew York,bDodd, Mead,c1922. aviii, 330 p.c20 cm. aLVLcMYSkM Christie bMAINp31000000027019r2.29u5252u109801393 2200337 450000100060000000300040000600500170001000700090002700800410003603500160007709000130009324500860010626000420019230000560023444000280029050000300031850501530034852100140050153800160051565000220053170000640055370000720061770000500068970000750073994200240081495200440083895200430088295200430092595200440096895200430101236325LVL20000911201514.0vd cbaho930426s1989 ctu028 b 0 0vaeng d avid93000066 c619d61900aSmile for Auntie and other storiesc[compiled by] CC Studios.h[videorecording] /0 aWeston, Ct. :bCC Home Video,cc1989. a1 videocassette ; (28 min.) :bsd., col. ;c1/2 in. 0aChildren's Circle ;v3. aAnimation and still film.0 aSmile for Auntie / by D. Paterson -- Make way for ducklings / by R. McCloskey -- Snowy day / by E.J. Keats -- Wynken, Blynken and Nod / by E. Field. aAges 3-8. aVHS Format. 0aChildren's films.11aPaterson, Diane,d1946-hVideorecording.tSmile for Auntie.11aMcCloskey, Robert,d1914-hVideorecording.tMake way for ducklings.11aKeats, Ezra JackhVideorecording.tSnowy day.11aField, Eugene,d1850-1895.hVideorecording.tWynken, Blynken, and Nod. aLVLcAVJkAVJ Smile bMAINp32000000082792r14.95u5253u1099 bLB1p36000000005590r19.95u5254u1100 bLB2p34000000012043r29.95u5255u1101 bMAINp31000000045313r14.95u5256u1102 bMAINp32000000038542r0.15u5257u110300688 2200229 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200140011210000220012624500710014826000380021930000280025744000290028570000190031494200230033395200600035695200420041636326LVL20021220144753.0930921s1993 nyu j 00011 eng d a0553298534 anpl93001149 c620d620 aYA Pascal10aPascal, Francine.14aThe arrest /ccreated by Francine Pascal; written by Kate William.0 aNew York :bBantam Books,cc1993. a219 p. ;c18 cm. ;dpa. 0aSweet Valley High ;v96.10aWilliam, Kate. aLVLcYAkYA Pascal bMAINdLB2p32000000042288r3.50u5258u1104v2003-09-01 bLB1p33000000016499r3.50u5260u110500723 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009403900180010804000130012605000240013908200170016309000130018010000260019324500320021925000210025126000300027230000210030250000280032350000260035194200250037795200430040250364LVL20021002165336.0840827r1985 nyu 000 1 eng a84048500 a0394535251 a 840485000 a2b3c3d3e3 aDLCcDLC0 aPR6054.E37bM4 19850 219a823/.914 c621d6211 aDeighton, Len,d1929-10aMexico set /cLen Deighton. a1st American ed. aNew York :bKnopf,c1985. a373 p. ;c22 cm. aSequel to: Berlin game. aSequel: London match. aLVLcAFkAF Deighton bMAINp32000000003714r9.71u5261u110600543 2200217 450000100060000000300040000600500170001000800390002701000130006604000130007905000330009208200130012509000130013810000280015124500200017926000300019930000190022935000100024894200240025895200430028257383LVL19990220000000.0701009s1970 nyu 00001 eng a76121691 aDLCcDLC0 aPZ4.S5439aPS3569.H3927bNak a813/.5/4 c622d622 0aSheldon, Sidney,d1917-14aThe naked face.0 aNew York,bMorrow,c1970. a214 p.c22 cm. a5.95. aLVLcAFkAF Sheldon bMAINp31000000019097r3.97u5262u110700882 2200277 450000100060000000300040000600500170001000800390002701000170006604000130008305000190009608200080011509000130012310000200013624500590015626000390021530000310025435000100028549000370029552001350033265000330046765000120050070000240051294200250053695200430056171421LVL19990404000000.0691202s1969 ilua j 00010 eng a68013038 /AC aDLCcDLC0 aPZ10.W7489bFi a597 c623d62310aWoods, Loren P.10aFishesc[by] Loren P. Woods. Illustrated by Tom Dolan.0 aChicago,bFollett Pub. Co.c[1969] a30 p.bcol. illus.c21 cm. a1.00.0 aFollett beginning science books. aA brief introduction to ninety-nine freshwater and saltwater fish. Includes drawings in color with size and range of the specimen. 0aFishesxJuvenile literature. 1aFishes.11aDolan, Tom,eillus. aLVLcJNFkJNF 597 Wo bMAINp31000000007772r2.31u5263u110801044 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000190013624500850015526000380024030000280027844000240030652001120033065000260044265000220046865000390049065100260052970000230055594200240057895200430060295200430064595200420068836327LVL19990319000000.0930804s1992 nyua j 00011 eng a91027862 a0670843806 a 91027862 c624d624 aJ Scieszka10aScieszka, Jon.14aThe good, the bad, and the goofy /cby Jon Scieszka ; illustrated by Lane Smith.0 aNew York, N.Y. :bViking,cc1992. a70 p. :bill. ;c22 cm. 4aThe Time warp trio. aThe Time Warp Trio find themselves in the Wild West of yesteryear, rubbing elbows with cowboys and Indians. 1aTime travelxFiction. 1aCowboysxFiction. 1aIndians of North AmericaxFiction. 1aWest (U.S.)xFiction.11aSmith, Lane,eill. aLVLcJFkJ Scieszka bMAINp32000000041194r6.60u5264u1109 bMAINp31000000044047r6.60u5265u1110 bLB1p33000000016078r6.60u5266u111100511 2200193 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200130011210000210012524500340014626000490018030000230022994200220025295200430027443346LVL19990313000000.0930513c19901988nyu j 00011 eng d a0440205794 anpl93000061 c625d625 aJ Rylant1 aRylant, Cynthia.12aA kindness /cCynthia Rylant. aNew York :bLaurel-Leaf Books,c1990, c1988. a117 p. ;c18 cm.;. aLVLcJFkJ Rylant bMAINp32000000039430r3.25u5267u111200995 2200265 450000100060000000300040000600500170001000800390002701000220006604000130008805000190010108200230012009000130014310000190015624500710017526000300024630000310027644000350030752001780034260000690052060000490058970000270063894200210066595200430068657384LVL19990220000000.0850925s1968 nyua j 00000beng a68015076 /AC/r852 aDLCcDLC0 aE467.1.L4bR55 a973.73/0924aBa92 c626d62610aRikhoff, Jean.10aRobert E. Lee, soldier of the South.cIllustrated by Tran Mawicke.0 aNew York,bPutnamc[1968] a96 p.bcol. illus.c24 cm. 3aAn American pioneer biography. aA biography of the general who turned down command of the Union armies because he felt he could not fight against his own state, and became leader of the Confederate forces.10aLee, Robert E.d1807-1870q(Robert Edward)xJuvenile literature.11aLee, Robert E.d1807-1870.q(Robert Edward),11aMawicke, Tran,eillus. aLVLcJNFkJB LEE bMAINp31000000009585r3.76u5268u111300865 2200253 450000100060000000300040000600500170001000800390002701000130006602000170007903500160009609000130011209200150012510000250014024500710016525000210023626000530025730000400031052001210035065000370047170000340050894200260054295200430056857385LVL19990220000000.0770706r1977 nyua j 00011 eng a76009944 a0878880984 : aflb00741702 c627d627 aE Fanshawe10aFanshawe, Elizabeth.10aRachel /cby Elizabeth Fanshawe ; illustrated by Michael Charlton. a1st American ed.0 aScarsdale, N.Y. :bBradbury Press,c1977, c1975. a[29] p. :bcol. ill. ;c16 x 18 cm. aRachel, who needs the aid of a wheelchair, describes her daily activities at school and with her family and friends. 1aPhysically handicappedxFiction.10aCharlton, Michael,dfl. 1968- aLVLcEASYkE Fanshawe bMAINp31000000002126r3.71u5269u111400779 2200265 450000100060000000300040000600500170001000800390002701000130006602000240007904000130010305000190011608200150013509000130015010000180016324500990018126000470028030000330032750000200036050400260038065000200040665000250042694200250045195200370047664404LVL19990217000000.0780329s1978 vtua b 00110 eng a78006672 a0882661329 :c$4.95 aDLCcDLC0 aSB324.75.bR63 a635/.04/21 c628d62810aRogers, Marc.10aGarden way's Growing & saving vegetable seeds /cMarc Rogers ; illustrated by Polly Alexander.0 aCharlotte, Vt. :bGarden Way Pub.,cc1978. aiv, 140 p. :bill. ;c23 cm. aIncludes index. aBibliography: p. 140. 0aVegetable seed. 0aVegetable gardening. aLVLcNFk635.042 ROG bMAINp31000000024454u5270u111500925 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200170012110000290013824500480016726000580021530000280027344000210030150000270032250400510034952000940040065000100049465000160050494200270052095200440054795200440059143348LVL19990313000000.0910221s1991 wiua j b 00110 eng a91002682 a0836806867 a 91002682 c629d629 aJNF 636.7 Ka1 aKappeler, Markus,d1953-10aDogs, wild and domestic /cMarkus Kappeler. aMilwaukee :bGareth Stevens Children's Books,cc1991. a48 p. :bill. ;c25 cm. 0aAnimal families. aTranslation of: Hunde. aIncludes bibliographical references and index. aSurveys the dog family as a whole and describes the characteristics of individual breeds. 1aDogs. 1aDog breeds. aLVLcJNFkJNF 636.7 Ka bMAINp32000000040214r11.50u5271u1116 bMAINp31000000043560r11.50u5272u111701234 2200349 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009404000200011005000270013008200160015709000130017310000200018624500300020626000320023630000210026851000480028951000230033751000180036052002060037852100170058494200240060195200430062595200440066895200440071295200430075695200430079995200420084271424LVL20010821184639.0871201s1988 nyu 00011 eng a87033240 a0399133674 aflb00157514 aDLCcDLCdICrlF0 aPS3558.O3447bA86 19880 219a813/.54 c630d63010aHoffman, Alice.10aAt risk /cAlice Hoffman.0 aNew York :bPutnam,cc1988. a219 p. ;c24 cm.0 aSenior High School Library Catalog (Wilson)0 aALA Notable Books.0 aLJ Best Book. aAmanda, an eleven-year-old girl, contracts a disease. As her family and their friends and neighbors struggle to come to terms with the disease, ordinary people are transformed into heroes and heroines.2 aYoung Adult. aLVLcAFkAF Hoffman bLB2p37000000015345r15.95u5273u1118 bMAINp32000000021744r10.59u5274u1119 bMAINp32000000049487r10.68u5276u1120 bLB1p36000000004338r10.59u5277u1121 bLB2p34000000003194r10.68u5278u1122 bLB1p33000000001894r5.00u5280u112300734 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009409000130011009200160012310000290013924500480016826000400021630000230025652001370027965000210041694200250043795200420046243349LVL20010920131126.0820521s1982 nyu j 00011 eng a81048648 a0064470369 anpl93000821 c631d631 aYA Lawrence1 aLawrence, Louise,d1943-10aCalling B for butterfly /cLouise Lawrence. aNew York :bHarperKeypoint,cc1982. a213 p. ;c18 cm.;. aFour teenagers must fend for themselves and two babies when the space liner on which they are traveling is destroyed by an asteroid. 1aScience fiction. aLVLcYAkYA Lawrence bLB2p37000000018428r2.31u5281u112400656 2200241 450000100060000000300040000600500170001000800390002701000130006602000250007903500140010404000130011805000260013108200160015709000130017310000260018624500490021225000120026126000610027330000210033494200220035595200370037750368LVL19990312000000.0871223s1988 nyu 000 1 eng a87040495 a0394564448 :c$17.95 a 87040495 aDLCcDLC0 aPS3573.H463bB43 19880 219a813/.54 c632d6321 aWhite, Edmund,d1940-14aThe beautiful room is empty /cEdmund White. a1st ed. aNew York :bKnopf :bDistributed by Random House,c1988. a227 p. ;c22 cm. aLVLcAFkAF White bMAINp32000000025677u5282u112500927 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000180013524500660015326000420021930000500026150400510031161000340036261000560039665000370045265000370048965000560052694200230058295200440060536331LVL19990319000000.0930629s1994 nyuaf b 00110 eng a93026082 a0671748734 a 93026082 c633d633 a940.54 Ku1 aKurzman, Dan.10aLeft to die :bthe story of the U.S.S. Juneau /cDan Kurzman. aNew York, NY :bPocket Books,cc1994. axii, 335, [12] p. of plates :bill. ;c24 cm. aIncludes bibliography: (p. 287-301) and index.20aJuneau (Antiaircraft cruiser)10aUnited States.bNavyxSearch and rescue operations. 0aShipwreckszSouth Pacific Ocean. 0aShipreck victimszUnited States. 0aWorld War, 1939-1945xSearch and rescue operations. aLVLcNFk940.54 Ku bMAINp31000000046687r13.57u5284u112600682 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903900180009404000130011205000260012508200160015109000130016710000280018024500360020825000200024426000550026430000210031965000220034094200220036295200440038464407LVL19990217000000.0850306c19851924meu d 00011 eng a85002816 a08962162840 a2b3c3d3e3 aDLCcDLC1 aPS3511.A87bS545 19850 219a813/.52 c634d63410aBrand, Max,d1892-1944.10aSmiling desperado /cMax Brand. aLarge print ed.0 aThorndike, Me. :bThorndike Press,c[1985], c1924. a339 p. ;c22 cm. 0aLarge type books. aLVLcWESkW Brand bMAINp31000000010168r13.95u5285u112700780 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000210013624500460015725000200020326000530022330000210027665000490029765000220034665100340036894200240040295200440042695200440047036332LVL20000911193530.0931104r19941993meu d 00011 eng a93042056 a078620141X a 93042056 c635d635 aLP Barnard1 aBarnard, Robert.12aA hovering of vultures /cRobert Barnard. aLarge print ed. aThorndike, Me. :bThorndike Press,c1994, c1993. a327 p. ;c22 cm. 0aEnglish literaturexSocieties, etcxFiction. 0aLarge type books. 0aYorkshire (England)xFiction. aLVLcLPkLP Barnard bMAINp32000000045931r15.72u5286u1128 bMAINp31000000047529r15.72u5287u112900595 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200120012110000250013324500450015826000400020330000280024394200210027195200420029295200430033443351LVL20000911212952.0850606s1986 nyu 00011 eng a85012243 a0140083871 a 85012243 c636d636 aAF Sams10aSams, Ferrol,d1922-14aThe whisper of the river /cFerrol Sams.0 a[New York] :bPenguin Books,c1986. a528 p. ;c20 cm. ;dpa. aLVLcAFkAF Sams bLB2p37000000008096r6.38u5288u1130 bMAINp32000000043342r6.38u5289u113100751 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200110012124500380013226000470017030000340021749000450025150000200029665000330031665000440034974000400039394200200043395200440045357389LVL19990220000000.0900215s1990 mnua f 00100 eng a90032979 a086573710X a 90032979 c637d637 a696 Ho00aHome plumbing projects & repairs.0 aMinnetonka, MN :bCy DeCosse Inc.,cc1990. a128 p. :bcol. ill. ;c28 cm. 0aBlack & Decker home improvement library. aIncludes index. 0aPlumbingxAmateurs' manuals. 0aPlumbingxRepairingxAmateurs' manuals.01aHome plumbing projects and repairs. aLVLcNFk696 Ho bMAINp31000000037231r14.95u5291u113200811 2200265 450000100060000000300040000600500170001000800390002701000130006602000330007903900180011204000130013005000260014308200160016909000130018510000280019824500300022626000700025630000210032650000690034750000430041665000220045994200210048195200430050264408LVL19990217000000.0811110r19821913mau d 00011 eng a81017497 a0893403849 (pbk. : l. print)0 a2b3c3d3e3 aDLCcDLC1 aPS3513.R6545bD4 19820 219a813/.52 c638d63810aGrey, Zane,d1872-1939.10aDesert gold /cZane Grey.0 a[South Yarmouth, Ma.] :bJohn Curley & Associates,c[1982] c1913. a639 p. ;c22 cm. aReprint. Originally published: New York : Harper Brothers, 1913. a"Published in large print"--Verso t.p. 0aLarge type books. aLVLcLPkLP Grey bMAINp31000000013557r8.95u5292u113301071 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200200012110000220014124501690016326000380033230000300037050000350040052000870043565000290052265000110055170000270056270000450058994200250063495200610065995200610072036333LVL20021021120447.0940706s1992 nyua j 00010 eng a92004056 a0679831681 a 92004056 c639d639 aJNF 818 Fremont1 aFremont, Eleanor.10aJokes from the crypt /ctold by the Vault-Keeper, the Old Witch, and the Crypt-Keeper with the assistance of Eleanor Fremont ; text illustrations by Aristides Ruiz. aNew York :bRandom House,cc1992. a96 p. :bill. :c20 cm.;. a"A Tales from the crypt book." aA collection of jokes featuring vampires, werewolves, and other grisly characters. 1aMonstersxWit and humor. 1aJokes.11aRuiz, Aristides,eill.11aFremont, Eleanor.tTales from the crypt. aLVLcJNFkJNF 818 Fr bMAINdMAINp32000000048448r2.99u5293u1134v2003-09-01 bLB1dLB1p36000000006597r2.99u320351u1135v2004-11-2400559 2200205 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200130011010000200012324500540014326000400019730000290023765000200026694200240028695200430031043352LVL19990313000000.0940106s1961 wiua j 00011 eng a0307601234 anpl93001819 c640d640 aE Wilkin1 aWilkin, Eloise.10aEloise Wilkin's Mother Goose /cby Eloise Wilken. aWisconsin :bA Golden Book,cc1961. a[24] p. :bill.,c21 cm. 1aNursery rhymes. aLVLcEASYkE Wilkin bMAINp32000000044274r7.99u5295u113600741 2200241 450000100060000000300040000600500170001000800390002702000150006603500140008109000130009509200110010810000180011924500710013726000630020830000420027150000200031365000270033365000320036094200200039295200440041295200430045643353LVL20010718093751.0960329r19961993caua 00110 eng a1881052869 a 93006597 c641d641 a658 Bl10aBlock, Peter.10aStewardship :bchoosing service over self interest /cPeter Block.0 aSan Francisco :bBerrett-Koehler Publishers,c1996, c1993. axxiv, 264 p. :bill. ;c24 cm. ;dpa. aIncludes index. 0aIndustrial management. 0aIndustriesxSocial aspects. aLVLcNFk658 Bl bMAINp32000000063640r10.17u5297u1137 bLB2p37000000017499r10.17u5298u113800506 2200181 450000100060000000300040000600500170001000800410002702000150006809000130008309200150009610000230011124500390013426000410017330000260021494200240024095200600026457391LVL19990220000000.0961125s19uu 000 0 eng d a0373118538 c642d642 aAF O'Brien10aO'Brien, Kathleen.10aMistletoe man /cKathleen O'Brien. aToronto :bHarlequin Books ;cc1996. a187p. ;bpa. ;c18cm. aLVLcAFkAF O'Brien bMAINdLB2p31000000009260r3.50u5300u1139v2003-09-0100958 2200277 450000100060000000300040000600500170001000800390002701000130006602000450007904000130012405000240013708200160016109000130017710000270019024500920021725000290030926000500033830000340038850400270042260000470044965000600049665100600055694200210061695200430063764410LVL19990217000000.0860730c19861976nyua b 00011 eng a85091880 a0345333004 (pbk.) :c$8.95 ($11.95 Can.) aDLCcDLC0 aPS3570.H47bL6 19860 219a813/.54 c643d643 0aThom, James Alexander.10aLong Knife :ba novel based on the life of George Rogers Clark /cJames Alexander Thom. a1st Ballantine Books ed.0 aNew York :bBallantine Books,c[1986], c1976. a528, [1] p. :bill. ;c21 cm. aBibliography: p. [529]10aClark, George Rogers,d1752-1818xFiction. 0aClark's Expedition to the Illinois, 1778-1779xFiction. 0aUnited StatesxHistoryxFiction.yRevolution, 1775-1783 aLVLcAFkAF Thom bMAINp31000000018105r5.37u5301u114001213 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200110012110000190013224502090015126000380036030000350039850000370043350501940047052000770066465000120074165000130075370000220076670000370078870000210082594200220084695200430086871429LVL19990404000000.0830427s1985 nyua j 00010 eng a83009811 a0394958365 a 83009811 c644d644 aE Reit10aReit, Seymour.00aWhen small is tall and other read-together tales /cprepared by the Bank Street College of Education ; written by Seymour V. Reit, William H. Hooks, and Betty D. Boegehold ; illustrated by Lynn Munsinger.0 aNew York :bRandom House,cc1985. a[32] p. :bcol. ill. ;c21 cm. aStories based on Aesop's fables.0 aSmall Mouse and King Lion / retold by Seymour V. Reit -- Tiny Tortoise and Harry the Hare / retold by William H. Hooks -- Little Red Ant and Plump White Dove / retold by Betty D. Boegehold. aThree of Aesop's fables are retold with rebuses and repeatable refrains. 1aFables. 1aRebuses.10aHooks, William H.10aBoegehold, Betty Virginia Doyle.11aMunsinger, Lynn. aLVLcEASYkE Reit bMAINp31000000005292r7.95u5302u114100787 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200110012110000210013224500630015326000440021630000400026065000130030070000180031394200200033195200430035195200420039495200430043695200420047943354LVL19990313000000.0931116s1994 nyua 00010 eng a93044067 a0312105169 a 93044067 c645d645 a736 Ne10aNeale, Robert E.10aOrigami, plain and simple /cRobert Neale and Thomas Hull.0 aNew York :bSt. Martin's Press,cc1994. avii, 95 p. :bill. ;c28 cm. ;dpa. 0aOrigami.10aHull, Thomas. aLVLcNFk736 Ne bMAINp32000000046069r6.46u5303u1142 bLB2p34000000002172r6.46u5304u1143 bMAINp31000000047605r6.46u5305u1144 bLB1p33000000018456r6.46u5306u114500628 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000280013424500690016226000350023130000330026665100460029994200220034595200430036771430LVL19990404000000.0731113s1974 nyub 00110 eng a73020045 a0025211102 a 73020045 c646d646 a915.4 Ca10aCandlin, Enid Saunders.12aA traveler's tale :bmemories of India /cEnid Saunders Candlin.0 aNew York :bMacmillan,cc1974. axvi, 378 p. :bmap ;c25 cm. 0aIndiaxDescription and travely1901-1946. aLVLcNFk915.4 Ca bMAINp31000000037799r8.42u5309u114600699 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000290013624500740016526000530023930000320029265000380032465000390036294200250040195200430042636336LVL19990319000000.0720207s1971 nyua d 00010 eng a71155142 a0823013367 a 71155142 c647d647 aREF 703 Ta1 aTaubes, Frederic,d1900-14aThe painter's dictionary of materials and methods /cFrederic Taubes. aNew York :bWatson-Guptill Publications,cc1971. a253 p. :bill. ;c21 cm. ;. 0aArtists' materialsxDictionaries. 0aPaintingxTechniquexDictionaries. aLVLcREFkREF 703 Ta bMAINp32000000052757r5.95u5310u114700363 2200133 450000100060000000300040000600500170001000800410002709000130006810000480008124500320012994200250016195200430018643355LVL20001025133713.0930420s19xx xxu 00010 eng d c648d6481 aForester, C. S.d1899-1966.q(Cecil Scott),10aCaptain Horatio Hornblower. aLVLcAFkAF Forester bMAINp32000000003931r5.00u5311u114800626 2200205 450000100060000000300040000600500170001000800390002703500160006609000130008209200130009510000170010824501360012526000400026150000200030165000190032165000160034094200220035695200420037864412LVL19990217000000.0910508s1988 ohu 00110 eng aonv90000596 c649d649 a658.4 Je10aJewett, Jim.10aDiscovering fast track success :bempowering yourself, your employees, and your customers to achieve the impossiible /cJim Jewett. aColumbus, OH :bESRL Press,cc1988. aIncludes index. 0aEntrepreneurs. 0aManagement. aLVLcNFk658.4 Je bLB1p33000000007105r5.00u5313u114900545 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000260013524500280016125000120018926000380020130000210023994200230026095200440028343356LVL19990313000000.0921215s1993 nyu 00010 eng a92042490 a0393035425 a 92042490 c650d650 a811.54 Am1 aAmmons, A. R.,d1926-10aGarbage /cA.R. Ammons. a1st ed. aNew York :bW. W. Norton,cc1993. a121 p. ;c22 cm. aLVLcNFk811.54 Am bMAINp32000000046981r10.77u5314u115000346 2200145 450000100060000000300040000600500170001000800410002702000150006809000130008310000220009624500180011894200220013695200420015857394LVL19991211000000.0950323s19uu 000 0 eng d a0553156594 c651d6511 aPascal, Francine.10aSneaking out. aLVLcJFkJ Pascal bLB2p34000000000862r2.99u5315u115100732 2200241 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200120011210000230012424500420014726000380018930000280022744000460025594200210030195200420032295200420036495200420040695200420044864413LVL20000204000000.0910805s1990 nyu 00011 eng d a0553287567 aonv90001032 c652d652 aAF Ross10aRoss, Dana Fuller.10aCarolina courage /cDana Fuller Ross. aNew York :bBantam Books,cc1990. a353 p. ;c18 cm. ;dpa. 4aThe Holts: an American dynasty ;vvol. 3. aLVLcAFkAF Ross bLB2p37000000001309r2.92u5316u1152 bLB1p36000000004699r4.50u5317u1153 bLB2p34000000003948r2.92u5318u1154 bLB1p33000000008376r2.92u5320u115500567 2200217 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200130011210000160012524500360014125000200017726000440019730000210024165000220026294200220028495200430030671432LVL19990404000000.0920716c19851956enk d 00011 eng d a0708912923 aonv90002797 c653d653 aLP Bouma1 aBouma, J.L.14aThe avenging gun /cJ.L. Bouma. aLarge print ed. aLeicester :bUlverscroft,c1985, c1956. a326 p. ;c22 cm. 0aLarge type books. aLVLcLPkLP Bouma bMAINp31000000039878r7.98u5321u115601228 2200409 450000100060000000300040000600500170001000800390002701000170006602000270008302000150011003500160012504000200014105000160016108200080017709000130018510000320019824500390023025000140026926000370028330000310032035000110035151000320036251000520039451000140044652000810046052100340054152100090057565000260058465000230061065000260063365000230065970000270068294200240070995200430073395200420077650376LVL19990312000000.0740322s1973 nyua j 00001 eng a73005480 /AC a0060209224 (lib. bdg.) a0060209216 aflb00523902 aDLCcDLCdICrlF0 aPZ7.C12bAb a[E] c654d65410aCaines, Jeannette Franklin.10aAbby.cPictures by Steven Kellogg. a[1st ed.]0 aNew York,bHarper & Rowc[c1973] a32 p.billus.c20 x 22 cm. a$3.95.0 aChildren's Catalog (Wilson)0 aElementary School Library Collection (Bro-Dart)0 aBooklist. aPre-school Abby enjoys her special place in the family as the adopted child.0 a2.2bFollett Library Book Co.2 aK-3. 1aFamily lifexFiction. 1aAdoptionxFiction. 7aFamily lifexFiction. 7aAdoptionxFiction.11aKellogg, Steven,eill. aLVLcEASYkE Caines bMAINp32000000005601r9.51u5322u1157 bLB1p33000000029992r6.95u5323u115800549 2200193 450000100060000000300040000600500170001000800410002701000130006802000150008109000130009610000200010924500550012926000480018430000290023270000290026194200220029095200430031264414LVL19990217000000.0930415s19xx xxu 00010 eng d a80020326 a0374312397 c655d65510aSelden, George.10aChester Cricket's pigeon ride /cby George Selden.0 aNew York :bFarrar, Straus, Giroux.cc1981. a[62 p. :billus.c28 cm.11aWilliams, Garth.eillus. aLVLcJFkJ Selden bMAINp31000000005640r2.98u5324u115901146 2200349 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200170012110000190013824501080015726000500026530000280031550000200034365000110036365000220037465000390039665000140043565000160044994200270046595200430049295200440053595200430057995200440062295200430066695200440070995200430075336339LVL19990319000000.0950203s1994 vtua j 00110 eng a94000101 a0913589799 a 94000101 c656d656 aJNF 398.2 Mi10aMilord, Susan.10aTales alive! :bten multicultural folk tales with art, craft & creative experiences /cby Susan Milord.0 aCharlotte, VT :bWilliamson Pub. Co.,cc1994. a128 p. :bill.,c28 cm. aIncludes index. 1aTales. 1aMulticulturalism. 1aCreative activities and seat work. 1aFolklore. 1aAmusements. aLVLcJNFkJNF 398.2 Mi bLB2p37000000001634r18.50u5325u1160 bMAINp32000000055720r18.50u5326u1161 bLB1p36000000002521r18.50u5327u1162 bMAINp35000000005786r18.50u5328u1163 bLB2p34000000008037r18.50u5329u1164 bMAINp31000000053323r18.50u5330u1165 bLB1p33000000021773r18.50u5331u116600956 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200120012110000250013324500370015826000390019530000210023450000300025552002060028565000240049165000130051594200210052895200430054995200430059295200430063543358LVL19990313000000.0930210s1993 nyu j 00011 eng a93009630 a053106803X a 93009630 c657d657 aJ Lisle1 aLisle, Janet Taylor.10aForest /cby Janet Taylor Lisle. aNew York :bOrchard Books,cc1993. a150 p. ;c24 cm. a"A Richard Jackson book." aTwelve-year-old Amber's invasion of an organized forest community of squirrels starts a war between humans and beasts, despite the protests of an unconventional and imaginative squirrel named Woodbine. 1aSquirrelsxFiction. 1aFantasy. aLVLcJFkJ Lisle bMAINp32000000047763r9.41u5332u1167 bMAINp32000000049287r9.57u5333u1168 bMAINp31000000048842r9.41u5334u116900529 2200193 450000100060000000300040000600500170001000800410002702000150006809000130008310000320009624500450012874000240017374000140019774000310021174000260024294200240026895200430029250377LVL19990312000000.0921209s19xx xxu 00010 eng d a0940450313 c658d6581 aWharton, Edith,d1862-1937.10aNovels: The house of Mirth; The reef;...42aThe house of mirth.42aThe reef.42aThe Custom of the country.42aThe age of innocence. aLVLcAFkAF Wharton bMAINp32000000022612r8.50u5335u117000793 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000510013424501460018526000380033130000340036950400540040365000400045794200220049795200440051936340LVL19990319000000.0940729s1995 nyua b 00010 eng a94031436 a0671780425 a 94031436 c659d659 a333.7 St10aStevens, William K.d1935-q(William Kenneth),10aMiracle under the oaks :bthe revival of nature in America /cWilliam K. Stevens ; drawings by Patricia J. Wynne ; maps by Myra Klockenbrink.0 aNew York :bPocket Books,cc1995. axii, 332 p. :bill. ;c22 cm. aIncludes bibliographical references (p. 331-332). 0aRestoration ecologyzUnited States. aLVLcNFk333.7 St bMAINp32000000057190r13.20u5336u117100706 2200229 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200180011010000270012824500430015526000440019830000280024265000530027094200260032395200420034995200420039195200430043343359LVL20020220102153.0940913c19871982nyu 00011 eng a0553264125 anpl94001872 c660d660 aW Cold- smith10aColdsmith, Don,d1926-14aThe elk-dog heritage /cDon Coldsmith.0 aNew York :bBantam Books,c1987, c1982. a181 p. ;c18 cm. ;dpa. 0aIndians of North AmericaxFiction.zGreat Plains aLVLcWESkW Coldsmith bLB1p36000000005333r2.54u5338u1172 bLB2p34000000004504r2.94u5339u1173 bMAINp31000000051233r2.94u5340u117401172 2200325 450000100060000000300040000600500170001000800390002701000220006603500160008804000200010405000180012408200100014209000130015210000160016524500730018126000360025430000400029051000320033051000520036251000140041452002310042852100340065952100090069365000130070265000220071594200230073795200430076095200430080350378LVL19990312000000.0850801s1949 nyua j 000 1 eng a49011423 /AC/r852 aflb00365800 aDLCcDLCdICrlF0 aPZ8.G326bBar a[Fic] c661d6611 aSeuss,cDr.10aBartholomew and the oobleck /cwritten and illustrated by Dr. Seuss. aNew York,bRandom Housec[1949] a[48] p.billus. (part col.)c31 cm.0 aChildren's Catalog (Wilson)0 aElementary School Library Collection (Bro-Dart)0 aBooklist. aThe King, tired of rain, snow, sun, and fog, commands his magicians to make something else come down from the sky, but when oobleck falls, in sticky greenish droplets, Bartholomew Cubbins shames the King and saves the kingdom.0 a3.7bFollett Library Book Co.2 aK-3. 1aFantasy. 7aHumorous stories. aLVLcEASYkE Seuss bMAINp32000000012946r7.19u5342u1175 bMAINp32000000024092r9.26u5343u117600794 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000220013524500650015725000120022226000340023430000280026852000910029665000240038765000220041165100260043394200250045995200440048464416LVL19990217000000.0920923s1992 nyua j 00011 eng a91004982 a0689316798 a 91004982 c662d662 aE McPhail1 aMcPhail, David M.10aFarm boy's year /cwritten and illustrated by David McPhail. a1st ed. aNew York :bAtheneum,cc1992. a32 p. :bill. ;c20 cm. aDiary entries and illustrations evoke a boy's life on a New England farm in the 1800s. 1aFarm lifexFiction. 1aDiariesxFiction. 1aNew EnglandxFiction. aLVLcEASYkE McPhail bMAINp31000000040659r13.95u5344u117700909 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000220013524500780015725000120023526000380024730000490028550400510033460000570038561000370044265000400047994200240051995200440054395200440058736341LVL19990319000000.0941107s1995 nyuaf b 00110beng a94041087 a0679429662 a 94041087 c663d663 aB Sherman10aFellman, Michael.10aCitizen Sherman :ba life of William Tecumseh Sherman /cMichael Fellman. a1st ed.0 aNew York :bRandom House,cc1995. axiv, 486, [8] p. of plates :bill. ;c25 cm. aIncludes bibliographical references and index.10aSherman, William T.d1820-1891.q(William Tecumseh),10aUnited States.bArmyxBiography. 0aGeneralsxBiography.zUnited States aLVLcBIOkB Sherman bMAINp32000000058312r17.70u5345u1178 bMAINp31000000055041r17.70u5346u117900685 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000270013624500410016326000380020430000210024265000410026365000270030494200240033195200440035595200440039943360LVL20030106132952.0940121s1994 nyu 00011 eng a94000279 a0446517917 a 94000279 c664d664 aAF Morrell10aMorrell, David,d1943-10aDesperate measures /cDavid Morrell.0 aNew York :bWarner Books,cc1994. a408 p. ;c24 cm. 0aJournalistsxFiction.zUnited States 0aConspiraciesxFiction. aLVLcAFkAF Morrell bMAINp32000000052074r13.25u5347u1180 bMAINp31000000051413r13.25u5348u118100680 2200241 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200130011010000250012324500450014825000200019326000420021330000210025565000330027665000220030994200220033195200430035395200420039650379LVL19990312000000.0950510s1995 nyu d 00011 eng a0684815907 anpl95001433 c665d665 aLP Evans10aEvans, Richard Paul.14aThe Christmas box /cRichard Paul Evans. aLarge print ed.0 aNew York :bSimon & Schuster,cc1995. a142 p. ;c22 cm. 0aChristmas stories, American. 0aLarge type books. aLVLcLPkLP EVANS bMAINp32000000060340r8.37u5349u1182 bLB1p33000000023928r8.37u5351u118300678 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000310013524501090016625000200027526000460029530000340034165000280037565000220040394200230042564417LVL19990217000000.0860312c19861985maua d 00010 eng a86004834 a0816140723 a 86004834 c666d666 aLP 816 Bu1 aBurns, George,d1896-1996.10aDear George :badvice & answers from America's leading expert on everything from A to B /cGeorge Burns. aLarge print ed. aBoston, Mass. :bG.K. Hall,c1986, c1985. axii, 197 p. :bill. ;c24 cm. 0aAmerican wit and humor. 0aLarge type books. aLVLcNFkLP 816 Bu00865 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000290013424501560016326000320031930000290035150000200038065000130040073000330041394200220044695200440046895200440051295200430055636342LVL19990319000000.0950428s1995 nyua 00110 eng a95018922 a0670858765 a 95018922 c667d667 a641.5 Fa20aFarrell-Kingsley, Kathy.14aThe Woman's day cookbook :bgreat recipes, bright ideas, and healthy choices for today's cook /cKathy Farrell-Kingsley and the editors of Woman's day.0 aNew York :bViking,cc1995. a720 p. :bill. ;c24 cm. aIncludes index. 0aCookery.0 aWoman's day (New York, N.Y.) aLVLcNFk641.5 Fa bMAINp32000000059828r14.97u5353u1184 bMAINp31000000056394r14.97u5354u1185 bLB1p33000000023681r14.97u5355u118601057 2200289 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200150011010000210012524501020014626000450024830000280029352001320032165000200045365000110047370000230048494200250050795200440053295200440057695200440062095200600066495200430072443361LVL19990313000000.0840424c19841983nyua j 00010 eng a0688039405 aonv90004252 c668d668 aJNF 793 Gr10aGryski, Camilla.10aCat's cradle, owl's eyes :ba book of string games /cCamilla Gryski ; illustrated by Tom Sankey.0 aNew York :bWilliam Morrow,cc1984,1983. a78 p. :bill. ;c24 cm. aPresents basic information for making string figures and gives step-by-step instructions for more than twenty specific figures. 1aString figures. 1aGames.11aSankey, Tom,eill. aLVLcJNFkJNF 793 Gr bMAINp32000000029846r10.80u5356u1187 bMAINp32000000038394r11.64u5357u1188 bMAINp32000000054057r11.64u5358u1189 bLB1dLB1p36000000003585r11.64u5359u1190v2003-09-01 bLB2p34000000008871r11.64u5360u119101164 2200349 450000100060000000300040000600500170001000800390002701000130006602000250007903500160010404000200012005000250014008200160016509000130018110000210019424500350021525000120025026000380026230000210030051000220032151000140034351000210035752001830037852100170056165000350057894200260061395200430063995200440068295200440072695200440077050380LVL19990414000000.0880929s1989 nyu 00011 eng a88045914 a0060161183 :c$17.95 aflb00421304 aDLCcDLCdICrlF0 aPS3558.I45bT35 19890 220a813/.54 c669d66910aHillerman, Tony.10aTalking God /cTony Hillerman. a1st ed.0 aNew York :bHarper & Row,cc1989. a239 p. ;c24 cm.0 aNYT Notable Book.0 aBooklist.0 aLibrary Journal. aSeparate police investigations become closely related when it becomes clear that Henry Highhawk is wanted by others besides the police and is involved in more than grave robbing.2 aYoung Adult. 7aMystery and detective stories. aLVLcMYSkM Hillerman bLB2p37000000002441r10.30u5361u1192 bMAINp32000000024753r10.30u5362u1193 bMAINp32000000029707r10.30u5363u1194 bMAINp31000000007485r10.30u5364u119500588 2200217 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200150011210000320012724500460015925000200020526000350022530000210026065000220028194200240030395200430032764418LVL20020807120122.0931206s1990 nyu d 00011 eng d a0385413343 anpl93001602 c670d670 aLP Whitney1 aWhitney, Phyllis A.,d1903-14aThe singing stones /cPhyllis A. Whitney. aLarge print ed. aNew York :bDoubleday,cc1990. a507 p. ;c25 cm. 0aLarge type books. aLVLcLPkLP Whitney bMAINp31000000045782r3.50u5365u119600802 2200253 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200140011010000280012424500410015226000390019330000280023265000470026065000490030765000480035665000450040465100330044994200230048295200430050536343LVL20021025151859.0940816s1995 nyu 00011 eng a0140253602 anpl96000181 c671d671 aAF Trevor10aTrevor, William,d1928-10aFelicia's journey /cWilliam Trevor.0 aNew York :bPenguin Books,cc1995. a212 p. ;c20 cm. ;dpa. 0aIrishxTravelxFiction.zEnglandzMidlands 0aMiddle aged menxFiction.zEnglandzMidlands 0aPregnant womenxFiction.zEnglandzMidlands 0aYoung womenxFiction.zEnglandzMidlands 0aMidlands (England)xFiction. aLVLcAFkAF Trevor bMAINp32000000062306r6.57u5366u119701042 2200229 4500020001500000090001300015100003100028245020700059260003800266300003700304500006400341650004600405700003700451700002900488942002000517952004200537952004300579952004200622952004200664952004200706952006400748 a067975945X c672d672 aGarber, Stephen W.,d1946- aIs your child hyperactive, inattentive, impulsive, distractible-- :bhelping the ADD (Attention Deficit Disorder) hyperactive child /cStephen W. Garber, Marianne Daniels Garber, Robyn Freedman Spizman. aNew York :bVillard Books,c1990. axvii, 235 p. :bill. ;c24 cm. ; aIncludes bibliographical references (p. 228-230) and index. aAttention-deficit hyperactivity disorder. aGarber, Marianne Daniels,d1948- aSpizman, Robyn Freedman. aLVLcNFk649 Ga bLB2p37000000004038r7.08u5367u1198 bMAINp32000000056056r7.08u5368u1199 bLB1p36000000000669r7.08u5369u1200 bLB2p34000000007629r7.08u5370u1201 bLB1p33000000021851r7.08u5371u1202 bMAINdMAINp32000000141914r12.95u275250u1203v2003-09-2401198 2200349 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000250013424500380015926000520019730000430024950000200029252001410031260000250045365000230047865000160050165000120051794200220052995200420055195200430059395200430063695200420067995200420072195200430076395200420080650381LVL19991215000000.0910327s1991 njua j 00110aeng a91015000 a0671741667 a 91015000 c673d673 aJB Byars10aByars, Betsy Cromer.14aThe moon and I /cby Betsy Byars.0 aEnglewood Cliffs, NJ :bJulian Messner,cc1991. a96, [8] p. of plates :bill. ;c24 cm. aIncludes index. aWhile describing her humorous adventures with a blacksnake, Betsy Byars recounts childhood anecdotes and explains how she writes a book.11aByars, Betsy Cromer. 1aAuthors, American. 1aAuthorship. 1aSnakes. aLVLcJBkJB Byars bLB2p37000000006654r7.51u5372u1204 bMAINp32000000037189r7.71u5373u1205 bMAINp32000000037190r7.71u5374u1206 bLB1p36000000002202r7.51u5375u1207 bLB2p34000000009382r7.51u5376u1208 bMAINp31000000041924r7.51u5377u1209 bLB1p33000000014722r7.51u5378u121000227 2200097 4500010001300000090001300013100002800026245001700054942002100071952003700092 a54008954 c674d6741 aGrey, Zane,d1872-1939.10aLost Pueblo. aLVLcAFkAF Grey bMAINp31000000029212u5379u121100796 2200241 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200110011210000290012324500810015226000510023330000360028450400510032065000530037165000220042494200200044695200440046695200440051036344LVL19990319000000.0960603s1995 ncua b 00010 eng d a0935741194 anpl96001015 c675d675 a973 Si10aSizemore, Donald,d1950-10aHow to make Cherokee clothing /cwritten and illustrated by Donald Sizemore.0 aCherokee, NC :bCherokee Publications,cc1995. a304 p. :bill. ;c28 cm. ;dpa. aIncludes bibliographical references: p. (299). 0aIndians of North AmericaxCostume and adornment. 0aCherokee Indians. aLVLcNFk973 Si bMAINp32000000064902r23.95u5380u1212 bMAINp31000000060166r23.95u5381u121300617 2200217 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200160011210000200012824500330014826000370018130000280021894200250024695200420027195200430031395200430035643363LVL20030103113407.0950504s1995 nyu 00011 eng d a0821749528 anpl95000694 c676d676 aAF Michaels10aMichaels, Fern.10aDear Emily /cFern Michaels.0 aNew York :bZebra Books,cc1995. a445 p. ;c18 cm. ;dpa. aLVLcAFkAF Michaels bLB2p37000000002683r3.47u5382u1214 bMAINp35000000000942r3.47u5383u1215 bMAINp31000000054365r3.47u5384u121600402 2200145 450000100060000000300040000600500170001000800410002701000130006809000130008110000500009424500470014494200220019195200430021364420LVL19990217000000.0950324s19uu 000 0 eng d a57006610 c677d6771 aDalzell, J. Ralphd1900-1970.q(James Ralph),10aConcrete block construction for home/farm. aLVLcNFk693.5 Da bMAINp31000000025248r3.38u5385u121701395 2200361 450000100060000000300040000600500170001000700150002700800410004202400160008302800350009903500160013409000130015009200220016310000430018524000420022824500870027026000440035730000580040150000400045950000550049951101440055465000160069865000150071470000180072970001010074771000310084871000380087974000210091774000220093894200300096095200430099043364LVL19990313000000.0sdufsngnn ed950728p19771973gw syn z d 1a289431603202a431-603-2bDeutsche Grammophon anav95000060 c678d678 aCD Tschai- kowsky1 aTschaikowsky, Peter Ilich,d1840-1893.00aSymphonies,nno. 5, op. 64,rE minor.00aSymphonie No. 5 op. 64 ; Romeo und JuliacPeter Tschaikowsky.h[sound recording] /0 aHamburg :bDeutsche Grammophon,cp1977. a1 sound disc (65:45) :bdigital, stereo. ;c4 3/4 in. aCompact disc. -- Includes pamphlet. aTitle from container (2nd work): Romeo and Juliet.0 aBoston Symphony Orchestra ; Seiji Ozawa, conductor. Second work performed by the San Francisco Symphony Orchestra ; Seiji Ozawa, conductor. 0aSymphonies. 0aOvertures.1 aOzawa, Seiji.12aTschaikowsky, Peter Ilich,d1840-1893hSound recording.p(Fantasy-overture).tRomeo et Juliette.2 aBoston Symphony Orchestra.2 aSan Francisco Symphony Orchestra.01aRomeo und Julia.01aRomeo and Juliet. aLVLcCDMkCD Tschaikowsky bMAINp32000000058430r7.77u5386u121800814 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200190012124501340014026000490027430000510032363000280037465000270040270000300042970000410045994200290050095200430052950383LVL20000107000000.0730515s1937 nyua j 00000 eng a37028415 a0397315368 a 37028415 c679d679 aJNF 220.859 An10aAnimals of the Bible :ba picture book /cby Dorothy P. Lathrop; with text selected by Helen Dean Fish from the King James Bible. aNew York :bHarperCollinsPublishers,cc1937. avi, 65, [4] p. :bill. (part double) ;c26 cm.00aBiblexNatural history. 7aCaldecott Medal books.10aFish, Helen Dean.,ecomp.11aLathrop, Dorothy Pulis,d1891-eill. aLVLcJNFkJNF 220.859 An bMAINp32000000039695r9.52u5387u121901201 2200325 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000170013524500870015226000420023930000290028150400640031060000290037460000220040365000460042565000520047165000500052365000770057365000720065094200230072295200440074595200430078995200430083236346LVL19990319000000.0960419s1996 nyua b 00110ceng a96021516 a0684808862 a 96021516 c680d680 a581.61 Da10aDavis, Wade.10aOne river :bexplorations and discoveries in the Amazon rain forest /cWade Davis.0 aNew York :bSimon & Schuster,cc1996. a537 p. :bill. ;c24 cm. aIncludes bibliographical references (p. 493-515) and index.10aSchultes, Richard Evans.10aPlowman, Timothy. 0aEthnobotanistsxBiography.zUnited States 0aEthnobotanistsxBiography.zAmazon River Region 0aEthnobotanyxField work.zAmazon River Region 0aHallucinogenic plantsxCollection and preservation.zAmazon River Region 0aMedicinal plantsxCollection and preservation.zAmazon River Region aLVLcNFk581.61 Da bMAINp32000000068037r14.20u5389u1220 bLB2p34000000014729r14.20u5390u1221 bLB1p33000000027077r14.20u5391u122200841 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200110012110000200013224501040015225000120025626000390026830000290030750400610033665000360039765000530043365000250048694200200051195200440053143365LVL19990313000000.0950608s1995 nyua b 00110 eng a95030580 a051779974X a 95030580 c681d681 a616 Ch10aChopra, Deepak.10aBoundless energy :bthe complete mind/body program for overcoming chronic fatigue /cDeepak Chopra. a1st ed.0 aNew York :bHarmony Books,cc1995. a135 p. :bill. ;c22 cm. aIncludes bibliographical references: p. (127) and index. 0aFatiguexAlternative treatment. 0aChronic fatigue syndromexAlternative treatment. 0aMedicine, Ayurvedic. aLVLcNFk616 Ch bMAINp32000000059988r15.00u5392u122300801 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000260013624500350016226000440019730000210024160000420026265000340030494200240033895200430036295200440040595200430044995200430049250384LVL20020205132415.0930106s1993 nyu 00011 eng a93006518 a0399138358 a 93006518 c682d682 aAF Higgins10aHiggins, Jack,d1929-10aThunder point /cJack Higgins.0 aNew York :bG.P. Putnam's Sons,cc1993. a320 p. ;c24 cm.10aBormann, Martin,d1900-1945xFiction. 0aNational socialistsxFiction. aLVLcAFkAF Higgins bLB2p37000000013332r22.95u5393u1224 bMAINp32000000045068r13.31u5394u1225 bLB2p34000000003189r13.31u5395u1226 bLB1p33000000015826r13.31u5396u122700341 2200145 450000100060000000300040000600500170001000800410002701000130006809000130008110000160009424500210011094200210013195200430015257403LVL19990220000000.0950324s19uu 000 0 eng d a52010431 c683d683 aWard, Brad.10aJohnny Sundance. aLVLcAFkAF Ward bMAINp31000000034742r5.40u5397u122800228 2200097 4500010001300000090001300013100001800026245001800044942002400062952004400086 a87061720 c684d684 aSmall quilts. aSmall quilts. aLVLcNFk746.46 SMA bMAINp31000000016292r11.48u5398u122900933 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012124501230013426000440025730000390030150000200034065000480036065000550040865000410046365000240050465000280052870000330055694200220058995200440061143366LVL19990313000000.0940728s1995 ohua 00100 eng a94032043 a0935470840 a 94032043 c685d685 a621.5 St00aStrategies for managing ozone-depleting refrigerants :bconfronting the future /cby Katharine B. Miller ... [et al.].0 aColumbus, OH :bBattelle Press,cc1995. ax, 124 p. :bill. ;c28 cm. ;dpa. aIncludes index. 0aChlorofluorocarbonsxEnvironmental aspects. 0aOzone-depleting substancesxEnvironmental aspects. 0aRefrigerantsxEnvironmental aspects. 0aProduct life cycle. 0aAir quality management.10aMiller, Katharine B.,d1963- aLVLcNFk621.5 St bMAINp32000000062421r34.95u5399u123001551 2200373 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200120012110000140013324500380014725000210018526000380020630000280024450000560027250001350032850502800046365000320074370000250077570000260080070000310082694200230085795200420088095200430092295200420096595200420100795200430104995200430109295200420113550385LVL19990719000000.0921023s1993 nyua j 00011 eng a92035915 a0679844651 a 92035915 c686d686 aE Awdry10aAwdry, W.10aThomas the Tank Engine storybook. a1st American ed.0 aNew York :bRandom House,cc1993. a60 p. :bill. ;c29 cm. a"Based on The railway series by the Rev. W. Awdry." a"Photographs by David Mitton and Terry Permane for Britt Allcroft's production of Thomas the Tank Engine and friends"--T.p. verso.0 aAll about Thomas and his friends -- Thomas, Percy, and the dragon -- Trust Thomas -- Donald's duck -- Edward, Trevor, and the really useful party -- A scarf for Percy -- The trouble with mud -- No jokes for James -- Henry's forest -- Diesel does it again -- Time for trouble. 1aRailroadsxTrainsxFiction.11aMitton, David,eill.11aPermane, Terry,eill.11aAudry, W.tRailway series. aLVLcEASYkE Awdry bLB2p37000000002586r4.56u5400u1231 bMAINp32000000041590r4.56u5401u1232 bLB1p36000000005934r4.56u5402u1233 bLB2p34000000009701r4.56u5404u1234 bMAINp31000000044255r4.56u5405u1235 bMAINp31000000044256r4.56u5406u1236 bLB1p33000000016145r4.56u5407u123700759 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200180012110000350013924500470017426000440022130000420026549000200030752000980032765000220042594200270044795200430047443367LVL19990313000000.0761122c19781961nyua j 00011 eng a76054807 a0140501991 a 76054807 c687d687 aE Bemel- mans 0aBemelmans, Ludwig,d1898-1962.10aMadeline in London /cby Ludwig Bemelmans.0 aNew York :bPuffin Books,c1978, c1961. a[59] p. :bcol. ill. ;c21 cm. ;dpa.0 aPicture puffin. aMadeline and the other girls travel to London to visit their former neighbor on his birthday. 1aStories in rhyme. aLVLcEASYkE Bemelmans bMAINp32000000066417r3.95u5408u123800823 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200120012110000230013324500580015626000460021430000300026044000420029052001490033265000350048194200210051695200440053729330LVL20000204000000.0960102r19861970nyua j 00011 eng a73119043 a0448089211 a 73119043 c688d688 aJ Dixon10aDixon, Franklin W.14aThe clue of the broken blade ,cby Franklin W. Dixon.0 aNew York,bGrosset & Dunlapc1986, c1970. a178 p. :billus.,c20 cm. 4aThe Hardy Boys mystery stories ;v21. aWhile searching for the guard end of a broken saber that will solve one mystery, the Hardy brothers become involved with a gang of bank robbers. 1aMystery and detective stories. aLVLcJFkJ Dixon bMAINp32000000061907r10.00u5409u123901256 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012124500950013525000260023026000430025630000300029950001040032952001440043365000360057770000520061370000370066573000410070294200250074395200440076895200430081295200440085595200430089950387LVL20021105084746.0900717s1991 nyua j d 00000 eng a90005045 a0062701606 a 90005045 c689d689 aJR 423 Th00aThorndike-Barnhart student dictionary /c[edited] by E.L. Thorndike, Clarence L. Barnhart. a1st HarperCollins ed.0 aNew York, NY :bHarperCollins,cc1991. a1302 p. :bill. ;c24 cm. aPreviously published: Scott, Foresman advanced dictionary. Glenview, Ill. : Scott, Foresman, c1988. aAn advanced dictionary giving pronunciation, part of speech, definition, and some etymologies. Includes a section on use of the dictionary. 1aEnglish languagexDictionaries.10aThorndike, Edward L.d1874-1949.q(Edward Lee),10aBarnhart, Clarence Lewis,d1900-01aScott, Foresman advanced dictionary. aLVLcJREFkJR 423 Th bMAINp32000000065356r10.62u5410u1240 bLB2p34000000014002r10.62u5411u1241 bMAINp31000000060529r10.62u5412u1242 bLB1p33000000026077r10.62u5413u124300944 2200289 450000100060000000300040000600500170001000800390002701000130006602000300007902000160010904000130012505000160013808200150015409000130016910000200018224501430020226000470034530000290039265000250042165000260044665000230047265000480049570000420054394200250058595200440061064425LVL20000501000000.0770907s1977 vtua 00010 eng a77013234 a0882661116bpbk. :c$6.95 a0882661124. aDLCcDLC0 aSB415.bN36 a635/.04/44 c690d69010aNearing, Helen.10aBuilding and using our sun-heated greenhouse :bgrow vegetables all year-round /cby Helen and Scott Nearing ; photos. by Richard Garrett.0 aCharlotte, Vt. :bGarden Way Pub.,cc1977. a148 p. :bill. ;c26 cm. 0aVegetable gardening. 0aGreenhouse gardening. 0aOrganic gardening. 0aSolar greenhousesxDesign and construction.10aNearing, Scott,d1883-ejoint author. aLVLcNFk635.044 NEA bMAINp31000000024524r11.95u5414u124400628 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200160012110000260013724500270016326000570019030000210024750000730026894200250034195200440036650388LVL20021028132234.0931109s1994 mau 00011 eng a93043961 a0395488850 a 93043961 c691d691 aAF Harrison10aHarrison, Jim,d1937-10aJulip /cJim Harrison.0 aBoston :bHoughton Mifflin/Seymour Lawrence,cc1994. a275 p. ;c22 cm. a"First appeared in Esquire in slightly different forms"--T.p. verso. aLVLcAFkAF Harrison bMAINp32000000046155r12.87u5415u124501668 2200457 450000100060000000300040000600500170001000800390002701000220006602000310008802000240011903500160014304000200015904300300017905000200020908200200022909000130024910000170026224501010027926000320038030000400041251000320045251000480048451000520053252001090058452100340069352100090072760000480073660000270078460000270081165000540083865000560089265000150094865000150096365100700097865100490104865100260109770000190112394200250114295200430116729332LVL20021130104540.0800219s1980 nyua j 00010beng a80011377 /AC/r852 a0399207341 (pbk.) :c$3.50 a0399207236 :c$7.95 aflb00362506 aDLCcDLCdICrlF ae-sp---an------as------0 aE111.bF79 1980 a970.01/5aBa92 c692d69210aFritz, Jean.10aWhere do you think you're going, Christopher Columbus? /cJean Fritz ; pictures by Margot Tomes.0 aNew York :bPutnam,cc1980. a80 p. :bill. (some col.) ;c24 cm.0 aChildren's Catalog (Wilson)0 aJunior High School Library Catalog (Wilson)0 aElementary School Library Collection (Bro-Dart) aDiscusses the voyages of Christopher Columbus who determined to beat everyone in the race to the Indies.0 a5.6bFollett Library Book Co.2 a3-6.10aColumbus, ChristopherxJuvenile literature.11aColumbus, Christopher.17aColumbus, Christopher. 0aExplorersxBiographyxJuvenile literature.zSpain 0aExplorersxBiographyxJuvenile literature.zAmerica 1aExplorers. 7aExplorers. 0aAmericaxDiscovery and explorationxSpanishxJuvenile literature. 1aAmericaxDiscovery and explorationxSpanish. 7aAmericaxExploration.10aTomes, Margot. aLVLcJBkJB Columbus bMAINp32000000004802r4.78u5416u124600361 2200145 450000100060000000300040000600500170001000800410002701000130006809000130008110000300009424500220012494200260014695200430017236351LVL19990319000000.0940525s19xx xxu 00010 eng d a69015193 c693d6931 aCharteris, Leslie,d1907-14aThe Saint abroad. aLVLcMYSkM Charteris bMAINp31000000026220r2.25u5417u124701335 2200373 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200110012110000180013224500610015025000120021126000520022330000350027552001150031065000170042565000220044270000280046494200220049295200430051495200430055795200440060095200430064495200500068795200430073795200430078095200430082395200430086695200520090950389LVL20020716145754.0940228s1987 caua j 00011 eng a86033639 a0152336788 a 86033639 c694d694 aE Wood10aWood, Audrey.10aHeckedy Peg /cby Audrey Wood ; illustrated by Don Wood. a1st ed.0 aSan Diego :bHarcourt Brace Jovanovich,cc1987. a[32] p. :bcol. ill. ;c31 cm. aA mother saves her seven children from Heckedy Peg, a witch who has changed them into different kinds of food. 1aFairy tales. 1aWitchesxFiction.11aWood, Don,d1945-eill. aLVLcEASYkE Wood bLB2p37000000022265r14.95u5418u1248 bLB2p37000000022266r14.95u5419u1249 bMAINp32000000045254r13.46u5420u1250 bLB1p36000000018859r14.95u5423u1251 bMAINdMAINp32000000009913r14.95u5424u1252 bLB2p34000000028369r14.95u5425u1253 bMAINp31000000046900r8.82u5426u1254 bLB1p33000000017906r14.95u5428u1255 bLB1p33000000051924r14.95u5429u1256 bMAINdMAINp32000000001148r14.95u327653u125700722 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903900180009404000130011205000250012508200160015009000130016610000280017924000190020724500390022626000530026530000210031850000300033965000220036994200220039195200430041364427LVL19990217000000.0820211r1982 meu d 00011 eng a82000859 a089621351X0 a2b3c3d3e3 aDLCcDLC1 aPS3511.A87bT74 19820 219a813/.52 c695d69510aBrand, Max,d1892-1944.10aTrain's trust.10aSteve Train's ordeal /cMax Brand.0 aThorndike, Me. :bThorndike Press,c1982, c1924. a341 p. ;c22 cm. aPublished in large print. 0aLarge type books. aLVLcWESkW Brand bMAINp31000000025162r9.00u5430u125800805 2200265 450000100060000000300040000600500170001000800390002701000200006603500210008604000130010704300120012005000180013208200180015009000130016810000290018124501310021026000420034130000330038335000100041650400300042665000210045694200250047795200370050243371LVL19990313000000.0710524s1969 miua b 000 0 eng a69020398 //r882 a 69020398 //r882 aDLCcDLC an-us-ky0 aGR110.K4bR58 a398.2/09769/1 c696d6961 aRoberts, Leonard,ecomp.10aOld greasybeard :btales from the Cumberland Gap.cCollected and annotated by Leonard Roberts. Illustrated by Leonard Epstein. aDetroit,bFolklore Associates,c1969. aviii, 215 p.billus.c23 cm. a6.00. aBibliography: p. 213-215. 0aTaleszKentucky. aLVLcNFk398.209 ROB bMAINp32000000009166u5431u125901048 2200325 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200190011210000220013124500400015325000130019326000420020630000290024844000220027750000200029965000260031994200290034595200430037495200440041795200440046195200440050595200430054995200430059295200440063595200430067950390LVL19991215000000.0940513c19921992njua j 00110 eng d a0517065657 anpl94000635 c697d697 aJNF 909.07 O'N10aO'Neill, Richard.14aThe Middle Ages /cRichard O'Neill. aU.S. ed.0 aAvenel, NJ :bCrescent Books,cc1992. a108 p. :bill. ;c29 cm. 0aHistorical facts. aIncludes index. 1aMiddle AgesxHistory. aLVLcJNFkJNF 909.07 O'N bLB2p37000000006756r12.99u5432u1260 bMAINp32000000047064r17.95u5433u1261 bMAINp32000000048954r15.95u5434u1262 bMAINp32000000052586r12.99u5435u1263 bLB1p36000000002996r12.99u5436u1264 bLB2p34000000009261r15.95u5437u1265 bMAINp31000000048294r17.95u5438u1266 bLB1p33000000019898r15.95u5439u126700443 2200169 450000100060000000300040000600500170001000800410002701000130006809000130008110000190009424500340011391000450014791000160019294200220020895200430023071447LVL20000208000000.0950324s19uu 000 0 eng d a51012662 c698d6981 aCrowell, Pers.10aCavalcade of American horses. a1997 August --bNPL --ganimal husbandry a1997 August aLVLcNFk636.1 Cr bMAINp31000000025726r2.63u5440u126800289 2200121 450000100060000000300040000600500170001000800410002709000130006824500270008194200160010895200430012443372LVL19990313000000.0941224s19uu 000 0 eng d c699d69910aCOBBLESTONE JAN. 1984. aLVLcPERkJ bMAINp32000000022103r2.25u5442u126900666 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200160012110000270013724500380016425000200020226000460022230000210026865000220028994200250031195200440033695200440038050391LVL20020917131326.0940303r19941985meu d 00011 eng a94009244 a078620219X a 94009244 c700d700 aLP Cummings1 aCummings, Jack,d1925-10aLynch's revenge /cJack Cummings. aLarge print ed. aThorndike, Me. :bThorndike Press,c1994. a284 p. ;c22 cm. 0aLarge type books. aLVLcLPkLP Cummings bMAINp32000000047890r13.46u5443u1270 bMAINp31000000048918r13.46u5444u127100947 2200277 450000100060000000300040000600500170001000800390002701000200006602000150008604000180010105000180011906000160013708200150015309000130016810000320018124501000021326000990031330000260041244000540043850400390049265000260053165000440055794200240060195200440062557410LVL20020910153612.0750814s1975 nyu b 00110 eng a74034352 //r904 a0470134410 aDLCcDLCdDLC00aRJ506.H9bC36 aWS350 C234h00a618.9/28/5 c701d70110aCantwell, Dennis P.,d1939-14aThe hyperactive child :bdiagnosis, management, current research /ceditor, Dennis P. Cantwell.0 aNew York :bSP Books Division of Spectrum Publications : distributed by Halsted Press,c[1975] axii, 209 p. ;c24 cm. 0aSeries on child behavior and development ;vv. 1. aIncludes bibliographies and index. 0aHyperactive children. 1aHyperkinesisxIn infancy and childhood. aLVLcNFk618.928 Ca bMAINp31000000024858r12.95u5445u127200509 2200193 450000100060000000300040000600500170001000800390002701000160006608200110008209000130009310000280010624500240013426000300015830000190018894200210020795200440022895200430027264429LVL19990217000000.0751119s1957 nyu 00001 eng a57009590 /L 4aW Grey c702d70210aGrey, Zane,d1872-1939.14aThe fugitive trail.0 aNew York,bHarperc[1957] a215 p.c22 cm. aLVLcWESkW Grey bMAINp31000000029207r10.00u5446u1273 bMAINp31000000034746r5.40u5447u127400354 2200145 450000100060000000300040000600500170001000800410002701000130006809000130008110000310009424500150012594200240014095200440016429335LVL19990320000000.0940524s19xx xxu 00010 eng d a66015593 c703d703 aWaltari, Mika,d1908-1979.14aThe roman. aLVLcAFkAF Waltari bMAINp32000000008021r10.00u5448u127500377 2200145 450000100060000000300040000600500170001000800410002702000150006809000130008310000170009624500520011394200230016595200430018836354LVL19990319000000.0941224s19uu 000 0 eng d a0553470140 c704d7041 aBodett, Tom.14aThe big garage on Clear Shoth[sound recording] aLVLcACkAC Bodett bMAINp32000000032068r8.63u5449u127600887 2200253 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200110011010000190012124500550014026000470019530000230024252001900026565000360045565000360049165000220052765100210054994200200057095200430059050392LVL19990312000000.0940716r19931991nyu j 00011 eng a0440218861 anpl94001200 c705d705 aJ Peck1 aPeck, Richard.10aUnfinished portrait of Jessica /cby Richard Peck. aNew York :bDelacorte Press,c1993, c1991. a162 p. :c18 cm.;. aA trip to Mexico to visit the divorced vagabond father whom she idolizes cures fourteen-year-old Jessica of certain illusions and helps her reconstruct her relationship with her mother. 1aFathers and daughtersxFiction. 1aMothers and daughtersxFiction. 1aDivorcexFiction. 1aMexicoxFiction. aLVLcJFkJ Peck bMAINp32000000048727r3.99u5450u127700832 2200265 450000100060000000300040000600500170001000800390002701000190006602000150008504000130010005000170011308200080013009000130013810000250015124500940017625000120027026000940028230000290037650000220040565000420042765000330046994200200050295200440052257411LVL20020918114303.0770506s1977 enka 00110 eng a77073895 //r84 a0442220774 aDLCcDLC0 aTH4961.bD46 a690 c706d70610aDemske, Dick,d1930-10aYear-round outdoor building projects /cby Richard Demske ; illustrated by Mary Kornblum. a1st ed.0 a[Sussex, Eng.] :aNew York :bService Communications ;bVan Nostrand Reinhold Co.,c1977. a304 p. :bill. ;c29 cm. aIncludes indexes. 0aGarden structuresxAmateurs' manuals. 0aBuildingxAmateurs' manuals. aLVLcNFk690 De bMAINp31000000024072r10.79u5451u127800663 2200229 450000100060000000300040000600500170001000800390002701000130006602000240007904000130010305000320011608200130014809000130016110000270017424500560020125000120025726000750026930000210034494200250036595200430039064430LVL19990217000000.0760503s1976 nyu 00011 eng a76002797 a038511415X :c$5.95 aDLCcDLC0 aPZ4.M168aPS3563.A31898bFu a813/.5/4 c707d70710aMcMullen, Mary,d1920-10aFunny, Jonas, you don't look dead /cMary McMullen. a1st ed.0 aGarden City, N.Y. :bPublished for the Crime Club by Doubleday,c1976. a178 p. ;c22 cm. aLVLcAFkAF McMullen bMAINp31000000028846r3.25u5452u127900865 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500200009409000130011409200140012710000400014124501070018126000380028830000310032660000660035765000480042365100410047165100320051294200230054495200440056750393LVL19990312000000.0910726s1992 nyu 00010aeng a91053230 a0679410740 a 91053230 //r94 c708d708 a813.52 St1 aStegner, Wallace Earle,d1909-1993.10aWhere the bluebird sings to the lemonade springs :bliving and writing in the West /cWallace Stegner. aNew York :bRandom House,cc1992. axxiii, 227 p. ;c24 cm. ;.10aStegner, Wallace Earle,d1909-xHomes and hauntszWest (U.S.) 0aAuthors, AmericanxBiography.y20th century 0aWest (U.S.)xDescription and travel. 0aWest (U.S.)xIn literature. aLVLcNFk813.52 St bMAINp32000000050682r12.00u5453u128000838 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000320013524500750016726001120024230000350035450000200038950400300040965000400043965000380047994200240051795200430054136356LVL19990319000000.0880229s1988 nyua b 00110 eng a88070583 a0874473055 a 88070583 c709d709 a373.12 Sh10aShields, Charles J.,d1951-10aHow to help your teenager find the right career /cCharles J. Shields.0 aNew York :bCollege Entrance Examination Board :bCopies available from College Board Publications,cc1988. axiii, 203 p. :bill. ;c23 cm. aIncludes index. aBibliography: p. 181-194. 0aVocational guidancezUnited States. 0aYouthxEmploymentzUnited States. aLVLcNFk373.12 SHI bMAINp32000000027536r7.64u5454u128101018 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009405000230010808200100013109000130014109200150015410000230016924500640019226000350025630000330029149000350032450000520035950000200041152001260043165000120055770000260056994200250059595200420062095200420066264432LVL20010804005316.0820526s1982 mnua j 00010 eng a82010086 a0822595443 a 820100860 aQL430.4.bJ58 19820 aJ 594 c710d710 aJNF 594 Jo10aJohnson, Sylvia A.10aSnails /cSylvia A. Johnson ; photographs by Modoki Masuda.0 aMinneapolis :bLerner,cc1982. a48 p. :bcol. ill. ;c22 cm. 2aA Lerner natural science book. aAdaptation of: Katatsumuri / by Yasuyuki Koike. aIncludes index. aAn introduction to the structure and ways of life of some of the 40,000 kinds of snails, with an emphasis on land snails. 1aSnails.11aMasuda, Modoki,eill. aLVLcJNFkJNF 594 Jo bLB1p36000000002678r8.00u5455u1282 bLB1p33000000006109r8.00u5456u128300592 2200205 450000100060000000300040000600500170001000800390002701000200006604000130008605000250009909000130012410000340013724500410017126000340021230000190024650500590026594200250032495200370034971451LVL19990404000000.0710125s1968 nyu 00011 eng a68024023 //r852 aDLCcDLC0 aPR6005.H66bS64 1968 c711d71110aChristie, Agatha,d1890-1976.10aSpies among us,cby Agatha Christie.0 aNew York,bDodd, Meadc[1968] a543 p.c22 cm.0 aThey came to Baghdad.--N or M?--Murder in Mesopotamia. aLVLcMYSkM Christie bMAINp31000000025880u5457u128400812 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000240013524500680015925000160022726000450024330000210028850400640030965000390037365000470041270000210045994200230048095200430050329338LVL20011030172602.0911010s1992 nyu b 00110 eng a91058472 a0060553030 a 91058472 c712d712 a616.85 Pa10aPapolos, Demitri F.10aOvercoming depression /cDemitri F. Papolos and Janice Papolos. aRevised ed.0 aNew York, NY :bHarperPerennial,cc1992. a393 p. ;c21 cm. aIncludes bibliographical references (p. 355-377) and index. 0aDepression, MentalxPopular works. 0aManic-depressive psychosesxPopular works.10aPapolos, Janice. aLVLcNFk616.85 Pa bLB2p34000000001697r14.50u5458u128500970 2200301 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000130011011000120012324500640013526000610019930000350026050000200029565000210031565000140033694200200035095200430037095200430041395200430045695200420049995200430054195200420058495200420062650395LVL19990312000000.0941031s1994 caua 00110 eng d a94066506 a0376013184 a 94066506 c713d71320aSunset.10aIdeas for great bedrooms /cby the Editors of Sunset Books.0 aMenlo Park, CA :bSunset Publishing Corporation,cc1994. a96 p. :bill. ;c28 cm. ;dpa. aIncludes index. 0aInterior design. 0aBedrooms. aLVLcNFk747 Su bMAINp32000000053416r5.89u5459u1286 bMAINp32000000060329r9.99u5460u1287 bMAINp35000000003387r9.99u5461u1288 bLB2p34000000002241r5.89u5462u1289 bMAINp31000000056915r9.99u5463u1290 bLB1p33000000020938r5.89u5464u1291 bLB1p33000000023918r9.99u5465u129200733 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007904000130009405000190010708200180012609000130014410000260015724500520018326000440023530000520027950000200033160000310035165000380038294200220042095200370044257414LVL19990220000000.0761230s1977 nyuaf 00110beng a76058432 a0671224964 aDLCcDLC0 aPN2598.L46bE3 a791/.092/4aB c714d71410aEdwards, Anne,d1927-00aVivien Leigh :ba biography /cby Anne Edwards.0 aNew York :bSimon and Schuster,cc1977. a319 p., [16] leaves of plates :bill. ;c25 cm. aIncludes index.10aLeigh, Vivien,d1913-1967. 0aActorsxBiography.zGreat Britain aLVLcBIOkB Leigh bMAINp31000000021393u5466u129300742 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200180012110000110013924500250015025000120017526000330018730000330022044000420025352001110029565000100040694200280041695200440044429339LVL19990320000000.0891122s1990 nyua j 00010 eng a89049357 a0690048157 a 89049357 c715d715 aJNF 612.98 Al0 aAliki.10aMy feet /cby Aliki. a1st ed. aNew York :bCrowell,cc1990. a32 p. :bcol. ill. ;c19 cm. 0aLet's-read-and-find-out science book. aBrief text and illustrations describe the various parts of the foot and all the things feet help us to do. 1aFoot. aLVLcJNFkJNF 612.98 Al bMAINp32000000035650r12.50u5468u129400505 2200169 4500010001600000082001100016090001300027100002000040245007500060260003300135300002700168490002800195650002000223650002600243942002300269952004300292 a57011904 /L a739.15 c716d7161 aUntracht, Oppi.10aEnameling on metal.cPhotos. by the author unless otherwise indicated. aNew York,bGreenbergc[1957] a191 p.billus.c27 cm.0 aArts and crafts series. 0aArt metal-work. 0aEnamel and enameling. aLVLcNFk738.4 UNT bMAINp32000000011481r5.98u5469u129500609 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000320013524500350016725000200020226000470022230000210026965000220029094200230031295200440033550396LVL20030129141717.0940405r19941955meu d 00011 eng a94012081 a0786202548 a 94012081 c717d717 aLP Haycox1 aHaycox, Ernest,d1899-1950.10aSecret river /cErnest Haycox. aLarge print ed. aThorndike, Me. :bThorndike Press,cc1994. a279 p. ;c23 cm. 0aLarge type books. aLVLcLPkLP Haycox bMAINp31000000052451r12.71u5470u129600671 2200229 450000100060000000300040000600500170001000800390002702000150006603500140008109000130009509200120010810000230012024500390014326000380018230000280022044000460024894200210029495200420031595200420035795200420039964434LVL20000204000000.0901129s1989 nyu 00011 eng a0553282484 a 90026003 c718d718 aAF Ross10aRoss, Dana Fuller.10aOregon legacy /cDana Fuller Ross.0 aNew York :bBantam Books,cc1989. a352 p. ;c18 cm. ;dpa. 4aThe Holts: an American dynasty ;vvol. 1. aLVLcAFkAF Ross bLB2p37000000001273r2.66u5471u1297 bLB1p36000000004704r4.50u5472u1298 bLB2p34000000003953r2.66u5473u129900847 2200265 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200150011010000200012524501090014526000370025430000340029150000220032550400320034765000370037965000450041665000110046194200240047295200420049695200430053850397LVL20030730154401.0760803s1967 mau b 00010 eng a0316525146 anpl95000746 c719d719 a301.451 Li10aLiebow, Elliot.10aTally's corner :ba study of Negro streetcorner men /cby Elliot Liebow; with a foreword by Hylan Lewis.0 aBoston :bLittle, Brown,cc1967. axvii, 260 p. ;c20 cm. ;dpa. a"Back Bay Books". aBibliography: p. [257]-260. 0aAfro-AmericanszWashington, D.C. 0aAfro-AmericansxSocial conditionsy1964- 0aGangs. aLVLcNFk301.451 Li bLB2p34000000005418r6.17u5475u1300 bMAINp31000000054465r6.17u5476u130100667 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000230013424500800015726000530023730000290029065000270031970000260034694200220037295200430039464435LVL19990217000000.0780526s1978 njua 00010 eng a78017981 a0139259171 a 78017981 c720d720 a796.5 Br10aBrown, Tom,d1950-14aThe tracker :bthe story of Tom Brown, Jr., as told to William Jon Watkins.0 aEnglewood Cliffs, N.J. :bPrentice-Hall,cc1978. a190 p. :bill. ;c24 cm. 0aTracking and trailing.10aWatkins, William Jon. aLVLcNFk796.5 Br bMAINp31000000037509r5.97u5477u130200847 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000230013424500680015726000560022530000280028152001880030965000190049770000240051694200220054095200430056229341LVL19990320000000.0800314s1981 nyua j 00011 eng a80012886 a0395294320 a 80012886 c721d721 aJ Thomas1 aThomas, Jane Resh.14aThe comeback dog /cJane Resh Thomas ; drawings by Troy Howell. aNew York :bHoughton Mifflin/Clarion Books,cc1981. a62 p. :bill. ;c21 cm. aDaniel, a Midwestern farm boy, finds a battered dog in a ditch and nurses it back to health, but is disappointed when the dog doesn't immediately respond to his gestures of affection. 1aDogsxFiction.11aHowell, Troy,eill. aLVLcJFkJ Thomas bMAINp32000000036732r8.00u5478u130300864 2200277 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000130011009200150012310000240013824501120016226000340027430000290030850000200033765000280035765000170038570000280040294200250043095200440045595200440049995200430054350398LVL19990312000000.0950222s1994 nyua j 00110 eng d a94016757 a080690688X a 94016757 c722d722 aJNF 540 Lo10aLoeschnig, Louis V.10aSimple chemistry experiments with everyday materials /cLouis V. Loeschnig; illustrated by Frances Zweifel.0 aNew York :bSterling,cc1994. a128 p. :bill. ;c22 cm. aIncludes index. 1aChemistryxExperiments. 1aExperiments.11aZweifel, Frances,eill. aLVLcJNFkJNF 540 Lo bMAINp32000000058732r12.95u5479u1304 bMAINp31000000055359r12.95u5480u1305 bLB1p33000000021950r12.95u5481u130600497 2200181 450000100060000000300040000600500170001000800410002701000130006802000150008109000130009610000230010924500460013226000410017830000290021994200240024895200430027264436LVL19990217000000.0930415s19xx xxu 00010 eng d a87004904 a0590405098 c723d7231 aRobinson, Nancy K.10aVeronica knows best /cby Nancy Robinson.0 aNew York :bScholastic Inc.,cc1987. a156 p. :billus.c21 cm. aLVLcJFkJ Robinson bMAINp31000000051860r2.75u5482u130700316 2200121 4500010001300000090001300013100002300026245001900049260003900068300001800107942002500125952004400150 a87050851 c724d724 aBarrett, Norman S. aPolar animals. aLondon :bFranklin Watts ;cc1988. a32p. ;c26cm. aLVLcJNFkJNF 599.74 bMAINp31000000007912r10.90u5483u130800785 2200253 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000130011009200130012310000190013624500410015525000120019626000430020830000350025152001360028665000230042265000190044594200240046495200430048829342LVL19990320000000.0930312s1984 nyua j 00011 eng d a83014062 a0688025404 a 83014062 c725d725 aE Keller1 aKeller, Holly.10aGeraldine's blanket /cHolly Keller. a1st ed. aNew York :bGreenwillow Books,cc1984. a[32] p. :bcol. ill. ;c21 cm. aWhen her mother and father insist that Geraldine get rid of her baby blanket, she finds a new way to keep it with her all the time. 1aBlanketsxFiction. 1aPigsxFiction. aLVLcEASYkE Keller bMAINp32000000037859r8.33u5484u130900683 2200205 4500010001300000020001700013082001500030090001300045245004800058260004600106300004100152650002500193650002400218650002700242710003400269942002400303952004400327952004400371952006200415 a87061720 a0848707354 : a746.46/041 c726d726 aSmall quilts /cthe Vanessa-Ann Collection. aBirmingham, Ala. :bOxmoor House,cc1989. a160 p. :bill. (some col.) ;c29 cm. aPatchworkxPatterns. aQuiltingxPatterns. aCrib quiltsxPatterns. aVanessa-Ann Collection (Firm) aLVLcNFk746.46 SMA bMAINp32000000026589r11.48u5485u1310 bMAINp32000000072905r11.48u5486u1311 bLB1dLB1p36000000020475r19.95u275876u1312v2003-09-2900862 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000270013524500550016226000460021730000400026350400540030365000180035765000150037574000430039094200230043395200430045695200420049995200430054150399LVL20020430141842.0941121s1994 txua b 00010 eng a94024424 a1565301420 a 94024424 c727d727 a793.22 Sp10aSprague, Marty,d1949-10a36 best Christmas party ideas /cby Marty Sprague.0 aFort Worth, Tex. :bSummit Group,cc1994. axv, 187 p. :bill. ;c21 cm. ;dpa. aIncludes bibliographical references (p. 185-186). 0aEntertaining. 0aChristmas.01aThirty-six best Christmas party ideas. aLVLcNFk793.22 Sp bMAINp32000000060138r7.64u5487u1313 bLB2p34000000009913r7.64u5488u1314 bMAINp31000000056754r7.64u5489u131500601 2200217 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200140011010000180012424500330014225000200017526000780019530000210027365000220029494200230031695200440033957418LVL19990220000000.0910423c19901976enk d 00011 eng a0750500166 aonv90000542 c728d728 aLP Mather10aMather, Anne.10aCome running /cAnne Mather. aLarge print ed. aLong Preston, North Yorkshire, England :bMagna Print Books,c1990, c1976. a253 p. ;c22 cm. 0aLarge type books. aLVLcLPkLP Mather bMAINp31000000035637r16.95u5490u131600784 2200253 450000100060000000300040000600500170001000800410002703500160006809000130008409200160009710000410011324500200015425000180017426000590019230000410025150000200029260000410031260000180035365100470037194200250041895200430044395200440048664437LVL20000912084345.0960814s1992 ohuj 00110 eng d anpl96001546 c729d729 aLH 929.2 Fa10aFaber, Richard Neal,dFeb. 28, 1955-10aPedigree chart. a17 Nov. 1992.0 aSan Juan Capistrano, CA :bRichard Neal Faber,cc1992. a[19] p. :bgenealogy chart ;c28 cm. aIncludes index.10aFaber, Richard Neal,dFeb. 28, 1955-30aHobby family. 0aCoolvillexGenealogy.zAthens CountyzOhio aLVLcLHkLH 929.2 Fa bLB1p36000000015692r15.00u5491u1317 bMAINp31000000061259r15.00u5492u131800836 2200265 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000130011009200110012324500730013426000480020730000400025550000890029550000420038465000180042665000240044471000190046871000190048794200200050695200440052636362LVL19990319000000.0930719s1994 paua 00000 eng d a93085536 a1561383961 a 93085536 c730d730 a743 Wa00aWays of drawing birds :ba guide to expanding your visual awareness.0 aPhiladelphia, Pa. :bRunning Press,cc1994. a64 p. :bill. (some col.) ;c17 cm. a"Produced, edited, and designed by Inklink, Greenwich, London, England"--T.p. verso. a"The Ways of drawing series"--Jacket. 0aBirds in art. 0aDrawingxTechnique.20aRunning Press.20aInklink (Firm) aLVLcNFk743 Wa bMAINp32000000060393r12.95u5493u131900603 2200217 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200130011210000220012524500420014726000380018930000280022744000230025594200220027895200420030095200430034257419LVL19990220000000.0960627s1995 nyu 00011 eng d a0553566644 anpl96001186 c731d731 aYA Clark10aClark, Catherine.14aThe day I met him /cCatherine Clark.0 aNew York :bBantam Books,cc1995. a180 p. ;c18 cm. ;dpa. 0aLove stories ;v5. aLVLcYAkYA Clark bLB1p36000000002263r3.50u5494u1320 bMAINp31000000060603r3.50u5495u132100603 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200110012110000320013224500440016425000200020826000390022830000210026765000220028894200200031095200430033064438LVL19990217000000.0911001r19921951mau d 00011 eng a91037941 a0816152764 a 91037941 c732d732 aLP Fox1 aFox, Norman A.,d1911-1960.10aStranger from Arizona /cNorman A. Fox. aLarge print ed. aBoston, Mass. :bG.K. Hall,c1992. a256 p. ;c24 cm. 0aLarge type books. aLVLcLPkLP Fox bMAINp31000000045783r3.50u5496u132200720 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000280013424500420016225000120020426000430021630000210025965100330028094200220031395200430033595200440037895200440042229344LVL20010804213223.0921014s1993 nyu 00011 eng a92055000 a0449908240 a 92055000 c733d733 aAF Blake10aBlake, Jennifer,d1942-10aArrow to the heart /cJennifer Blake. a1st ed.0 aNew York :bFawcett Columbine,cc1993. a325 p. ;c24 cm. 0aLouisianaxHistoryxFiction. aLVLcAFkAF Blake bLB2p37000000013327r19.00u5497u1323 bMAINp32000000048652r10.75u5498u1324 bMAINp31000000009072r10.75u5499u132500726 2200253 450000100060000000300040000600500170001000800390002701000130006602000250007903500140010404000130011805000240013108200170015509000130017210000250018524500750021025000210028526000460030630000290035250000270038194200210040895200430042936363LVL19990319000000.0860812r1986 maua 000 1 eng a86020864 a0395412242 :c$16.95 a 86020864 aDLCcDLC0 aPR6069.A42bA8 19860 219a823/.914 c734d7341 aRead,cMiss,d1913-.10aAt home in Thrush Green /cby Miss Read ; illustrated by J.S. Goodall. a1st American ed. aBoston :bHoughton Mifflin,c1986, c1985. a261 p. :bill. ;c22 cm. aIll. on lining papers. aLVLcAFkAF Read bMAINp32000000013334r9.71u5501u132600783 2200253 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200120011210000260012424500470015026000380019730000280023544000330026394200210029695200420031795200430035995200430040295200420044595200420048750401LVL20020308151928.0960618s1996 nyu j 00011 eng d a0553483943 anpl96001118 c735d735 aJ Wyeth10aWyeth, Sharon Dennis.14aThe winning stroke /cSharon Dennis Wyeth.0 aNew York :bBantam Books,cc1996. a145 p. ;c20 cm. ;dpa. 0aAmerican Gold Swimmers ;v1. aLVLcJFkJ Wyeth bLB2p37000000007997r3.50u5502u1327 bMAINp32000000065274r2.03u5503u1328 bMAINp35000000002178r2.03u5504u1329 bLB2p34000000013966r2.03u5505u1330 bLB1p33000000026015r2.03u5506u133100640 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200110012124500240013226000470015630000340020349000450023750000200028265000450030294200200034795200430036757420LVL20030712135958.0890531s1989 mnua f 00100 eng a89011833 a0865737061 a 89011833 c736d736 a643 Ki00aKitchen remodeling.0 aMinnetonka, MN :bCy DeCosse Inc.,cc1989. a128 p. :bcol. ill. ;c28 cm. 0aBlack & Decker home improvement library. aIncludes index. 0aKitchensxRemodelingxAmateurs' manuals. aLVLcNFk643 Ki bLB1p33000000009405r14.95u5507u133200752 2200241 450000100060000000300040000600500170001000800410002701000130006802000150008109000130009609200150010910000240012424500570014826000520020530000270025752000760028465000310036065000210039170000290041294200260044195200430046764439LVL19990217000000.0950215s19xx xxu 00010 eng d a93001169 a0836810082 c737d737 aE Gauthier10aGauthier, Bertrand.10aZachard in the championship /cby Bertrand Gauthier.0 aMilwaukee :bGareth Stevens Publishing,cc1993. a24 p. :bill.,c21 cm. aZachary's dad lets him down on the day of a very important hockey game. 7aFathers and sonsxFiction. 7aHockeyxFiction.11aSylvestre, Daniel,dill. aLVLcEASYkE Gauthier bMAINp31000000048551r9.56u5508u133300819 2200241 450000100060000000300040000600500170001000800390002701000170006602000510008308200130013409000130014710000250016024500750018526000870026030000350034749000200038252000640040265000210046670000230048794200240051095200430053471458LVL19990404000000.0751017s1976 ilua j 00010 eng a75035970 /AC a0913778265 (Child's World)blib. bdg. :c$3.95 aE Brewer c738d73810aBrewer, Mary,d1945-10aWhich is biggest? /cBy Mary Brewer ; illustrated by Nancy Inderieden.0 aElgin, Ill. :aChicago :bChild's World ;bdistributed by Childrens Press,cc1976. a[31] p. :bcol. ill. ;c25 cm.0 aA Concept book. aA simple introduction to the concept of size relationships. 1aSize perception.10aInderieden, Nancy. aLVLcEASYkE Brewer bMAINp31000000001728r6.60u5509u133400705 2200229 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200150011210000260012724500930015326000360024630000500028250000230033265000100035594200250036595200430039095200420043350402LVL20030516123956.0960821s1995 nyuaf j 00010 eng d a0590485733 anpl96001664 c739d739 aJNF 818 Sa10aSanderson, Jeannette.10aDog to the rescue II :bseventeen more true tales of dog heroism /cJeannette Sanderson.0 aNew York :bScholastic,cc1995. a74, [8] p. of plates :bill. ;c20 cm. ;dpa. a"Apple Paperback." 1aDogs. aLVLcJNFkJNF 818 Sa bMAINp31000000061381r2.95u5510u1335 bLB1p33000000026443r2.95u5511u133600323 2200133 450000100060000000300040000600500170001000800410002709000130006810000280008124500220010994200210013195200370015264440LVL19990217000000.0950324s19uu 000 0 eng d c740d7401 aGrey, Zane,d1872-1939.10aMajesty's rancho. aLVLcAFkAF Grey bMAINp31000000029213u5512u133700811 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200110012124501460013225000120027826000380029065000390032865000380036765000360040565000290044170000250047094200200049595200420051529346LVL20030524143730.0921204s1993 nyu 00001 eng a92044297 a0385469608 a 92044297 c741d741 a813 Ea00aEarth song, sky spirit :bshort stories of the contemporary native American experience /cedited with an introduction by Clifford E. Trafzer. a1st ed.0 aNew York :bAnchor Books,cc1993. 0aIndians of North AmericaxFiction. 0aAmerican fictionxIndian authors. 0aAmerican fictiony20th century. 0aShort stories, American.10aTrafzer, Clifford E. aLVLcNFk813 Ea bLB1p33000000016017r7.64u5513u133800989 2200337 450000100060000000300040000600500170001000800390002701000170006602000150008303500160009804000200011405000180013408200100015209000130016210000190017524500560019425000140025026000300026430000330029435000110032751000140033851000490035251000210040152000980042252100090052065000350052965000220056494200220058695200430060836365LVL20000911210818.0720105s1971 nyua j 00001 eng a70157953 /AC a0525355405 aflb00544901 aDLCcDLCdICrlF0 aPZ7.R1817bMy a[Fic] c742d74210aRaskin, Ellen.14aThe mysterious disappearance of Leon (I mean Noel). a[1st ed.]0 aNew York,bDuttonc[1971] aviii, 149 p.billus.c24 cm. a$4.95.0 aBooklist.0 aBulletin Of The Center For Children's Books.0 aLibrary Journal. aThe disappearance of her husband is only the first of the mysteries Mrs. Carillon must solve.2 a5-8. 1aMystery and detective stories. 1aHumorous stories. aLVLcJFkJ Raskin bMAINp32000000014380r2.75u5514u133900664 2200229 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200140011010000210012424500460014526000410019130000350023265000130026794200230028095200430030395200440034695200440039050403LVL20010804010740.0961104s1996 nyua 00110 eng a0517887762 anpl96001976 c743d743 a745.92 St10aStewart, Martha.10aGreat American wreaths /cMartha Stewart.0 aNew York :bClarkson Potter,cc1996. a144 p. :bcol. illus.,c28 cm. 0aWreaths. aLVLcNFk745.92 St bLB2p37000000014242r20.00u5515u1340 bMAINp32000000067725r10.17u5516u1341 bMAINp31000000062474r10.17u5517u134200606 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000260013424500410016025000200020126000460022130000210026765000220028894200220031095200440033257422LVL20000911193539.0930901s1993 meu d 00011 eng a93023766 a1560547812 a 93023766 c744d744 aLP Brown1 aBrown, Sandra,d1948-10aWhere there's smoke /cSandra Brown. aLarge print ed. aThorndike, ME :bThorndike Press,cc1993. a660 p. ;c22 cm. 0aLarge type books. aLVLcLPkLP Brown bMAINp31000000044473r16.47u5518u134300563 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009409000130011009200180012310000250014124500440016625000130021026000330022330000210025694200240027795200440030171460LVL19990404000000.0830601s1983 enk 00011 eng a83156060 a0708913296 aonv90001285 c745d745 aL.P. Rossiter10aRossiter, Elizabeth.14aThe lemon garden /cElizabeth Rossiter. aL.P. ed.0 aLondon :bConstable,cc1983. a525 p. ;c23 cm. aLVLcUkLP Rossiter bMAINp31000000036761r11.25u5519u134401101 2200313 450000100060000000300040000600500170001000700100002700800410003703500160007803700270009409000130012109200140013424501320014826000420028030000560032250600310037851100590040952001120046852100240058053800150060465000190061970000180063870000240065670000200068070000200070094200230072095200440074329347LVL19990320000000.0vf cbahom931028s1986 nyu103 g vleng d avid93000505 a3897bHBO Cannon Video c746d746 aAV Hannah00aHannah and her sisterscOrion Pictures ; produced by Robert Greenhut ; written and directed by Woody Allen.h[videorecording] / aNew York :bHBO Cannon Video,cc1986. a1 videocassette (103 min.) :bsd., col. ;c1/2 in.. aFor private home use only.1 aWoody Allen, Mia Farrow, Michael Caine, Carrie Fisher. aAn intimate look at three women and the relationships they have with each other and the men in their lives.8 aMPAA rating: PG-13. aVHS hi-fi. 0aFeature films.11aAllen, Woody.11aFarrow, Mia,d1945-11aCaine, Michael.11aFisher, Carrie. aLVLcAVkAV Hannah bMAINp32000000020585r69.99u5520u134500944 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200170012110000520013824500820019025000120027226000410028430000280032544000200035352000870037365000130046065000100047370000190048370000270050294200270052995200430055695200430059936366LVL19990319000000.0900302s1990 nyu j 00110 eng a90034199 a0896865282 a 90034199 c747d747 aJNF 636.7 Sa10aSanford, William R.d1927-q(William Reynolds),14aThe poodle /cby William R. Sanford and Carl R. Green ; edited by Julie Bach. a1st ed.0 aNew York :bCrestwood House,cc1990. a48 p. :bill. ;c23 cm. 0aTop dog series. aDiscusses the history, physical characteristics, care, and breeding of the poodle. 1aPoodles. 1aDogs.10aGreen, Carl R.10aBach, Julie S.,d1963- aLVLcJNFkJNF 636.7 Sa bMAINp32000000059122r9.95u5521u1346 bMAINp31000000055648r9.95u5522u134700625 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000180013524500660015325000200021926000460023930000210028565000220030694200230032895200440035157423LVL19990220000000.0890922c19901988mau d 00011 eng a89024552 a0816148627 a 89024552 c748d748 aLP Durand1 aDurand, Loup.10aDaddy /cby Loup Durand ; translated by J. Maxwell Brownjohn. aLarge print ed. aBoston, Mass. :bG.K. Hall,c1990, c1988. a553 p. ;c25 cm. 0aLarge type books. aLVLcLPkLP Durand bMAINp31000000048471r18.66u5523u134800984 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200190012110000290014024500790016926000380024830000290028644000240031552001430033965000250048265000250050765000200053270000280055294200280058095200430060895200430065129348LVL19990320000000.0930803s1993 nyu j 00011 eng a92032570 a0679936130 a 92032570 c749d749 aE Beren- stain10aBerenstain, Stan,d1923-14aThe Berenstain Bears and the new girl in town /cby Stan & Jan Berenstain.0 aNew York :bRandom House,cc1993. a102 p. :bill. ;c20 cm. 2aA big chapter book. aBrother Bear's budding romance with Squire Grizzly's niece helps bring about an end to the fierce feud between the Grizzly and Bear clans. 1aPrejudicesxFiction. 1aFriendshipxFiction. 1aBearsxFiction.10aBerenstain, Jan,d1923- aLVLcEASYkE Berenstain bMAINp32000000044041r9.99u5524u1349 bLB1p33000000017155r10.96u5525u135000909 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000210013424500320015526000410018730000210022894200220024995200430027195200440031495200440035895200440040295200430044695200430048995200440053295200430057629349LVL20020312091412.0930802s1994 nyu 00011 eng a93031272 a0385306024 a 93031272 c750d750 aAF Steel10aSteel, Danielle.10aAccident /cDanielle Steel.0 aNew York :bDelacorte Press,cc1994. a305 p. ;c24 cm. aLVLcAFkAF Steel bLB2p37000000006524r14.13u5529u1351 bMAINp32000000044862r14.37u5530u1352 bMAINp32000000047813r14.13u5531u1353 bMAINp32000000048693r14.13u5532u1354 bLB1p36000000004798r14.13u5533u1355 bLB2p34000000004277r14.13u5534u1356 bMAINp31000000048860r14.13u5535u1357 bLB1p33000000017816r14.13u5536u135800636 2200229 450000100060000000300040000600500170001000800390002701000190006602000150008503500200010004000130012005000260013308200160015909000130017510000280018824500320021626000310024830000610027994200230034095200430036350406LVL19990312000000.0790523s1979 nyujb 000 1 eng a79015706 //r81 a0517536021 a 79015706 //r81 aDLCcDLC0 aPS3563.A7297bB3 19790 219a813/.54 c751d7511 aMartin, William,d1950-10aBack Bay /cWilliam Martin. aNew York :bCrown,cc1979. a437 p. :bgeneal. table (on lining papers) map ;c24 cm. aLVLcAFkAF Martin bMAINp32000000006110r7.77u5537u135900957 2200301 450000100060000000300040000600500170001000700090002700800390003603500160007509000130009109200140010413000300011824500700014826000360021830000540025450000090030850000640031751100310038152000990041265000140051170000160052570000180054171000150055974000140057494200230058895200440061157425LVL19990220000000.0vf cbaho880928s1985 txu030 g vleng avid93001443 c752d752 aAV 796 Sp0 aWinner's edge.pFootball.10aSports teaching videocWord, Inc.h[videorecording] .pFootball / aWako, Tx. :bWord Inc.,cc1985. a1 videocassette (30 min.) :bsd., col. ;c1/2 in. aVHS. aOriginally issued under title: The Winner's edge. Football.1 aJeff Kemp and Mike Barber. aJeff Kemp and Mike Barber cover the fundamentals of the offensive and defensive football game. 0aFootball.11aKemp, Jeff.11aBarber, Mike.21aWord, Inc.01aFootball. aLVLcAVkAV 796 Sp bMAINp31000000029594r25.46u5538u136001080 2200349 450000100060000000300040000600500170001000800410002701000130006802000150008103500160009604000270011205000160013908200080015509000130016310000310017624500720020726000380027930000350031751000320035251000140038452001040039852100340050252100090053665000230054565000220056865000230059065000220061370000270063594200250066295200430068736369LVL20020909092635.0900827s1957 nyua j 00011 eng d a56008149 a0060269561 aflb00289810 aICrlFcICrlFdIMchF-DB aPZ7.Z77bOv14a[E] c753d7531 aZolotow, Charlotte,d1915-10aOver and over /cby Charlotte Zolotow ; pictures by Garth Williams. aNew York :bHarper & Row,cc1957. a[29] p. :bcol. ill. ;c28 cm.0 aChildren's Catalog (Wilson)0 aBooklist. aA little girl begins to understand the seasons and holidays that follow each other year after year.0 a3.5bFollett Library Book Co.2 aK-3. 1aHolidaysxFiction. 1aSeasonsxFiction. 7aHolidaysxFiction. 7aSeasonsxFiction.11aWilliams, Garth,eill. aLVLcEASYkE Zolotow bMAINp32000000024085r8.56u5540u136100348 2200133 450000100060000000300040000600500170001000800410002702000150006809000130008324500480009694200260014495200440017050407LVL19990312000000.0941224s19uu 000 0 eng d a0878516034 c754d75410aMotor light truck & van repair manual 1985. aLVLcREFkREF 629.287 bMAINp32000000017395r27.50u5541u136201105 2200289 450000100060000000300040000600500170001000700150002700800410004203500160008303700280009909000130012709200180014010000310015824000240018924500870021326000490030030000510034950000820040050501670048251100290064965000210067865000230069970000220072294200280074495200430077257426LVL19990220000000.0ssulsnjlc ce870623s1986 mdunnn p eng d anav96000023 a099-1bBEDE Productions c755d755 aJAC 811.52 Fr1 aFrost, Robert,d1874-1963.00aPoems.kSelections.12aA swinger of birchesbpoems of Robert Frost for young people.h[sound recording] :0 aOwings Mills, MD :bBEDE Productions,c1986. a1 sound cassette (61 min.) :banalog, stereo.. aIncludes extensive introduction discussing Frost's works, by Clifton Fadiman.0 aBirches -- Nothing gold can stay -- Spring pools -- Hyla brook -- Leaves compared with flowers -- In hardwood groves -- A young birch -- Mending wall; and others.0 aRead by Clifton Fadiman. 0aAmerican poetry. 0aChildren's poetry.1 aFadiman, Clifton. aLVLcJACkJAC 811.52 Fr bMAINp31000000031905r4.84u5542u136300541 2200217 450000100060000000300040000600500170001000800390002701000190006604000130008505000300009808200130012809000130014110000260015424500160018026000300019630000190022635000110024594200240025695200430028064445LVL19990217000000.0710526s1971 nyu 00001 eng a70142420 //r82 aDLCcDLC0 aPZ4.L756aPS3562.I515bRi a813/.5/4 c756d75610aShannon, Dell,d1921-14aThe ringer.0 aNew York,bMorrow,c1971. a252 p.c22 cm. a$5.95. aLVLcAFkAF Shannon bMAINp31000000027277r1.75u5543u136400556 2200205 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200140011210000210012624500520014725000200019926000440021930000210026394200230028495200430030771464LVL19990404000000.0920716119821978enk d 00011 eng d a0708907717 aonv90002799 c757d757 aLP Carter1 aCarter, Forrest.10aWatch for me on the mountain /cForrest Carter. aLarge print ed. aLeicester :bUlverscroft,c1982, c1978. a483 p. ;c22 cm. aLVLcLPkLP Carter bMAINp31000000039880r7.98u5544u136501317 2200337 450000100060000000300040000600500170001000700150002700800410004202000150008302800390009803500160013709000130015309200120016610000260017824500800020426000540028430000570033850000160039550000340041150501800044551101420062565000180076765000190078570000160080470000290082070000220084974000430087194200210091495200440093529351LVL19990320000000.0ssulsnjlcmnnce940326s1993 mnunnn f eng d a045300844502aHBP25628bPenguin Highbridge Audio avid93000866 c758d7582 aAC King1 aKing, Stephen,d1947-10aNightmares & dreamscapescby Stephen King.h[sound recording] .nVolume I / aSt. Paul, MN :bPenguin HighBridge Audio,cp1993. a8 sound cassettes (ca. 9 1/2 hr.) :banalog, stereo. aUnabridged. aFirst in a three-part series.0 aIntroduction -- Suffer the little children -- Crouch end -- Rainy season -- Dolan's Cadillac -- The house on Maple Street -- Umney's last case -- Head down -- Brooklyn August.0 aStories read by Tim Curry, Whoopi Goldberg, Stephen J. Gould, Stephen King, Tabitha King, Rob Lowe, Robert B. Parker, and Yeardley Smith. 0aHorror tales. 0aTalking Books.10aCurry, Tim.10aGoldberg, Whoopi,d1950-10aGould, Stephen J.01aNightmares and dreamscapes.nVolume I. aLVLcACkAC King bMAINp32000000045814r24.95u5545u136600932 2200289 450000100060000000300040000600500170001000800390002701000130006602000520007903500160013104000250014705000280017208200160020009000130021610000270022924500520025626000320030830000210034051000140036151000280037552001030040352100170050665000350052394200220055895200620058043389LVL19990313000000.0900313s1990 nyu 000 1 eng a90034526 a0399135545 (alk. paper) :c$17.95 ($23.50 Can.) aflb01219606 aDLCcDLCdDLCdICrlF00aPS3552.R354bC3437 199000220a813/.54 c759d759 aBraun, Lilian Jackson.14aThe cat who lived high /cLilian Jackson Braun. aNew York :bPutnam,cc1990. a239 p. ;c23 cm.0 aBooklist.0 aSchool Library Journal. aQwill, Koko and Yum Yum unite when an old friend needs help. A puzzling murder complicates things.2 aYoung Adult. 7aMystery and detective stories. aLVLcMYSkM Braun bMAINdMAINp32000000028762r10.41u5546u1367v2003-09-0100392 2200133 4500020001500000090001300015100002500028245004000053260003200093300002300125942002600148952004200174952004200216 a0553299506 c760d76010aKellerman, Jonathan.10aPrivate eyes /cJonathan Kellerman.0 aNew York :bBantam,cc1992. a525 p. ;c18 cm. ; aLVLcMYSkM Kellerman bLB2p37000000004553r3.84u5548u1368 bLB1p36000000004399r3.84u5549u136901018 2200325 450000100060000000300040000600500170001000800390002701000210006603500160008704000200010305000180012308200100014109000130015110000300016424500250019426000360021930000310025551000320028651000520031851000270037052001230039752100340052052100090055465000190056365000200058265100200060294200270062295200430064936371LVL19990319000000.0850816s1948 nyua j 00001 eng a48004955 /AC/r85 aflb00363700 aDLCcDLCdICrlF0 aPZ7.M1336bBl a[Fic] c761d76110aMcCloskey, Robert,d1914-10aBlueberries for Sal.0 aNew York,bViking Press,c1948. a54 p.billus.c23 x 29 cm.0 aChildren's Catalog (Wilson)0 aElementary School Library Collection (Bro-Dart)0 aCaldecott Medal/Honor. aLittle Sal and Little Bear both lose their mothers while eating blueberries and almost end up with the other's mother.0 a3.8bFollett Library Book Co.2 aK-3. 1aPicture books. 7aBearsxFiction. 7aMainexFiction. aLVLcEASYkE McCloskey bMAINp31000000002870r6.22u5550u137001663 2200445 450000100060000000300040000600500170001000800390002701000170006602000310008302000370011403500160015104000250016704300120019205000220020408200180022609000130024410000330025724500830029025000130037326000480038630000290043450400640046351000480052751000280057551000300060352001040063352100340073752100100077165000810078165000880086265000450095065000520099565000150104765000450106265000150110765000230112294200280114595200440117343390LVL20020907154734.0891213s1990 njua j b 001 0 eng a89013790 /AC a067169331X (pbk.) :c$5.95 a0671693301 (lib. bdg.) :c$12.98 aflb00989607 aDLCcDLCdDLCdICrlF an-us---00aTD1040.bZ56 199000220a363.72/87 c762d7621 aZipko, Stephen James,d1948-10aToxic threat :bhow hazardous substances poison our lives /cStephen J. Zipko. aRev. ed. aEnglewood Cliffs, NJ :bJ. Messner,cc1990. a249 p. :bill. ;c22 cm. aIncludes bibliographical references (p. 239-241) and index.0 aJunior High School Library Catalog (Wilson)0 aSchool Library Journal.0 aVoice of Youth Advocates. aDescribes hazardous substances in our environment, how they get there, and the problems they cause.0 a8.1bFollett Library Book Co.2 a7-10. 0aHazardous wastesxEnvironmental aspectsxJuvenile literature.zUnited States 0aFactory and trade wastexEnvironmental aspectsxJuvenile literature.zUnited States 1aHazardous wastesxEnvironmental aspects. 1aFactory and trade wastexEnvironmental aspects. 1aPollution. 7aHazardous wastesxEnvironmental aspects. 7aPollution. 7aIndustrial wastes. aLVLcJNFkJNF 363.72 Zi bMAINp32000000028263r11.68u5551u137100730 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000180013424500710015226000290022330000280025250000370028070000290031770000200034694200230036695200430038995200440043236372LVL20000911225141.0950622s1995 nyub 00011 eng a95023537 a0312855222 a 95023537 c763d763 aSF Niven 0aNiven, Larry.10aBeowulf's children /cLarry Niven, Jerry Pournelle, Steven Barnes.0 aNew York :bTOR,cc1995. a382 p. :bmap ;c24 cm. a"A Tom Doherty Associates book."10aPournelle, Jerry,d1933-10aBarnes, Steven. aLVLcSCIkSF Niven bLB2p34000000017387r23.95u5553u1372 bMAINp31000000056849r14.13u5554u137301731 2200469 450000100060000000300040000600500170001000800390002701000220006602000150008802000270010303500160013003900180014604000200016405000240018408200200020809000130022810000350024124501140027626000620039030000290045250000200048151000320050151000480053351000490058152002400063052100340087052100100090465000430091465000200095765000230097765000330100065000170103365000200105065000230107065000330109365000170112665000200114370000260116394200290118995200430121843391LVL20020918121808.0820902s1983 nyua j 001 0 eng a82017927 /AC/r843 a039485408X a0394954084 (lib. bdg.) aflb002565040 a2b3c3d3e3 aDLCcDLCdICrlF0 aHQ777.65.bK97 19830 219a640/.024054 c764d7641 aKyte, Kathy S.q(Kathy Sharar)10aIn charge, a complete handbook for kids with working parents /cby Kathy S. Kyte ; drawings by Susan Detrich. aNew York :bKnopf :bDistributed by Random House,cc1983. a115 p. :bill. ;c24 cm. aIncludes index.0 aChildren's Catalog (Wilson)0 aJunior High School Library Catalog (Wilson)0 aBulletin Of The Center For Children's Books. aAdvice for children who must take care of themselves in the morning or after school on dealing with organizing of time, fire, first aid, cooking (includes recipes), laundering and mending clothes, and otherwise getting through the day.0 a7.6bFollett Library Book Co.2 a7-10. 0aLatchkey childrenxLife skills guides. 0aHome economics. 1aLatchkey children. 1aChildren of working parents. 1aLife skills. 1aHome economics. 7aLatchkey children. 7aChildren of working parents. 7aLife skills. 7aHome economics.11aDetrich, Susan,eill. aLVLcJNFkJNF 640.024 Ky bMAINp32000000015691r8.09u5556u137400347 2200145 450000100060000000300040000600500170001000800410002702000150006809000130008310000220009624500180011894200220013695200430015857429LVL19990220000000.0950323s19uu 000 0 eng d a0553156608 c765d7651 aPascal, Francine.14aThe new girl. aLVLcJFkJ Pascal bMAINp31000000009393r1.62u5557u137500798 2200265 450000100060000000300040000600500170001000800390002701000130006602000240007904000130010305000210011608200080013709000130014510000210015824500630017926000570024230000280029950000200032750000540034765000280040170000360042994200240046595200430048964448LVL20020904104617.0770628c19771976nyua 00110 eng a77358209 a0374225869 :c$5.95 aDLCcDLC0 aSB455.bB64 1977 a635 c766d76610aBoland, Maureen.10aOld wives' lore for gardeners /cMaureen & Bridget Boland.0 aNew York :bFarrar, Straus and Giroux,c1977, c1976. a63 p. :bill. ;c21 cm. aIncludes index. aSequel: Gardener's magic & other old wives' lore. 0aGardeningxMiscellanea.10aBoland, Bridget,ejoint author. aLVLcNFk635.048 Bo bMAINp31000000024526r3.57u5558u137600772 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000170013424500510015126000340020230000350023652000980027165000220036970000180039194200230040995200440043295200420047671467LVL19990404000000.0870213s1987 nyua j 00011 eng a87080450 a0531170721 a 87080450 c767d767 aJE Petty10aPetty, Kate.10aStarting school /cKate Petty and Lisa Kopper.0 aNew York :bF. Watts,cc1987. a[22] p. :bcol. ill. ;c21 cm. aSam goes to his first day of school, makes a new friend, and enjoys all the activities there. 0aSchoolsxFiction.10aKopper, Lisa. aLVLcEASYkE Petty bMAINp31000000045976r10.99u5559u1377 bLB1p33000000007457r6.95u5560u137800953 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200160012110000190013724500790015625000240023526000570025930000210031644000280033752001390036565000200050465000270052465000220055165000220057394200250059595200430062029354LVL19990320000000.0890627r19891983ctu jd 00011 eng a89036818 a1559050128 a 89036818 c768d768 aLP J Pascal1 aWilliam, Kate.10aPlaying with fire /cwritten by Kate William ; created by Francine Pascal. a1st Grey Castle ed. aLakeville, Conn. :bGrey Castle Press,c1989, c1983. a149 p. ;c24 cm. 0aSweet Valley High ;v3. aElizabeth wonders if her twin sister Jessica can handle her new boy friend Bruce, Sweet Valley High's most eligible and arrogant male. 1aTwinsxFiction. 1aHigh schoolsxFiction. 1aSchoolsxFiction. 1aLarge type books. aLVLcLPkLP J Pascal bMAINp32000000049354r6.25u5561u137901066 2200361 450000100060000000300040000600500170001000800390002701000170006602000150008303500160009803900180011404000200013205000230015208200120017509000130018710000360020024500470023625000120028326000370029530000350033251000320036751000140039951000240041352000800043752100340051752100090055165000340056065000200059465000200061494200270063495200430066143392LVL19990313000000.0830820s1984 nyua j 00011 eng a83016468 /AC a0525440925 aflb002365140 a2b3c3d3e3 aDLCcDLCdICrlF0 aPZ7.P6335bDe 19840 219a[E] c769d76910aPinkwater, Daniel Manus,d1941-10aDevil in the drain /cby Daniel Pinkwater. a1st ed.0 aNew York :bE.P. Dutton,cc1984. a[32] p. :bcol. ill. ;c24 cm.0 aChildren's Catalog (Wilson)0 aBooklist.0 aHorn Book Magazine. aA boy discovers the devil in a kitchen drain and fearlessly deals with him.0 a2.9bFollett Library Book Co.2 aK-3. 0aChildren's stories, American. 1aDevilxFiction. 7aDevilxFiction. aLVLcEASYkE Pinkwater bMAINp32000000018688r5.70u5563u138001236 2200325 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000180013424500390015225000310019126000580022230000210028052002610030152100170056265000370057965000230061665000350063994200230067495200430069795200430074095200420078395200430082595200420086829355LVL20000628000000.0950411s1994 nyu j 00011 eng a95008884 a0786810998 a 95008884 c770d770 aJ Zindel10aZindel, Paul.10aLoch :ba novel /cby Paul Zindel. a1st Hyperion Paperback ed.0 aNew York :bHyperion Paperbacks for Children,cc1995. a209 p. ;c20 cm. aFifteen-year-old Loch and his younger sister join their father on a scientific expedition searching for enormous prehistoric creatures sighted in a Vermont lake, but soon discover that the expedition's leaders aren't interested in preserving the creatures. aGrades 6-12. 1aUnderwater explorationxFiction. 1aMonstersxFiction. 1aBrothers and sistersxFiction. aLVLcYAkYA Zindel bMAINp32000000067268r2.92u5564u1381 bMAINp35000000002088r2.92u5565u1382 bLB2p34000000014480r2.92u5566u1383 bMAINp31000000062066r2.92u5567u1384 bLB1p33000000026823r2.92u5568u138500725 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000190013624500670015526000490022230000330027165000110030465000170031570000290033294200250036195200430038695200420042943393LVL20010703133826.0870821s1988 enka j 00110 eng a87051066 a0531105326 a 87051066 c771d771 aJNF 686 Th10aThomson, Ruth.10aMaking a book /cRuth Thomson ; photography, Chris Fairclough.0 aLondon ; New York :bFranklin Watts,c1988.. a32 p. :bcol. ill. ;c26 cm. 1aBooks. 1aBookbinding.11aFairclough, Chris,eill. aLVLcJNFkJNF 686 Th bMAINp32000000032809r3.98u5569u1386 bLB1p33000000012000r3.98u5570u138700355 2200145 450000100060000000300040000600500170001000800410002701000130006809000130008110000250009424500240011994200230014395200430016671469LVL20020912132743.0950323s19uu 000 0 eng d a61015508 c772d7721 aHamner, Earl,d1923-10aSpencer's Mountain. aLVLcAFkAF Hamner bMAINp31000000014545r3.97u5572u138800920 2200241 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200170011010000290012724500820015625000310023826000440026930000310031352002290034465000130057365100230058694200270060995200420063629356LVL19990320000000.0790731c19791951nyua j 00010 eng a0440841003 anpl94002419 c773d773 aJNF 598.1 Ho aHolling, Holling Clancy.10aMinn of the Mississippi /cwritten and illustrated by Holling Clancy Holling. aA Trumpet Club special ed. aNew York :bTrumpet Club,c1979, c1951. a85 p. :bill. ;c28 cm. ;. aThe adventures of a three-legged snapping turtle as she travels from the headwaters to the mouth of the Mississippi River illustrate the life cycle of the turtle and the geography, history, geology, and climate of the river. 1aTurtles. 1aMississippi River. aLVLcJNFkJNF 598.1 Ho bLB1p36000000006058r5.95u5573u138901056 2200313 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200120011210000190012424500850014326000460022830000230027465000190029765000220031694200210033895200420035995200430040195200430044495200420048795200430052995200430057295200420061595200430065795200420070036375LVL19991217000000.0930122c19891961nyu j 00011 eng d a0553274295 aonv90003917 c774d774 aJ Rawls1 aRawls, Wilson.10aWhere the red fern grows :bthe story of two dogs and a boy /cby Wilson Rawls.. aNew York :bBantam Books,c1989, c1961. . a249 p. ;c18 cm.;. 1aDogsxFiction. 1aHuntingxFiction. aLVLcJFkJ Rawls bLB2p37000000005603r5.99u5574u1390 bMAINp32000000036894r2.39u5576u1391 bMAINp32000000098824r5.99u5577u1392 bLB1p36000000014636r5.99u5578u1393 bMAINp35000000003722r3.99u5579u1394 bMAINp35000000007403r5.99u5580u1395 bLB2p34000000023108r5.99u5581u1396 bMAINp31000000083280r5.99u5582u1397 bLB1p33000000038798r5.99u5583u139800686 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000260013524500330016126000320019430000210022694200230024795200440027095200430031495200440035795200430040143394LVL19990313000000.0900625s1991 nyu 00011 eng a90050462 a0670835706 a 90050462 c775d775 aAF Thayer10aThayer, Nancy,d1943-10aEverlasting /cNancy Thayer.0 aNew York :bViking,cc1991. a322 p. ;c25 cm. aLVLcAFkAF Thayer bMAINp32000000039441r11.57u5584u1399 bLB2p34000000004312r11.57u5585u1400 bMAINp31000000035453r11.57u5586u1401 bLB1p33000000006317r11.57u5587u140200578 2200217 450000100060000000300040000600500170001000800410002701000130006803500140008109000130009509200130010810000230012124500560014425000120020026000390021230000290025165000150028094200220029595200430031729357LVL19990320000000.0941212s1960 nyua 00010 eng d a60012630 a 60012630 c776d776 a394.2 Mi1 aMiller, Llewellyn.14aThe joy of Christmas /cedited by Llewellyn Miller. a1st ed. aNew York :bBobbs-Merrill,cc1960. a186 p. :bill. ;c22 cm. 0aChristmas. aLVLcNFk394.2 Mi bMAINp32000000054376r1.97u5588u140300578 2200181 4500010001300000020001500013090001300028100002600041245007500067260003800142300002100180650005600201650001900257650001400276942002000290952004200310952004400352 a92034012 a055309307X c777d77710aPeck, M. Scottd1936-12aA world waiting to be born :brediscovering civility /cM. Scott Peck.0 aNew York :bBantam Books,cc1993. a366 p. ;c24 cm. 0aOrganizational behaviorxMoral and ethical aspects. 0aSocial ethics. 0aVocation. aLVLcNFk174 Pe bLB2p37000000011754r2.00u5589u1404 bMAINp31000000042369r13.54u5590u140500722 2200253 450000100060000000300040000600500170001000800390002701000130006602000270007904000130010605000260011908200160014509000130016110000280017424500390020225000200024126000460026130000350030749000390034265000220038194200210040395200440042464452LVL19990217000000.0860428c19861915mau d 00011 eng a86011953 a0816141231 (lg. print) aDLCcDLC1 aPS3513.R6545bL6 19860 219a813/.52 c778d77810aGrey, Zane,d1872-1939.14aThe Lone Star ranger /cZane Grey. aLarge print ed.0 aBoston, Mass. :bG.K. Hall,c1986, c1915. a386 p. (large print) ;c25 cm.0 aG.K. Hall large print book series. 0aLarge type books. aLVLcAFkAF Grey bMAINp31000000010643r14.41u5592u140600673 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000180013424501000015225000120025226000520026430000230031660000390033994200220037895200430040043396LVL19990313000000.0920724s1992 cau 00010 eng a92028639 a1880656027 a 92028639 c779d779 a895.6 Sh1 aShono, Junzo.10aStill life and other stories /cJunzo Shono ; translated from the Japanese by Wayne P. Lammers. a1st ed. aBerkeley, Calif. :bStone Bridge Press,cc1992. a264 p. ;c22 cm.;.10aSh,d1921-xTranslations, English. aLVLcNFk895.6 Sh bMAINp32000000035937r7.05u5593u140700557 2200205 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200120011210000180012424500390014226000370018130000280021894200210024695200420026795200420030929359LVL20030717145524.0950130s1994 nyu 00011 eng d a0821747886 anpl95000228 c780d780 aAF Rabe10aRabe, Sheila.10aBringing out Betsy /cSheila Rabe.0 aNew York :bZebra Books,cc1994. a251 p. ;c18 cm. ;dpa. aLVLcAFkAF Rabe bLB2p34000000003914r2.35u5595u1408 bLB1p33000000000486r3.99u5596u140900382 2200145 450000100060000000300040000600500170001000800410002701000130006809000130008110000090009424500470010394200240015095200620017457435LVL19990220000000.0950324s19uu 000 0 eng d a86083162 c781d781 aWal.10aWalk-behind lawn mower service manual 3rd. aLVLcNFk621.43 WAL bMAINdMAINp31000000028858r11.95u5597u1410v2003-09-0101052 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000350013524500450017025000210021526000390023630000360027560000350031165000440034665000560039065000520044665000510049865100390054994200230058895200420061195200430065395200420069629360LVL20021115113813.0941025s1995 nyua 00010aeng a94043065 a0809015803 a 94043065 c782d782 a940.53 Kl10aKlein, Gerda Weissmann,d1924-10aAll but my life /cGerda Weissman Klein. aNew expanded ed.0 aNew York :bHill and Wang,cc1995. a261 p. :bill. ;c21 cm. ;dpa.10aKlein, Gerda Weissmann,d1924- 0aJewsxBiography.zPolandzBielsko-Biala 0aHolocaust, Jewish (1939-1945)xPersonal narratives. 0aWorld War, 1939-1945xConscript laborzGermany. 0aHolocaust survivorsxBiography.zUnited States 0aBielsko-Biala (Poland)xBiography. aLVLcNFk940.53 Kl bLB2p34000000004922r5.90u5598u1411 bMAINp31000000054174r5.90u5599u1412 bLB1p33000000022216r5.90u5600u141301332 2200409 450000100060000000300040000600500170001000800390002701000170006602000360008302000310011903500160015003900180016604000200018405000240020408200120022809000130024010000220025324500840027526000380035930000330039749000380043052001070046852100340057552100090060965000340061865000220065265000220067465000240069665000220072065000220074265000240076470000290078883000370081794200250085495200430087964455LVL19990217000000.0850114s1985 nyua j 00011 eng a85001796 /AC a0394973658 (lib. bdg.) :c$5.99 a0394873653 (pbk.) :c$2.95 aflb001427110 a2b3c3d3e3 aDLCcDLCdICrlF0 aPZ7.H2888bHap 19850 219a[E] c783d78310aHautzig, Deborah.10aHappy birthday, Little Witch /cby Deborah Hautzig ; illustrated by Marc Brown.0 aNew York :bRandom House,cc1985. a48 p. :bcol. ill. ;c24 cm.1 aStep into reading. A Step 2 book. aLittle Witch worries that her birthday party will be a failure unless she can get her friends to come.0 a1.7bFollett Library Book Co.2 aK-3. 0aChildren's stories, American. 1aWitchesxFiction. 0aPartiesxFiction. 0aBirthdaysxFiction. 7aWitchesxFiction. 7aPartiesxFiction. 7aBirthdaysxFiction.11aBrown, Marc Tolon,eill. 0aStep into reading.pStep 2 book. aLVLcEASYkE Hautzig bMAINp31000000002373r9.95u5601u141400530 2200205 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000250013524500430016026000320020330000210023594200240025695200440028029361LVL19990320000000.0880825s1989 nyu 00011 eng a88028681 a0802757227 a 88028681 c784d784 aM Goulart10aGoulart, Ron,d1933-14aThe Wisemann originals /cRon Goulart.0 aNew York :bWalker,cc1989. a153 p. ;c22 cm. aLVLcMYSkM Goulart bMAINp32000000062191r16.95u5602u141501180 2200313 450000100060000000300040000600500170001000700090002700800410003603500160007709000130009309200150010624501310012126000480025230000550030049000280035550000840038350600270046752001190049452100140061353800160062765000220064370000520066570000200071770000180073794200240075595200440077995200430082336380LVL20000911201515.0vd cbaho930426r19851977ctu009 b 0 0vaeng d avid93000067 c785d785 aAVJ Strega00aStrega NonnacKrÂatky-Film Praha for Weston Woods ; produced by Morton Schindel ; directed by Gene Deitch.h[videorecording] / aWeston, Conn. :bWeston Woods,c1985, 1977. a1 videocassette ; (9 min.) :bsd., col. ;c1/2 in. 0aChildren's Circle ;v4. aBased on the Caldecott Honor book by Tomie de Paola; narrated by Peter Hawkins. aPrivate home use only. aWhen Strega Nonna leaves him alone with her magic pasta pot, Big Anthony tries to show the townsfolk how it works. aAges 4-9. aVHS Format. 0aChildren's films.11aDe Paola, TomiehVideorecording.tStrega Nonna.11aHawkins, Peter.11aDeitch, Gene. aLVLcAVkAVJ Strega bMAINp31000000045309r14.95u5603u1416 bMAINp32000000038543r0.15u5604u141700514 2200193 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200140011210000310012624500410015726000330019830000230023194200230025495200430027743399LVL19990313000000.0930811s1991 nyu j 00011 eng d a0671709569 anpl93000822 c786d786 aYA Cusick1 aCusick, Richie Tankersley.10aVampire /cRichie Tankersley Cusick. aNew York :bArchway,cc1991. a214 p. ;c18 cm.;. aLVLcYAkYA Cusick bMAINp31000000044151r2.31u5605u141800965 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012124501510013426000340028530000290031950000200034865000530036865000400042165000480046165000490050965000420055870000210060094200220062195200440064329362LVL19990320000000.0950323s1995 nyua 00100 eng a95014323 a0684800306 a 95014323 c787d787 a305.9 Qu04aThe question of equality :blesbian and gay politics in America since Stonewall /cedited by David Deitcher ; with a foreword by Armistead Maupin.0 aNew York :bScribner,cc1995. a255 p. :bill. ;c28 cm. aIncludes index. 0aGay liberation movementxHistory.zUnited States 0aGay rightsxHistory.zUnited States 0aGay menxPolitical activity.zUnited States 0aLesbiansxPolitical activity.zUnited States 0aStonewall Riot, New York, N.Y., 1969.10aDeitcher, David. aLVLcNFk305.9 Qu bMAINp32000000059629r21.00u5606u141900810 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000190013624500760015526000410023130000270027244000180029952000650031765000190038270000310040194200260043295200440045895200420050236381LVL20000204000000.0930805s1972 nyua j 00011 eng a91044270 a059045787X a 91044270 c788d788 aE Cebulash10aCebulash, Mel.10aWillie's wonderful pet /cby Mel Cebulash ; illustrated by George Ford.0 aNew York :bScholastic Inc.,cc1992. a32 p. :bill.,c23 cm. 0aHello reader! aWillie's unusual pet helps make the class Pet Day a success. 1aPetsxFiction.11aFord, George Cephas,eill. aLVLcEASYkE Cebulash bMAINp32000000041206r11.95u5607u1420 bLB1p33000000021428r2.95u5608u142100717 2200229 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200130011210000220012524500810014726000400022830000280026844000420029694200220033895200420036095200430040295200420044564457LVL19990217000000.0920619s1992 nyu j 00011 eng d a0553159402 aonv90002755 c789d789 aJ Pascal10aPascal, Francine.10aCiao, Sweet Valley! /ccreated by Francine Pascal; written by Jamie Suzanne.0 aNew York :bBantam Skylark,cc1992. a134 p. ;c20 cm. ;dpa. 0aSweet Valley Twins and friends ;v60. aLVLcJFkJ Pascal bLB2p34000000009587r1.89u5610u1422 bMAINp31000000039639r1.89u5611u1423 bLB1p33000000012942r1.89u5612u142400540 2200193 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200160011010000260012624500620015226000380021430000270025294200250027995200420030436382LVL20030627104428.0930921s1992 nyu 00011 eng a0553561057 anpl93001150 c790d790 aAF Bradbury 0aBradbury, Ray,d1920-10aGreen shadows, white whale :ba novel /cby Ray Bradbury.0 aNew York :bBantam Books,cc1992. a266 p. ;c18 cm ;dpa. aLVLcAFkAF Bradbury bLB1p33000000016500r3.47u5613u142500997 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200180012110000290013924500290016826000570019730000280025444000210028250000270030350400510033052001560038165000100053794200280054795200440057595200440061995200440066343401LVL19990313000000.0910205s1991 wiua j b 00110 eng a91008998 a0836806875 a 91008998 c791d791 aJNF 598.97 Ka1 aKappeler, Markus,d1953-10aOwls /cMarkus Kappeler. aMilwaukee :bGareth Stevens Children's Books,c1991. a48 p. :bill. ;c25 cm. 0aAnimal families. aTranslation of: Eulen. aIncludes bibliographical references and index. aDescribes the evolution of the owl family and discusses the physical characteristics, habits, and native environment of various members of the species. 1aOwls. aLVLcJNFkJNF 598.97 Ka bMAINp32000000040215r11.50u5614u1426 bMAINp32000000056999r15.81u5615u1427 bMAINp31000000043561r11.50u5616u142800688 2200217 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200150011210000230012724501080015025000200025826000790027830000230035765000220038094200240040295200440042664458LVL19990217000000.0900723c19891986eng d 00011 eng d a1850576297 aonv90000096 c792d792 aLP Coffman aCoffman, Virginia.14aThe richest girl in the world :bthe extravagant life and fast times of Doris Duke /cVirginia Coffman. aLarge print ed. aLong Preston, North Yorkshire, England :bMagna Print Books,c1989, c1986. a307 p. ;c22 cm.;. 0aLarge type books. aLVLcLPkLP Coffman bMAINp31000000043661r17.95u5617u142900660 2200229 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200120011210000440012424500440016826000360021230000280024844000220027650000260029894200210032495200430034595200420038829364LVL20020226102214.0960802s1995 nyu j 00011 eng d a059048351X anpl96001448 c793d793 aJ Stine10aStine, R. L.d1943-q(Robert Lawrence),12aA night in terror tower /cR. L. Stine.0 aNew York :bScholastic,cc1995. a129 p. ;c20 cm. ;dpa. 0aGoosebumps ;v27. a"An Apple Paperback." aLVLcJFkJ Stine bMAINp31000000079153r3.50u5619u1430 bLB1p33000000050121r3.50u5620u143100514 2200193 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200140011210000200012624500430014626000370018930000280022694200230025495200430027736383LVL20030626164348.0931228s1993 nyu 00011 eng d a0821744410 anpl93001773 c794d794 aAF Sumner10aSumner, Olivia.12aA beguiling intrigue /cOlivia Sumner.0 aNew York :bZebra Books,cc1993. a251 p. ;c18 cm. ;dpa. aLVLcAFkAF Sumner bMAINp32000000044151r2.31u5621u143201012 2200301 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000130011009200140012310000380013724501060017525000120028126000380029330000350033144000170036650000680038365000240045194200230047595200420049895200430054095200430058395200420062695200420066843402LVL20020308131809.0930927s1993 nyu 00011 eng d a93029409 a067974956X a 93029409 c795d795 aAF Malory10aMalory, Thomas,cSir,d16th cent.13aLe morte d'Arthur /cSir Thomas Malory; preface by Walter Cronkite; introduction by Charles Michener. a1st ed.0 aNew York :bRandom House,cc1993. axxxiv, 795 p. ;c19 cm. ;dpa. 0aGreat Books. aA companion volume to the Learning Channel Series, Great Books. 0aArthurian romances. aLVLcAFkAF Malory bLB2p37000000002634r5.13u5622u1433 bMAINp32000000042421r5.13u5623u1434 bMAINp32000000042422r5.13u5624u1435 bLB2p34000000003486r5.13u5626u1436 bLB1p33000000016563r5.13u5627u143700781 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009403900180011004000200012805000250014808200160017309000130018910000260020224500390022825000120026726000320027930000210031151000280033252000490036052100170040994200220042695200430044850421LVL19990312000000.0820518s1982 nyu 00011 eng a82009536 a0525241280 aflb003962030 a2b3c3d3e3 aDLCcDLCdICrlF0 aPS3573.H463bB6 19820 219a813/.54 c796d79610aWhite, Edmund,d1940-12aA boy's own story /cEdmund White. a1st ed.0 aNew York :bDutton,cc1982. a217 p. ;c22 cm.0 aSchool Library Journal. aA homosexual struggles against his identity.2 aYoung Adult. aLVLcAFkAF White bMAINp32000000012137r8.09u5628u143801051 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010810000270012124500770014826000380022530000350026344000370029852001420033565000130047770000270049094200270051795200430054495200440058795200440063195200430067595200430071864459LVL20020117102429.0950516s1996 nyua j 00010 eng a95000347 a0679869743 a 95000347 c797d79710aPenner, Lucille Recht.10aMonster bugs /cby Lucille Recht Penner ; illustrated by Pamela Johnson.0 aNew York :bRandom House,cc1996. a[48] p. :bcol. ill. ;c23 cm. 0aStep into reading.pStep 2 book. aDescribes some of the world's largest insects and spiders, including the Goliath beetle, praying mantis, tarantula, and giant atlas moth. 1aInsects.11aJohnson, Pamela,eill. aLVLcJNFkJNF 595.7 Pe bLB2p37000000001520r11.95u5629u1439 bMAINp32000000072711r11.89u5630u1440 bMAINp35000000000352r11.89u5631u1441 bLB2p34000000015478r11.96u5632u1442 bLB1p33000000027194r11.95u5634u144300918 2200289 450000100060000000300040000600500170001000800390002701000120006602000150007803500140009309000130010709200190012010000230013924501040016226000380026630000270030465000210033165000150035265000230036794200260039095200420041695200430045895200420050195200430054395200420058629365LVL20000911142638.0961008s1996 nyua j 00011 eng a9573125 a0786831073 a 95073125 c798d798 aJ Talking- ton10aTalkington, Bruce.10aDisney's Winnie the Pooh's stories for Christmas /cby Bruce Talkington ;illustrated by John Kurtz.0 aNew York :bDisney Press,cc1996. a80 p. :bill.,cc1996. 1aWinnie the Pooh. 1aChristmas. 1aChristmas stories. aLVLcJFkJ Talkington bLB2p37000000002903r8.53u5635u1444 bMAINp32000000067175r8.53u5636u1445 bLB2p34000000014448r8.53u5637u1446 bMAINp31000000062017r8.53u5638u1447 bLB1p33000000026791r8.53u5639u144801100 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010810000250012124500600014626000420020630000210024865000570026965100290032694200220035595200430037795200440042095200440046495200430050895200440055195200430059595200440063895200440068295200600072636384LVL20021007111516.0960226s1996 nyu 00011 eng a96011529 a0684810387 a 96011529 c799d799 0aClark, Mary Higgins.10aMoonlight becomes you :ba novel /cMary Higgins Clark.0 aNew York :bSimon & Schuster,cc1996. a332 p. ;c25 cm. 0aWomen photographersxFiction.zRhode IslandzNewport 0aNewport (R.I.)xFiction. aLVLcAFkAF Clark bLB2p37000000001870r14.16u5640u1449 bMAINp32000000094582r24.00u5641u1450 bMAINp32000000064087r14.16u5642u1451 bLB1p36000000005079r14.16u5643u1452 bMAINp35000000000580r14.16u5644u1453 bLB2p34000000013631r14.16u5645u1454 bMAINp31000000059507r14.16u5646u1455 bMAINp31000000059516r14.16u5647u1456 bLB1dLB1p33000000030588r14.16u5648u1457v2003-09-0100808 2200277 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000130011009200120012310000180013524500530015326000440020630000450025050000250029550000200032060000180034065000440035865000450040270000170044794200220046495200440048643403LVL20020612154559.0931215s1993 nyuaf 00110aeng d a93024009 a0399138900 a 93024009 c800d800 aB Emery10aEmery, Ralph.10aMore memories /cby Ralph Emery with Tom Carter.0 aNew York :bG.P. Putnam's Sons,cc1993. a288, [16] p. of plates :bill. ;c24 cm. aContinues: Memories. aIncludes index.10aEmery, Ralph. 0aEntertainersxBiography.zUnited States 0aCountry musicxBiography.zUnited States10aCarter, Tom. aLVLcBIOkB Emery bMAINp31000000045367r14.95u5649u145801019 2200313 450000100060000000300040000600500170001000800390002701000210006603500160008704000200010305000180012308200080014109000130014910000550016224500840021726000360030130000380033735000110037551000140038652001220040052100340052252100090055665000190056565000190058470000320060394200270063595200430066250422LVL19990312000000.0711123s1971 nyua j 00011 eng a75135282 /AC/r84 aflb00215201 aDLCcDLCdICrlF0 aPZ7.B879bChf a[E] c801d80110aBuck, Pearl S.d1892-1973.q(Pearl Sydenstricker),14aThe Chinese story tellerc[by] Pearl S. Buck. Illustrated by Regina Shekerjian.0 aNew York,bJohn Day Co.c[1971] a[40] p.bcol. illus.c24 x 26 cm. a$5.95.0 aBooklist. aGrandmother tells her two grandchildren the story she heard in China that explains why dogs and cats hate each other.0 a4.1bFollett Library Book Co.2 aK-3. 1aDogsxFiction. 1aCatsxFiction.11aShekerjian, Regina,eillus. aLVLcJNFkJNF 398.2 Bu bMAINp32000000016549r5.66u5650u145900999 2200337 450000100060000000300040000600500170001000800390002701000240006603500160009004000250010605000180013108200080014909000130015710000220017024500190019226000360021130000310024751000320027851000520031051000270036252000680038952100340045752100090049165000190050065000290051965000190054865000270056794200230059495200440061729366LVL19990320000000.0721219s1962 nyua j 000 1 eng a62015441 /AC/L/r912 aflb00104500 aDLCcDLCdDLCdICrlF00aPZ7.K2253bSn00a[E] c802d8021 aKeats, Ezra Jack.14aThe snowy day. aNew York,bViking Pressc[1962] a32 p.billus.c21 x 24 cm.0 aChildren's Catalog (Wilson)0 aElementary School Library Collection (Bro-Dart)0 aCaldecott Medal/Honor. aThe adventures of a little boy in the city on a very snowy day.0 a3.2bFollett Library Book Co.2 aK-3. 1aSnowxFiction. 1aAfro-AmericansxFiction. 7aSnowxFiction. 7aCaldecott Medal books. aLVLcEASYkE Keats bMAINp32000000042886r12.59u5651u146000715 2200217 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200160011010000270012624501020015325000260025526000580028130000270033994200250036695200440039195200620043536385LVL19990319000000.0940215c19941969nyu 00011 eng a0385312085 anpl94000026 c803d803 aAF Vonnegut aVonnegut, Kurt,d1922-10aSlaughterhouse-five :bor, The children's crusade : a duty-dance with death /cKurt Vonnegut, Jr. a25th anniversary ed.. aNew York :bDelacorte Press/Seymour Lawrence,cc1994. axiii, 205 p. ;c21 cm. aLVLcAFkAF Vonnegut bMAINp32000000045062r13.28u5652u1461 bMAINdMAINp31000000046688r13.28u5653u1462v2003-09-0100946 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200180012110000240013924500700016326000390023330000350027250500590030752001380036665000320050465000170053665000110055374000320056494200280059695200440062443404LVL19990313000000.0940106s1988 nyua j 00010 eng a88060093 a0531083810 a 88060093 c804d804 aJNF 812.54 Yo1 aYoung, Ruth,d1946-10aStarring Francine & Dave :bthree one-act plays /cby Ruth Young. aNew York :bOrchard Books,cc1988. a[28] p. :bcol. ill. ;c23 cm.0 aPeanut butter and jelly -- Lemonade -- Chocolate cake. aIn three short plays, Francine and Dave learn to make peanut butter sandwiches, try to make lemonade, and eat a whole chocolate cake. 0aChildren's plays, American. 1aFoodxDrama. 1aPlays.01aStarring Francine and Dave. aLVLcJNFkJNF 810.54 Yo bMAINp32000000044275r10.99u5654u146301495 2200445 450000100060000000300040000600500170001000800390002701000170006602000150008303500160009803900180011404000200013204300120015205000210016408200200018509000130020510000300021824501220024826000330037030000280040344000330043150000200046452001470048452100340063152100090066565000510067465000390072565000300076465000180079465000160081265000300082865000160085870000200087470000230089470000250091794200270094295200430096995200370101250423LVL20021021120916.0820504s1982 nyua j 00110 eng a82008323 /AC a0531044513 aflb011021010 a2b3c3d3e3 aDLCcDLCdICrlF an------0 aE77.4.bP87 19820 219a745.5/08997 c805d80510aPurdy, Susan Gold,d1939-10aNorth American Indians /cby Susan Purdy and Cass R. Sandak ; illustrations by Hal Frenck ; diagrams by George Guzzi.0 aNew York :bF. Watts,c1982. a32 p. :bill. ;c26 cm. 2aA Civilization project book. aIncludes index. aBriefly discusses Indian tribes and cultures of North America. Provides instructions for craft projects, including sand painting and clothing.0 a4.7bFollett Library Book Co.2 a3-6. 0aIndians of North AmericaxJuvenile literature. 0aIndian craftxJuvenile literature. 1aIndians of North America. 1aIndian craft. 1aHandicraft. 7aIndians of North America. 7aHandicraft.10aSandak, Cass R.11aFrenck, Hal,eill.11aGuzzi, George,eill. aLVLcJNFkJNF 745.5 Pu bMAINp32000000015796r7.90u5655u1464 bMAINp31000000008869u5656u146501178 2200301 450000100060000000300040000600500170001000800390002701000170006602000240008303500160010705000200012308200120014309000130015510000200016824501090018826000750029730000290037250000760040152001390047752100090061665000340062565000440065965000470070394200250075095200590077595200420083457442LVL20010804232423.0880205r19881979caua j 00010 eng a88004094 /AC a0316034347 :c$7.95 aflb017628010 aQ163.bA44 19880 219a500 c806d80610aAllison, Linda.14aThe wild inside :bSierra Club's guide to the great indoors /cwritten and illustrated by Linda Allison.0 aSan Francisco :aBoston :bSierra Club Books ;bLittle, Brown,cc1988. a144 p. :bill. ;c21 cm. aReprint. Originally published: San Francisco :Sierra Club Books, c1979. aIntroduces the basic principles of physics, geology, weather, electricity, and natural history through everyday activities in a house.2 a3-6. 0aSciencexJuvenile literature. 0aHousehold ecologyxJuvenile literature. 0aSciencexExperimentsxJuvenile literature. aLVLcJNFkJNF 500 Al bLB2dLB2p37000000002911r4.47u5657u1466v2003-09-01 bLB1p33000000011054r4.47u5658u146701383 2200373 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009710000250011024500750013526000320021030000400024252001020028265000220038465000220040665000140042870000340044294200240047695200420050095200430054295200420058595200420062795200430066995200430071295200420075595200420079795200430083995200430088295200420092595200420096736386LVL19990802000000.0731023s1973 nyua j 00011 eng a0802783112 anpl94000344 c807d807 0aBecker, John,d1901-10aSeven little rabbits /cby John Becker; illustrated by Barbara Cooney.0 aNew York :bWalker,cc1973. a[32] p. :bcol. ill. ;c11 x 14 cm. aOne by one, as they walk down the road, seven little rabbits get tired and find a place to sleep. 1aStories in rhyme. 1aRabbitsxFiction. 1aCounting.11aCooney, Barbara,d1917-eill. aLVLcEASYkE Becker bLB2p37000000003217r5.95u5660u1468 bMAINp32000000092171r5.95u5662u1469 bLB1p36000000013646r5.95u5663u1470 bLB1p36000000003791r3.45u5664u1471 bMAINp35000000006901r5.95u5665u1472 bMAINp35000000001514r3.45u5666u1473 bLB2p34000000011337r3.45u5667u1474 bLB2p34000000021735r5.95u5668u1475 bMAINp31000000047530r3.45u5669u1476 bMAINp31000000079594r5.95u5670u1477 bLB1p33000000018352r3.45u5671u1478 bLB1p33000000036563r5.95u5672u147900684 2200241 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200130011210000210012524500370014626000380018330000300022165000140025165000270026594200240029295200420031695200420035895200420040043405LVL19990506000000.0960319s1996 nyua j 00011 eng d a0689803311 anpl96000649 c808d808 aE Scarry10aScarry, Richard.10aRichard Scarry's pop-up numbers.0 aNew York :bLittle Simon,cc1996. a[10] p. :bill. ;c22 cm. 1aCounting. 1aToy and movable books. aLVLcEASYkE Scarry bLB1p36000000003913r5.30u5674u1480 bLB2p34000000021460r5.30u5675u1481 bLB1p33000000025164r5.30u5676u148200313 2200133 450000100060000000300040000600500170001000800410002709000130006810000280008124500120010994200210012195200370014264462LVL19990217000000.0950324s19uu 000 0 eng d c809d8091 aGrey, Zane,d1872-1939.10aNevada. aLVLcAFkAF Grey bMAINp31000000029214u5677u148300529 2200205 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200120011010000170012224500390013926000360017830000280021470000180024294200210026095200420028136387LVL20020327142456.0930802s1992 nyu j 00011 eng a0380759624 anpl93000701 c810d810 aYA Hart10aHart, Bruce.10aStrut /cby Bruce and Carole Hart.0 aNew York :bAvon Flare,cc1992. a233 p. ;c18 cm. ;dpa.10aHart, Carole. aLVLcYAkYA Hart bLB1p33000000025730r2.35u5679u148400859 2200253 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000130011009200180012310000220014124500560016326000610021930000380028044000310031850400510034952001230040065000100052394200280053395200440056143406LVL19990313000000.0940404s1991 dcua j b 00010 eng d a91013502 a0870448439 a 91013502 c811d811 aJNF 599.73 Ri1 aRinard, Judith E.10aDeer growing up in the wild /cby Judith E. Rinard. aWashington, D.C. :bNational Geographic Society,cc1991. a30, [4] p. :bcol. ill. ;c26 cm. 0aBooks for young explorers. aIncludes bibliographical references (p. [34]). aDescribes how baby deer are reared in the wild and some of the hardships they, and other animals like them, encounter. 1aDeer. aLVLcJNFkJNF 599.73 Ri bMAINp32000000046070r10.00u5680u148500892 2200277 450000100060000000300040000600500170001000800390002701000170006602000250008302000350010803500160014308200130015909000130017210000320018524500620021725000120027926000380029130000330032952001070036265000360046965000220050570000200052794200240054795200430057150425LVL20010627183808.0761105s1977 nyua j 00011 eng a76021388 /AC a0060209232 :c$4.95. a0060209240blib. bdg. :c$4.79 aflb00366103 aE Caines c812d81210aCaines, Jeannette Franklin.10aDaddy /cby Jeannette Caines ; pictures by Ronald Himler. a1st ed.0 aNew York :bHarper & Row,cc1977. a32 p. :bill. ;c20 x 22 cm. aA child of separated parents describes the special activities she shares with her father on Saturdays. 1aFathers and daughtersxFiction. 1aDivorcexFiction.10aHimler, Ronald. aLVLcEASYkE Caines bMAINp32000000006278r5.79u5681u148600355 2200145 450000100060000000300040000600500170001000800410002709000130006810000260008124500240010730000110013194200240014295200430016664463LVL19990217000000.0950324s19uu 000 0 eng d c813d8131 aShannon, Dell,d1921-10aSpring of violence. a200 p. aLVLcAFkAF Shannon bMAINp31000000027279r1.81u5682u148700625 2200205 450000100060000000300040000600500170001000800390002702000210006603500160008709000130010310000300011624500530014626000380019930000320023794200230026995200430029295200420033595200420037736388LVL20030520152833.0901211s1991 nyub 00011 eng a0446363383 (pa.) anpl94000824 c814d81410aPeters, Elizabeth,d1927-14aThe last camel died at noon /cElizabeth Peters.0 aNew York :bWarner Books,cc1991. axi, 430 p. :bill.;c17 cm. aLVLcMYSkM Peters bMAINp32000000062643r3.51u5684u1488 bLB2p34000000062643r3.51u5685u1489 bLB2p34000000012741r3.53u5686u149000934 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000260013524500800016125000120024126000290025330000280028244000400031065000440035070000230039470000190041780000410043694200240047795200440050195200440054595200430058943407LVL19990313000000.0930917s1994 nyub 00011 eng a93033504 a0312850263 a 93033504 c815d815 aSF Norton10aNorton, Andre,d1912-10aOn wings of magic /cAndre Norton ; with Patricia Mathews and Sasha Miller. a1st ed.0 aNew York :bTOR,cc1994. a409 p. :bmap ;c22 cm. 0aWitch world : the turning ;vbk. 3. 0aWitch World (Imaginary place)xFiction.10aMathews, Patricia.10aMiller, Sasha.1 aNorton, AndretWitch world ;vbk. 3. aLVLcSCIkSF Norton bMAINp32000000046983r14.13u5687u1491 bMAINp31000000048175r14.13u5688u1492 bLB1p33000000018876r14.13u5689u149301093 2200349 450000100060000000300040000600500170001000800390002701000210006602000160008702000260010303500160012904000200014505000190016508200120018409000130019610000250020924501170023426000310035130000280038250000200041050400280043052001100045852100090056865000340057765000130061165000120062470000170063670000250065394200280067895200370070671483LVL19990404000000.0750821s1976 nyua j b 00110 eng a75028335 /AC/r83 a0688220606. a0688320600blib. bdg. aflb00421802 aDLCcDLCdICrlF0 aQL638.C94bP74 a597/.53 c816d81610aPringle, Laurence P.14aThe minnow family--chubs, dace, minnows, and shiners /cby Laurence Pringle ; illustrated by Dot and Sy Barlowe.0 aNew York :bMorrow,c1976. a64 p. :bill. ;c22 cm. aIncludes index. aBibliography: p. 61-62. aDescribes the physical characteristics, habits, and habitat of different varieties of freshwater minnows.2 a3-6. 0aMinnowsxJuvenile literature. 1aMinnows. 1aFishes.10aBarlowe, Sy.10aBarlowe, Dot,d1926- aLVLcJNFkJNF 597.53 Pr bMAINp31000000007782u5690u149400617 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000210013424500400015526000450019530000210024050000170026194200220027895200440030095200430034429370LVL19990320000000.0880204s1988 nyu 00011 eng a88001659 a0453006094 a 88001659 c817d817 aAF Small10aSmall, Bertrice.10aBlaze Wyndham /cby Bertrice Small.0 aNew York :bNew American Library,c1988. a327 p. ;c24 cm. a"NAL books." aLVLcAFkAF Small bMAINp32000000041869r10.73u5691u1495 bLB2p34000000004184r10.73u5692u149600913 2200253 450000100060000000300040000600500170001000800390002701000130006602000210007903500140010009000130011410000210012724500450014826000460019330000210023952002110026065000200047165000250049165000350051694200230055195200420057495200430061636389LVL20000912191353.0940706s1994 nju j 00011 eng a93050676 a0816734216 (pa.) a 93050676 c818d8181 aMooser, Stephen.14aThe thing upstairs /cby Stephen Mooser. aMahwah, N.J. :bTroll Associates,cc1994. a140 p. :c20 cm. aAspiring writer Wesley Shakespeare has a vivid imagination, but when he agrees to write and perform in a play to raise money for the restoration of the Wonderland Oddity Museum, even he gets some surprises. 1aPlaysxFiction. 1aAuthorshipxFiction. 1aMystery and detective stories. aLVLcYAkYA Mooser bLB2p37000000003572r2.95u5693u1497 bMAINp32000000048450r2.95u5694u149801065 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000290013624500880016526000660025330000300031952001730034965000210052265000220054365000290056570000260059494200260062095200440064695200430069095200420073343408LVL19990313000000.0911125s1993 nyua j 00011 eng a91044148 a0671769693 a 91044148 c819d819 aE Mitchell10aMitchell, Margaree King.10aUncle Jed's barbershop /cby Margaree King Mitchell ; illustrated by James Ransome.0 aNew York :bSimon & Schuster Books for Young Readers,cc1993. a[32] p. :bill. ;c30 cm. aDespite serious obstacles and setbacks Sarah Jean's Uncle Jed, the only black barber in the county, pursues his dream of saving enough money to open his own barbershop. 1aUnclesxFiction. 1aBarbersxFiction. 1aAfro-AmericansxFiction.11aRansome, James,eill. aLVLcEASYkE Mitchell bMAINp32000000047764r12.75u5695u1499 bMAINp31000000048843r9.95u5696u1500 bLB1p33000000019273r8.85u5697u150100964 2200325 450000100060000000300040000600500170001000800390002701000200006603500160008604000200010205000200012209000130014210000160015524500400017126000380021130000260024951000320027551000520030751000210035952000670038052100340044752100090048165000190049065000220050965000190053165000220055094200230057295200430059550427LVL19990312000000.0730410s1957 maua j 000 0 eng a56005470 /L/r83 aflb00402700 aDLCcDLCdICrlF0 aPZ8.3.G276bCat c820d8201 aSeuss,cDr.14aThe cat in the hat ,cby Dr. Seuss. aBoston,bHoughton Mifflinc[1957] a61 p.billus.c24 cm.0 aChildren's Catalog (Wilson)0 aElementary School Library Collection (Bro-Dart)0 aLibrary Journal. aA fantastic cat entertains two children in a most unusual way.0 a1.2bFollett Library Book Co.2 aK-3. 7aCatsxFiction. 7aStories in rhyme. 0aCatsxFiction. 0aStories in rhyme. aLVLcEASYkE Seuss bMAINp32000000019431r5.95u5698u150200837 2200253 450000100060000000300040000600500170001000800390002701000200006602000220008602000150010804000130012305000210013608200160015709000130017310000370018624500710022326001170029430000210041150400300043260000370046265000610049994200230056057446LVL20020909094631.0840607s1984 nyu b 00010beng a84061253 //r892 a0932910475 (pbk.) a0879752718 aDLCcDLC0 aRC523.bB76 19840 219a616.8/6 c821d82110aBrown, Dorothy Snodgrass,d1914-10aHandle with care :ba question of Alzheimer's /cDorothy S. Brown.0 aBuffalo, N.Y. :bPrometheus Books in cooperation with Potentials Development for Health & Aging Services,c1984. a120 p. ;c24 cm. aBibliography: p. 117-120.10aBrown, Dorothy Snodgrass,d1914- 0aAlzheimer's diseasexPatientsxBiography.zUnited States aLVLcNFk618.97 Br00619 2200229 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200120011210000160012424500330014026000310017330000350020444000220023965000190026194200230028095200430030395200430034643409LVL19990313000000.0940708s1993 utua j 00011 eng d a0898682495 anpl94001143 c822d822 aE Reese1 aReese, Bob.10aWonder worm /cby Bob Reese. aProvo, UT :bArco,cc1993. a[20] p. :bcol. ill. ;c19 cm. 0aMy ten word book. 1aWormxFiction. aLVLcEASYkE Reese bMAINp32000000048537r8.95u5700u1503 bMAINp31000000050059r8.95u5701u150400732 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000240013624500840016026000560024430000350030050400510033561000480038694200240043495200440045850428LVL19990312000000.0950330s1995 inua b 00110 eng a95012502 a0912083832 a 95012502 c823d823 a796.357 To10aTorry, Jack,d1952-10aEndless summers :bthe fall and rise of the Cleveland Indians /cby Jack Torry.0 aSouth Bend, Ind. :bDiamond Communications,cc1995. axiii, 303 p. :bill. ;c24 cm. aIncludes bibliographical references and index.20aCleveland Indians (Baseball team)xHistory. aLVLcNFk796.357 To bMAINp32000000060443r14.97u5702u150501246 2200373 450000100060000000300040000600500170001000800390002701000170006602000270008303500160011003900180012604000200014405000260016408200160019009000130020610000330021924501170025226000400036930000330040951000320044252001020047452100340057652100090061065000310061965000330065065000220068365000210070565000220072670000330074871000250078194200230080695200430082957447LVL20021009094143.0841002s1985 ilua j 00010 eng a84021510 /AC a0516029053 (lib. bdg.) aflb006693070 a2b3c3d3e3 aDLCcDLCdICrlF0 aPS3511.I7294bM9 19850 219a811/.52 c824d82410aFisher, Aileen Lucia,d1906-10aMy first Hanukkah book /cby Aileen Fisher ; illustrated by Priscilla Kiedrowski ; created by the Child's World.0 aChicago :bChildrens Press,cc1985. a31 p. :bcol. ill. ;c25 cm.0 aChildren's Catalog (Wilson) aPresents poems relating to Hanukkah--the aspects of it that are fun and the memory of its origin.0 a2.5bFollett Library Book Co.2 aK-3. 0aHanukkahxJuvenile poetry. 0aChildren's poetry, American. 1aHanukkahxPoetry. 1aAmerican poetry. 7aHanukkahxPoetry.11aKiedrowski, Priscilla,eill.20aChild's World (Firm) aLVLcNFk811.52 Fi bMAINp31000000008587r7.95u5704u150600937 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200170012110000280013824501640016625000120033026000430034230000290038550400640041452001240047865000100060294200270061295200440063936391LVL19990319000000.0921130s1993 nyua j b 00110 eng a92044497 a0060229837 a 92044497 c825d825 aJNF 553.4 Me1 aMeltzer, Milton,d1915-10aGold :bthe true story of why people search for it, mine it, trade it, steal it, mint it, hoard it, shape it, wear it, fight and kill for it /cMilton Meltzer. a1st ed. aNew York, NY :bHarperCollins,cc1993. a167 p. :bill. ;c21 cm. aIncludes bibliographical references (p. 153-155) and index. aDiscusses the value of gold and how it has been sought after and used in countries around the world throughout history. 1aGold. aLVLcJNFkJNF 553.4 Me bMAINp32000000052758r15.00u5705u150700748 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200160012110000220013724501420015926000440030130000380034565000220038394200250040595200440043095200440047443410LVL19990313000000.0950623s1995 nyuaf 00110 eng a95032918 a0312134541 a 95032918 c826d826 a641.5972 Za10aZaslavsky, Nancy.12aA cook's tour of Mexico :bauthentic recipes from the country's best open-air markets, city fondas, and home kitchens /cNancy Zaslavsky.0 aNew York :bSt. Martin's Press,cc1995. axv, 366, [8] p. :bill. ;c24 cm. 0aCookery, Mexican. aLVLcNFk641.5972 Za bMAINp32000000060728r16.50u5706u1508 bMAINp31000000057235r16.50u5707u150901250 2200349 450000100060000000300040000600500170001000800390002701000190006602000250008503500160011004000200012605000250014608200160017109000130018710000210020024500390022125000120026026000380027230000300031050000260034051000480036651000230041451000220043752002480045952100170070765000290072465000350075394200260078895200430081495200430085750429LVL19990312000000.0881130s1988 nyub 000 1 eng a87046147 //r89 a0060159383 :c$15.95 aflb00500310 aDLCcDLCdICrlF0 aPS3558.I45bT47 19880 219a813/.54 c827d8271 aHillerman, Tony.12aA thief of time /cTony Hillerman. a1st ed. aNew York :bHarper & Row,cc1988. a209 p. :b1 map ;c24 cm. aMap on lining papers.0 aSenior High School Library Catalog (Wilson)0 aALA Notable Books.0 aNYT Notable Book. aA noted anthropologist arrives at an Anasazi Indian ruin to dig for clay pots and is terrified by what looms out of the darkness. Weeks later she is reported missing. Lieutenant Joe Leaphorn unearths a bizarre and mystifying series of murders.2 aYoung Adult. 7aNavajo IndiansxFiction. 7aMystery and detective stories. aLVLcMYSkM Hillerman bMAINp32000000021629r9.12u5708u1510 bMAINp32000000032739r9.12u5709u151100539 2200193 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200160011010000180012624500360014425000200018026000780020094200230027895200440030157448LVL20021021092850.0910423c19901971enk d 00011 eng a1850579148 aonv90000543 c828d828 aL.P. Mather10aMather, Anne.14aThe high valley /cAnne Mather. aLarge print ed. aLong Preston, North Yorkshire, England :bMagna Print Books,cc1990,1971. aLVLcLPkLP Mather bMAINp31000000035638r16.95u5711u151200709 2200241 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200130011010000190012324500590014226000370020130000320023865000350027065000300030574000260033594200220036195200420038395200420042529373LVL20030730154115.0950227s1996 nyu 00010 eng a0393313530 anpl95001551 c829d829 a616.2 Br10aBrody, Jane E.10aJane Brody's cold and flu fighter /cby Jane E. Brody.0 aNew York :bW.W. Norton,cc1996. avii, 72 p. ;c19 cm. ;dpa. 0aCold (Disease)xPopular works. 0aInfluenzaxPopular works.01aCold and flu fighter. aLVLcNFk616.2 Br bLB2p34000000010058r3.51u5713u1513 bLB1p33000000024077r3.51u5714u151401164 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000260013524500590016126000600022030000210028044000240030152001890032565000310051465000390054565000290058480000440061394200230065795200430068095200420072395200430076595200420080836392LVL19990319000000.0950203s1983 mnu j 00011 eng a83070894 a0871233215 a 83070894 c830d830 aJ Leppard10aLeppard, Lois Gladys.10aMandie and the Cherokee legend /cLois Gladys Leppard.0 aMinneapolis, Minn. :bBethany House Publishers,cc1983. a138 p. ;c18 cm.00aA Mandie book ;v2. aMandy is bewildered by the unhappy reaction of some of her Cherokee friends to her discovery of gold inside a cave and her Christian values are tested by a troublesome Cherokee cousin. 1aCherokee IndiansxFiction. 1aIndians of North AmericaxFiction. 1aChristian lifexFiction.1 aLeppard, Lois GladystMandie book ;v2. aLVLcJFkJ Leppard bMAINp32000000055721r2.35u5715u1515 bLB2p34000000007331r2.35u5716u1516 bMAINp31000000053324r2.35u5717u1517 bLB1p33000000021774r2.35u5718u151800841 2200265 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200100011210000430012224500590016526000390022430000280026350500460029174000200033774000280035794200200038595200420040595200430044795200420049095200430053243411LVL20020126103153.0940913s1994 nyu 00011 eng d a0843936487 anpl94001873 c831d831 aW Nye10aNye, Nelson C.d1907-q(Nelson Coral),10aCome a-smokin'/Horses women and guns /cby Nelson Nye.0 aNew York :bLeisure Books,cc1994. a396 p. :c18 cm. ;dpa.0 aCome a-smokin' -- Horses, women and guns.02aCome a-smokin'.02aHorses, women and guns. aLVLcWESkW Nye bLB2p37000000002618r2.94u5719u1519 bMAINp32000000050668r2.94u5720u1520 bLB2p34000000004713r2.94u5721u1521 bMAINp31000000051234r2.94u5722u152200534 2200193 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200150011010000340012524500380015926000480019730000280024594200250027395200420029850430LVL20030425140554.0930524c19911948nyu 00011 eng a0061002771 anpl93000133 c832d832 aM Christie10aChristie, Agatha,d1890-1976.10aCrooked house /cAgatha Christie.0 aNew York :bHarperPaperbacks,c1991, c1948. a235 p. ;c17 cm. ;dpa. aLVLcMYSkM Christie bLB2p34000000006158r2.89u5723u152300599 2200217 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000130011009200150012310000340013824500470017225000270021926000460024630000210029294200240031395200440033736393LVL19990319000000.0950426c19951993nyu 00011 eng d a95010410 a0786701927 a 95010410 c833d833 aAF Burgess10aBurgess, Anthony,d1917-1993.12aA dead man in Deptford /cAnthony Burgess. a1st Carroll & Graf ed.0 aNew York :bCarroll & Graf,c1995, c1993. a272 p. ;c24 cm. aLVLcAFkAF Burgess bMAINp32000000057191r12.60u5724u152400881 2200289 450000100060000000300040000600500170001000800390002701000130006602000240007903500140010303900180011704000130013505000230014808200170017109000130018810000280020124501220022926000430035130000280039450000230042260000280044565000400047365000110051394200240052495200430054850431LVL20020909091224.0830117s1982 deua 000 0aeng a82017955 a0911293000 :c$8.95 a 820179550 a2b3c3d3e3 aDLCcDLC0 aBF575.G7bB75 19820 219a155.9/37 c834d8341 aBrooks, Anne M.,d1919-14aThe grieving time :ba month by month account of recovery from loss /cby Anne M. Brooks ; illustrated by Ted Ramsey. aWilmington, Del. :bDelapeake,cc1982. a40 p. :bill. ;c24 cm. aPages 36-40 blank.10aBrooks, Anne M.,d1919- 0aBereavementxPsychological aspects. 0aGrief. aLVLcNFk155.937 Br bMAINp32000000024413r5.87u5725u152500360 2200145 450000100060000000300040000600500170001000800410002702000150006809000130008310000200009624500320011694200220014895200440017029375LVL19990320000000.0920612s19xx xxu 00010 eng d a0823406091 c835d8351 aAdler, David A.12aA picture book of Passover. aLVLcKITkE Adler bMAINp32000000031704r14.95u5726u152601063 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000280013424500420016226000410020430000210024552002210026665000320048765000380051965100250055794200220058295200430060495200420064795200420068995200420073136394LVL20000910181625.0940107s1994 nyu j 00011 eng a94000447 a0385310560 a 94000447 c836d836 aJ Snyder10aSnyder, Zilpha Keatley.10aCat running /cZilpha Keatley Snyder.0 aNew York :bDelacorte Press,cc1994. a168 p. ;c21 cm. aWhen eleven-year-old Cat Kinsey builds a secret hideout to escape her unhappy homelife, she slowly gets to know a poor family who have come to California after losing their Texas home to the dust storms of the 1930s. 1aDepressionsxFiction.y1929 1aFamily lifexFiction.zCalifornia 1aCaliforniaxFiction. aLVLcJFkJ Snyder bMAINp32000000058313r8.82u5727u1527 bLB1p36000000001991r8.82u5728u1528 bLB2p37000000012441r8.82u5729u1529 bLB1p33000000022950r8.82u5730u153000337 2200121 4500010001300000020001500013090001300028100002700041245004400068260003900112942002100151952004300172 a90037396 a0140147381 c837d83710aGash, Jonathan,d1933-14aThe very last gambado /cJonathan Gash.0 aNew York :bPenguin Books,cc1990. aLVLcMYSkM Gash bMAINp32000000054063r2.87u5732u153100873 2200241 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000130011009200120012310000480013524501720018326000550035530000410041070000420045174000300049394200210052395200430054495200440058750432LVL20000911174356.0921203r19891957nyua j 00011 eng d a57008986 a0525444475 a 57008986 c838d838 aJ Milne1 aMilne, A. A.d1882-1956.q(Alan Alexander),14aThe world of Pooh :bthe complete Winnie-the-Pooh and The house at Pooh Corner /cby A.A. Milne ; with decorations and new illustrations in full color by E.H. Shepard. aNew York :bDutton Children's Books,c1989, c1957. a314 p. :bill. (some col.) ;c24 cm.11aShepard, Ernest H.,d1879-1976,eill.41aThe house at Pooh Corner. aLVLcJFkJ Milne bLB2p37000000011297r19.99u5734u1532 bMAINp32000000036093r10.85u5735u153300776 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200110012110000220013224500640015426000380021830000320025650000370028852000430032565000110036870000240037994200220040395200420042595200430046771489LVL19990404000000.0811204s1956 nyua j 00010 eng a56005153 a0064431479 a 56005153 c839d839 aE Udry10aUdry, Janice May.12aA tree is nice /cJanice May Udry; pictures by Marc Simont.0 aNew York :bHarper & Row,cc1956. a[30] P. :billus. ;c29 cm. a"Library edition."--Dust jacket. aBriefly describes the value of a tree. 1aTrees.11aSimont, Marc,eill. aLVLcEASYkE Udry bLB1p36000000004058r6.75u5736u1534 bMAINp31000000003727r8.05u5737u153500784 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000250013424501050015926000400026430000260030465000360033065000380036665000160040494200220042095200440044295200440048636395LVL20030421141234.0950410s1995 nyu 00010 eng a95016639 a0688143350 a 95016639 c840d840 a155.2 St10aStoddard, Alexandra.14aThe art of the possible :bthe path from perfectionism to balance and freedom /cAlexandra Stoddard.0 aNew York :bWilliam Morrow,cc1995. axiv, 251 p. ;c22 cm. 0aSelf-actualization (Psychology) 0aPerfectionism (Personality trait) 0aExcellence. aLVLcNFk155.2 St bMAINp32000000059829r12.90u5738u1536 bMAINp31000000056395r12.90u5739u153701250 2200337 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200150011010000190012524500920014425000120023626000470024830000430029550000200033865000510035865000410040965000510045065000410050165000520054265000420059465100630063665100630069965100640076270000200082694200240084695200420087043414LVL20010731182220.0950210s1995 nyua 00110 eng a0062733303 anpl95000340 c841d841 a917.304 Sh10aShirk, Martha.10aSuper family vacations :bresort and adventure guide /cMartha Shirk and Nancy Klepper. a3rd ed.0 aNew York, N.Y. :bHarperPerennial,cc1995. axxxix, 440 p. :bill. ;c24 cm. ;dpa. aIncludes index. 0aFamily recreationxGuide-books.zNorth America 0aResortsxGuide-books.zNorth America 0aFamily recreationxGuide-books.zUnited States 0aResortsxGuide-books.zUnited States 0aFamily recreationxGuide-books.zCaribbean Area 0aResortsxGuide-books.zCaribbean Area 0aNorth AmericaxDescription and travelxGuide-books.y1981- 0aUnited StatesxDescription and travelxGuide-books.y1981- 0aCaribbean AreaxDescription and travelxGuide-books.y1981-10aKlepper, Nancy. aLVLcNFk917.304 Sh bLB2p34000000004380r8.85u5741u153801351 2200361 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000230013524501360015825000120029426000390030630000340034550400640037952000980044360000330054160000320057465000280060670000380063470000390067294200230071195200420073495200440077695200430082095200420086395200420090595200420094750433LVL19991215000000.0900918s1991 nyua j b 00110beng a90048440 a0823408752 a 90048440 c842d842 aJB Wright10aFreedman, Russell.14aThe Wright brothers :bhow they invented the airplane /cRussell Freedman ; with original photographs by Wilbur and Orville Wright. a1st ed.0 aNew York :bHoliday House,cc1991. a129 p. :bill. ;c24 x 27 cm. aIncludes bibliographical references (p. 123-124) and index. aFollows the lives of the Wright brothers and describes how they developed the first airplane.11aWright, Orville,d1871-1948.11aWright, Wilbur,d1867-1912. 1aAeronauticsxBiography.11aWright, Wilbur,d1867-1912,eill.11aWright, Orville,d1871-1948,eill. aLVLcJBkJB Wright bLB2p37000000006625r9.83u5742u1539 bMAINp32000000037191r17.06u5743u1540 bMAINp32000000054056r9.83u5744u1541 bLB1p36000000002225r9.83u5745u1542 bLB2p34000000010144r9.83u5746u1543 bLB1p33000000014723r9.83u5747u154400689 2200229 450000100060000000300040000600500170001000800410002701000130006803500140008109000130009509200110010810000230011924500910014226000440023330000290027750400510030665000170035765100220037494200200039695200430041657452LVL19990220000000.0910705s1962 nyua b 00110 eng d a62014394 a 62014394 c843d843 a913 Ba10aBaldwin, Gordon C.10aAmerica's buried past :bthe story of North American archaeology /cGordon C. Baldwin. aNew York :bG.P. Putnam's Sons,cc1962. a191 p. :bill. ;c22 cm. aIncludes bibliographical references and index. 0aArchaeology. 0aU.SxAntiquities. aLVLcNFk913 Ba bMAINp31000000052448r2.34u5748u154500759 2200229 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200150011010000210012524500500014626000380019630000280023450000280026252001510029065000220044194200240046395200420048771490LVL19990404000000.0791012s1980 nyu j 00011 eng a0671688456 anpl96001218 c844d844 aYA Pevsner10aPevsner, Stella.10aCute is a four-letter word /cStella Pevsner.0 aNew York :bPocket Books,cc1980. a165 p. ;c18 cm. ;dpa. a"An Archway Paperback." aA young girl discovers that being popular and dating the most sought-after boy in the eighth grade isn't as fulfilling as she thought it would be. 1aSchoolsxFiction. aLVLcYAkYA Pevsner bLB1p36000000002359r2.75u5749u154600984 2200313 450000100060000000300040000600500170001000800390002701000130006602000310007903500140011003900180012404000130014204300120015505000240016708200180019109000130020910000290022224500510025126000350030226300100033730000110034765000640035865000680042265000620049065000490055294200260060195200430062729377LVL19990320000000.0841126s1985 nyu 000 0 eng a84025995 a0440575966 (pbk.) :c$5.95 a 840259950 a2b3c3d3e3 aDLCcDLC an-us---0 aHQ72.U53bK73 1985b0 219a362.7/044 c845d8451 aKraizer, Sherryll Kerns.14aThe safe child book /cSherryll Kerns Kraizer. aNew York, N.Y. :bDell,c1985. a8504. ap. cm. 0aChild abusexPreventionxStudy and teachingzUnited States. 0aChild molestingxPreventionxStudy and teachingzUnited States. 0aAbductionxPreventionxStudy and teachingzUnited States. 0aDay care centersxEvaluation.zUnited States aLVLcNFk362.7044 KRA bMAINp32000000011038r3.51u5751u154701104 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012124501240013525000220025926000800028130000430036144000500040450000200045465000650047465000530053965100360059265100240062870000200065270000170067274000340068994200230072395200440074636396LVL19990319000000.0950301s1996 nyuab 00100 eng a95011449 a067976495X a 95011449 c846d846 a917.95 Si04aThe Sierra Club guides to the national parks of the Pacific Northwest and Alaska /c[text by Robert Belous ... et al.]. aRev. and updated.0 aNew York :bStewart, Tabori & Chang ;bDistributed by Random House,cc1996. a400 p. :bill. ; maps ;c22 cm. ;dpa. 4aThe Sierra Club guides to the national parks. aIncludes index. 0aNational parks and reservesxGuidebooks.zNorthwest, Pacific 0aNational parks and reservesxGuidebooks.zAlaska 0aNorthwest, PacificxGuidebooks. 0aAlaskaxGuidebooks.10aBelous, Robert.20aSierra Club.01aPacific Northwest and Alaska. aLVLcNFk917.95 Si bMAINp32000000062307r14.97u5752u154800875 2200277 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200120011210000230012424500450014726000380019230000280023044000360025850000280029494200210032295200420034395200430038595200420042895200420047095200430051295200420055543415LVL20000204000000.0950505s1995 nyu j 00011 eng d a0671882090 anpl95000695 c847d847 aJ Dixon10aDixon, Franklin W.10aMurder by magic /cby Franklin W. Dixon.0 aNew York :bPocket Books,cc1995. a155 p. ;c17 cm. ;dpa. 1aThe Hardy Boys casefiles ;v98. a"An Archway paperback". aLVLcJFkJ Dixon bLB2p37000000006306r2.35u5753u1549 bMAINp32000000000499r2.35u5754u1550 bLB1p36000000001454r2.33u5755u1551 bLB2p34000000005264r2.35u5756u1552 bMAINp31000000054366r2.35u5757u1553 bLB1p33000000022366r2.35u5758u155400599 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000280013524500310016326000380019430000210023294200230025395200620027695200430033850434LVL20020807140728.0910501s1993 nyu 00011 eng a91050407 a0446516112 a 91050407 c848d848 aAF Weaver10aWeaver, Michael,d1929-10aImpulse /cMichael Weaver.0 aNew York :bWarner Books,cc1993. a449 p. ;c24 cm. aLVLcAFkAF Weaver bMAINdMAINp32000000040381r10.70u5759u1555v2003-09-01 bLB1p33000000015827r10.70u5760u155600721 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012124500390013626000470017530000340022249000450025650000200030165000500032174000410037194200240041295200430043657453LVL20030524164822.0900710s1990 mnua f 00100 eng a90042688 a0865737142 a 90042688 c849d849 a621.319 Ba00aBasic wiring & electrical repairs.0 aMinnetonka, MN :bCy DeCosse Inc.,cc1990. a128 p. :bcol. ill. ;c28 cm. 0aBlack & Decker home improvement library. aIncludes index. 0aElectric wiring, InteriorxAmateurs' manuals.01aBasic wiring and electrical repairs. aLVLcNFk621.319 Ba bLB1p33000000009406r14.95u5761u155700548 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009409000130011009200140012310000160013724500400015325000200019326000320021330000210024594200200026695200440028671491LVL19990404000000.0820127s1981 nyu 00011 eng a81051978 a0708909221 aonv90001287 c850d850 aL.P. Page10aPage, Emma.10aEvery second Thursday /cEmma Page. aLarge Print ed.0 aNew York :bWalker,cc1981. a297 p. ;c22 cm. aLVLcUkLP Page bMAINp31000000036762r11.25u5762u155800810 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200170012110000280013824501090016625000170027526000530029230000330034565000150037865000130039370000230040694200270042995200440045695200440050036397LVL19990319000000.0960304s1996 nyua 00010 eng a95078242 a0689807414 a 95078242 c851d851 aJNF 398.2 Mc1 aMcCaughrean, Geraldine.14aThe golden hoard :bmyths and legends of the world /cGeraldine McCaughrean ; illustrated by Bee Willey. a1st U.S. ed.0 aNew York :bMargaret K. McElderry Books,cc1996. avi, 130 p. :bill. ;c28 cm. 1aMythology. 1aLegends.11aWilley, Bee,eill. aLVLcJNFkJNF 398.2 Mc bMAINp32000000064903r11.97u5764u1559 bMAINp31000000060167r11.97u5765u156001564 2200313 450000100060000000300040000600500170001000700150002700800410004202400150008302800220009803500160012009000130013609200140014910000360016324500440019926000320024330000750027550000190035050505540036951100310092365000340095465000170098870000320100570000730103770000730111094200240118395200430120743416LVL20021009095112.0ssulsnjlc ce950728s19901985enguun h eng d a289417798202a417-798-2bLondon anav95000061 c852d852 aAC Chopin1 aChopin, FrÂedÂeric,d1810-1849.10aChopin favouritesh[sound recording] /.0 aNew York :bLondon,cp1990. a1 sound disc (91 min.) :bdigital, stereo. ;c4 3/4 in. +e1 pamphlet. aCompact disc.. aGrande Valse brillante, (op. 18) -- Fantaisie impromptu, (op. 66) -- Nocturne in E flat major, (op. 9 no. 2) -- Waltz in A minor, (op. 34 no. 2) -- Mazurka in D major, (op. 33 no. 2) -- Scherzo in B flat minor / D flat major, (op. 31) -- Waltz in A flat major, (op. 69 no. 1) -- Nocturne in F sharp major, (op. 15 no. 2) -- Waltz in B minor, (op. 69 no. 2) -- Ballade in G minor, (op. 23) -- Mazurka in B flat major, (op. 7 no. 1) --Waltz in G flat major, (op. 70 no. 1) -- Nocturne in B major, (op. 32 no. 1) -- Polonaise in A flat major, (op. 53).0 aVladimir Ashkenazy, piano. 0aBallades (Instrumental music) 0aPiano music.1 aAshkenazy, Vladimir,d1937-12aChopin, FrÂedÂeric,d1810-1849.hSound recording.mpiano.tBallades,12aChopin, FrÂedÂeric,d1810-1849.hSound recording.mpiano.tScherzos, aLVLcCDMkCD Chopin bMAINp32000000058413r7.77u5766u156100329 2200133 450000100060000000300040000600500170001000800410002709000130006810000240008124500220010594200250012795200430015250435LVL19990312000000.0941224s19uu 000 0 eng d c853d853 aAngeli, Marguerite.10aYonie Wondernose. aLVLcJFkJ De Angeli bMAINp32000000013454r5.00u5767u156200620 2200229 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200120011210000190012424500610014325000200020426000380022430000210026265000220028374000210030594200210032695200430034771492LVL19990404000000.0920716s1985 enk d 00011 eng d a0708913067 aonv90002800 c854d854 aLP Cole1 aCole, Jackson.10aGun-down on the Rio and Gunsmoke empire /cJackson Cole. aLarge print ed. aLeicester :bUlverscroft,cc1985. a460 p. ;c22 cm. 0aLarge type books.02aGunsmoke empire. aLVLcLPkLP Cole bMAINp31000000039881r7.98u5768u156300662 2200217 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200120011010000250012224500700014726000520021730000280026965000520029765000300034994200220037995200430040136398LVL19990319000000.0960810r19961993onc 00011 eng a0373261942 anpl96001522 c855d855 aM Brett10aBrett, Simon,d1945-12aA reconstructed corpse :ba Charles Paris mystery /cSimon Brett. aToronto ;aNew York :bWorldwide,c1996, c1993. a253 p. ;c18 cm. ;dpa. 0aParis, Charles (Fictitious character)xFiction. 0aActorsxFiction.zEngland aLVLcMYSkM Brett bMAINp32000000066199r5.50u5769u156400728 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200180012110000210013924500600016025000210022026000590024130000300030050400520033065100320038294200280041495200440044243417LVL19990313000000.0940328s1995 nyua j b 00010 eng a94011114 a0027426416 a 94011114 c856d856 aJNF 977.12 Ha10aHarness, Cheryl.14aThe amazing impossible Erie Canal /cby Cheryl Harness. a1st American ed.0 aNew York :bMacmillan Books for Young Readers,cc1995. a[32] p. :bill. ;c29 cm. aIncludes bibliographical references: p. ([32]). 1aErie Canal (N.Y.)xHistory. aLVLcJNFkJNF 977.12 Ha bMAINp32000000059989r16.00u5770u156500887 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200120012110000180013324500780015126000380022930000450026750400640031260000250037665000670040194200220046895200440049095200440053495200430057850436LVL19990312000000.0930303s1993 nyuaf b 00110beng a93007366 a0553095129 a 93007366 c857d857 aB Davis10aSpada, James.10aMore than a woman :ban intimate biography of Bette Davis /cJames Spada.0 aNew York :bBantam Books,cc1993. a514, [32] p. of plates :bill. ;c24 cm. aIncludes bibliographical references (p. 496-498) and index.10aDavis, Bette,d1908- 0aMotion picture actors and actressesxBiography.zUnited States aLVLcBIOkB Davis bMAINp32000000041592r13.54u5771u1566 bMAINp31000000044257r13.54u5772u1567 bLB1p33000000018191r13.54u5773u156800428 2200169 450000100060000000300040000600500170001000800410002702000150006809000130008309200130009610000200010924500330012944000310016294200220019395200430021557455LVL20011106170447.0960919s19uu 000 0 eng d a0373256647 c858d858 aAF Logan10aLogan, Leandra.10aAngel baby /cLeandra Logan. 0aHarlequin Temptationv564. aLVLcAFkAF Logan bMAINp31000000019835r3.25u5774u156900694 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903900180009404000130011205000270012508200160015209000130016810000280018124500350020925000200024426000570026426300100032130000110033165000220034294200210036495200430038564474LVL19990217000000.0820126c19821938meu d 00011 eng a82000709 a08962134710 a2b3c3d3e3 aDLCcDLC1 aPS3513.R6545bM34 19820 219a813/.52 c859d85910aGrey, Zane,d1872-1939.10aMajesty's rancho /cZane Grey. aLarge print ed.0 aThorndike, Maine :bThorndike Press,c[1982], c1938. a8204. ap. cm. 0aLarge type books. aLVLcAFkAF Grey bMAINp31000000010636r9.00u5775u157000929 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012124501250013626000470026130000300030850400670033865000380040571000210044394200250046495200440048995200430053395200440057695200430062036399LVL19990319000000.0951011s1996 vaua be 00100 eng a95045803 a0809467372 a 95045803 c860d860 aREF 610 Me04aThe medical advisor :bthe complete guide to alternative & conventional treatments /cby the editors of Time-Life Books.0 aAlexandria, VA :bTime-Life Books,cc1996. a1152 p. :bill. ;c26 cm. aIncludes bibliographical references: p. (1100-1117) and index. 0aMedicine, PopularxEncyclopedias.20aTime-Life Books. aLVLcREFkREF 610 Me bMAINp32000000067409r23.97u5776u1571 bLB2p34000000014508r23.97u5777u1572 bMAINp31000000062211r23.97u5778u1573 bLB1p33000000026886r23.97u5779u157401163 2200301 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200200011010000230013024500780015326000370023130000360026852001840030465000230048870000260051194200270053795200420056495200430060695200430064995200420069295200430073495200420077795200420081950437LVL20000911235610.0931026s1994 maua j 00011 eng a0316141283 anpl96001143 c861d861 aJ Christo- pher10aChristopher, Matt.14aThe winning stroke /cby Matt Christopher ; illustrated by Karin Lidbeck.0 aBoston :bLittle, Brown,cc1994. a168 p. :bill. ;c19 cm. ;dpa. aWhen hydrotherapy for an injured leg takes him to the pool on a regular basis, twelve-year-old Jerry finds himself fascinated and challenged by the rigors of competitive swimming. 1aSwimmingxFiction.11aLidbeck, Karin,eill. aLVLcJFkJ Christopher bLB2p37000000002758r2.25u5780u1575 bMAINp32000000065363r2.25u5781u1576 bMAINp32000000065364r2.25u5782u1577 bLB1p36000000001357r2.25u5783u1578 bMAINp35000000002080r2.25u5784u1579 bLB2p34000000014006r2.25u5785u1580 bLB1p33000000026081r2.25u5787u158100700 2200241 450000100060000000300040000600500170001000800390002701000190006603500200008504000070010505000140011208200110012609000130013710000310015024500560018126000310023730000310026849000480029960000480034794200260039595200370042129381LVL19990320000000.0751125s1964 nyua j 000 0beng a64012600 //r84 a 64012600 //r84 cWa0 aE111.bO5 a92 (j) c862d8621 aOlds, Helen (Diehl)d1895-10aChristopher Columbus /cIllustrated by Al Davidson. aNew York,bPutnam,cc1964. a64 p.bcol. illus.c23 cm.0 aA See and read beginning to read biography.10aColumbus, ChristopherxJuvenile literature. aLVLcJNFkJB Columbus bMAINp32000000004808u5788u158200347 2200145 450000100060000000300040000600500170001000800410002702000150006809000130008310000240009624500240012094200200014495200370016436400LVL20020919121956.0940810s19xx xxu 00010 eng d a0671418009 c863d863 aDurant, Willd1885-14aThe life of Greece. aLVLcNFk938 Du bMAINp32000000028818u5789u158300729 2200253 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200140011024500530012425000180017726000390019530000280023444000220026265000450028465000370032965000200036670000220038694200240040895200430043250438LVL19990312000000.0930726s1990 nyu 00001 eng a0425119661 anpl93001868 c864d864 aM Sisters00aSisters in crime 2 /cedited by Marilyn Wallace. aBook club ed. aNew York :bBerkley Books,cc1989- axii, 292 p. ;c18 cm.;. 0aSisters in crime. 0aDetective and mystery stories, American. 0aAmerican fictionxWomen authors. 0aWomenxFiction.10aWallace, Marilyn. aLVLcMYSkM Sisters bMAINp32000000044410r4.99u5791u158401054 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000210013424500770015526000340023230000350026652002460030165000710054765000500061865000250066870000270069394200240072095200440074457457LVL19990220000000.0940907s1993 nyua j 00011 eng a92026196 a039922503X a 92026196 c865d865 aE Uchida1 aUchida, Yoshiko.14aThe bracelet /cstory by Yoshiko Uchida ; illustrated by Joanna Yardley. aNew York :bPhilomel,cc1993. a[32] p. :bcol. ill. ;c26 cm. aEmi, a Japanese American in the second grade, is sent with her family to an internment camp during World War II, but the loss of the bracelet her best friend has given her proves that she does not need a physical reminder of that friendship. 1aJapanese AmericansxEvacuation and relocation, 1942-1945xFiction. 1aWorld War, 1939-1945xFiction.zUnited States 1aFriendshipxFiction.11aYardley, Joanna,eill. aLVLcEASYkE Uchida bMAINp31000000051075r14.95u5792u158500324 2200133 450000100060000000300040000600500170001000800410002709000130006810000200008124500240010194200220012595200430014736401LVL19990319000000.0941224s19uu 000 0 eng d c866d8661 aFarley, Walter.14aThe Blood Bay colt. aLVLcJFkJ Farley bMAINp32000000016322r8.99u5793u158600725 2200241 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200130011211000470012524501030017225000130027526000340028830000330032250000200035565000170037565000250039294200220041795200440043943420LVL19990313000000.0961025s1996 inua 00110 eng d a1563702789 anpl96001934 c867d867 a331.7 Un10aUnited States. Bureau of Labor Statistics.10aOccupational outlook handbook :b1996-97 ed. /ccompiled by the United States Department of Labor. a22nd ed.0 aIndianapolis :bJIST,cc1996. axi, 505 p. :bill. ;c29 cm. aIncludes index. 0aOccupations. 0aVocational guidance. aLVLcNFk331.7 Un bMAINp31000000062337r20.85u5794u158700960 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009409000130011009200150012310000200013824500500015825000130020826000490022130000330027050400660030365000840036965100780045394200240053195200430055595200420059895200420064050439LVL20030513181914.0951121s1996 nyu b 00110 eng a95026484 a0195097300 anpl96000642 c868d868 a324.973 Bo10aBoller, Paul F.10aPresidential campaigns /cPaul F. Boller, Jr. aRev. ed.0 aNew York :bOxford University Press,cc1996. axii, 458 p. ;c21 cm. ;dpa. aIncludes bibliographical references (p. [401]-445) and index. 0aPresidentsxElectionxHistoryxAnecdotes, facetiae, satire, etc.zUnited States 0aUnited StatesxPolitics and governmentxAnecdotes, facetiae, satire, etc. aLVLcNFk324.973 Bo bMAINp32000000063479r8.23u5796u1588 bLB1p36000000000118r8.23u5797u1589 bLB2p34000000013374r8.23u5798u159001065 2200325 450000100060000000300040000600500170001000700090002700800410003602000150007703500160009209000130010809200140012124500710013526000530020630000540025944000360031350000290034950000410037851100190041952000910043852100130052953800090054265100430055170000200059471000280061474000300064294200230067295200440069557458LVL19990220000000.0vf cbaho900323s1989 cou060 g vleng d a0938939157 avid93001444 c869d869 aAV 914 Gl04aThe Glory of EnglandcA film by Frank Nichols.h[videorecording] / aEnglewood, CO :bQuantum Communications,cc1989. a1 videocassette (60 min.) :bsd., col. ;c1/2 in. 0aTraveloguer collection ;vv.16. aTitle on cover: England. aOriginally released as film in 1988.3 aFrank Nichols. aTravelogue of England, featuring historical sites, London, the universities, and more. aGeneral. aVHS. 0aEnglandxDescription and travely1971-11aNichols, Frank.21aQuantum Communications.01aEnglandh[videorecording] aLVLcAVkAV 914 Gl bMAINp31000000030459r29.95u5799u159101454 2200397 450000100060000000300040000600500170001000800390002701000210006602000310008702000360011803500160015404000250017005000240019508200120021909000130023110000220024424501290026626000690039530000330046449000380049752001450053552100090068065000270068965000200071665000220073665000270075865000200078565000390080570000290084471000360087383000370090994200250094695200430097195200420101464477LVL19990719000000.0880406s1989 nyua j 00011 eng a88014002 /AC/r90 a0394822048 (pbk.) :c$2.95 a0394922042 (lib. bdg.) :c$6.99 aflb01071606 aDLCcDLCdDLCdICrlF00aPZ7.H2888bHas 198900219a[E] c870d87010aHautzig, Deborah.10aHappy Mother's Day! :bfeaturing Jim Henson's Sesame Street Muppets /cby Deborah Hautzig ; illustrated by Normand Chartier.0 aNew York :bRandom House/Children's Television Workshop,cc1989. a31 p. :bcol. ill. ;c23 cm.1 aStep into reading. A Step 1 book. aGrover is distressed that he has no present to give his mother for Mother's Day, not realizing that she already has the best present of all.2 aK-3. 1aMother's DayxFiction. 1aGiftsxFiction. 1aPuppetsxFiction. 7aMother's DayxFiction. 7aGiftsxFiction. 7aPuppets and puppet playsxFiction.11aChartier, Normand,eill.20aChildren's Television Workshop. 0aStep into reading.pStep 1 book. aLVLcEASYkE Hautzig bMAINp31000000007207r1.71u5801u1592 bLB1p33000000002421r9.95u5802u159300710 2200193 4500010001300000020001500013090001300028100001700041245005500058260003400113300003500147490001800182520017900200650002700379650002500406700001800431942002300449952004400472 a87080453 a0531170691 c871d87110aPetty, Kate.10aGoing to the doctor /cKate Petty and Lisa Kopper.0 aNew York :bF. Watts,cc1987. a[22] p. :bcol. ill. ;c21 cm. 0aFirst timers. aWhen Sam visits the doctor' office for a check-up she takes his height and weight, tests his eyesight and hearing, listens to his heart and lungs, and gives him an injection. 1aMedical carexFiction. 1aPhysiciansxFiction.10aKopper, Lisa. aLVLcEASYkE Petty bMAINp31000000045977r10.99u5803u159401112 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200170012110000170013824501950015525000120035026000450036230000300040752001190043765000290055665000540058565000280063994200270066795200430069495200430073795200420078029383LVL19990320000000.0940627s1996 dcua j 00010 eng a94027873 a079222714X a 94027873 c872d872 aJNF 398.2 Go10aGoble, Paul.10aThe return of the buffaloes :ba Plains Indian story about famine and renewal of the earth /ctold and illustrated by Paul Goble ; prepared by the Book Division, National Geographic Society. a1st ed.0 aWashington, D.C. :bThe Society,cc1996. a[32] p. :bill. ;c28 cm. aBased on a Lakota myth in which a mysterious woman returns the buffalo and the other animals to the Indian people. 1aTeton IndiansxFolklore. 1aIndians of North AmericaxFolklore.zGreat Plains 1aFolklorezGreat Plains. aLVLcJNFkJNF 398.2 Go bMAINp32000000063569r9.57u5805u1595 bMAINp31000000059079r9.57u5806u1596 bLB1p33000000025218r9.57u5807u159700389 2200145 450000100060000000300040000600500170001000800410002702000150006809000130008310000230009624500570011994200240017695200430020036402LVL20000627000000.0941224s19uu 000 0 eng d a094211020X c873d8731 aKeillor, Garrison.10aNews from Lake WobegonbSummer.h[sound recording] : aLVLcACkAC Keillor bMAINp32000000021860r4.83u5808u159801009 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200200012110000260014124500620016726000520022930000330028152001220031460000350043665000210047165000220049271000480051494200300056295200420059295200430063495200420067750440LVL20000912160028.0940228s1993 nyua j 00010 eng a93007582 a0670851981 a 93007582 c874d874 aJNF 759.9492 Mu10aMÈuhlberger, Richard.10aWhat makes a Van Gogh a Van Gogh? /cRichard MÈuhlberger.0 aNew York :bMetropolitan Museum of Art,cc1993. a48 p. :bcol. ill. ;c22 cm. aExplores such art topics as style, composition, color, and subject matter as they relate to twelve works by Van Gogh.11aGogh, Vincent van,d1853-1890. 1aPainting, Dutch. 1aArt appreciation.20aMetropolitan Museum of Art (New York, N.Y.) aLVLcJNFkJNF 759.9492 Mu bLB1p36000000011825r5.97u5810u1599 bMAINp31000000046901r5.87u5811u1600 bLB1p33000000017907r5.87u5812u160100904 2200217 4500020001500000090001300015100003500028245008400063260005300147300004700200490002400247500001400271511003000285520017900315650003500494650001900529650004200548700002800590942002600618952004200644 a0394559800 c875d8751 aMacDonald, John D.d1916-1986.14aThe girl in the plain brown wrappercby John D. MacDonald.h[sound recording] /0 aNew York, NY :bRandom House Audiobooks,cp1989. a2 sound cassettes (3 hr.) :banalog, mono.0 aTravis McGee novel. aAbridged.0 aNARRATOR: Darren McGavin. aThe perfect client for Travis McGee: beautiful, rich, wanton, and losing her mind, a little at a time. Her troubles will lead Travis into corruptions in a quiet Florida town. 0aDetective and mystery stories. 0aTalking Books. 0aMcGee, Travis (Fictitious character).1 aMcGavin, Darren,d1922- aLVLcACkAC MacDonald bLB2p37000000016453r8.05u5813u160200592 2200229 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000130011009200110012310000160013424500310015026000320018130000350021344000300024865000190027894200220029795200430031964478LVL20000910181904.0930222s1991 nyua j 00011 eng d a90062939 a0399217746 a 90062939 c876d876 aE Hill10aHill, Eric.10aSpot at home /cEric Hill. aNew York :bPutnam,cc1991. a[14] p. :bcol. ill. ;c12 cm. 2aA little Spot board book. 0aDogsxFiction. aLVLcEASYkE Hill bMAINp31000000075760r3.99u5814u160300586 2200205 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200120011210000230012424500490014726000480019630000290024444000420027394200210031595200440033629384LVL20000204000000.0960102r19861962enga j 00011 eng d a0448089114 anpl95001979 c877d877 aJ Dixon10aDixon, Franklin W.10aWhile the clock ticked /cFranklin W. Dixon.0 aNew York :bGrosset & Dunlap,c1980, c1962. a174 p. :bill. ;c20 cm. 4aThe Hardy Boys mystery stories ;v10. aLVLcJFkJ Dixon bMAINp32000000061906r10.00u5815u160400873 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200110012110000200013224501160015226000440026830000400031250000330035250400680038565000570045365000460051094200200055695200430057650441LVL19990312000000.0920128s1992 nyuab b 00110 eng a92003788 a0140153799 a 92003788 c878d878 a508 Bl10aBlocksma, Mary.10aNaming nature :ba seasonal guide for the amateur naturalist /cby Mary Blocksma ; illustrations by Robin Wilt.0 aNew York, N.Y. :bPenguin Books,c1992. axiii, 336 p. :bill., map ;c23 cm. a"A Penguin orignial"--Cover. aIncludes bibliographical references (p. [319]-322) and indexes. 0aZoologyxNomenclature (Popular)xStudy and teaching. 0aPlant names, PopularxStudy and teaching. aLVLcNFk508 Bl bLB1p33000000018515r12.00u5817u160500861 2200289 450000100060000000300040000600500170001000800410002701000130006802000150008103500160009609000130011209200130012510000210013824500780015926000380023730000350027550000200031065000160033065000330034670000170037974000220039694200220041895200440044095200440048495200430052864479LVL19990217000000.0911126s1991 nyua 00110 eng d a91018246 a0679737979 aonv90001702 c879d879 a635.9 Ph10aPhillips, Roger.14aThe Random House book of early perennials /cRoger Phillips & Martyn Rix.0 aNew York :bRandom House,cc1991. a240 p. :bill. ; pa. ;c29 cm. aIncludes index. 0aPerennials. 0aPerennialsxPictorial works.10aRix, Martyn.02aEarly perennials. aLVLcNFk635.9 Ph bMAINp31000000037511r14.75u5818u1606 bMAINp31000000037512r14.75u5819u1607 bLB1p33000000009708r14.75u5820u160800812 2200277 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200160011210000210012824500370014925000130018626000420019930000290024144000220027050000200029265000220031294200260033495200440036095200440040495200430044895200430049150442LVL19990312000000.0940513c1992 njua j 00110 eng d a0517065592 anpl94000636 c880d880 aJNF 930 O'N10aO'Neill, Amanda.10aAncient Times /cAmanda O'Neill. aU.S. ed.0 aAvenel, NJ :bCrescent Books,cc1992. a108 p. :bill. ;c28 cm. 0aHistorical facts. aIncludes index. 1aHistory, Ancient. aLVLcJNFkJNF 930 O'N bMAINp32000000047065r17.95u5821u1609 bMAINp32000000048956r15.95u5822u1610 bLB2p34000000009312r15.95u5823u1611 bLB1p33000000019900r15.95u5825u161200620 2200217 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200140011210000260012624500410015226000450019330000300023844000260026894200230029495200420031795200430035964480LVL20020924105455.0930115c19921978toc 00011 eng d a0373898959 aonv90003894 c881d881 aAF Dailey10aDailey, Janet,d1944-10aGreen mountain man /cJanet Dailey..0 aToronto :bBantam Books,c1992, c1978. . a188 p. ;c18 cm. ;dpa. . 0aAmericana ;vVermont. aLVLcAFkAF Dailey bLB2p34000000002986r2.08u5826u1613 bMAINp31000000047378r3.59u5827u161400803 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200120012110000190013324500370015225000120018926000390020130000280024060000660026865000410033465000380037565100590041394200210047295200440049350443LVL20030108121812.0931123s1994 nyub 00011 eng a93040649 a0679430334 a 93040649 c882d882 aAF Bass10aBass, Cynthia.10aSherman's march /cCynthia Bass. a1st ed.0 aNew York :bVillard Books,cc1994. a228 p. :bmap ;c22 cm.10aSherman, William T.d1820-1891q(William Tecumseh),xFiction. 0aSherman's March to the SeaxFiction. 0aGeneralsxFiction.zUnited States 0aUnited StatesxHistoryxFiction.yCivil War, 1861-1865 aLVLcAFkAF Bass bMAINp32000000047891r11.89u5830u161500755 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200160012110000160013724500790015325000200023226000510025230000290030365000180033265000580035065000220040894200270043095200440045764481LVL19990217000000.0900710r19901989meuab d 00010 eng a90010844 a0896219968 a 90010844 c883d883 aLP 910.4 Ar1 aArias, Ron.10aFive against the sea :ba true story of courage and survival /cRon Arias. aLarge print ed. aThorndike, ME :bThorndike Press,cc1990,1989. a333 p. :bill. ;c23 cm.0 aCairo (Boat).0 aSurvival (after airplane accidents, shipwrecks, etc.)0 aLarge type books. aLVLcLPNFkLP 910.4 Ar bMAINp31000000045785r18.95u5831u161600706 2200229 450000100060000000300040000600500170001000800410002701000130006804100080008109000130008910000280010224500910013025000120022126000370023330000290027060000500029965000290034970000280037894200280040695200420043471500LVL19990404000000.0950323s19uu 000 0 eng d a630138820 aeng c884d8841 aNorth, Sterling,d1906-10aRascal :ba memoir a better era /cby Sterling North ; illustrated by John Schoenherr. a1st ed.0 aNew York :bE. P. Dutton,c1963. a189 p. :bill. ;c21 cm.10aNorth, Sterling,d1906-xChildhood and youth. 0aCountry lifezWisconsin.11aSchoenherr, John,eill. aLVLcJNFkJNF 599.74 No bLB1p33000000029344r3.89u5833u161700691 2200217 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200140011010000250012424500430014926000370019230000230022952001200025265000350037294200230040795200430043050444LVL19990312000000.0940716s1990 nyu j 00011 eng a0440945151 anpl94001201 c885d885 aYA Duncan1 aDuncan, Lois,d1934-10aKilling Mr. Griffin /cby Lois Duncan. aNew York :bLaurel-Leaf,cc1978. a223 p. :c17 cm.;. aA teenager casually suggests playing a cruel trick on the English teacher, but did he intend it to end with murder?1 aMystery and detective stories. aLVLcYAkYA Duncan bMAINp32000000052741r3.99u5834u161800392 2200145 450000100060000000300040000600500170001000800410002701000130006809000130008110000250009424500610011994200230018095200430020357463LVL19990220000000.0950324s19uu 000 0 eng d a81009165 c886d886 aOuellette, Robert A.10aChain saws :bBuying, using, maintaining, and repairing. aLVLcNFk621.93 Ou bMAINp31000000028860r8.20u5835u161900477 2200181 450000100060000000300040000600500170001000800410002702000150006809000130008309200160009610000220011224500420013426000400017630000240021644000290024094200260026964482LVL19990217000000.0940217s19xx xxu 00010 eng d a088038722X c887d887 aSF Thompson10aThompson, Paul B.10aDarkness & light /cPaul B. Thompson.0 aLake Geneva, WI :bTSR Inc.cc1989. a377 p.bpa.c17 cm. 0aDragon Lance : Preludes. aLVLcSCIkSF Thompson00916 2200277 450000100060000000300040000600500170001000800390002701000130006602000210007903500140010009000130011410000210012724500470014826000550019530000210025044000300027165100590030180000440036094200230040495200420042795200420046995200420051195200430055395200420059629388LVL20011009131810.0940623s1994 ilu 00011 eng a94028708 a0842359877 (pa.) a 94028708 c888d8881 aMorris, Gilbert.14aThe shadow of his wings /cGilbert Morris. aWheaton, Ill. :bTyndale House Publishers,cc1994. a270 p. ;c21 cm. 4aThe Appomattox saga ;v6. 0aUnited StatesxHistoryxCivil War, 1861-1865xFiction.1 aMorris, GilberttAppomattox saga ;vv6. aLVLcAFkAF Morris bLB2p37000000018628r9.99u5837u1620 bLB1p36000000017384r9.99u5839u1621 bLB2p34000000026869r9.99u5840u1622 bMAINp31000000058755r6.48u5841u1623 bLB1p33000000047378r9.99u5842u162400403 2200133 4500020001500000090001300015100002600028245004000054260004300094300002100137942002600158952004300184952004200227 a0671510304 c889d88910aApplegate, Katherine.10aJune Dreams /cKatherine Applegate.0 aNew York :bArchway Paperback,cc1995. a234 p. ;c17 cm. aLVLcYAkYA Applegate bMAINp35000000001091r2.07u5845u1625 bLB2p34000000014467r3.50u5846u162600963 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000350013524500570017026000400022730000440026744000350031150000200034665000400036665000300040665100470043665100330048365100370051694200230055395200420057695200430061864483LVL19990217000000.0870324s1987 mauac 00110 eng a87003776 a0828112002 a 87003776 c890d890 a973.04 We10aWeisberger, Bernard A.,d1922-10aMany people, one nation /cby Bernard A. Weisberger.0 aBoston :bHoughton Mifflin,cc1987. a343 p. :bill., ports. ;c21 cm. ;dpa. 4aThe American Heritage library. aIncludes index. 0aImmigrantsxHistory.zUnited States 0aEthnologyzUnited States. 0aUnited StatesxEmigration and immigration. 0aUnited StatesxCivilization. 0aUnited StatesxEthnic relations. aLVLcNFk973.04 We bLB2p34000000002554r5.72u5847u1627 bMAINp31000000020157r5.72u5848u162800769 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200160012110000220013724500650015925000120022426000380023630000210027465000320029565000190032765100450034694200250039195200440041695200430046029389LVL19990320000000.0900910s1991 nyu 00011 eng a90052930 a0394576543 a 90052930 c891d891 aAF Cisneros10aCisneros, Sandra.10aWoman hollering creek, and other stories /cSandra Cisneros. a1st ed.0 aNew York :bRandom House,cc1991. a165 p. ;c22 cm. 0aMexican AmericansxFiction. 0aShort stories. 0aMexican-American Border RegionxFiction. aLVLcAFkAF Cisneros bMAINp32000000033369r10.33u5849u1629 bLB1p33000000012566r10.33u5850u163000707 2200217 450000100060000000300040000600500170001000800410002703500160006809000130008409200130009710000210011024500390013126000590017030000330022950400510026252000860031365100240039994200220042395200440044550446LVL19990312000000.0940914s1944 enka b 00110 eng d anpl94001879 c892d892 a917.7 Ha1 aHatcher, Harlan.14aThe Great Lakes /cHarlan Hatcher. aLondon ;aNew York :bOxford University Press,cc1944. axi, 384 p. :bill. ;c22 cm. aIncludes bibliography: p. (371-374) and index. aPhotographs and accompanying text describe the history of the Great Lakes region. 0aGreat Lakes region. aLVLcNFk917.7 Ha bMAINp32000000050683r10.00u5851u163101027 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009404000200011005000200013008200190015009000130016910000240018224501750020626000470038130000290042850000200045752000910047752100340056852100090060265000230061165000230063494200240065795200440068136409LVL20030516103246.0880923s1989 paua 00110 eng a88031241 a0811722481 aflb00810503 aDLCcDLCdICrlF0 aQL60.bF36 19890 219a599/.007/8 c893d89310aFadala, Sam,d1939-10aBasic projects in wildlife watching :blearn more about wild birds and animals through your own first-hand experience /cSam Fadala ; wildlife photography by John Fadala.0 aHarrisburg, PA :bStackpole Books,cc1989. a255 p. :bill. ;c24 cm. aIncludes index. aContains projects designed to increase enjoyment and proficiency in wildlife watching.0 a6.7bFollett Library Book Co.2 a5-8. 0aWildlife watching. 7aWildlife watching. aLVLcNFk599.007 Fa bMAINp32000000024563r10.00u5852u163201034 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000190013624500770015526000390023230000350027150000350030652001740034165000270051565000220054265000220056494200260058695200440061295200440065695200440070043428LVL19990313000000.0870611s1988 nyua j 00011 eng a87015403 a0531083373 a 87015403 c894d894 aE Schwartz10aSchwartz, Amy.10aAnnabelle Swift, kindergartner :bstory and pictures /cby Amy Schwartz.0 aNew York :bOrchard Books,cc1988. a[32] p. :bcol. ill. ;c26 cm. a"A Richard Jackson book"--Jkt. aAlthough some of the things her older sister taught her at home seem a little unusual at school, other lessons help make Annabelle's first day in kindergarten a success. 1aKindergartenxFiction. 1aSchoolsxFiction. 1aSistersxFiction. aLVLcEASYkE Schwartz bMAINp32000000026112r11.04u5853u1633 bMAINp32000000037144r13.49u5854u1634 bMAINp31000000014042r11.69u5855u163500765 2200241 450000100060000000300040000600500170001000800390002703500160006609000130008209200140009510000320010924500960014125000180023726000380025530000210029360000410031460000370035565000200039294200230041295200440043595200440047950447LVL19990312000000.0941004s1965 yu 00010 eng anpl94002068 c895d895 a364.15 Ca1 aCapote, Truman,d1924-1984.10aIn cold blood :ba true account of a multiple murder and its consequences /cTruman Capote. aBook club ed. aNew York :bRandom House,cc1965. a343 p. ;c22 cm.10aHickock, Richard Eugene,d1931-1965.10aSmith, Perry Edward,d1928-1965. 0aMurderzKansas. aLVLcNFk364.15 Ca bMAINp32000000052295r10.00u5856u1636 bMAINp32000000065662r10.00u5857u163700275 2200121 450000100060000000300040000600500170001000800410002709000130006810000240008124500240010594200240012957466LVL19990220000000.0950324s19uu 000 0 eng d c896d896 aWheeler, Charles E.10aGold Hill showdown. aLVLcAFkAF Wheeler01322 2200313 450000100060000000300040000600500170001000700100002700800410003702000150007803500160009303700330010909000130014224502010015526000510035630000550040750000450046251100490050752001650055652100210072153800160074265000190075870000260077770000190080394200200082295200430084295200620088595200610094729391LVL20030607150438.0vfucbahos960409s1996 cau090 g vleng d a0788803247 anav96000203 a5938bWalt Disney Home Video c897d89712aA Kid in King Arthur's courtcWalt Disney Pictures presents in association with Tapestry Films and Trimark Pictures ; a Levy-Abrams-Guerin production ; a Michael Gottlieb film.h[videorecording] /0 aBurbank, CA :bWalt Disney Home Video,cp1996. a1 videocassette; (90 min.) :bsd., col. ;c1/2 in. aOriginally released as a motion picture.0 aTomas Ian Nicholas, Joss Ackland, Art Malik. aTo 14-year-old little leaguer Calvin Fuller, life is like one big stikeout when he lets his team down. Then an earthquake sends him through a magical time rift. aMPAA rating: PG. aVHS Format. 0aFeature films.11aNicholas, Thomas Ian.11aAckland, Joss. aLVLcAVkAV Kid bLB1p36000000010241r11.26u5859u1638 bMAINdMAINp35000000003592r11.26u1639u1639v2005-03-23 bLB2dMAINp34000000013552r14.39u1640u1640v2005-03-2301445 2200409 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009403900180011004000200012804300120014805000240016008200150018409000130019910000280021224500580024026000320029830000290033051000480035951000140040752000970042152100170051865100540053565100490058965100550063865100500069365100470074365100430079065100440083365100330087773000570091094200240096795200440099136410LVL19990319000000.0850319s1985 nyua 00010deng a85006330 a039913087X aflb001645100 a2b3c3d3e3 aDLCcDLCdICrlF an-us---0 aE169.02.bK869 19850 219a973.92 c898d89810aKuralt, Charles,d1934-10aOn the road with Charles Kuralt /cby Charles Kuralt.0 aNew York :bPutnam,cc1985. a316 p. :bill. ;c24 cm.0 aSenior High School Library Catalog (Wilson)0 aBooklist. aContains the best of his pieces from "Crossroads," the "American Parade," and "On the Road."2 aYoung Adult. 0aUnited StatesxDescription and travely1960-1980. 0aUnited StatesxDescription and travely1981- 0aUnited StatesxSocial life and customsy1945-1970. 0aUnited StatesxSocial life and customsy1971- 0aUnited StatesxCivilizationy20th century. 7aUnited StatesxDescription and travel. 7aUnited StatesxSocial life and customs. 7aUnited StatesxCivilization.01aOn the road with Charles Kuralt (Television program) aLVLcNFk973.92 KUR bMAINp32000000036326r10.00u5862u164100507 2200193 450000100060000000300040000600500170001000800390002701000160006604000130008205000180009509000130011310000180012624500480014426000380019230000190023094200210024995200430027057467LVL19990220000000.0720107s1959 mau 00001 eng a59007579 /L aDLCcDLC0 aPZ4.R8454bGo c899d899 0aRoth, Philip.10aGoodbye, Columbus,band five short stories.0 aBoston,bHoughton Mifflin,c1959. a298 p.c21 cm. aLVLcAFkAF Roth bMAINp31000000017267r2.50u5864u164200324 2200133 450000100060000000300040000600500170001000800410002709000130006810000280008124500230010994200210013295200370015364486LVL19990217000000.0950324s19uu 000 0 eng d c900d9001 aGrey, Zane,d1872-1939.14aThe rainbow trail. aLVLcAFkAF Grey bMAINp31000000029215u5865u164300655 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000260013424500340016025000200019426000460021430000210026065000220028194200220030395200440032595200440036950449LVL20021030143957.0940330r1994 meu d 00011 eng a94011175 a0786202564 a 94011175 c901d901 aLP Paine1 aPaine, Lauran,d1916-10aMoon prairie /cLauran Paine. aLarge print ed. aThorndike, Me. :bThorndike Press,c1994. a242 p. ;c23 cm. 0aLarge type books. aLVLcLPkLP PAINE bMAINp32000000054789r13.46u5867u1644 bMAINp31000000052452r13.46u5868u164500353 2200145 450000100060000000300040000600500170001000800410002701000130006809000130008110000320009424500180012694200200014495200430016457468LVL19990220000000.0950324s19uu 000 0 eng d a54007148 c902d9021 aFox, Norman A.,d1911-1960.10aBroken wagon. aLVLcAFkAF Fox bMAINp31000000034744r5.40u5869u164600671 2200229 450000100060000000300040000600500170001000800390002701000190006602000400008504000130012505000280013808200160016609000130018210000300019524500380022526000470026330000210031065000220033194200260035395200620037971506LVL20020912140351.0861002s1986 meu 00011 eng a86023082 //r88 a0896217647 (lg. print : alk. paper) aDLCcDLC1 aPS3557.R3784bS56 1986b0 219a813/.54 c903d90310aGreenberg, Joanne,d1932-10aSimple gifts /cJoanne Greenberg.0 aThorndike, Me. :bThorndike Press,cc1986. a291 p. ;c22 cm. 0aLarge type books. aLVLcAFkAF Greenberg bMAINdMAINp31000000010624r12.72u5870u1647v2003-09-0100710 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200180012110000110013924500260015025000130017626000330018930000330022244000420025552000800029765000100037794200250038795200440041229393LVL19990320000000.0891208s1990 nyua j 00010 eng a89049158 a0690048807 a 89049158 c904d904 aJNF 612.97 Al0 aAliki.10aMy hands /cby Aliki. aRev. ed. aNew York :bCrowell,cc1990. a32 p. :bcol. ill. ;c19 cm. 0aLet's-read-and-find-out science book. aDescribes the parts of the hand and all the things our hands help us to do. 1aHand. aLVLcJNFkJNF 612.97 bMAINp32000000035651r12.50u5871u164800806 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200120012110000240013324500760015725000210023326000470025430000290030165000450033065000360037570000220041194200210043395200440045495200420049836412LVL20020905092307.0940127r1976 maua 00011 eng a75033794 a0395242908 a 75033794 c905d905 aAF Read 0aSaint, Dora,d1913-10aBattles at Thrush Green /cby Miss Read ; illustrated by J. S. Goodall. a1st American ed.0 aBoston :bHoughton Mifflin,cc1976, c1975. a239 p. :bill. ;c21 cm. 0aThrush Green (Imaginary place)xFiction. 0aCountry lifexFiction.zEngland10aMiss Read,d1913- aLVLcAFkAF Read bMAINp32000000044606r10.00u5872u1649 bLB2p34000000003916r5.09u5873u165000731 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000190013624500330015526000470018830000280023544000190026350000330028250000200031565000170033594200250035295200440037795200440042143431LVL19990313000000.0940216s1994 ctua j 00110 eng a94006389 a1562943987 a 94006389 c906d906 aJNF 770 Wa10aWatts, Barrie.10aPhotography /cBarrie Watts.0 aBrookfield, CT :bMillbrook Press,cc1994. a93 p. :bill. ;c29 cm. 2aA First guide. a"A Quarto book"--T.p. verso. aIncludes index. 1aPhotography. aLVLcJNFkJNF 770 Wa bMAINp32000000060534r17.40u5874u1651 bMAINp31000000057098r17.40u5875u165200761 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000290013524500630016426000420022730000450026950400510031465000440036594200230040995200440043295200430047650450LVL19990312000000.0950119s1995 nyuaf b 00110 eng a95005432 a0684801965 a 95005432 c907d907 a940.54 Bo10aBoyne, Walter J.,d1929-10aClash of Titans :bWorld War II at sea /cWalter J. Boyne.0 aNew York :bSimon & Schuster,cc1995. a381, [32] p. of plates :bill. ;c25 cm. aIncludes bibliographical references and index. 0aWorld War, 1939-1945xNaval operations. aLVLcNFk940.54 Bo bMAINp32000000059819r16.20u5876u1653 bLB1p36000000011905r16.20u5877u165400364 2200145 450000100060000000300040000600500170001000800410002702000150006809000130008310000210009624500370011794200220015495200420017671507LVL20000911175106.0930422s19xx xxu 00010 eng d a044042299X c908d9081 aCleary, Beverly.10aEllen Tebbits /cBeverly Cleary. aLVLcJFkJ Cleary bLB2p37000000012422r5.12u5878u165500794 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200190012110000260014024500430016625000120020926000380022130000210025950000320028052001320031265000260044494200260047095200440049629394LVL19990320000000.0820421s1982 nyu j 00011 eng a81048641 a0060240342 a 81048641 c909d909 aJ Mac- Lachlan1 aMacLachlan, Patricia.10aCassie Binegar /cPatricia MacLachlan. a1st ed. aNew York :bHarper & Row,cc1982. a120 p. ;c21 cm. a"A Charlotte Zolotow book." aDuring her family's first summer in a weathered old house by the sea, Cassie learns to accept change and to find her own space. 1aFamily lifexFiction. aLVLcJFkJ MacLachlan bMAINp32000000036733r10.70u5879u165600766 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200190012110000250014024500740016526000420023930000350028144000400031665000150035670000250037194200290039695200440042595200430046950451LVL19990312000000.0931014s1994 nyua j 00010 eng a93039845 a0448402149 a 93039845 c910d910 aJNF 629.133 Ev10aEvans, Frank,d1968-10aAll aboard airplanes /cby Frank Evans ; illustrated by George Guzzi.0 aNew York :bGrosset & Dunlap,cc1994. a[32] p. :bcol. ill. ;c21 cm. 2aA Grosset & Dunlap all aboard book. 1aAirplanes.11aGuzzi, George,eill. aLVLcJNFkJNF 629.133 Ev bMAINp32000000058733r11.89u5880u1657 bLB1p33000000023164r11.89u5881u165800767 2200241 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000130011009200120012310000190013524500470015426000660020130000350026752001160030265000200041870000200043894200230045895200440048129395LVL19990320000000.0930312s1991 nyua j 00011 eng d a91012123 a067174741X a 91012123 c911d911 aE Snape1 aSnape, Juliet.10aFrog odyssey /cby Juliet & Charles Snape. aNew York :bSimon & Schuster Books for Young Readers,cc1991. a[26] p. :bcol. ill. ;c23 cm. aWhen a construction project forces the frogs to lose their pond, they venture into the city to find a new home. 1aFrogsxFiction.10aSnape, Charles. aLVLcEASYkE Snape bMAINp32000000037860r12.60u5882u165901306 2200373 450000100060000000300040000600500170001000800390002701000170006602000150008303500160009804000200011405000230013408200100015709000130016710000190018024500410019925000120024026000320025230000210028451000320030551000480033751000520038552001900043752100340062752100090066165000350067065000350070565000250074094200220076595200430078795200430083095200590087336414LVL19990319000000.0771216s1978 nyu j 00011 eng a77018866 /AC a0525423206 aflb00056203 aDLCcDLCdICrlF0 aPZ7.R1817bWe 1978 a[Fic] c912d91210aRaskin, Ellen.14aThe Westing game /cby Ellen Raskin. a1st ed.0 aNew York :bDutton,cc1978. a185 p. ;c24 cm.0 aChildren's Catalog (Wilson)0 aJunior High School Library Catalog (Wilson)0 aElementary School Library Collection (Bro-Dart) aThe mysterious death of an eccentric millionaire brings together an unlikely assortment of heirs who must uncover the circumstances of his death before they can claim their inheritance.0 a7.0bFollett Library Book Co.2 a5-8. 1aMystery and detective stories. 7aMystery and detective stories. 7aNewbery Medal books. aLVLcJFkJ Raskin bMAINp32000000014379r4.77u5883u1660 bMAINp31000000005553r4.77u5884u1661 bLB1dLB1p33000000010284r4.77u5885u1662v2003-09-0100852 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200180012124500330013925000210017226000440019330000280023765000380026565000290030374000440033294200280037695200430040495200420044795200430048995200420053243433LVL19990313000000.0950324s1995 nyua j 00000 eng a95014796 a078940205X a 95014796 c913d913 aJNF 031.02 On00a1,001 questions and answers. a1st American ed.0 aNew York :bDorling Kindersley,cc1995. a64 p. :bill. ;c29 cm. 0aChildren's questions and answers. 0aCuriosities and wonders.01aOne thousand one questions and answers. aLVLcJNFkJNF 031.02 On bMAINp32000000060658r9.71u5886u1663 bLB2p34000000010033r9.71u5887u1664 bMAINp31000000057165r9.71u5888u1665 bLB1p33000000024031r9.71u5889u166600622 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200180012110000270013924500620016626000470022830000380027565000200031394200280033395200430036171509LVL19990404000000.0960814s1994 njua j 00110 eng a93021053 a0816732221 a 93021053 c914d914 aJNF 591.92 Ro10aRoberts, M. L.,d1979-10aWorld's weirdest underwater creatures /cby M.L. Roberts.0 a[Mahwah, N.J.] :bWatermill Press,cc1994. a31 p. :bcol. ill. ;c23 cm.dpa. 1aMarine animals. aLVLcJNFkJNF 591.92 Ro bMAINp31000000061266r4.41u5891u166700684 2200205 4500020001500000090001300015100001600028245007200044260005200116300005200168500001600220511003100236520006300267650001400330650002200344650001900366700002000385942002800405952004500433 a0788704389 c915d9151 aSzulc, Tad.10aPope John Paul IIbthe biography /cTad Szulc.h[sound recording] :0 aPrince Frederick, MD :bRecorded Books,cp1995. a17 sound cassettes (23 hrs.) :banalog, stereo. aUnabridged.3 aNarrated by Nelson Runger. aA definitive biography of John Paul II, the 264th pontiff. 0aJohn Paul 0aPopesxBiography. 0aTalking Books.1 aRunger, Nelson. aLVLcACkAC B John Paul bMAINp32000000060593r115.00u5892u166800954 2200301 450000100060000000300040000600500170001000800390002701000130006602000290007902000150010803500160012304000200013905000200015908200120017909000130019110000200020424500510022425000120027526000520028730000270033951000290036651000210039552001530041652100170056994200230058695200430060943434LVL19990313000000.0791227s1980 nyu 00011 eng a79027513 a0030589096 (Limited ed.) a0030421365 aflb01243602 aDLCcDLCdICrlF0 aPS3553.A625bH6 a813/.54 c916d91610aCaputo, Philip.10aHorn of Africa :ba novel /cby Philip Caputo. a1st ed.0 aNew York :bHolt, Rinehart and Winston,cc1980. aviii, 487 p. ;c24 cm.0 aFiction Catalog (Wilson)0 aLibrary Journal. aGage, Colfax, and Nordstrand smuggle arms into the Horn of Africa to train a rebellious Moslem tribe. In this harsh land Colfax abandons the others.2 aYoung Adult. aLVLcAFkAF Caputo bMAINp32000000001383r7.77u5893u166900767 2200241 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200150011010000270012524500590015226000550021130000560026660000270032265000490034970000170039894200250041595200420044095200430048250453LVL20030403142659.0960130r19951994nyuaf 00010aeng a0312956797 anpl96000279 c917d917 aB Campbell10aCampbell, Glen,d1936-10aRhinestone cowboy /cby Glen Campbell with Tom Carter.0 aNew York :bSt. Martin's Paperbacks,c1995, c1994. axi, 271, [16] p. of plates :bill. ;c18 cm. ;dpa.10aCampbell, Glen,d1936- 0aCountry musiciansxBiography.zUnited States10aCarter, Tom. aLVLcBIOkB Campbell bLB2p34000000012696r3.53u5894u1670 bMAINp31000000058316r3.53u5895u167100621 2200217 450000100060000000300040000600500170001000800390002701000130006602000400007908200130011909000130013210000280014524500320017325000200020526000550022530000350028065000220031594200220033795200440035964491LVL19990217000000.0860909c19861960meu d 00010 eng a86023019 a0896217590 (lg. print : alk. paper) 4aLP Brand c918d91810aBrand, Max,d1892-1944.10aTorture trail /cMax Brand. aLarge print ed.0 aThorndike, Me. :bThorndike Press,c[1986], c1960. a358 p. (large print) ;c22 cm. 0aLarge type books. aLVLcLPkLP Brand bMAINp31000000015786r13.95u5896u167200585 2200193 450000100060000000300040000600500170001000800410002702000150006809000130008310000200009624500790011626000400019530000270023570000220026294200220028495200420030695200430034871510LVL19990404000000.0950324s19uu 000 0 eng d a0553158244 c919d9191 aSuzanne, Jamie.10aJessica's secret /cwritten by Jamie Suzanne ; created by Francine Pascal.0 aNew York :bBantam Skylark,cc1990. a133 p. ;c20 cm. ; pa.10aPascal, Francine. aLVLcJFkJ Pascal bLB1p36000000001848r1.71u5897u1673 bMAINp35000000002102r1.71u5898u167400626 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000480013524500430018326000380022630000330026494200240029795200440032195200430036529397LVL20021009104653.0930204s1993 nyua 00011 eng a93022096 a0553095579 a 93022096 c920d920 aSF Clarke10aClarke, Arthur C.d1917-q(Arthur Charles),14aThe hammer of God /cArthur C. Clarke.0 aNew York :bBantam Books,cc1993. axi, 226 p. :bill. ;c24 cm. aLVLcSCIkSF Clarke bMAINp31000000043527r11.77u5901u1675 bLB1p33000000015717r11.77u5902u167600851 2200265 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200190011210000270013124500470015826000380020530000280024344000330027194200260030495200420033095200430037295200430041595200420045895200430050095200420054350454LVL19990618000000.0960618s1996 nyu j 00011 eng d a0553482955 anpl96001119 c921d921 aJ Char- bonnet10aCharbonnet, Gabrielle.10aCompetition fever /cGabrielle Charbonnet.0 aNew York :bBantam Books,cc1996. a118 p. ;c20 cm. ;dpa. 0aAmerican Gold Gymnasts ;v1. aLVLcJFkJ Charbonnet bLB2p37000000002777r2.03u5903u1677 bMAINp32000000065275r2.03u5904u1678 bMAINp35000000002180r2.03u5906u1679 bLB2p34000000013967r2.03u5907u1680 bMAINp31000000060470r2.03u5908u1681 bLB1p33000000026016r2.03u5909u168201319 2200349 450000100060000000300040000600500170001000800390002701000200006602000250008603500160011104000200012705000160014708200180016309000130018124502440019426000410043830000580047950000200053750400300055752001380058752100170072565000270074265000230076965000270079265000150081965000180083470000210085273000350087394200240090895200370093264492LVL20020909074440.0751209s1976 pauaf b 00100 eng a75043829 //r842 a0878571108 :c$12.95 aflb00654706 aDLCcDLCdICrlF0 aSB974.bO730 219a635/.0494 c922d92200aOrganic plant protection :ba comprehensive reference on controlling insects and diseases in the garden, orchard and yard without using chemicals /cedited by Roger B. Yepsen, Jr., and the editors of Organic gardening and farming magazine.0 aEmmaus, Pa. :bRodale Press,cc1976. aviii, 688 p., [16] leaves of plates :bill. ;c24 cm. aIncludes index. aBibliography: p. 653-654. aOn title page: A comprehensive reference on controlling insects and diseases in the garden, orchard and yard without using chemicals.2 aYoung Adult. 0aPlants, Protection of. 0aOrganic gardening. 0aGarden pestsxControl. 7aGardening. 7aGarden pests.10aYepsen, Roger B.01aOrganic gardening and farming. aLVLcNFk635.049 Or bMAINp31000000024451u5910u168300639 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009404000180010805000250012608200160015109000130016710000250018024500390020526000340024430000210027844000320029994200230033195200430035436417LVL19990319000000.0890919s1989 nyu 000 1 eng a89027896 a0871315904 a 89027896 aDLCcDLCdDLC00aPS3553.R497bT5 198900220a813/.54 c923d9231 aCrider, Bill,d1941-12aA time for hanging /cBill Crider. aNew York :bM. Evans,cc1989. a175 p. ;c22 cm. 3aAn Evans novel of the West. aLVLcWESkW Crider bMAINp32000000043861r3.50u5911u168400596 2200217 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200190011210000180013124500500014926000360019930000350023565000140027065000220028494200290030695200430033550455LVL19990312000000.0960821s1995 nyua j 00010 eng d a059048673X anpl96001665 c924d924 aJNF 796.357 We10aWeber, Bruce.10aBaseball megastars :b1995 /cby Bruce Weber.0 aNew York :bScholastic,cc1995. a32 p. :bill. ;c28 cm. ;dpa. 1aBaseball. 1aBaseball players. aLVLcJNFkJNF 796.357 We bMAINp32000000066468r2.95u5912u168500606 2200229 450000100060000000300040000600500170001000800390002701000130006602000240007904000130010305000310011608200130014709000130016010000180017324500420019125000120023326000430024530000210028894200240030995200430033371512LVL19990404000000.0760727s1976 nyu 00011 eng a76022896 a0385121776 :c$5.95 aDLCcDLC0 aPZ4.H6975aPS3558.O346bNo a813/.5/4 c925d92510aHoffman, Lee.10aNothing but a drifter /cLee Hoffman. a1st ed.0 aGarden City, N.Y. :bDoubleday,c1976. a187 p. ;c22 cm. aLVLcAFkAF Hoffman bMAINp31000000030959r3.25u5914u168601471 2200445 450000100060000000300040000600500170001000800390002701000170006602000270008303500160011003900180012604000200014405000240016408200150018809000130020310000190021624500440023526000390027930000280031850000200034650400250036651000480039151000140043951000280045352001570048152100340063852100090067265000380068165000510071965000460077065000170081665000300083365000170086365000170088065000300089765000260092794200290095395200430098236418LVL19990319000000.0850826s1986 nyua j b 001 0 eng a85020202 /AC a0531101177 (lib. bdg.) aflb010806040 a2b3c3d3e3 aDLCcDLCdICrlF0 aQC527.2.bV643 19860 219a621.31 c926d9261 aVogt, Gregory.10aGenerating electricity /cGregory Vogt. aNew York :bFranklin Watts,c1986. a66 p. :bill. ;c23 cm. aIncludes index. aBibliography: p. 64.0 aJunior High School Library Catalog (Wilson)0 aBooklist.0 aSchool Library Journal. aDescribes how common and uncommon forms of electricity are produced or generated. Includes instructions for several experiments and a glossary of terms.0 a8.5bFollett Library Book Co.2 a5-8. 0aElectricityxJuvenile literature. 0aElectricityxExperimentsxJuvenile literature. 0aElectric generatorsxJuvenile literature. 1aElectricity. 1aElectricityxExperiments. 1aExperiments. 7aElectricity. 7aElectricityxExperiments. 7aSciencexExperiments. aLVLcJNFkJNF 621.31 VOG bMAINp32000000018498r9.90u5915u168700986 2200289 450000100060000000300040000600500170001000800390002701000170006602000240008303500180010703900180012504000130014305000220015608200140017809000130019210000470020524501060025226000750035830000330043352000870046665000260055365000240057970000300060394200200063395200430065343437LVL19990313000000.0830519s1983 nyua j 000 1 eng a83011529 /AC a0517420627 :c$4.98 a 83011529 /AC0 a2b3c3d3e3 aDLCcDLC0 aPZ7.B327bLg 19830 219a[Fic] c927d9271 aBaum, L. Frankd1856-1919.q(Lyman Frank),14aThe life and adventures of Santa Claus /cby L. Frank Baum ; with many pictures by Mary Cowles Clark. aNew York :bGreenwich House :bDistributed by Crown Publishers,c1983. axi, 206 p. :bill. ;c24 cm. aDescribes the life of Santa Claus from birth through old age and into immortality. 1aSanta ClausxFiction. 1aChristmasxFiction.11aClark, Mary Cowles,eill. aLVLcJFkJ Baum bMAINp32000000013141r4.98u5916u168800950 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200180012110000190013924500930015826000530025130000290030450000200033352001490035365000200050265000150052270000220053794200280055995200430058795200420063050456LVL20000311000000.0961104s1996 ctua j 00110 eng a96017504 a0761304983 a 96017504 c928d928 aJNF 629.04 Ki10aKirkwood, Jon.14aThe fantastic cutaway book of giant machines /cJon Kirkwood ; illustrated by Alex Pang.0 aBrookfield, Conn. :bCopper Beach Books,cc1996. a[40] p. :bill.,c35 cm. aIncludes index. aCaptioned illustrations provide information about all kinds of vehicles, including cars, fire engines, trains, tanks, airplanes, and submarines. 1aMotor vehicles. 1aMachinery.11aPang, Alex,eill. aLVLcJNFkJNF 629.04 Ki bMAINp31000000062475r5.97u5918u1689 bLB1p33000000027010r5.97u5919u169000796 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007904000130009405000160010708200110012309000130013410000240014724500810017126000390025230000270029135000110031850400300032965000290035965000140038870000310040294200240043395200610045757475LVL19990220000000.0731010s1974 tnua b 00010 eng a73017468 a0687442826 aDLCcDLC0 aHQ728.bM23 a301.42 c929d92910aMace, David Robert.10aWe can have better marriages if we really want them ,cby David & Vera Mace.0 aNashville,bAbingdon Pressc[1974] a172 p.billus.c23 cm. a$5.95. aBibliography: p. 169-172. 0aInterpersonal relations. 0aMarriage.10aMace, Vera,ejoint author. aLVLcNFk301.42 MAC bMAINdMAINp31000000020554r3.99u5920u1691v2003-09-0100435 2200169 450000100060000000300040000600500170001000800410002701000130006809000130008109200150009410000260010924500380013525000250017394200240019895200430022264495LVL19990217000000.0930405s19xx xxu 00010 eng d a78003824 c930d930 aLP Rendell1 aRendell, Ruth,d1930-12aA demon in my viewcRuth Rendell. aLarge print edition. aLVLcLPkLP Rendell bMAINp31000000011218r9.95u5921u169200632 2200241 450000100060000000300040000600500170001000800390002701000130006602000250007903900180010404000130012205000250013508200160016009000130017610000180018924500300020726000430023730000210028044000240030194200230032595200420034871514LVL20010801134738.0820816s1983 nyu 00011 eng a82045603 a0385184123 :c$11.950 a2b3c3d3e3 aDLCcDLC0 aPS3566.A678bN5 19830 219a813/.54 c931d93110aParker, F. M.10aNighthawk /cF.M. Parker.0 aGarden City, N.Y. :bDoubleday,c1983. a123 p. ;c22 cm. 2aA Double D western. aLVLcWESkW Parker bLB2p37000000017924r7.17u5922u169300873 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000260013524501020016126000430026330000280030650000200033465000150035465000240036965000170039365000200041094200230043095200440045395200430049795200430054036420LVL20010824141129.0920407s1992 nyu 00110 eng a92014222 a0471574252 a 92014222 c932d932 a368.37 Wi 0aWilliamson, Gordon K.10aAll about annuities :bsafe investment havens for high-profit returns /cby Gordon K. Williamson.0 aNew York :bJohn Wiley & Sons,cc1992. a237 p. ;c23 cm. ;dpa. aIncludes index. 0aAnnuities. 0aVariable annuities. 0aInvestments. 0aRate of return. aLVLcNFk368.37 Wi bMAINp32000000036896r11.77u5923u1694 bLB2p34000000001476r11.77u5924u1695 bLB1p33000000014620r11.77u5925u169600599 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000220013524500530015726000320021030000210024250400510026394200230031495200440033743439LVL20030517101534.0910422s1991 nyu 00111 eng a91016417 a0553077376 a 91016417 c933d933 aAF Pirsig10aPirsig, Robert M.10aLila :ban inquiry into morals /cRobert Pirsig.0 aNew York :bBantam,cc1991. a409 p. ;c24 cm. aIncludes bibliographical references and index. aLVLcAFkAF Pirsig bMAINp32000000035941r22.50u5926u169701590 2200421 450000100060000000300040000600500170001000700100002700800410003702000150007803500160009303700270010903700240013609000130016024501790017326000490035230000540040144000300045550000470048550500580053250600310059050801060062152000470072752100130077453800090078765000220079670000160081870000190083470000260085371000290087971000230090894200250093195200430095695200420099995200420104195200430108395200420112629402LVL20000911201335.0vf cbahom931028s1992 nyu030 g vaeng d a0679828206 avid93000506 aLV 51331bRandom House a82820bRandom House c934d93400aYertle the turtle and other storiesca production of Green Light Media, Inc. and Random House Home Video ; produced by Tish Rabe ; director: Ray Messecar.h[videorecording] /0 aNew York :bRandom House Home Video,cc1992. a1 videocassette (30 min.) :bsd., col. ;c1/2 in. 0aDr. Seuss video classics. aClosed-captioned for the hearing impaired.0 aYertle the turtle -- Gertrude McFuzz -- The big brag. aFor private home use only. aNarrator: John Lithgow ; art director, Anne Lynch ; editor, Ralph Scaglione ; music, Bruce Zimmerman. aCompilation of three stories by Dr. Seuss. aGeneral. aVHS. 0aChildren's films.11aSeuss,cDr.11aMessecar, Ray.11aLithgow, John,d1945-21aRandom House Home Video.21aGreen Light Media. aLVLcAVJkAVJ Yertle bMAINp32000000077676r9.88u5931u1698 bLB1p36000000005561r7.99u5932u1699 bLB2p34000000012120r9.88u5933u1700 bMAINp31000000039087r7.99u5934u1701 bLB1p33000000012539r7.99u5935u170201251 2200373 450000100060000000300040000600500170001000800390002701000210006603500160008704000200010305000180012308200100014109000130015110000300016424500350019426000400022930000280026950000410029751000320033851000520037051000100042252001350043252100340056752100090060165000240061065000240063465100190065894200270067795200430070495200440074795200430079195200430083436421LVL19990319000000.0780608s1940 nyua j 00010 eng a40008617 /AC/r78 aflb00350200 aDLCcDLCdICrlF0 aPZ7.M1336bLe a[Fic] c935d93510aMcCloskey, Robert,d1914-10aLentil ,cby Robert McCloskey.0 aNew York,bThe Viking press,c1940. a[61] p.billus.c31 cm. aIllustrated t.-p. and lining-papers.0 aChildren's Catalog (Wilson)0 aElementary School Library Collection (Bro-Dart) aSLJ*. aLentil's harmonica playing saves the day when calamity threatens the homecoming celebration for the leading citizen of Alto, Ohio.0 a3.8bFollett Library Book Co.2 aK-3. 1aHarmonicaxFiction. 7aHarmonicaxFiction. 7aOhioxFiction. aLVLcEASYkE McCloskey bMAINp32000000010403r7.35u5936u1703 bMAINp32000000010405r11.16u5937u1704 bMAINp32000000010406r7.37u5938u1705 bMAINp31000000002874r7.35u5939u170600707 2200241 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200140011224500740012625000120020026000560021230000310026865000430029965000170034270000180035970000210037794200230039895200440042129403LVL19990320000000.0941116s1994 caua 00010 eng d a0962344796 anpl94002420 c936d936 a709.04 Mi00aMind fields :bthe art of Jacek Yerka, the fiction of Harlan Ellison. a1st ed. aBeverly Hill, CA :bMorpheus International,cc1994. a71 p. :bill. ;c31 cm. ;. 0aArt, Moderny1990-1999 (20th century). 0aFantasy art.10aYerka, Jacek. 0aEllison, Harlan. aLVLcNFk709.04 Mi bMAINp32000000053918r14.97u5941u170700670 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000270013624501040016326000410026730000400030865000400034865000400038894200240042850460LVL20010802101205.0950719s1995 mdub r 00010 eng a95031321 a1568330588 a 95031321 c937d937 a647.947 Sa10aSaunders, Neil,d1952-10aGreat hotels and motels at half price across America /cby Neil Saunders ; foreword by Elysa Lazar.0 aLanham, Md :bMadison Books,cc1995. axv, 223 p. :bmaps ;c23 cm. ;dpa. 0aHotelsxDirectories.zUnited States 0aMotelsxDirectories.zUnited States aLVLcNFk647.947 Sa00895 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009405000230010808200160013109000130014709200170016010000170017724500860019426000400028030000330032049000340035350000200038765000150040770000170042294200270043995200420046695200430050895200420055164498LVL19990217000000.0850806s1984 nyua j 00110 eng a84050603 a053104811X a 840506030 aQE862.D5bP48 19840 219a567.9/1 c938d938 aJNF 567.9 Pe10aPetty, Kate.10aDinosaurs /cKate Petty ; consultant Angela Grunsell ; illustrated by Alan Baker.0 aNew York :bFranklin Watts,cc1984. a30 p. :bcol. ill. ;c21 cm. 0aFranklin Watts first library. aIncludes index. 0aDinosaurs.11aBaker, Alan. aLVLcJNFkJNF 567.9 Pe bLB1p36000000002631r8.00u5943u1708 bMAINp31000000035225r8.00u5944u1709 bLB1p33000000006112r8.00u5945u171000880 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009403900180010805000230012608200120014909000130016109200150017410000180018924500310020725000170023826000530025530000350030849000300034352000400037365000220041365000210043594200250045695200430048195200420052471517LVL19990404000000.0840611s1985 nyua j 00011 eng a84012614 a0688041264 a 840126140 a2b3c3d3e30 aPZ7.O634bDad 19850 219a[E] c939d939 aJE Ormerod10aOrmerod, Jan.10aDad's back /cJan Ormerod. a1st U.S. ed.0 aNew York :bLothrop, Lee & Shepard Books,c1985. a[20] p. :bcol. ill. ;c18 cm. 0aJan Ormerod's Baby books. aDad comes home and plays with baby. 1aFathersxFiction. 1aBabiesxFiction. aLVLcEASYkE Ormerod bMAINp31000000034224r2.95u5946u1711 bLB1p33000000006419r2.95u5947u171200882 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200120012110000170013324500880015026000370023830000350027544000260031050000210033652001180035765000230047570000260049874000140052494200230053895200430056129404LVL19990320000000.0931220s1985 nyua j 00011 eng a83082199 a0307602494 a 83082199 c940d940 aE Lewis1 aLewis, Jean.14aThe little golden book of holidays /cby Jean Lewis ; illustrated by Kathy Wilburn. aNew York :bGolden Book,cc1985. a[24] p. :bcol. ill. ;c21 cm. 2aA Little golden book. a"A Golden book." aFrom New Year's Day to Christmas, June enjoys preparing for and celebrating all the holidays throughout the year. 1aHolidaysxFiction.11aWilburn, Kathy,eill.01aHolidays. aLVLcEASYkE Lewis bMAINp32000000044043r7.99u5948u171301115 2200361 450000100060000000300040000600500170001000800390002701000170006602000270008302000150011003500160012504000250014105000220016608200180018809000130020610000200021924500250023925000210026426000310028530000350031651000280035152001540037952100340053352100090056765000530057665000210062965000140065065000140066474000090067894200230068795200430071043442LVL19990313000000.0880908r1989 nyua j 000 0 eng a88026621 /AC a0394941497 (lib. bdg.) a0394841492 aflb01336707 aDLCcDLCdDLCdICrlF00aPE1155.bB55 198900219a421/.1aE c941d9411 aBlake, Quentin.10aQuentin Blake's ABC. a1st American ed. aNew York :bKnopf,cc1989. a[32] p. :bcol. ill. ;c33 cm.0 aSchool Library Journal. aRhyming text and illustrations depict objects for each letter of the alphabet, from apples and breakfast in bed to a hairy yak and plenty of zippers.0 a1.5bFollett Library Book Co.2 aK-3. 0aEnglish languagexAlphabetxJuvenile literature. 0aAlphabet rhymes. 1aAlphabet. 7aAlphabet.01aABC. aLVLcEASYkE Blake bMAINp32000000031790r7.11u5949u171400369 2200133 4500020001500000090001300015100001700028245003500045250002000080260004800100300002100148942002300169952004300192 a0745108342 c942d94210aFloren, Lee.14aThe bushwackers /cLee Floren. aLarge print ed. aBath :bLythway/Chivers Press,cc1988,1980. a212 p. ;c23 cm. aLVLcLPkLP Floren bMAINp31000000035639r8.95u5950u171500637 2200229 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000130011010000160012324500370013926000440017630000300022044000300025065000190028094200220029995200430032195200430036464499LVL19990217000000.0930222s1991 nyua j 00011 eng d a90062941 a039921772X a 90062941 c943d94310aHill, Eric.10aSpot in the garden /cEric Hill. aNew York :bG.P. Putnam's Sons,cc1991. a[14] p. :bill. ;c12 cm. 2aA little Spot board book. 0aDogsxFiction. aLVLcEASYkE Hill bMAINp32000000074907r3.95u5952u1716 bMAINp31000000035064r3.95u5953u171700747 2200217 4500010001300000020001500013082001500028090001300043100002100056245003500077260003400112300004100146500002000187520013800207610003500345610003500380651003500415740001300450942002200463952004400485 a84006497 a06680616340 a359/.00973 c944d9441 aHumble, Richard.10aU.S. Navy /c[Richard Humble]. aNew York, NY :bArco,cc1985. a142 p. :bill. (some col.) ;c31 cm. aIncludes index. aDescribes the development of the U.S. Navy from the Revolutionary War to the 1980s. Includes color photographs, diagrams, and charts.10aUnited States.bNavyxHistory.10aUnited States.bNavyxHistory. 0aUnited StatesxHistory, Naval.01aUS Navy. aLVLcNFk359.1 Hu bMAINp32000000024192r11.98u5954u171800964 2200289 450000100060000000300040000600500170001000800390002701000130006602000390007903500160011804000200013405000260015408200160018009000130019610000270020924500540023626000320029030000210032251000140034352001570035752100170051465000350053194200220056695200430058895200430063143443LVL19990313000000.0880219s1988 nyu 00011 eng a88004146 a039913381X :c$14.95 ($20.95 Can.) aflb01614804 aDLCcDLCdICrlF0 aPS3552.R354bC36 19880 219a813/.54 c945d945 0aBraun, Lilian Jackson.14aThe cat who sniffed glue /cLilian Jackson Braun.0 aNew York :bPutnam,cc1988. a207 p. ;c23 cm.0 aBooklist. aJim Qwilleran and his two sleuthing companions, Siamese cats Koko and Yum Yum, attempt to solve a series of murders that have rocked the town of Pickax.2 aYoung Adult. 7aMystery and detective stories. aLVLcMYSkM Braun bMAINp32000000025412r8.97u5955u1719 bMAINp31000000009280r8.97u5956u172000321 2200133 450000100060000000300040000600500170001000800410002709000130006810000300008124500110011194200210012295200440014350462LVL19990312000000.0940112s19xx xxu 00010 eng d c946d9461 aAsch, Sholem,d1880-1957.10aMoses. aLVLcAFkAF Asch bMAINp32000000022431r10.00u5957u172101158 2200325 450000100060000000300040000600500170001000800390002701000190006602000240008504000130010904100110012204300120013305000170014508200170016209000130017910000290019224000590022124502050028026000390048530000290052450000680055350000200062150400260064161000260066765000170069365000540071094200240076495200440078871519LVL19990404000000.0770729s1977 nyua b 00110 eng a77011163 //r83 a0517234513 :c$5.98 aDLCcDLC1 aengger an-us---0 aV767.bT4613 a940.54/59/73 c947d94710aTerzibaschitsch, Stefan.10aSchlachtschiffe der US-Navy im 2. Weltkrieg.lEnglish.10aBattleships of the U.S. Navy in World War II /cStefan Terzibaschitsch ; with 115 detailed drawings by Siegfried Beyer and 148 photographs ; translated and adapted by Heinz O. Vetters and Richard Cox.0 aNew York :bBonanza Books,cc1977. a191 p. :bill. ;c29 cm. aTranslation of Die Schlachtschiffe der US-Navy im 2. Weltkrieg. aIncludes index. aBibliography: p. 177.10aUnited States.bNavy. 0aBattleships. 0aWorld War, 1939-1945xNaval operations, American. aLVLcNFk940.54 TER bMAINp31000000028507r20.00u5958u172201285 2200337 450000100060000000300040000600500170001000700150002700800410004202000150008302800390009803500160013709000130015309200120016610000260017824500810020426000540028530000570033950000160039650000350041250501520044751101440059965000180074365000190076170000160078070000180079670000240081474000440083894200210088295200440090329406LVL19990914000000.0ssulsnjlcmnnce940326s1993 mnunnn f eng d a045300873902aHBP29313bPenguin Highbridge Audio avid93000867 c948d948 aAC King1 aKing, Stephen,d1947-10aNightmares & dreamscapescby Stephen King.h[sound recording] .nVolume II / aSt. Paul, MN :bPenguin HighBridge Audio,cp1993. a8 sound cassettes (ca. 9 1/2 hr.) :banalog, stereo. aUnabridged. aSecond in a three-part series.0 aChattery Teeth -- My pretty pony -- Sneakers -- Dedication -- The Doctor's case -- The Moving finger -- The end of the whole mess -- Home delivery.0 aStories read by Kathy Bates, Tim Curry, Stephen King, Matthew Broderick, David Cronenberg, Lindsay Crouse, Jerry Garcia, and Eve Beglarian. 0aHorror tales. 0aTalking Books.10aCurry, Tim.10aBates, Kathy.10aBroderick, Matthew.01aNightmares and dreamscapes.nVolume II. aLVLcACkAC King bMAINp31000000046768r24.95u5959u172301031 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200120012110000210013324500940015425000120024826000370026030000280029749000230032552001870034865000250053565000210056065000320058165100250061370000250063894200230066395200430068636425LVL19990319000000.0890706s1990 maua j 00011 eng a89037434 a0316504785 a 89037434 c949d949 aE Krull1 aKrull, Kathleen.10aAlex Fitzgerald's cure for nightmares /cby Kathleen Krull ; illustrated by Irene Trivas. a1st ed. aBoston :bLittle, Brown,cc1990. a61 p. :bill. ;c21 cm.00aSpringboard books. aWhen nine-year-old Alex moves to weird California to live with her father for a year, she is plagued by disturbing nightmares and fears her new friends will learn her babyish secret. 1aNightmaresxFiction. 1aDreamsxFiction. 1aMoving, HouseholdxFiction. 1aCaliforniaxFiction.11aTrivas, Irene,eill. aLVLcEASYkE Krull bMAINp32000000035815r6.95u5960u172401206 2200361 450000100060000000300040000600500170001000800390002701000170006602000150008303500160009804000200011405000230013408200120015709000130016910000360018224500410021825000210025926000350028030000400031552001710035552100340052652100090056065000380056965000210060765000220062865000380065065000210068865000220070994200270073195200430075895200430080143444LVL19990313000000.0880719r1989 nyua j 00011 eng a88013485 /AC a0027746720 aflb01810803 aDLCcDLCdICrlF0 aPZ7.P6335bGu 19890 219a[E] c950d95010aPinkwater, Daniel Manus,d1941-10aGuys from space /cDaniel Pinkwater. a1st American ed.0 aNew York :bMacmillan,cc1989. a[32] p. :bcol. ill. ;c19 x 24 cm. aA boy accompanies some guys from space on a visit to another planet, where they discover such incredibly amazing things as talking rocks and root beer with ice cream.0 a2.5bFollett Library Book Co.2 aK-3. 1aExtraterrestrial beingsxFiction. 1aScience fiction. 1aHumorous stories. 7aExtraterrestrial beingsxFiction. 7aScience fiction. 7aHumorous stories. aLVLcEASYkE Pinkwater bMAINp32000000024354r8.73u5961u1725 bMAINp31000000007076r8.73u5962u172600324 2200133 450000100060000000300040000600500170001000800410002709000130006810000300008124500190011194200230013095200370015350463LVL19990312000000.0920713s19xx xxu 00010 eng d c951d9511 aParker, Robert B.,d1932-10aPromised land. aLVLcMYSkM Parker bMAINp32000000026569u5963u172700858 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010810000220012124000140014324500720015726000380022930000280026750000870029550400500038265000110043265000400044394200220048395200440050595200430054964501LVL20010817141620.0910117r19911988nyu b 00110 eng a91007380 a0553352695 a 91007380 c952d952 0aRando, Therese A.10aGrieving.10aHow to go on living when someone you love dies /cTherese A. Rando.0 aNew York :bBantam Books,cc1991. a338 p. ;c21 cm. ;dpa. aReprint. Originally published: Grieving. Lexington, Mass. : Lexington Books, 1988. aIncudes bibliographical references and index. 0aGrief. 0aBereavementxPsychological aspects. aLVLcNFk155.9 Ra bMAINp32000000083130r13.95u5964u1728 bMAINp31000000036510r5.80u5965u172900576 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009409000130011009200170012310000280014024500500016825000200021826000320023830000210027094200230029195200440031471520LVL19990404000000.0820126s1970 nyu 00011 eng a81069105 a0708908551 aonv90001288 c953d953 aL.P. MacLeod10aMacLeod, Robert Parker.10aAmbush at junction rock /cby Robert MacLeod. aLarge Print ed.0 aNew York :bWalker,cc1970. a321 p. ;c23 cm. aLVLcUkLP MacLeod bMAINp31000000036763r11.25u5966u173000607 2200205 450000100060000000300040000600500170001000800390002703500160006609000130008209200140009510000360010924500580014526000450020330000290024865000230027774000340030094200230033495200440035729407LVL19990320000000.0941212c19341933nyua 00010 eng anpl94002619 c954d954 a623.88 Sh1 aShaw, George Russell,db. 1848.10aKnots, useful & ornamental /cby George Russell Shaw. aNew York :bBonanza Books,c1934, c1933. a194 p. :bill. ;c26 cm. 0aKnots and splices.01aKnots, useful and ornamental. aLVLcNFk623.88 Sh bMAINp32000000054377r10.00u5967u173100308 2200133 450000100060000000300040000600500170001000800410002709000130006824500240008130000100010594200160011595200430013136426LVL19990423000000.0950417c19uu r p 0 a0eng d c955d95500aSeventeen 1995 May. a21 c. aLVLcPERkA bMAINp32000000020644r1.50u5968u173200935 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200120012110000180013324500260015125000120017726000350018930000300022452001110025465000210036574000120038694200230039895200430042195200420046495200420050695200430054895200420059143445LVL19990313000000.0901030s1991 nyua j 00011 eng a90023282 a0385419694 a 90023282 c956d956 aE Spier10aSpier, Peter.10aPeter Spier's circus! a1st ed.0 aNew York :bDoubleday,cc1991. a[44] p. :bill. ;c27 cm. aA traveling circus arrives, sets up its village of tents, performs for the crowd, and then moves on again. 1aCircusxFiction.01aCircus! aLVLcEASYkE Spier bMAINp32000000037040r9.28u5969u1733 bLB1p36000000003997r9.28u5970u1734 bLB2p34000000011135r9.28u5971u1735 bMAINp31000000041876r9.28u5972u1736 bLB1p33000000014681r9.28u5973u173700733 2200241 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200140011210000180012624500510014426000460019530000360024149000420027750000200031965100600033974000260039994200230042595200430044857483LVL20000411000000.0911101r19921977nyub 00110 eng d a0133349624 aonv90001563 c957d957 a917.53 Bu10aBulkin, Rena.10aFrommer's Washington, D.C. '92 /cRena Bulkin.0 aNew York :bPrentice Hall Travel,cc1992. a278 p. :bmaps ;c20 cm. ;dpa.1 aFrommer's comprehensive travel guide. aIncludes index. 0aWashington (D.C.)xDescription and travelxGuide-books.01aWashington, D.C. '92. aLVLcNFk917.53 Bu bMAINp31000000037234r7.08u5974u173800944 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200180012110000210013924500830016026000680024330000300031152000760034165000330041765000340045070000290048494200270051395200420054095200420058295200420062464502LVL20020117103631.0780125s1976 nyua j 00010 eng a76005776 a0884700224 a 76005776 c958d958 aE Freud- berg10aFreudberg, Judy.10aSome, more, most /cwritten by Judy Freudberg ; illustrated by Richard Hefter.0 aNew York :bStrawberry Books : distributed by Larousse,cc1976. a[32] p. :bill. ;c24 cm. aDrawings demonstrate terms of comparison such as tall, taller, tallest. 1aEnglish languagexAdjective. 1aEnglish languagexComparison.10aHefter, Richard,eillus. aLVLcEASYkE Freudberg bLB2p37000000004323r2.89u5975u1739 bLB2p34000000010265r2.89u5977u1740 bLB1p33000000012074r2.89u5978u174100755 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000310013424500590016525000120022426000480023630000260028444000160031050000300032670000260035694200220038295200430040495200420044729408LVL20020329103602.0961011s1990 nyu 00011 eng a90039228 a0812515838 a 90039228 c959d959 aYA Bloch 0aBloch, Robert,d1917-1994.14aThe Jekyll legacy /cby Robert Bloch and Andre Norton. a1st ed.0 aNew York :bTom Doherty Associates,cc1990. a248 p. ;c17 cm.dpa.00aTor horror. a"A Tor book"--T.p. verso.10aNorton, Andre,d1912- aLVLcYAkYA Bloch bMAINp31000000062081r2.94u5980u1742 bLB1p33000000026835r2.94u5981u174301148 2200325 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000220013424500940015625000120025026000370026230000300029950000220032952001830035165000250053465000220055970000180058170000300059994200240062995200420065395200420069595200430073795200420078043446LVL20020729161615.0810902s1982 nyua j 00011 eng a81012660 a052545103X a 81012660 c960d960 aE Clymer10aClymer, Theodore.10aHorse and the bad morning /cby Ted Clymer & Miska Miles ; illustrated by Leslie Morrill. a1st ed.0 aNew York :bE.P. Dutton,cc1982. a[32] p. :bill. ;c22 cm. a"A Unicorn book." aOf all the animals in the barnyard, only Horse can find nothing good about his morning and the view he sees every day. His friend Mouse comes up with a plan to raise his spirits. 1aFriendshipxFiction. 1aAnimalsxFiction.10aMiles, Miska.11aMorrill, Leslie H.,eill. aLVLcEASYkE Clymer bLB2p37000000006392r3.95u5982u1744 bLB1p36000000003289r3.95u5984u1745 bMAINp35000000003761r3.95u5985u1746 bLB1p33000000012001r3.95u5986u174701035 2200289 450000100060000000300040000600500170001000700150002700800410004202000150008303500160009803700330011409000130014709200140016010000300017424500640020426000510026830000500031950000160036951100300038552001770041565000190059270000230061194200230063495200440065795200440070150465LVL19990312000000.0ssulsnjlc ce960404s1983 orunnn f eng d a0786106298 anav96000188 a2119bBlackstone Audio Books c961d961 aAC London1 aLondon, Jack,d1876-1916.10aChildren of the frostcby Jack London.h[sound recording] /0 aAshland, OR :bBlackstone Audio Books,cp1983. a5 sound cassettes (7.5 hrs.) :banalog. mono. aUnabridged.0 aRead by Walter Zimmerman. aA collection of stories dealing with Indian themes - the Indians of the frozen Northland that London was familiar with from his travels to that region during the gold rush. 0aTalking Books.11aZimmerman, Walter. aLVLcACkAC London bMAINp32000000063391r17.97u5987u1748 bMAINp31000000058853r17.97u5988u174900466 2200181 450000100060000000300040000600500170001000800410002702000150006809000130008309200160009610000200011224500330013226000400016530000240020544000290022994200260025864503LVL19990217000000.0940217s19xx xxu 00010 eng d a0880387548 c962d962 aSF Kirchoff10aKirchoff, Mary.10aKendermore /cMary Kirchoff.0 aLake Geneva, WI :bTSR Inc.cc1989. a346 p.bpa.c17 cm. 0aDragon Lance : Preludes. aLVLcSCIkSF Kirchoff00931 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000360013624500530017226000320022530000210025765000530027865000440033165000390037565000280041494200250044295200430046795200440051095200430055495200440059729409LVL20011116152858.0950908s1996 nyu 00011 eng a95041851 a067086451X a 95041851 c963d963 aM Mortimer10aMortimer, John Clifford,d1923-10aRumpole and the angel of death /cJohn Mortimer.0 aNew York :bViking,cc1995. a260 p. ;c24 cm. 0aRumpole, Horace (Fictitious character)xFiction. 0aDetective and mystery stories, English. 0aLawyersxFiction.zEnglandzLondon 0aLegal stories, English. aLVLcMYSkM Mortimer bLB2p37000000001562r13.54u5990u1750 bMAINp32000000063136r13.54u5991u1751 bLB2p34000000013481r13.54u5992u1752 bMAINp31000000058726r13.54u5993u175300700 2200241 450000100060000000300040000600500170001000800410002701000130006802000150008103500160009609000130011209200130012510000180013824500400015626000460019630000210024294200220026395200430028595200440032895200430037295200430041543447LVL20020912125952.0900608s1990 nyu 00011 eng d a90033593 a0374117349 aonv90000032 c964d964 aAF Turow10aTurow, Scott.14aThe burden of proof /cScott Turow. aNew York :bFarrar Straus Giroux,cc1990. a515 p. ;c24 cm. aLVLcAFkAF Turow bLB2p37000000003545r22.95u5995u1754 bMAINp32000000053758r13.54u5997u1755 bLB2p34000000013542r13.54u5998u1756 bLB1p33000000001284r13.54u5999u175700741 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000250013624500470016125000200020826000460022830000210027465000560029565000460035165000220039794200240041995200440044364504LVL19990217000000.0890920c19901988mau d 00011 eng a89024530 a0816148147 a 89024530 c965d965 aLP O'Marie1 aO'Marie, Carol Anne.14aThe missing madonna /cCarol Anne O'Marie. aLarge print ed. aBoston, Mass. :bG.K. Hall,c1990, c1988. a393 p. ;c25 cm. 0aMary Helen, Sister (Fictitious character)xFiction. 0aNunsxFiction.zCaliforniazSan Francisco 0aLarge type books. aLVLcLPkLP O'Marie bMAINp31000000045786r16.11u6000u175800927 2200313 450000100060000000300040000600500170001000700150002700800410004202000150008303500160009803700190011409000130013309200140014610000180016024500970017826000440027530000490031950000170036851100320038565000190041765000130043665000170044970000190046670000200048594200230050595200430052895200420057129410LVL19990320000000.0ss lmnjlc ce930622s1994 caunnn l eng d a1561700851 avid93001143 a342bHay House c966d966 aAC 170 Pi10aPine, Arthur.10aOne door closes, another door openscby Arthur Pine with Julie Houston.h[sound recording] /0 aCarson, CA :bHay House, Inc.,cp1994.. a2 sound cassettes (2 hrs.) :banalog., mono. aUnabridged..3 aRead by Dr. Wayne W. Dyer.. 0aTalking Books. 0aSuccess. 0aCelebrities.10aDyer, Wayne W.10aHouston, Julie. aLVLcACkAC 170 Pi bMAINp31000000048237r9.35u6001u1759 bLB1p33000000018919r9.35u6002u176001502 2200361 450000100060000000300040000600500170001000700090002700800410003602000150007703500160009203700270010809000130013509200140014824500820016226000440024430000540028844000280034250501420037052001190051252100140063153800160064565000220066170000580068370000610074170000720080270000700087494200240094495200430096895200430101195200430105495200430109736429LVL20030218131355.0vd cbaho940606s1988 ctu033 b vaeng d a1555920020 avid93000068 aVHS0002bCC Home Video c967d967 aAVJ Rosie00aRosie's walk and other storiesc[compiled by] CC Studios.h[videorecording] /0 aWeston, Conn. :bCC Home Video,cp1988. a1 videocassette (33 min.) :bsd., col. ;c1/2 in. 0aChildren's Circle ;v2.0 aRosie's walk / P. Hutchins -- Charlie needs a cloak / T. dePaola -- Story about Ping / M. Flack -- Beast of Monsieur Racine / T. Ungerer. aCompilation of four previously released children's classics, originally produced in association with Weston Woods. aAges 2-8. aVHS Format. 0aChildren's films.11aHutchins, Pat,d1942-hVideorecording.tRosie's walk.11aDe Paola, TomiehVideorecording.tCharlie needs a cloak.11aFlack, Marjorie,d1897-1958hVideorecording.tThe story about Ping.11aUngerer, Tomi,d1931-hVideorecording.tBeast of Monsieur Racine. aLVLcAVJkAVJ Rosie bLB2p37000000014826r14.95u6003u1761 bLB1p36000000005605r19.95u6004u1762 bLB2p34000000012000r14.95u6005u1763 bLB1p33000000004365r14.95u6006u176400567 2200217 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200140011010000260012424500320015025000200018226000370020230000210023965000220026094200230028295200440030557486LVL20020924105649.0900531r19901990mau d 00010 eng a0816150583 aonv90000359 c968d968 aLP Dailey1 aDailey, Janet,d1944-10aMasquerade /cJanet Dailey. aLarge print ed. aBoston, MA :bG.K. Hall,cc1990. a469 p. ;c25 cm. 0aLarge type books. aLVLcLPkLP Dailey bMAINp31000000048474r21.95u6007u176500615 2200217 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200150011010000200012524500600014526000350020530000280024050000370026870000240030594200250032995200430035464505LVL19990217000000.0960516r19931992nyu 00011 eng a0812519825 anpl96000892 c969d969 aSF Anthony10aAnthony, Piers.10aMouvar's magic /cPiers Anthony and Robert E. Margroff.0 aNew York :bTOR,c1993, c1992. a310 p. ;c18 cm. ;dpa. a"A Tom Doherty Associates book."10aMargroff, Robert E. aLVLcSCIkSF Anthony bMAINp31000000059935r4.99u6008u176601067 2200325 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200160012110000180013724500720015525000240022726000570025130000210030844000280032952001590035765000250051665000200054165000220056165000270058365000220061065000220063270000190065494200250067395200430069829411LVL19990320000000.0890627r19891983ctu jd 00011 eng a89036816 a1559050136 a 89036816 c970d970 aLP J Pascal1 aPascal, Kate.10aPower play /cwritten by Kate William ; created by Francine Pascal. a1st Grey Castle ed. aLakeville, Conn. :bGrey Castle Press,c1989, c1983. a150 p. ;c24 cm. 0aSweet Valley High ;v4. aElizabeth and her twin sister Jessica become locked in a power play when Elizabeth nominates an unlikely candidate to Sweet Valley High's snobby sorority. 1aPrejudicesxFiction. 1aTwinsxFiction. 1aSistersxFiction. 1aHigh schoolsxFiction. 1aSchoolsxFiction. 1aLarge type books.10aWilliam, Kate. aLVLcLPkLP J Pascal bMAINp32000000049355r6.75u6009u176700531 2200193 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200110011010000270012124500670014826000300021530000280024594200210027395200430029443449LVL20020912101031.0930927s1992 nyu 00011 eng a0440215730 anpl93001186 c971d971 aM Hill10aHill, Reginald,d1936-10aRecalled to life :ba Dalziel-Pascoe mystery /cReginald Hill.0 aNew York :bDell,cc1992. a392 p. ;c18 cm. ;dpa. aLVLcMYSkM Hill bMAINp31000000044778r2.89u6010u176800360 2200145 450000100060000000300040000600500170001000800410002701000130006809000130008110000280009424500340012294200210015695200370017764506LVL19990217000000.0950324s19uu 000 0 eng d a60013714 c972d9721 aGrey, Zane,d1872-1939.14aThe ranger and other stories. aLVLcAFkAF Grey bMAINp31000000029216u6011u176900626 2200217 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200160011210000310012824500380015926000380019730000280023544000340026394200260029795200420032395200430036529412LVL20030612155027.0950131s1994 nyu 00011 eng d a0553297988 anpl95000229 c973d973 aSF Anderson10aAnderson, Kevin J.,d1962-10aJedi search /cKevin J. Anderson.0 aNew York :bBantam Books,cc1994. a354 p. ;c18 cm. ;dpa. 4aThe Jedi trilogy ;vvol. one. aLVLcSCIkSF Anderson bLB2p34000000004763r3.53u6012u1770 bMAINp31000000053196r3.53u6013u177101008 2200301 450000100060000000300040000600500170001000800390002701000130006602000250007903500160010404000200012005000250014008200160016509000130018110000240019424500340021825000120025226000610026426300100032530000120033551000140034751000200036152002420038152100170062394200220064095200440066243450LVL19990313000000.0910213s1991 nyu 000 1 eng a91052704 a0679403612 :c$23.00 aflb01257207 aDLCcDLCdICrlF00aPS3570.Y45bS25 199100220a813/.54 c974d9741 aTyler, Anne,d1941-10aSaint maybe /cby Anne Tyler. a1st ed. aNew York :bKnopf :bDistributed by Random House,c1991. a9109. ap.ccm.0 aBooklist.0 aKirkus Reviews. aIn 1965 the Bedloe family lives on a quiet street in Baltimore. Seventeenyear-old Ian has dreams for the future, until the night when he meddles in his older brother's life--and from that careless moment on, nothing can ever be the same.2 aYoung Adult. aLVLcAFkAF Tyler bMAINp32000000033752r12.98u6015u177200733 2200241 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200110011224500620012326000500018530000280023565000170026370000210028094200200030195200430032195200420036495200430040695200420044950469LVL19990312000000.0920302s1992 caua 00000 eng d a081180187X aonv90002241 c975d975 a784 Li02aA little Irish songbook /cillustrated by Ian McCullough.0 aSan Francisco, CA :bChronicle Books,cc1992. a59 p. :bill. ;c16 cm. 0aIrish songs.11aMcCullough, Ian. aLVLcNFk784 Li bMAINp32000000032697r4.10u6016u1773 bLB2p34000000002249r4.10u6017u1774 bMAINp31000000038350r4.10u6018u1775 bLB1p33000000011954r4.10u6019u177600581 2200193 450000100060000000300040000600500170001000800410002701000130006802000150008109000130009610000220010924500960013126000330022730000110026094200280027195200440029995200440034371526LVL19990404000000.0911204s19xx xxu 00010 eng d a89006454 a0812060725 c976d976 aDupre, Jean-Paul.10aBarron's junior fact finder :ban illustrated encyclopedia for children /cJean-Paul Dupre.0 aNew York :bBarron'scc1987. a304p . aLVLcJREFkJR 031.02 Du bMAINp35000000000907r19.95u6020u1777 bMAINp31000000014337r19.95u6021u177801257 2200337 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200130012110000200013424500450015425000370019926000520023630000210028852001920030952100370050165000300053865000350056865000380060394200220064195200430066395200430070695200430074995200420079295200430083495200420087729413LVL20000911173653.0961010s1992 cau 00011 eng a91026850 a0152012931 a 91026850 c977d977 aYA Reiss10aReiss, Kathryn.14aThe glass house people /cKathryn Reiss. a1st Harcourt Brace paperback ed.0 aSan Diego :bHarcourt Brace Jovanovich,cc1992. a277 p. ;c22 cm. aSixteen-year-old Beth and her brother discover that their mother has been estranged from her sister and the rest of her family because of the mysterious death of a man both sisters loved. a"Ages 12 and up."--Cover p. [4]. 1aFamily problemsxFiction. 1aBrothers and sistersxFiction. 1aInterpersonal relationsxFiction. aLVLcYAkYA Reiss bMAINp32000000067263r3.72u6022u1779 bMAINp32000000067264r3.72u6023u1780 bMAINp35000000008082r3.72u6024u1781 bLB2p34000000014475r3.72u6025u1782 bMAINp31000000062063r3.72u6026u1783 bLB1p33000000026819r3.72u6027u178400903 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200150012110000210013624500550015726000360021230000290024844000180027752001130029565000200040865000350042865000230046365000230048670000340050994200260054395200440056936432LVL20020729163423.0930805s1992 nyua j 00011 eng a92027945 a0590458868 a 92027945 c978d978 aE Armitage10aArmitage, Ronda.10aHarry hates shopping! /cRonda and David Armitage.0 aNew York :bScholastic,cc1992. a[32] p. :bill.,c23 cm. 0aHello reader! aMother Koala must get the upper hand when her two children Harry and Matilda quarrel during a shopping trip. 1aKoalaxFiction. 1aBrothers and sistersxFiction. 1aBehaviorxFiction. 1aShoppingxFiction.11aArmitage, David,d1943-eill. aLVLcEASYkE Armitage bMAINp32000000041207r11.95u6028u178500613 2200205 450000100060000000300040000600500170001000800390002702000150006603500140008109000130009509200150010810000360012324500810015926000420024030000350028240000240031794200240034195200420036543451LVL20021217111200.0740416s1974 nyua 00011 eng a0345344464 a 74004409 c979d979 aAF Nichols10aNichols, John Treadwell,d1940-14aThe Milagro beanfield war /cby John Nichols; illustrated by Rini Templeton.0 aNew York :bBallantine Books,cc1974. a629 p. :bill. ;c18 cm. ; pa. 0aNew Mexico trilogy. aLVLcAFkAF Nichols bLB2p37000000017537r3.51u6029u178600323 2200133 450000100060000000300040000600500170001000800410002709000130006810000280008124500160010994200210012595200430014657489LVL20011201154038.0930415s19xx xxu 00010 eng d c980d9801 aGrey, Zane,d1872-1939.10aBetty Zane. aLVLcWESkW Grey bMAINp31000000034745r5.40u6030u178700554 2200205 450000100060000000300040000600500170001000800410002701000120006802000150008009000130009509200170010810000290012524500640015426000340021830000140025244000110026694200270027795200440030471527LVL19990404000000.0951113s19uu 000 0 eng d a9312463 a0806905808 c981d981 aJNF 793.8 To10aTownsend, Charles Barry.10aWorld's greatest magic tricks /cby Charles Barry Townsend. aNew York :bSterling,cc1994. b128 p. ;. 0a18 cm. aLVLcJNFkJNF 793.8 To bMAINp31000000056185r12.95u6031u178800867 2200253 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200130011210000430012524501010016826000480026930000420031744000390035970000250039894200220042395200420044595200420048795200420052995200420057129414LVL20000911142729.0950411s1995 ilua j 00011 eng d a0807553417 anpl95000595 c982d982 aJ Warner10aWarner, Gertrude Chandler,d1890-1979.14aThe mystery at the ballpark /ccreated by Gertrude Chandler Warner; illustrated by Charles Tang.0 aMorton Grove, IL :bAlbert Whitman,cc1995. a124, [14] p. :bill. ;c19 cm. ;dpa. 4aThe Boxcar children ;vSpecialv4.11aTang, Charles,eill. aLVLcJFkJ Warner bLB2p37000000002529r2.21u6032u1789 bLB1p36000000002079r2.21u6033u1790 bLB2p34000000004923r2.21u6034u1791 bLB1p33000000022218r2.21u6035u179200580 2200205 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200160011210000250012824500440015326000390019730000280023694200250026495200420028995200430033136433LVL20010804213236.0931228s1993 nyu 00011 eng d a0843935405 anpl93001774 c983d983 aAF Chadwick10aChadwick, Elizabeth.10aReluctant lovers /cElizabeth Chadwick.0 aNew York :bLeisure Books,cc1993. a438 p. ;c18 cm. ;dpa. aLVLcAFkAF Chadwick bLB2p37000000013682r4.99u6036u1793 bMAINp31000000046070r2.89u6037u179400391 2200157 450000100060000000300040000600500170001000800410002702000150006809000130008309200140009610000320011024500240014294200240016695200430019064509LVL19990217000000.0930410s19xx xxu 00010 eng d a0553252739 c984d984 aW L'Amour1 aL'Amour, Louis,d1908-1988.14aThe warrior's path. aLVLcWESkW L'Amour bMAINp31000000033105r3.95u6039u179500731 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009409000130011009200130012310000180013624500740015426000400022830000350026852000740030365000200037770000240039794200240042195200440044571528LVL19990404000000.0931220s1990 nyua j 00011 eng a89023358 a0553372513 anpl93001700 c985d985 aE Delton1 aDelton, Judy.10aMy mom made me go to camp /cby Judy Delton ; pictures by Lisa McCue. aNew York :bBantam Rooster,cc1990. a[30] p. :bcol. ill. ;c21 cm. aArchie's negative feelings about camp change after he catches a fish. 1aCampsxFiction.11aMcCue, Lisa.,eill. aLVLcEASYkE Delton bMAINp31000000045978r12.99u6040u179601206 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200170012124500740013826000370021230000290024950001040027852002650038265000290064765000290067670000190070574000340072494200270075895200440078595200440082995200430087329415LVL19990320000000.0950315r19951981nyua j 00000 eng a95012134 a0786830859 a 95012134 c986d986 aJNF 808.8 Wa10aWalt Disney's treasury of cartoon classics /cedited by Darlene Geis.0 aNew York :bDisney Press,c1995. a248 p. :bill. ;c29 cm. aOriginally published: Walt Disney's treasury of silly symphonies. New York : Harry N. Abrams, 1981. aA collection of fairy tales, folklore, fables, original stories, and poems illustrated with scenes from Walt Disney films. Also includes a brief history, analysis, and filmography of the Silly Symphonies, seventy-six short films produced between 1929 and 1939. 1aLiteraturexCollections. 1aMotion picture cartoons.10aGeis, Darlene.01aTreasury of cartoon classics. aLVLcJNFkJNF 808.8 Wa bMAINp32000000059630r14.67u6041u1797 bMAINp31000000056237r14.67u6042u1798 bLB1p33000000023589r14.67u6043u179900520 2200193 450000100060000000300040000600500170001000800390002702000150006603500160008109000130009709200130011010000200012324500470014326000490019030000230023994200220026295200420028436434LVL20000911174035.0940706r19881987nju j 00011 eng a0816713235 anpl94001115 c987d987 aJ Dunlop1 aDunlop, Eileen.14aThe house on the hill /cby Eileen Dunlop. aMahwah, NJ :bTroll Associates,c1988,c1987. a147 p. :c20 cm.;. aLVLcJFkJ Dunlop bLB2p37000000012423r2.95u6045u180001170 2200325 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200180012110000240013924500820016326000580024530000280030344000210033150000280035250000420038050400510042252001890047365000110066265000170067365000120069070000260070294200280072895200440075695200440080043453LVL20000916081818.0910206s1991 wiua j b 00110 eng a91009428 a0836806840 a 91009428 c988d988 aJNF 599.74 Sc1 aSchmidt, Annemarie.10aBears and their forest cousins /cAnnemarie Schmidt and Christian R. Schmidt. aMilwaukee :bGareth Stevens Children's Books,cc1991. a48 p. :bill. ;c25 cm. 0aAnimal families. aTranslation of: BÈaren. a"North American edition"--T.p. verso. aIncludes bibliographical references and index. aPresents an evolutional and historical accounting of the bear family, as well as the physical attributes, life expectancies, native environments, and daily habits of its major members. 1aBears. 1aProcyonidae. 1aPandas.10aSchmidt, Christian R. aLVLcJNFkJNF 599.74 Sc bMAINp32000000040216r11.50u6046u1801 bMAINp31000000043562r11.50u6047u180200346 2200145 450000100060000000300040000600500170001000800410002702000150006809000130008310000220009624500170011894200220013595200430015757491LVL19990220000000.0950323s19uu 000 0 eng d a0553156624 c989d9891 aPascal, Francine.10aFirst place. aLVLcJFkJ Pascal bMAINp31000000009395r1.62u6048u180300608 2200217 450000100060000000300040000600500170001000800390002701000130006602000400007908200130011909000130013210000280014524500330017325000200020626000550022630000210028165000230030294200220032595200430034764510LVL19990217000000.0860317c19861932meu d 00011 eng a86005781 a0896217167 (lg. print : alk. paper)0 aLP Brand c990d99010aBrand, Max,d1892-1944.10aTrail partners /cMax Brand. aLarge print ed.0 aThorndike, Me. :bThorndike Press,c[1986], c1932. a368 p. ;c22 cm. 0aLarge print books. aLVLcLPkLP Brand bMAINp31000000023102r9.72u6049u180400867 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200110012110000280013224501320016026000380029230000310033050000200036165000180038165000330039974000650043294200200049795200420051795200420055971529LVL20030712104625.0930809s1994 nyu 00110 eng a93030570 a0812922832 a 93030570 c991d991 a643 Gl10aGlink, Ilyce R.,d1964-10a100 questions every first-time homebuyer should ask :bwith answers from top brokers from around the country /cIlyce R. Glink.0 aNew York :bRandom House,cc1993. ax, 451 p. ;c20 cm. ;dpa. aIncludes index. 0aHouse buying. 0aHouse buyingzUnited States.01aOne hundred questions every first-time homebuyer should ask. aLVLcNFk643 Gl bLB2p34000000001996r8.26u6050u1805 bLB1p33000000017946r8.26u6051u180600779 2200253 450000100060000000300040000600500170001000800410002702000150006803500160008309000130009909200160011224500400012824600310016826000400019930000340023950000200027352000570029365000220035094200250037295200430039795200430044095200420048329416LVL19990320000000.0960528s1996 iauab 00100 eng d a0696205556 anpl96000970 c992d992 a641.5945 Cl00aClassico authentic Italian cooking.1 aAuthentic Italian cooking.0 aDes Moines, IA :bMeredith,cc1996. a96 p. :bill. ; map ;c21 cm. aIncludes index. a60 regional dishes plus 15 side dishes and desserts. 0aCookery, Italian. aLVLcNFk641.5945 Cl bMAINp32000000064773r7.77u6052u1807 bMAINp31000000060065r7.77u6053u1808 bLB1p33000000025735r7.77u6054u180901064 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200170012110000210013824501240015926000490028330000270033250000370035950400530039665000530044965000430050265000410054565000380058674000240062494200270064895200440067595200430071936435LVL20010804191722.0920409s1992 nju bf 00110 eng a92015458 a0835230198 a 92015458 c993d993 aREF 028.1 Th10aThomas, James L.10aPlay, learn, and grow :ban annotated guide to the best books and materials for very young children /cJames L. Thomas.0 aNew Providence, N.J. :bR.R. Bowker,cc1992. axxxv, 439 p. ;c24 cm. aCover title: Play, learn & grow. aIncludes bibliographical references and indexes. 0aBibliographyxBest booksxChildren's literature. 0aPreschool childrenxBooks and reading. 0aChildren's literaturexBibliography. 0aAudio-visual materialsxCatalogs.01aPlay, learn & grow. aLVLcREFkREF 028.1 Th bMAINp32000000045063r20.80u6055u1810 bLB1p33000000017820r20.80u6056u181100891 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200140012110000150013524501340015025000120028426000470029630000210034350400510036465000170041565000170043265000270044970000140047694200230049095200440051395200440055743454LVL19990313000000.0920203s1992 pau b 00110 eng a92007047 a0811701166 a 92007047 c994d994 a641.46 Pa1 aPark, Lue.14aThe smoked-foods cookbook :bhow to flavor, cure, and prepare savory meats, game, fish, nuts, and cheese /cLue Park and Ed Park. a1st ed. aHarrisburg, PA :bStackpole Books,cc1992. a216 p. ;c24 cm. aIncludes bibliographical references and index. 0aSmoked meat. 0aSmoked fish. 0aCookery (Smoked foods)10aPark, Ed. aLVLcNFk641.46 Pa bMAINp32000000046071r14.24u6057u1812 bMAINp31000000047606r14.24u6058u181301047 2200313 450000100060000000300040000600500170001000800390002701000170006602000270008304000180011004300120012805000230014008200160016309000130017910000200019224500650021226000510027730000330032849000240036152001200038565000340050565000130053965100310055270000230058383000400060694200250064695200620067164511LVL19990217000000.0891020s1990 enka j 00110 eng a89026020 /AC a0531172023 (lib. bdg.) aDLCcDLCdDLC aa-ja---00aDS827.S3bR63 199000220a952/.02 c995d99510aRoberts, Jenny.10aSamurai warriors /cJenny Roberts ; illustrator, Tony Smith.0 aLondon ;aNew York :bGloucester Press,c1990. a32 p. :bcol. ill. ;c29 cm.1 aHistory highlights. aTraces the history of Japan's feudal system and discusses the roles, functions, and duties of the samurai warriors. 0aSamuraixJuvenile literature. 1aSamurai. 1aJapanxHistoryy1185-1868.11aSmith, Tony,eill. 0aHistory highlights (New York, N.Y.) aLVLcJNFk952.02 ROB bMAINdMAINp31000000049370r11.30u6059u1814v2003-09-0100358 2200145 450000100060000000300040000600500170001000800410002701000130006809000130008110000320009424500190012694200230014595200440016871530LVL19990404000000.0950323s19uu 000 0 eng d a85024931 c996d9961 aGreene, Graham,d1904-1991.14aThe tenth man. aLVLcAFkAF Greene bMAINp31000000010627r13.56u6060u181500796 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200190012110000300014024500400017025000170021026000440022730000210027150000270029265000580031965000530037765100300043094200270046095200430048729417LVL20021223080631.0930330s1993 nyu 00011 eng a93017421 a0312087160 a 93017421 c997d997 aM Free- mantle10aFreemantle, Brian,d1936-14aThe button man /cBrian Freemantle. a1st U.S. ed.0 aNew York :bSt. Martin's Press,cc1993. a390 p. ;c24 cm. a"A Thomas Dunne book." 0aSerial murdersxFiction.zRussia (Federation)zMoscow 0aAmericansxFiction.zRussia (Federation)zMoscow 0aMoscow (Russia)xFiction. aLVLcMYSkM Freemantle bMAINp32000000063691r2.00u6061u181600659 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200120012110000280013324500380016125000200019926000460021930000210026565000220028694200210030895200440032995200440037336436LVL19990319000000.0931130r19941946meu d 00011 eng a93044658 a078620074X a 93044658 c998d998 aLP Grey1 aGrey, Zane,d1872-1939.10aShadow on the trail /cZane Grey. aLarge print ed. aThorndike, Me. :bThorndike Press,c1994. a448 p. ;c22 cm. 0aLarge type books. aLVLcLPkLP Grey bMAINp32000000045933r14.22u6062u1817 bMAINp31000000047531r14.22u6063u181801013 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000130010809200170012110000190013824501230015726000430028030000280032350000200035152001360037165000200050765000130052770000300054094200270057095200420059795200420063995200420068143455LVL20020117105942.0911114s1992 nyua j 00110 eng a91043712 a080698208X a 91043712 c999d999 aJNF 574.5 La10aLang, Susan S.10aInvisible bugs and other creepy creatures that live with you /cby Susan S. Lang ; illustrations by Eric C. Lindstrom.0 aNew York :bSterling Pub. Co.,cc1992. a96 p. :bill. ;c22 cm. aIncludes index. aDiscusses the small life forms that live in our houses, from invisible bacteria to visible creatures such as cockroaches and fleas. 1aMicroorganisms. 1aInsects.11aLindstrom, Eric C.,eill. aLVLcJNFkJNF 574.5 La bLB2p37000000001606r4.95u6064u1819 bLB2p34000000008385r4.95u6065u1820 bLB1p33000000020773r4.95u6066u182100983 2200313 450000100060000000300040000600500170001000800390002701000210006603500220008704000130010904300120012205000200013408200100015409000150016410000230017924500810020225000110028326000350029430000260032952001090035565000320046465000210049665000320051765000220054970000280057194200270059995200430062650474LVL20020910150457.0850826s1968 nyua j 000 0 eng a68017504 /AC/r85 a 68017504 /AC/r85 aDLCcDLC an-mx---0 aF1210.bC3 1968 a398.2 c1000d10001 aCampbell, Camilla.10aStar mountain, and other legends of Mexico.cIllustrated by Frederic Marvin. a2d ed. aNew York,bMcGraw-Hillc[1968] a92 p.billus.c24 cm. aTwenty stories which mix fact and folklore to explain natural phenomena or incidents in Mexican history. 0aIndians of MexicoxLegends. 0aLegendszMexico. 1aIndians of MexicoxLegends. 1aFolklorezMexico.11aMarvin, Frederic,eill. aLVLcJNFkJNF 398.2 Ca bMAINp32000000016554r1.00u6067u182200741 2200241 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009910000440011424500370015826000360019530000280023144000220025950000260028194200210030795200430032895200430037195200430041495200420045729418LVL20030630120807.0960802s1994 nyu j 00011 eng d a0590477404 anpl96001449 c1001d100110aStine, R. L.d1943-q(Robert Lawrence),10aMonster blood II /cR. L. Stine.0 aNew York :bScholastic,cc1994. a121 p. ;c20 cm. ;dpa. 0aGoosebumps ;v18. a"An Apple Paperback." aLVLcJFkJ Stine bMAINp32000000065948r3.99u6068u1823 bMAINp32000000137927r3.25u6069u1824 bMAINp31000000079136r3.25u6070u1825 bLB1p33000000050120r3.50u6071u182600948 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012324501240013826000420026230000490030450000220035352001240037565000340049965100270053370000260056070000270058694200250061395200440063843456LVL19990313000000.0920616s1994 nyuab j 00100 eng a92024230 a067173315X a 92024230 c1002d1002 aJNF 811 Ha00aHand in hand :ban American history through poetry /ccollected by Lee Bennett Hopkins ; illustrated by Peter M. Fiore.0 aNew York :bSimon & Schuster,cc1994. a144 p. :bcol. ill., col. map ;c21 x 26 cm. aIncludes indexes. aA collection of poems and lyrics from several songs provides a look at our country, from colonial times to the present. 1aAmerican poetryxCollections. 1aUnited StatesxPoetry.10aHopkins, Lee Bennett.11aFiore, Peter M.,eill. aLVLcJNFkJNF 811 Ha bMAINp32000000062816r19.95u6072u182700888 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000280013624500900016425000120025426000520026630000420031844000170036050000200037763000440039765000210044170000260046294200220048895200440051095200440055450475LVL19990312000000.0950321s1994 caua 00110 eng a94079829 a1568842430 a 94079829 c1003d1003 a652.5 Yo10aYoung, Margaret Levine.10aWordPerfect 6.1 for Windows for dummies /cby Margaret Levine Young and David C. Kay. a2nd ed.0 aFoster City, CA :bIDG Books Worldwide,cc1994. axxvi, 406 p. :bill. ;c24 cm. ;dpa. 0aFor dummies. aIncludes index.00aWordPerfect for Windows (Computer file) 0aWord processing.10aKay, David C.,d1933- aLVLcNFk652.5 Yo bMAINp32000000058533r10.51u6073u1828 bMAINp31000000055200r10.51u6074u182900636 2200229 450000100060000000300040000600500170001000800390002701000190006602000240008504000130010905000350012208200130015709000150017010000280018524500600021325000120027326000380028530000250032394200210034895200370036964513LVL19990217000000.0770720s1977 nyu 00011 eng a77003791 //r81 a0060116242 :c$8.95 aDLCcDLC0 aPZ3.G87aPS3513.R6545bRg 1977 a813/.5/2 c1004d100410aGrey, Zane,d1872-1939.14aThe reef girl /cby Zane Grey ; foreword by Loren Grey. a1st ed.0 aNew York :bHarper & Row,cc1977. aix, 209 p. ;c22 cm. aLVLcAFkAF Grey bMAINp31000000029351u6075u183001031 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000200013524500760015525000120023126000580024330000290030152001310033065000200046165000240048170000270050594200230053295200440055595200430059995200440064295200430068629419LVL19990320000000.0961008s1995 nyua j 00011 eng a95033383 a068980377X a 95033383 c1005d1005 aE Ammon10aAmmon, Richard.13aAn Amish Christmas /cby Richard Ammon ; illustrated by Pamela Patrick. a1st ed.0 aNew York :bAtheneum Books for Young Readers,cc1995. a[34] p. :bill.,c26 cm. aSome Amish children celebrate Christmas in their one-room school and in their own simple ways with their family and relatives. 1aAmishxFiction. 1aChristmasxFiction.11aPatrick, Pamela,eill. aLVLcEASYkE Ammon bMAINp32000000067176r10.03u6076u1831 bLB2p34000000014449r10.03u6077u1832 bMAINp31000000062018r10.03u6078u1833 bLB1p33000000026792r10.03u6079u183400935 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200190012310000350014224500720017726000450024930000230029450000620031750502570037994200260063695200430066236438LVL19990319000000.0860508r19861961nyu 00011 eng a86012963 a0020518307 a 86012963 c1006d1006 aAF Heming- way1 aHemingway, Ernest,d1899-1961.14aThe snows of Kilimanjaro, and other stories /cby Ernest Hemingway. aNew York :bCollier Books,c1986, c1961. a154 p. ;c18 cm.;. aReprint. Originally published: New York : Scribner, 1961.0 aThe snows of Kilimanjaro -- A clean, well-lighted place -- A day's wait -- The gambler, the nun, and the radio -- Fathers and sons -- In another country -- The killers -- A way you'll never be -- Fifty grand -- The short happy life of Francis Macomber. aLVLcAFkAF Hemingway bMAINp32000000047599r3.95u6080u183500803 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012324501490013826000590028730000290034650400510037565000240042665000200045070000220047094200250049295200440051743457LVL19990313000000.0930322s1993 nyua b 00100 eng a93010437 a0847817458 a 93010437 c1007d1007 aREF 758 Pi00aPicturing history :bAmerican painting, 1770-1930 /cedited by William S. Ayres ; foreword by Michael Kammen ; introduction by William S. Ayres. aNew York :bFraunces Tavern Museum :bRizzoli,cc1993. a256 p. :bill. ;c31 cm. aIncludes bibliography: p. (247-250) and index. 0aPainting, American. 0aHistory in art.10aAyres, William S. aLVLcREFkREF 758 Pi bMAINp32000000046984r36.00u6081u183601358 2200421 450000100060000000300040000600500170001000800390002701000170006602000240008302000360010703500160014303900180015904000200017705000210019708200120021809000150023010000320024524500720027725000120034926000440036130000330040551000320043851000140047051000280048452001220051252100340063452100090066865000210067765000200069865000210071865000200073970000250075994200240078495200430080895200430085195200420089450476LVL20020328113331.0820224s1982 nyua j 00011 eng a81048655 /AC a0060209410 :c$9.95 a0060209429 (lib. bdg.) :c$9.89 aflb000147080 a2b3c3d3e3 aDLCcDLCdICrlF0 aPZ7.C12bJu 19820 219a[E] c1008d100810aCaines, Jeannette Franklin.10aJust us women /cby Jeannette Caines ; illustrated by Pat Cummings. a1st ed.0 aNew York, N.Y. :bHarper & Row,cc1982. a32 p. :bcol. ill. ;c21 cm.0 aChildren's Catalog (Wilson)0 aBooklist.0 aSchool Library Journal. aA young girl and her favorite aunt share the excitement of planning a very special car trip for just the two of them.0 a2.5bFollett Library Book Co.2 aK-3. 1aTravelxFiction. 1aAuntsxFiction. 7aTravelxFiction. 7aAuntsxFiction.10aCummings, Pat,eill. aLVLcEASYkE Caines bMAINp32000000005606r9.51u6082u1837 bMAINp32000000005607r5.65u6083u1838 bLB1p33000000030148r6.95u6084u183900329 2200133 450000100060000000300040000600500170001000800410002709000150006810000190008324500270010294200230012995200430015257495LVL19990220000000.0950324s19uu 000 0 eng d c1009d10091 aWesley, James.10aTrouble at the Lazy-K. aLVLcAFkAF Wesley bMAINp31000000030737r3.19u6085u184000818 2200253 450000100060000000300040000600500170001000800390002701000130006602000170007902000150009603500160011109000150012709200150014210000210015724500490017825000120022726000510023930000400029052001380033065000270046894200260049595200430052129420LVL19990320000000.0770928s1978 nyua j 00011 eng a77015523 a0152594558 : a0156707683 aflb00302304 c1010d1010 aE De Paola10aDe Paola, Tomie.10aPancakes for breakfast /cby Tomie de Paola. a1st ed.0 aNew York :bHarcourt Brace Jovanovich,cc1978. a[32] p. :bcol. ill. ;c16 x 24 cm. aA little old lady's attempts to have pancakes for breakfast are hindered by a scarcity of supplies and the participation of her pets. 1aStories without words. aLVLcEASYkE De Paola bMAINp32000000000520r5.54u6086u184101008 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000190013724500580015625000170021426000500023130000300028152001290031160000280044065000160046865000240048494200250050895200430053395200440057695200430062095200430066343458LVL20000911012913.0920824s1993 maua j 00011 eng a92054589 a1564022137 a 92054589 c1011d1011 aE Cousins10aCousins, Lucy.10aNoah's ark /cretold and illustrated by Lucy Cousins. a1st U.S. ed.0 aCambridge, Mass. :bCandlewick Press,cc1993. a[34] p. :bill. ;c26 cm. aA simple retelling of the Bible story in which Noah builds an ark and saves two of each kind of animal from the great Flood.01aNoahc(Biblical figure) 1aNoah's ark. 1aBible storiesxO.T. aLVLcEASYkE Cousins bLB2p37000000006948r14.99u6088u1842 bMAINp32000000047765r12.71u6089u1843 bMAINp31000000048844r8.82u6090u1844 bLB1p33000000039091r14.99u6091u184500632 2200229 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200120011410000250012624500370015125000200018826000440020830000210025265000220027394200210029595200430031695200430035950477LVL20020920080444.0920720c19861980enk d 00011 eng d a0708914713 aonv90002852 c1012d1012 aLP Egan aEgan, Lesley,d1921-10aMotive in shadow /cLesley Egan. aLarge print ed. aLeicester :bUlverscroft,c1986, c1980. a368 p. ;c22 cm. 0aLarge type books. aLVLcLPkLP Egan bMAINp32000000034142r7.98u6092u1846 bMAINp31000000039929r7.98u6093u184700325 2200133 450000100060000000300040000600500170001000800410002709000150006810000210008324500300010494200210013495200360015571534LVL20000828000000.0950323s19uu 000 0 eng d c1013d1013 aMason, Miriam E.10aSusannah the pioneer cow. aLVLcJFkJ Mason bLB2p37000000012635u6095u184800579 2200217 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200120011410000160012624500280014226000310017030000300020144000210023194200230025295200430027595200430031843459LVL19990313000000.0940709s1993 utua j 00011 eng d a0898682479 anpl94001144 c1014d1014 aE Reese1 aReese, Bob.10aCan Do /cby Bob Reese. aProvo, UT :bArco,cc1993. a[20] p. :bill. ;c19 cm. 2aA ten word book. aLVLcEASYkE Reese bMAINp32000000048538r8.95u6096u1849 bMAINp31000000050060r8.95u6097u185001037 2200349 450000100060000000300040000600500170001000800410002701000130006802000150008103500160009604000270011208200080013909000150014710000160016224500510017826000380022930000280026744000200029551000320031551000520034751000210039952000760042052100340049652100090053065000190053965000220055865000190058065000220059994200230062195200430064450478LVL19990312000000.0890907s1986 nyua j 00011 eng d a58009017 a0394900022 aflb00401200 aICrlFcICrlFdIMchF-DB04a[E] c1015d10151 aSeuss,cDr.14aThe cat in the hat comes back /cby Dr. Seuss. aNew York :bRandom House,cc1986. a61 p. :bill. ;c24 cm. 0aBeginner books.0 aChildren's Catalog (Wilson)0 aElementary School Library Collection (Bro-Dart)0 aLibrary Journal. aFurther mischief of the cat in the hat, who upsets the household again.0 a1.2bFollett Library Book Co.2 aK-3. 1aCatsxFiction. 1aStories in rhyme. 7aCatsxFiction. 7aStories in rhyme. aLVLcEASYkE Seuss bMAINp32000000012948r5.90u6098u185100823 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000220013724500680015926000370022730000380026452001260030265000200042865000290044870000240047794200250050195200430052636441LVL19990319000000.0911125s1993 maua j 00011 eng a91044473 a0316162310 a 91044473 c1016d1016 aE Crowley1 aCrowley, Michael.10aShack and back /cMichael Crowley ; illustrated by Abby Carter. aBoston :bLittle, Brown,cc1993. a[32] p. :bcol. ill. ;c28 cm. ;. aCrater insults T-Ball and causes her to quit the Spurwink Gang, just when they need her riding talent to win a bike race. 1aGangsxFiction. 1aBicycle racingxFiction.11aCarter, Abby,eill. aLVLcEASYkE Crowley bMAINp32000000052759r7.95u6099u185200351 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000130009624500280010994200250013795200430016271536LVL20020916102516.0950324s19uu 000 0 eng d a58012330 c1017d1017 aCommage.10aSpirit of 'seventy-six. aLVLcNFk973.3082 Co bMAINp31000000020184r5.00u6100u185300777 2200241 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200130011210000200012524500300014526000360017530000280021152001380023965000250037765000250040294200220042795200430044995200430049243461LVL20020927134610.0911129s1992 nyu j 00011 eng a0590474421 anpl94001874 c1018d1018 aYA Voigt10aVoigt, Cynthia.10aOrfe /cby Cynthia Voigt.0 aNew York :bScholastic,cc1992. a120 p. :c18 cm. ;dpa. aEnny tells of her relationship with Orfe, an unusually talented musician, and of the love between Orfe and Yuri, a recovering addict. 1aRock musicxFiction. 1aDrug abusexFiction. aLVLcYAkYA Voigt bMAINp32000000050669r2.37u6102u1854 bMAINp31000000051235r2.37u6103u185500699 2200253 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200160012510000230014124500420016426000380020630000280024444000190027265000190029165000250031094200250033595200420036095200430040257499LVL19990220000000.0940304s1993 nyu j 00011 eng d a94125801 a0553562622 a 94125801 c1019d1019 aYA McDaniel10aMcDaniel, Lurlene.10aPlease don't die /cLurlene McDaniel.0 aNew York :bBantam Books,cc1993. a153 p. ;c18 cm. ;dpa. 0aOne last wish. 1aSickxFiction. 1aFriendshipxFiction. aLVLcYAkYA McDaniel bLB1p36000000002322r3.99u6105u1856 bMAINp31000000060694r3.50u6106u185701135 2200361 450000100060000000300040000600500170001000800390002701000170006602000150008303500160009804000200011405000160013408200100015009000150016010000220017524500820019725000120027926000320029130000290032351000320035251000150038451000100039952001500040952100340055952100090059365000170060265000170061970000270063694200250066395200430068895200420073164518LVL19990217000000.0741022s1975 nyua j 10011 eng a74023760 /AC a0525431284 aflb00449301 aDLCcDLCdICrlF0 aPZ8.A37bWi a[Fic] c1020d102010aAlexander, Lloyd.14aThe wizard in the tree /cby Lloyd Alexander ; illustrated by Laszlo Kubinyi. a1st ed.0 aNew York :bDutton,c[1975] a137 p. :bill. ;c24 cm.0 aChildren's Catalog (Wilson) aBOOKLIST*. aSLJ*. aMallory's encounter with the wizard in the tree begins a chain of events that change the lives of the villagers dominated by a suspicious squire.0 a7.6bFollett Library Book Co.2 a5-8. 1aFairy tales. 7aFairy tales.11aKubinyi, Laszlo,eill. aLVLcJFkJ Alexander bMAINp31000000004166r2.75u6107u1858 bLB1p33000000011101r2.75u6108u185900332 2200133 450000100060000000300040000600500170001000800410002709000150006810000340008324500160011794200220013395200430015529424LVL19990320000000.0930420s19xx xxu 00010 eng d c1021d1021 aBrown, Joe David,d1915-1976.10aAddie Pray. aLVLcAFkAF Brown bMAINp32000000001304r2.75u6109u186000382 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000260009824500460012494200230017095200430019343462LVL20020924105845.0941122s19xx xxu 00010 eng d a0373103913 c1022d102210aDailey, Janet,d1944-10aHeart of stone /bHarlequin Presents 391. aLVLcAFkPB Dailey bMAINp32000000053311r1.50u6110u186101166 2200325 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010810000210012324500440014426000400018830000430022852001360027165000230040765000200043065000190045094200240046995200430049395200440053695200430058095200430062395200440066695200430071095200440075395200430079750481LVL19990608000000.0830921s1984 nyua j 00011 eng a83019490 a0399209964 a 83019490 c1023d102310aBerger, Barbara.10aGrandfather Twilight /cBarbara Berger.0 aNew York :bPhilomel Books,cc1984. a[28] p. :bchiefly col. ill. ;c25 cm. aAt the day's end, Grandfather Twilight walks in the forest to perform his evening task, bringing the miracle of night to the world. 1aTwilightxFiction. 1aNightxFiction. 1aMoonxFiction. aLVLcEASYkE Berger bLB2p37000000003223r16.99u6111u1862 bMAINp32000000092251r16.99u6112u1863 bMAINp32000000036094r9.27u6113u1864 bLB1p36000000013655r16.99u6114u1865 bMAINp35000000006907r16.99u6115u1866 bLB2p34000000021743r16.99u6116u1867 bMAINp31000000079616r16.99u6117u1868 bLB1p33000000036573r16.99u6118u186901213 2200397 450000100060000000300040000600500170001000800390002701000210006602000240008703500160011104000200012705000250014708200120017209000150018410000200019924500480021925000210026726000440028830000350033249000340036751000140040151000280041552000840044352100340052752100090056165000380057065000230060865000220063165000270065365000230068065000220070370000210072594200250074695200440077164519LVL19990217000000.0841231r1985 nyua j 00011 eng a84042955 /AC/r86 a0399212078 :c$8.95 aflb00857510 aDLCcDLCdICrlF0 aPZ8.3.H3145bJe 19850 219a[E] c1024d102410aHawkins, Colin.10aJen the hen /cby Colin and Jacqui Hawkins. a1st American ed.0 aNew York :bG.P. Putnam's Sons,cc1985. a[20] p. :bcol. ill. ;c22 cm.0 aA Flip-the-page rhyming book.0 aBooklist.0 aSchool Library Journal. aJen the hen sends a message to Ken and Ben via Wren to meet at ten in the glen.0 a1.0bFollett Library Book Co.2 aK-3. 0aToy and movable booksxSpecimens. 1aChickensxFiction. 1aStories in rhyme. 1aToy and movable books. 7aChickensxFiction. 7aStories in rhyme.10aHawkins, Jacqui. aLVLcEASYkE Hawkins bMAINp31000000003270r10.00u6120u187000345 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000160009624500150011294200280012795200440015571538LVL19990404000000.0920214s19xx xxu 00010 eng d a85000037 c1025d1025 aJohnson, S.10aWolf pack. aLVLcJNFkJNF 599.74 Jo bMAINp31000000007911r12.95u6121u187100333 2200133 450000100060000000300040000600500170001000800410002709000150006810000260008324500220010994200240013195200440015536444LVL19990319000000.0940523s19xx xxu 00010 eng d c1026d1026 aStewart, Mary,d1916-10aThis rough magic. aLVLcAFkAF Stewart bMAINp32000000008342r10.00u6122u187200321 2200133 450000100060000000300040000600500170001000800410002709000150006810000220008324500150010594200240012095200430014429426LVL19990320000000.0930522s19xx xxu 00010 eng d c1027d102710aSassoon, Beverly.10aFantasies. aLVLcAFkPB Sassoon bMAINp32000000017399r5.95u6123u187301036 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000260013724500570016326000600022030000210028044000240030150000390032552001530036465000350051780000440055294200230059695200430061995200420066295200420070436445LVL19990319000000.0950203s1983 mnu j 00011 eng a82074053 a0871233207 a 82074053 c1028d1028 aJ Leppard10aLeppard, Lois Gladys.10aMandie and the secret tunnel /cLois Gladys Leppard.0 aMinneapolis, Minn. :bBethany House Publishers,cc1983. a141 p. ;c18 cm.10aA Mandie book ;v1. a"For girls 9-13"--P. [4] of cover. aIn 1900, Mandie is searching her dead uncle's mansion for a missing will when she finds a secret tunnel and strangers who claim to be her relatives. 1aMystery and detective stories.1 aLeppard, Lois GladystMandie book ;v1. aLVLcJFkJ Leppard bMAINp32000000055722r2.35u6124u1874 bLB2p34000000007330r2.35u6125u1875 bLB1p33000000021775r2.35u6127u187600805 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012324500940013525000210022926000350025030000460028550000200033165000350035165000330038670000260041970000250044594200250047095200440049550483LVL20020916131553.0910909s1992 nyua d 00100 eng a91034460 a0025281607 a 91034460 c1029d1029 aREF 42304aThe Macmillan visual dictionary /c[compiled by] Jean-Claude Corbeil, Ariane Archambault. a1st American ed. aNew York :bMacmillan,cc1992. axxx, 862 p. :bill. (some col.) ;c29 cm. aIncludes index. 0aPicture dictionaries, English. 0aHandbooks, vade-mecums, etc.10aCorbeil, Jean Claude.10aArchambault, Ariane. aLVLcREFkREF 423 Ma bMAINp32000000037192r30.00u6128u187700327 2200133 450000100060000000300040000600500170001000800410002709000150006810000180008324500290010194200200013095200430015071540LVL20020916084414.0950324s19uu 000 0 eng d c1030d1030 aClock Catalo.10a1867 Waterbury Clock Co. aLVLcNFk749 Cl bMAINp31000000023591r5.65u6129u187800656 2200229 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200130011410000190012724500530014626000450019930000360024450000200028065000160030094200220031695200440033895200440038229427LVL19990320000000.0951106r19941993paua 00110 eng d a0801986303 anpl95001506 c1031d1031 a684.1 Lu10aLuke, Heather.10aEasy upholstery :bstep by step /cHeather Luke.0 aRadford, PA :bChilton Book Co.,cc1994. a192 p. :bill. ;c29 cm. ;dpa. aIncludes index. 0aUpholstery. aLVLcNFk684.1 Lu bMAINp32000000060629r24.95u6130u1879 bMAINp31000000057134r24.95u6131u188000759 2200229 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200180011424501050013226000570023730000430029465000380033770000190037570000190039494200280041395200440044195200440048536446LVL19990319000000.0950426s1995 nyuab 00000 eng d a0198662254 anpl95000661 c1032d1032 aREF 940.54 Ox04aThe Oxford companion to World War II /cI.C.B. Dear, General Editor; M.R.D. Foot, Consultant Editor.0 aOxford, New York :bOxford University Press,cc1995. axxii, 1343 p. :bill. ; maps ;c25 cm. 0aWorld War, 1939-1945xChronology.10aDear, I. C. B.10aFoot, M. R. D. aLVLcREFkREF 940.54 Ox bMAINp32000000057192r29.87u6132u1881 bMAINp31000000054264r29.87u6133u188200745 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200160012310000220013924501410016126000410030230000290034350400510037265000230042394200250044695200440047143465LVL20030628092823.0940729s1995 nyua b 00110 eng a94031426 a0517597357 a 94031426 c1033d1033 a641.5973 Du1 aDupree, Nathalie.10aNathalie Dupree cooks everyday meals from a well-stocked pantry :bstrategies for shopping less and eating better /cby Nathalie Dupree. aNew York :bClarkson Potter,cc1995. a207 p. :bill. ;c22 cm. aIncludes bibliography: p. (203-204) and index. 0aCookery, American. aLVLcNFk641.5973 Du bMAINp32000000056058r12.00u6134u188301023 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009405000210010808200160012909000150014509200190016010000230017924501050020226000450030730000280035249000460038052001080042665000160053465000100055065000120056070000210057294200290059395200440062295200430066664522LVL20020124134602.0881017s1989 nyua j 00010 eng a88030463 a0688075614 a 880304630 aTT174.bZ83 19890 219a745.592 c1034d1034 aJNF 745.592 Zu10aZubrowski, Bernie.10aTops :bbuilding and experimenting with spinning toys /cBernie Zubrowski ; illustrated by Roy Doty.0 aNew York :bMorrow Junior Books,cc1989. a96 p. :bill. ;c23 cm. 2aA Boston Children's Museum activity book. aInstructions for designing and building tops and yo-yos in different shapes and with various materials. 1aToy making. 1aTops. 1aYo-yos.11aDoty, Roy,eill. aLVLcJNFkJNF 745.592 Zu bMAINp31000000035228r12.83u6135u1884 bLB1p33000000006115r12.83u6136u188501097 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200180012310000360014124500780017725000120025526000350026730000280030252001870033065000380051765000210055565000220057694200270059895200420062595200430066795200430071095200420075336447LVL20000911204846.0931021s1994 nyua j 00011 eng a93040893 a002774633X a 93040893 c1035d1035 aE Pink- water10aPinkwater, Daniel Manus,d1941-10aNed Feldman, space pirate /cwritten and illustrated by Daniel Pinkwater. a1st ed.0 aNew York :bMacmillan,cc1994. a47 p. :bill. ;c24 cm. aOne day when Ned's parents are out, he meets Captain Lumpy Lugo, a space pirate who comes from the galaxy Foon-ping-baba, and they spend the afternoon travelling through outer space. 1aExtraterrestrial beingsxFiction. 1aScience fiction. 1aHumorous stories. aLVLcEASYkE Pinkwater bLB2p37000000004673r8.81u6137u1886 bMAINp32000000058314r8.81u6138u1887 bMAINp31000000055043r8.81u6139u1888 bLB1p33000000022951r8.81u6140u188900655 2200217 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200150011210000340012724500480016126000480020930000280025794200250028595200430031095200420035395200420039550485LVL20010824155633.0930524c19911929nyu 00011 eng a0061002755 anpl93000134 c1036d1036 aM Christie10aChristie, Agatha,d1890-1976.14aThe seven dials mystery /cAgatha Christie.0 aNew York :bHarperPaperbacks,c1991, c1929. a264 p. ;c17 cm. ;dpa. aLVLcMYSkM Christie bMAINp32000000039697r2.89u6141u1890 bLB1p36000000005033r2.89u6142u1891 bLB2p34000000006166r2.89u6143u189201129 2200349 450000100060000000300040000600500170001000800390002701000130006602000210007903500140010005000210011408200150013509000150015009200150016524501020018026000440028226300100032630000290033650400510036565000110041665000280042765000260045565000430048170000180052474000360054294200270057895200440060595200440064995200430069395200430073664523LVL19990217000000.0900412s1990 nyu b 00110 eng a90036009 a1854353306 (set) a 9003600900aQK475.bC38 199000220a582.16 c1037d1037 aREF 582.1804aThe Marshall Cavendish illustrated book of trees and forests of the world /ceditor, Bayard Hora.0 aNew York :bMarshall Cavendish,cc1990. a9008. a2 vol. :bill. ;c29 cm. aIncludes bibliographical references and index. 0aTrees. 0aTreesxPictorial works. 0aForests and forestry. 0aForests and forestryxPictorial works.10aHora, Bayard.00aTrees and forests of the world. aLVLcNFkREF 582.18 Ma bMAINp31000000035067r35.97u6145u1893 bMAINp31000000035068r35.97u6146u1894 bLB1p33000000007134r35.97u6147u1895 bLB1p33000000007135r35.97u6148u189600362 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000200009824500320011894200220015095200440017229429LVL19990320000000.0920612s19xx xxu 00010 eng d a0823405745 c1038d10381 aAdler, David A.12aA picture book of Hanukkah. aLVLcKITkE Adler bMAINp32000000031705r14.95u6149u189700862 2200253 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200130011411000350012724501260016226000410028830000310032950000200036065000370038094200220041795200420043995200430048195200420052495200420056636448LVL20030616191538.0960119s1996 nyu 00110 eng d a0062733915 anpl96000182 c1039d1039 a641.1 Am20aAmerican Dietetic Association.10aCut the fat! :bmore than 500 easy and enjoyable ways to reduce fat from every meal /cThe American Dietetic Association.0 aNew York :bHarperPerennial,cc1996. ax, 211 p. ;c18 cm. ;dpa. aIncludes index. 0aFoodxFat contentxAlternatives. aLVLcNFk641.1 Am bLB2p37000000004158r4.43u6150u1898 bMAINp32000000062308r4.43u6151u1899 bLB2p34000000012592r4.43u6152u1900 bLB1p33000000024495r4.43u6153u190100860 2200265 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200170012510000170014224500740015926000360023330000360026944000290030565000560033465000750039070000230046594200220048895200420051095200420055243467LVL20000912093655.0950505s1995 nyua 00010 eng d a94096594 a0380782014 a 94096594 c1040d1040 aREF 769.5 Ka10aKaye, Allan.10aBaseball card price guide :b1996 /cAllan Kaye and Michael McKeever.0 aNew York :bAvon Books,cc1995. a925 p. :bill. ;c18 cm. ;dpa. 4aThe Confident collector. 0aBaseball cardsxPricesxPeriodicals.zUnited States 0aBaseball cardsxCollectors and collectingxPeriodicals.zUnited States10aMcKeever, Michael. aLVLcNFk769.5 Ka bLB2p34000000005265r3.53u6154u1902 bLB1p33000000022367r3.53u6155u190300656 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000230013524500300015825000120018826000400020030000210024094200210026195200440028295200440032695200440037050486LVL20021018161713.0921028s1993 nyu 00011 eng a92039304 a0688124402 a 92039304 c1041d1041 aAF Wood10aWood, Bari,d1936-10aDoll's eyes /cBari Wood. a1st ed.0 aNew York :bWilliam Morrow,cc1993. a303 p. ;c24 cm. aLVLcAFkAF Wood bMAINp32000000040382r11.51u6156u1904 bMAINp32000000046214r11.51u6157u1905 bMAINp31000000043687r11.51u6158u190600834 2200277 450000100060000000300040000600500170001000800390002701000130006602000300007902000260010904000130013505000170014808200130016509000150017810000230019324500540021626000530027030000290032350000200035265000390037265000350041165000440044694200230049095200430051357505LVL19990220000000.0761104s1977 miua 00110 eng a76054145 a0912336277bpbk. :c$4.95 a0912336269 :c$12.00. aDLCcDLC0 aTH4817.bR47 a690/.1/5 c1042d104210aReschke, Robert C.10aSuccessful roofing & siding /cRobert C. Reschke.0 aFarmington, Mich. :bStructures Pub. Co.,c1977. a159 p. :bill. ;c29 cm. aIncludes index. 0aDwellingsxMaintenance and repair. 0aRoofsxMaintenance and repair. 0aExterior wallsxMaintenance and repair. aLVLcNFk690.1 RES bMAINp31000000024085r9.79u6159u190701136 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000300014024500560017026000340022630000340026044000260029450000200032050400260034052001740036665000400054065000450058065000440062594200270066995200420069695200420073895200420078064524LVL20000302000000.0851107s1987 nyuab j b 00110 eng a85026585 a0531101509 a 85026585 c1043d1043 aJNF 304.2 Ch10aCheney, Theodore A. Rees.10aLiving in polar regions /cTheodore A. Rees Cheney.0 aNew York :bF. Watts,cc1987. a95 p. :bill., maps ;c29 cm. 2aA Cultural geography. aIncludes index. aBibliography: p. [91] aDescribes the characteristics of the world's polar regions and compares and contrasts the interrelationship of geography and culture of polar communities in three areas. 1aAnthropo-geographyzArctic Regions. 7aArctic regionsxSocial life and customs. 7aArctic regionsxDescription and travel. aLVLcJNFkJNF 304.2 Ch bLB2p34000000007865r4.98u6160u1908 bLB2p37000000008109r4.98u6161u1909 bLB1p33000000012078r4.98u6162u191001077 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000190013624501260015526000430028130000260032450000200035065000800037065000770045065000770052770000310060494200220063595200440065795200430070195200430074436449LVL19990319000000.0950118s1995 cau 00110 eng a95003350 a0761500111 a 95003350 c1044d1044 a362.4 To10aTovray, Sandy.10aHelping your special needs child :ba practical and reassuring resource guide /cSandy Tovray, Maria L. Wilson-Portoundo.0 aRocklin, Calif. :bPrima Pub.,cc1995. axvi, 272 p. ;c23 cm. aIncludes index. 0aHandicapped childrenxServices forxHandbooks, manuals, etc.zUnited States 0aHandicapped childrenxEducationxHandbooks, manuals, etc.zUnited States 0aParents of handicapped childrenxHandbooks, manuals, etc.zUnited States20aWilson-Portoundo, Maria L. aLVLcNFk362.4 To bMAINp32000000059830r12.95u6163u1911 bLB2p34000000009101r12.95u6164u1912 bLB1p33000000023683r12.95u6165u191301353 2200349 450000100060000000300040000600500170001000700150002700800410004202400160008302800250009903500160012409000150014009200160015510000350017124000470020624501070025326000310036030000850039150000180047650001290049451100600062351800530068365000160073670000170075270000910076971000350086074000260089574000120092194200260093395200440095943468LVL20000912165852.0sdufsngnn ed950728s1990 gw syn z d 1a229246445202a2292-46445-2bTeldec anav95000062 c1045d1045 aCD Schumann1 aSchumann, Robert,d1810-1856..00aSymphonies,nno. 1, op. 38,rB flat major.00aSymphonie Nr. 1 B-dur, op. 38 ; Symphonie Nr. 4 d-moll, op. 120cRobert Schumann.h[sound recording] /0 aHamburg :bTeldec,cp1990. a1 sound disc (56:02 min.) :bdigital, stereo. ;c4 3/4 in. +e1 pamphlet (11 p.) aCompact disc. aOther title from container (1st work): FrÈuhlings-Symphonie = Spring. -- The 2nd work performed in the 1841 Leipzig version.0 aLondon Philharmonic Orchestra ; Kurt Masur, conductor.. aRecorded Feb. and Apr., 1990, Watford Town Hall. 0aSymphonies.1 aMasur, Kurt.12aSchumann, Robert,d1810-1856hSound recording.nno. 4, op. 120,rD minor.tSymphonies,2 aLondon Philharmonic Orchestra.01aFrÈuhlings-Symphonie.01aSpring. aLVLcCDMkCD Schumann bMAINp32000000058411r11.71u6166u191400411 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000170009824500670011594200220018295200610020450487LVL19990312000000.0941128s19xx xxu 00010 eng d a0373116047 c1046d104610aDarcy, Emma.14aThe sheikh's revenge /bHarlequin Presents 1604 /cEmma Darcy. aLVLcAFkPB Darcy bMAINdMAINp32000000053300r2.99u6167u1915v2003-09-0100558 2200193 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200160011410000220013024500440015225000200019626000790021694200250029595200440032057506LVL19990220000000.0920528c19891984enk d 00011 eng d a1850573190 aonv90002661 c1047d1047 aLP Mitchell10aMitchell, Gladys.10aNo winding-sheet /cby Gladys Mitchell. aLarge print ed.0 aLong Preston, North Yorkshire, England :bMagna Print Books,c1989, c1984. aLVLcLPkLP Mitchell bMAINp31000000039378r14.95u6168u191601013 2200289 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200120011210000170012424500960014126000360023730000420027352000930031565000260040865000350043470000250046994200230049495200420051795200420055995200370060195200420063895200430068064525LVL19990726000000.0810108s1981 nyua j 00011 eng a0440406684 aonv90002757 c1048d1048 aE Blume10aBlume, Judy.14aThe one in the middle is the green kangaroo /cby Judy Blume ; illustrated by Irene Trivas.0 aNew York, N.Y. :bDell,cc1981. a[32] p. :bcol. ill. ;c24 cm. ;dpa. aFreddy hates being the middle one in the family until he gets a part in the school play. 1aFamily lifexFiction. 1aBrothers and sistersxFiction.11aTrivas, Irene,eill. aLVLcEASYkE Blume bLB2p37000000002538r2.31u6169u1917 bLB1p36000000005616r2.31u6170u1918 bMAINp35000000001713u6171u1919 bLB2p34000000009746r2.31u6172u1920 bMAINp31000000039643r2.31u6173u192100414 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000190009624500710011594200210018695200610020771544LVL19990404000000.0950324s19uu 000 0 eng d a90003639 c1049d1049 aHeldman, Carl.10aHow to afford your own log home :bsave 25% without lifting a log. aLVLcNFk643 Hel bMAINdMAINp31000000033466r7.05u6174u1922v2003-09-0100986 2200313 450000100060000000300040000600500170001000800390002701000200006602000150008603500210010104000130012204300120013505000160014708200120016309000150017510000300019024501250022026000310034530000240037650000200040050400300042065000440045065000320049465000500052670000350057694200240061195200370063529431LVL19990320000000.0781222s1979 mou b 001 0 eng a78031527 //r892 a0801620201 a 78031527 //r892 aDLCcDLC an-us---0 aHV741.bH28 a362.7/1 c1050d10501 aHalperin, Michael,d1941-10aHelping maltreated children :bschool and community involvement /cMichael Halperin, with assistance from Pamela Shuman. aSt. Louis :bMosby,c1979. ax, 198 p. ;c24 cm. aIncludes index. aBibliography: p. 174-184. 0aChild abusexPrevention.zUnited States 0aChild abusezUnited States. 0aAbused childrenxServices forzUnited States.10aShuman, Pamela,ejoint author. aLVLcNFk362.71 HAL bMAINp32000000008875u6175u192300693 2200205 450000100060000000300040000600500170001000800390002703500160006609000150008209200120009710000190010924500700012826000490019830000410024752001020028870000310039094200230042195200430044436450LVL20011019104346.0711116s1971 ilua j 00011 eng anpl94002456 c1051d1051 aE Moore10aMoore, Lilian.14aThe riddle walk /cby Lilian Moore ; illustrations by John Pucci.0 aChampaign, Ill. :bGarrard Pub. Co.,cc1971. a[40] p. :bcol. ill. ;c21 cm. ; pa. aBenny's boredom disappears when his mother sends him on a "riddle walk" through the neighborhood.11aPucci, John,eillustrator. aLVLcEASYkE Moore bMAINp32000000054006r0.65u6176u192400965 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000190013424500920015325000120024526000480025730000290030550000540033450000200038860000360040865000470044465000200049165100450051170000440055694200200060095200430062043469LVL19990313000000.0950609r19951984nyua 00110 eng a95030753 a0517702614 a 95030753 c1052d1052 a811 Bo10aBoulton, Jane.10aOpal, the journal of an understanding heart /cOpal Whiteley ; adapted by Jane Boulton. a1st ed.0 aNew York :bCrown Trade Paperbacks,cc1995. a186 p. :bill. ;c21 cm. aAdaptation of: The story of Opal / Opal Whiteley. aIncludes index.10aWhiteley, Opal StanleyxPoetry. 0aFrontier and pioneer lifexPoetry.zOregon 0aNaturexPoetry. 0aOregonxSocial life and customsxPoetry.10aWhiteley, Opal Stanley.tStory of Opal. aLVLcNFk811 Bo bMAINp32000000059990r6.00u6177u192500704 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000180013624501030015426000350025730000270029250000200031965000320033965000250037194200220039695200440041850488LVL19990312000000.0921116s1993 cau 00110 eng a92042949 a1559582928 a 92042949 c1053d1053 a332.6 Ca1 aCase, Samuel.10aFirst book of investing :bthe absolute beginner's guide to building wealth safely /cSamuel Case. aRocklin, Ca. :bPrima,cc1993. aviii, 344 p. ;c23 cm. aIncludes index. 0aInvestmentszUnited States. 0aInvestment analysis. aLVLcNFk332.6 Ca bMAINp32000000000397r13.54u6178u192600680 2200229 450000100060000000300040000600500170001000800390002702000150006603500140008109000150009509200150011010000200012524500720014526000410021730000280025865000280028670000250031494200250033995200430036495200430040736451LVL20020118090840.0960810r19951992nyu 00011 eng a0441002137 a 91041398 c1054d1054 aSF Anthony10aAnthony, Piers.14aThe caterpillar's question /cPiers Anthony and Philip Jose Farmer. aNew York :bAce Books,c1995, c1992. a264 p. ;c18 cm. ;dpa. 0aGood and evilxFiction.10aFarmer, Philip Jose. aLVLcSCIkSF Anthony bMAINp32000000066200r5.99u6181u1927 bMAINp31000000098198r5.99u6182u192800820 2200253 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200130011210000220012524500990014726000370024630000340028350400650031765000240038265000320040665000430043870000210048194200220050295200420052443470LVL20010706111940.0940322s1994 nyu b 00110 eng a0812925812 anpl96000208 c1055d1055 a649.8 Ca10aCarter, Rosalynn.10aHelping yourself help others :ba book for caregivers /cRosalynn Carter with Susan K. Golant.0 aNew York :bTimes Books,cc1994. aviii, 278 p. ;c21 cm. ;dpa. aIncludes bibliographical references: p. (243-269) and index. 0aHome care services. 0aChronically illxHome care. 0aChronically illxFamily relationships.10aGolant, Susan K. aLVLcNFk649.8 Ca bLB2p37000000002948r8.26u6183u192900347 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000170009624500160011394200280012995200440015750489LVL19990312000000.0930331s19xx xxu 00010 eng d a86042620 c1056d1056 aMarsh, Dave.10aGlory days. aLVLcBIOkB Springsteen bMAINp32000000003453r10.89u6185u193000795 2200265 450000100060000000300040000600500170001000800390002701000170006602000150008304000130009805000240011108200230013509000150015810000200017324500910019325000120028426000320029630000480032860000210037665000400039770000230043794200250046095200440048557508LVL19990220000000.0871207s1988 nyuaf 00010beng a87036417 /MN a0525246533 aDLCcDLC0 aML417.L67bT53 19880 219a786.1/092/4aB c1057d105710aThorson, Scott.10aBehind the candelabra :bmy life with Liberace /cScott Thorson with Alex Thorleifson. a1st ed.0 aNew York :bDutton,cc1988. a242 p., [16] p. of plates :bill. ;c24 cm.00aLiberace,d1919- 0aPianistsxBiography.zUnited States10aThorleifson, Alex. aLVLcBIOkB Liberace bMAINp31000000021332r10.86u6186u193100600 2200205 450000100060000000300040000600500170001000800410002701000130006802000150008109000150009610000200011124500630013126000380019430000210023244000410025365000350029494200220032995200430035164527LVL19990217000000.0930419s19xx xxu 00010 eng d a79003520 a0394844521 c1058d10581 aArthur, Robert.14aThe mystery of the vanishing treasure /cby Robert Arthur.0 aNew York :bRandom Housecc1966,. a152 p. ;c19 cm. 0aAlfred Hitchcock mystery series ; 5. 7aMystery and detective stories. aLVLcJFkJ Arthur bMAINp31000000006623r1.17u6187u193200974 2200277 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200150011424501050012924600650023425000120029926000450031130000280035650000300038465000530041465000720046770000220053970000240056194200250058595200430061095200430065336452LVL20000911134531.0961018s1996 wiu 00000 eng d a0873414667 anpl96001899 c1059d1059 aREF 640 Co00aComic book checklist and price guide; 1997 :b1961 - present /cMaggie Thompson & Brent Frankenhoff.1 aComics buyer's guide ... comic book checklist & price guide. a3rd ed.0 aIola, WI :bKrause Publications,cc1996. a576 p. ;c25 cm. ;dpa. aTitle variant from spine. 0aComic books, strips, etcxPriceszUnited States. 0aComic books, strips, etcxCollectors and collectingzUnited States.10aThompson, Maggie.10aFrankenhoff, Brent. aLVLcREFkREF 640 Co bLB2p34000000014511r10.00u6188u1933 bLB1p33000000026889r10.00u6189u193400690 2200241 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200110011410000150012524500910014026000360023130000370026744000160030465000240032070000200034470000190036494200220038395200430040543471LVL19990313000000.0960819s1987 nyua j 00011 eng d a0590403001 anpl96001619 c1060d1060 aE Ross10aRoss, Tom.10aIt Zwibble, the star-touched dinosaur /cby Tom Ross, Clifford Ross, and Lisa Werenko.0 aNew York :bScholastic,cc1987. a[32] p. :bill. ;c21 cm. ;dpa. 0aIt Zwibble. 1aDinosaursxFiction.10aRoss, Clifford.10aWerenko, Lisa. aLVLcEASYkE Ross bMAINp32000000066419r1.95u6190u193500840 2200277 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200150011410000190012924500320014826000420018030000450022250000200026760000260028760000290031361000390034265000310038165000320041265100500044494200240049495200440051850490LVL19990312000000.0960626s1996 nyuaf 00110 eng d a0684813084 anpl96001155 c1061d1061 a973.929 Wo10aWoodward, Bob.14aThe choice /cBob Woodward.0 aNew York :bSimon & Schuster,cc1996. a462, [16] p. of plates :bill. ;c25 cm. aIncludes index.10aClinton, Bill,d1946-10aDole, Robert J.,d1923-.10aUnited States.bCongress.bSenate. 0aPresidentszUnited States. 0aLegislatorszUnited States. 0aUnited StatesxPolitics and governmenty1993- aLVLcNFk973.929 Wo bMAINp32000000065386r15.27u6191u193600859 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009409000150011009200130012510000270013824500680016526000360023330000270026952002080029665000210050470000270052594200220055295200430057457509LVL19990220000000.0711005s1971 nyua j 00001 eng a75147884 a0394921453 aflb00740101 c1062d1062 aJ Farley10aFarley, Walter,d1915-14aThe Black Stallion and the girl .cIllustrated by Angie Draper.0 aNew York,bRandom Housec[1971] a214 p.billus.c22 cm. aAlec Ramsay has a hard time persuading his partners to retain the girl he hires as a trainer and an even harder time convincing them to let her race the Black Stallion when Alec is suspended as a jockey. 1aHorsesxFiction.11aDraper, Angie,eillus. aLVLcJFkJ Farley bMAINp31000000004726r3.56u6192u193700619 2200217 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200150011410000190012924500480014825000200019626000720021630000230028865000220031194200240033395200440035764528LVL19990217000000.0931207c19891964enk d 00011 eng d a1850576580 anpl93001603 c1063d1063 aLP Kilgore1 aKilgore, John.14aThe man from Secret Valley /cJohn Kilgore. aLarge print ed. aLong Preston, North Yorkshire, England :bMagna Print Books,c1989. a202 p. ;c22 cm.;. 0aLarge type books. aLVLcLPkLP Kilgore bMAINp31000000045787r13.95u6193u193800926 2200277 450000100060000000300040000600500170001000800390002701000130006602000250007904000130010404300120011705000220012908200210015109000150017210000340018724501590022126000440038030000600042450000200048450400300050465000200053465000270055494200230058195200440060471547LVL19990404000000.0880805s1988 pauaf b 00110 eng a88082138 a0934672709 :c$19.95 aDLCcDLC an-us-pa0 aTX715.bG647 19880 219a641.5/088287 c1064d106410aGood, Phyllis Pellman,d1948-14aThe best of Amish cooking :btraditional and contemporary recipes adapted from the kitchens and pantries of old order Amish cooks /cPhyllis Pellman Good.0 aIntercourse, Pa. :bGood Books,cc1988. a224 p., [12] p. of plates :bill. (some col.) ;c27 cm. aIncludes index. aBibliography: p. 215-216. 0aCookery, Amish. 0aCookeryzPennsylvania. aLVLcNFk641.5 GOO bMAINp31000000024017r11.77u6194u193901126 2200337 450000100060000000300040000600500170001000800390002701000130006602000270007902000150010603500160012104000200013705000220015708200160017909000150019524500220021026000480023230000340028044000210031450000200033552001350035552100110049065000790050165000360058071000210061694200230063795200430066095200430070395200420074629434LVL20020828153411.0861209s1987 vaua 00100 eng a86030136 a0809462052 (lib. bdg.) a0809462044 aflb00971205 aDLCcDLCdICrlF0 aTK9901.bM28 19870 219a683/.83 c1065d106500aMajor appliances.0 aAlexandria, Va. :bTime-Life Books,cc1987. a144 p. :bcol. ill. ;c29 cm. 0aFix it yourself. aIncludes index. aProvides information on repairing refrigerators, freezers, ranges, dishwashers, garbage disposals, and clothes washers and dryers.2 aAdult. 0aHousehold appliances, ElectricxMaintenance and repairxAmateurs' manuals. 7aHousehold appliances, Electric.20aTime-Life Books. aLVLcNFk683.83 MA bMAINp32000000021714r8.53u6195u1940 bMAINp31000000025260r8.53u6196u1941 bLB1p33000000010191r8.53u6197u194200351 2200133 450000100060000000300040000600500170001000800410002709000150006810000400008324500230012394200270014695200440017336453LVL19990319000000.0921009s19xx xxu 00010 eng d c1066d10661 aDaugherty, James Henry,d1889-1974.10aAndy and the lion. aLVLcEASYkE Daugherty bMAINp32000000008345r10.00u6198u194300653 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000210013524500290015626000440018530000210022965000630025065100460031394200210035995200430038050491LVL20020206164916.0920701s1993 nyu 00011 eng a92025327 a0671786415 a 92025327 c1067d1067 aAF Gage10aGage, Elizabeth.10aTaboo /cElizabeth Gage.0 aNew York :bPocket Books,c1993, c1992. a465 p. ;c24 cm. 0aMotion picture industryxFiction.zCaliforniazLos Angeles 0aHollywood (Los Angeles, Calif.)xFiction. aLVLcAFkAF Gage bMAINp31000000059229r2.00u6200u194400569 2200217 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200130011210000210012524500360014625000200018226000410020230000210024365000220026494200220028695200430030864529LVL19990217000000.0870210s1987 nyu d 00011 eng a0385296061 anpl94000384 c1068d1068 aLP Steel1 aSteel, Danielle.10aKaleidoscope /cDanielle Steel. aLarge print ed. aNew York :bDelacorte Press,cc1987. a517 p. ;c24 cm. 0aLarge type books. aLVLcLPkLP Steel bLB2p31000000047692r15.00u6201u194500630 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007904000130009405000310010708200130013809000150015110000230016624500200018925000140020926000420022330000190026535000110028449000160029594200220031195200430033371548LVL19990404000000.0730202s1973 nyu 00001 eng a72083146 a0385072740 aDLCcDLC0 aPZ4.H716aPS3558.O3473bCo a813/.5/4 c1069d106910aHogan, Ray,d1908-10aConger's woman. a[1st ed.]0 aGarden City, N.Y.,bDoubleday,c1973. a188 p.c22 cm. a$4.95.0 aDD western. aLVLcAFkAF Hogan bMAINp31000000030113r2.25u6202u194601395 2200409 450000100060000000300040000600500170001000700100002700800410003702000150007803500160009303700320010909000150014109200120015624501180016826000490028630000670033544000310040250000470043350000600048050000640054051100780060452100130068253800090069565000220070470000180072670000150074470000230075970000150078270000220079770000190081970000200083871000240085873000370088294200220091995200440094150492LVL20021101135038.0vf cbahom931228s1992 ilu102 gr vleng d a0780007174 avid93000663 aYOU 040bPublic Media Video c1070d1070 aAVJ You00aYou must remember thiscWonderWorks Video :produced by Thomas Kane; directed by Helaine Head.h[videorecording] / aChicago, Ill. :bPublic Media Video,cc1992. a1 videocassette (102 min.) :bsd., col. ;c1/2 in. +e1 guide. 0aWonderWorks family movies. aClosed-captioned for the hearing impaired. aBased on an original story by Karen Evans and Pat Dade. aOriginally broadcast on the television program WonderWorks.1 aRobert Guillaume, Tim Reid, Maria Celedonio, Vonte' Sweet, Vonetta McGee. aGeneral. aVHS. 0aChildren's films.11aEvans, Karen.11aDade, Pat.11aGuillaume, Robert.11aReid, Tim.11aCeledonio, Maria.11aSweet, Vonte'.11aMcGee, Vonetta.21aPublic Media Video.01aWonderWorks (Television program) aLVLcAVJkAVJ You bMAINp31000000045708r22.46u6203u194700709 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009405000260010808200130013409000150014709200210016210000250018324500430020825000200025126000530027130000210032450000410034594200260038695200430041257511LVL19990220000000.0880322c19881964mau d 00011 eng a88010876 a1555046731 a 880108761 aPS3569.H562bL37 19880 a813/.549 c1071d1071 aL.P. Shir- reffs10aShirreffs, Gordon D.10aLast man alive /cGordon D. Shirreffs. aLarge print ed.0 aSouth Yarmouth, Ma. :bJohn Curley,cc1988,1964. a225 p. ;c22 cm. a"Curley large print"--P. 4 of cover. aLVLcLPkLP Shirreffs bMAINp31000000035640r8.95u6204u194800605 2200205 450000100060000000300040000600500170001000800410002701000130006809000150008109200140009610000210011024500410013126000480017230000310022070000310025194200250028295200490030795200430035664530LVL19990217000000.0950215s19xx xxu 00010 eng d a80016855 c1072d1072 aE Yorinks10aYorinks, Arthur.10aLouis the fish /cby Arthur Yorinks.0 aNew York :bFarrar, Straus, Giroux,cc1980. a[32] p. :billus.,c20 cm.11aEgielski, Richard,eillus. aLVLcEASYkE Yorinks bMAINdMAINp32000000036609r6.46u6205u1949 bMAINp31000000003927r6.46u6206u195001022 2200301 450000100060000000300040000600500170001000800390002701000130006602000250007902000220010403500160012603900180014204000200016005000240018008200160020409000150022010000200023524500480025526000410030330000210034451000230036552002060038852100170059494200220061195200440063395200430067771549LVL20030714080827.0840709s1985 nyu 00011 eng a84008840 a0899193145 :c$15.95 a0899193625 (pbk.) aflb009320110 a2b3c3d3e3 aDLCcDLCdICrlF0 aPS3553.H87bB4 19850 219a813/.54 c1073d107310aChute, Carolyn.14aThe Beans of Egypt, Maine /cCarolyn Chute.0 aNew York :bTicknor & Fields,c1985. a215 p. ;c22 cm.0 aALA Notable Books. aEarlene marries into the povertystricken Bean family and finds herself being pulled down into their destitution of resources and spirit. In spite of everything, Earlene chooses to become her own woman.2 aYoung Adult. aLVLcAFkAF Chute bMAINp32000000138053r15.95u6207u1951 bMAINp31000000012884r4.54u6208u195200829 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000270013424500320016125000120019326000410020530000290024650400510027565000370032665000360036365100370039965100510043694200200048795200440050729436LVL19990320000000.0910708s1992 nyua b 00110 eng a91053179 a0394580273 a 91053179 c1074d1074 a946 Hu1 aHughes, Robert,d1938-10aBarcelona /cRobert Hughes. a1st ed. aNew York :bAlfred A. Knopf,cc1992. a575 p. :bill. ;c24 cm. aIncludes bibliographical references and index. 0aArts, SpanishzSpainzBarcelona. 0aArchitecturezSpainzBarcelona. 0aBarcelona (Spain)xCivilization. 0aBarcelona (Spain)xBuildings, structures, etc. aLVLcNFk946 Hu bMAINp32000000033370r16.20u6209u195300773 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012324500700013626000400020630000380024650000200028452001120030465000320041670000180044894200220046695200430048857512LVL19990220000000.0830927s1984 nyua 00100 eng a83021959 a0399210121 a 83021959 c1075d1075 a808.8 Al00aAll for love /cselected, edited, and illustrated by Tasha Tudor.0 aNew York :bPhilomel Books,cc1984. a93 p. :bcol. ill. ;c23 x 29 cm. aIncludes index. aAn anthology of poems, stories, songs, letters, and miscellaneous facts describing various aspects of love. 0aLovexLiterary collections.10aTudor, Tasha. aLVLcNFk808.8 Al bMAINp31000000036276r4.75u6210u195401068 2200313 450000100060000000300040000600500170001000800390002701000170006602000380008303500180012104000180013904300210015705000200017808200140019809000150021210000320022724500720025926000340033130000330036544000240039850000200042252001530044265100400059565100190063570000290065494200280068395200430071136456LVL19990319000000.0841130s1984 enka j 001 0 eng a84245413 /AC a0370308123 : ¹c3.95 ($6.95 U.S.) a 84245413 /AC aDLCcDLCdDLC ar------at------00aG587.bG73 198400219a919.8 c1076d10761 aGreen, Christopher,d1938-.10aPolar lands /cChristopher Green ; illustrated by Colin Threadgall. aLondon :bBodley Head,c1984. a23 p. :bcol. ill. ;c22 cm. 2aA Young geographer. aIncludes index. aIntroduces the characteristics of polar lands, the plants and animals that are found there, and the people that live and work in these cold regions. 0aPolar regionsxJuvenile literature. 1aPolar regions.11aThreadgall, Colin,eill. aLVLcJNFkJNF 919.8 GRE bMAINp32000000016327r4.10u6211u195500292 2200121 450000100060000000300040000600500170001000800410002709000150006824500280008394200160011195200430012743475LVL19990313000000.0941224s19uu 000 0 eng d c1077d107710aCOBBLESTONE MARCH 1984. aLVLcPERkJ bMAINp32000000022105r2.25u6212u195600942 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000250014024500590016526000560022430000330028052001210031360000250043465000230045965000220048271000480050494200270055295200430057995200420062250494LVL20020213142301.0940228s1993 nyua j 00010 eng a93007579 a067085204X a 93007579 c1078d1078 aJNF 759.5 Mu10aMuhlberger, Richard.10aWhat makes a Raphael a Raphael? /cRichard Muhlberger.0 aNew York :bThe Metropolitan Museum of Art,cc1993. a48 p. :bcol. ill. ;c22 cm. aExplores such art topics as style, composition, color, and subject matter as they relate to twelve works by Raphael.01aRaphael,d1483-1520. 1aPainting, Italian. 1aArt appreciation.20aMetropolitan Museum of Art (New York, N.Y.) aLVLcJNFkJNF 759.5 Mu bMAINp31000000046902r5.87u6214u1957 bLB1p33000000017908r5.87u6215u195800884 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200180012310000210014124500670016226000490022930000210027850000630029960000210036265000370038365000280042065000220044865100350047070000210050594200240052695200440055057513LVL19990220000000.0880615r19881987mau d 00010aeng a88021714 a0816146551 a 88021714 c1079d1079 aL.P. 305.4 Ma10aMahmoody, Betty.10aNot without my daughter /cBetty Mahmoody with William Hoffer.0 aBoston, MA :bG.K. Hall & Co.,c1988, c1987. a575 p. ;c25 cm. aOriginally published: New York : St. Martin's Press, 1987.10aMahmoody, Betty. 0aWomenxBiography.zUnited States 0aWomenxBiography.zIran 0aWife abusezIran. 0aIranxSocial life and customs.10aHoffer, William. aLVLcUkLP 305.4 Ma bMAINp31000000037235r17.81u6216u195901141 2200337 450000100060000000300040000600500170001000800390002701000210006603500160008704000200010305000180012308200100014109000150015110000180016624500370018426000360022130000190025751000320027651000480030851000480035652001660040452100340057052100100060465000260061465000200064065000350066094200220069595200430071795200430076029438LVL19990320000000.0850819s1967 nyu j 000 1 eng a67013606 /AC/r85 aflb00040302 aDLCcDLCdICrlF0 aPZ7.H5976bOu a[Fic] c1080d10801 aHinton, S. E.14aThe outsiders,cby S. E. Hinton. aNew York,bViking Pressc[1967] a188 p.c22 cm.0 aChildren's Catalog (Wilson)0 aSenior High School Library Catalog (Wilson)0 aJunior High School Library Catalog (Wilson) aThe struggle of three brothers to stay together after their parent's death and their quest for identity among the conflicting values of their adolescent society.0 a5.1bFollett Library Book Co.2 a7-10. 1aFamily lifexFiction. 1aGangsxFiction. 7aJuvenile delinquencyxFiction. aLVLcJFkJ Hinton bMAINp32000000010491r7.77u6217u1960 bMAINp32000000036356r2.39u6218u196101033 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000340013724501900017126000550036130000310041650000200044765000320046765000270049965000360052665000460056294200230060895200620063195200620069350495LVL19990312000000.0910429s1991 vaua 00110 eng a91017995 a1558702040 a 91017995 c1081d1081 a690.89 An1 aAnthenat, Kathy Smith,d1953-10aAmerican tree houses and play houses :bchildhood retreats from yesteryear-- play houses and tree houses of today-- and six "build-it-yourself" play house plans /cKathy Smith Anthenat. aWhite Hall, Va. :bBetterway Publications,cc1991. a175 p. :bill. ;c28 cm.;. aIncludes index. 0aTree houseszUnited States. 0aChildren's playhouses. 0aTree housesxDesigns and plans. 0aChildren's playhousesxDesigns and plans. aLVLcNFk690.89 An bMAINdMAINp32000000046158r13.45u6219u1962v2003-09-01 bMAINdMAINp31000000047663r13.45u6220u1963v2003-09-0100486 2200181 450000100060000000300040000600500170001000800410002702000150006809000150008309200140009810000200011224500390013226000410017130000260021294200230023895200430026157514LVL19990220000000.0960103s19uu 000 0 eng d a0373706227 c1082d1082 aAF Dalton10aDalton, Margot.10aKim & the cowboy /cMargot Dalton. aToronto :bHarlequin Books ;cc1994. a299p. ;bpa. ;c18cm. aLVLcAFkAF Dalton bMAINp31000000197558r3.50u6221u196400815 2200277 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200160011410000210013024500380015125000130018926000420020230000290024444000220027350000200029565000230031594200260033895200440036495200430040895200430045195200430049450496LVL20000910174337.0940513c1992 njua j 00110 eng d a0517065606 anpl94000637 c1083d1083 aJNF 222 O'N10aO'Neill, Amanda.10aBiblical Times /cAmanda O'Neill. aU.S. ed.0 aAvenel, NJ :bCrescent Books,cc1992. a108 p. :bill. ;c28 cm. 0aHistorical facts. aIncludes index. 1aHistory, Biblical. aLVLcJNFkJNF 222 O'N bMAINp32000000047066r17.95u6222u1965 bLB2p34000000007818r15.95u6224u1966 bLB2p37000000008119r17.95u6225u1967 bLB1p33000000019899r15.95u6226u196800883 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000190013824500490015726000380020630000300024452000690027465000250034394200260036895200420039495200420043695200420047895200430052095200420056357515LVL19990726000000.0880205s1988 nyua j 00011 eng a88003224 a0394890310 a 88003224 c1084d1084 aE Fujikawa10aFujikawa, Gyo.10aAre you my friend today? /cby Gyo Fujikawa.0 aNew York :bRandom House,cc1988. a[40] p. :bill. ;c31 cm. aSpecial friends have fun together playing, talking, and sharing. 1aFriendshipxFiction. aLVLcEASYkE Fujikawa bLB2p37000000003056r5.95u6227u1969 bLB1p36000000003373r5.95u6228u1970 bLB2p34000000010264r5.95u6229u1971 bMAINp31000000045503r5.95u6230u1972 bLB1p33000000016980r5.95u6231u197300372 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000280009824500360012694200210016295200430018336459LVL19990319000000.0940927s19xx xxu 00010 eng d a0944993257 c1085d10851 aMuir, John,d1838-1914.14aThe Yosemiteh[sound recording] aLVLcACkAC Muir bMAINp32000000032070r5.91u6232u197401091 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000230013624501690015926000380032830000350036650000370040150400590043865000160049794200220051395200420053595200430057795200420062095200420066295200430070495200420074750497LVL19990816000000.0940113s1994 nyua b 00110 eng a94001091 a0812018435 a 94001091 c1086d1086 a636.7 Fi10aFiedelmeier, Leni.10aDachshunds :bhow to understand and take care of them : expert advice on the proper care of wirehaired, longhaired, and smoothcoated dachshunds /cLeni Fiedelmeier.0 aHauppauge, NY :bBarron's,c1994. a64 p. :bill. ;c20 cm. ;dpa. a"A Barron's pet owner's manual." aIncludes bibliographical references (p. 63) and index. 0aDachshunds. aLVLcNFk636.7 Fi bLB2p37000000002822r3.45u6233u1975 bMAINp32000000047892r3.45u6234u1976 bLB1p36000000000462r3.45u6235u1977 bLB2p34000000001846r3.45u6236u1978 bMAINp31000000048921r3.45u6237u1979 bLB1p33000000019330r3.45u6238u198001498 2200433 450000100060000000300040000600500170001000800390002701000220006602000270008802000150011503500160013004000200014605000240016608200140019009000150020410000230021924500710024225000120031326000540032530000280037951000320040751000220043951000140046152001850047552100340066052100090069465000290070365000250073265000290075765000250078665000210081165100460083265100460087870000320092494200220095695200430097895200430102129441LVL19990320000000.0860501s1987 nyua j 000 1 eng a86011526 /AC/r882 a0803703430 (lib. bdg.) a0803703422 aflb01204904 aDLCcDLCdICrlF0 aPZ7.T21723bGo 19870 219a[Fic] c1087d10871 aTaylor, Mildred D.14aThe gold Cadillac /cMildred D. Taylor ; pictures by Michael Hays. a1st ed. aNew York :bDial Books for Young Readers,cc1987. a43 p. :bill. ;c25 cm.0 aChildren's Catalog (Wilson)0 aNYT Notable Book.0 aBooklist. aTwo black girls living in the North are proud of their family's beautiful new Cadillac until they take it on a visit to the South and encounter racial prejudice for the first time.0 a4.2bFollett Library Book Co.2 a3-6. 1aAfro-AmericansxFiction. 1aPrejudicesxFiction. 1aRace relationsxFiction. 7aPrejudicesxFiction. 7aBlacksxFiction. 1aSouthern StatesxRace relationsxFiction. 7aSouthern StatesxRace relationsxFiction.11aHays, Michael,d1956-eill. aLVLcJFkJ Taylor bMAINp32000000014551r4.10u6239u1981 bMAINp32000000014552r4.10u6240u198200354 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000220009824500220012094200230014295200430016543479LVL19990313000000.0930426s19xx xxu 00010 eng d a0440401909 c1088d10881 aTritten, Charles.10aHeidi's children. aLVLcJFkJ Tritten bMAINp32000000032379r2.03u6241u198300707 2200217 450000100060000000300040000600500170001000800410002701000130006803500140008109000150009509200150011010000220012524501540014726000450030130000290034665000200037570000260039594200250042195200430044650498LVL20000910174339.0940914s1937 paua j 00010 eng d a37022632 a 37022632 c1089d1089 aJNF 398 Fi1 aFish, Helen Dean.10aFour & twenty blackbirds :bnursery rhymes of yesterday recalled for children of today /ccollected by Helen Dean Fish; illustrated by Robert Lawson. aPhiladelphia :bJ.B. Lippincott,cc1937. a104 p. :bill. ;c26 cm. 1aNursery rhymes.11aLawson, Robert,eill. aLVLcJNFkJNF 398 Fi bLB2p37000000008327r12.50u6243u198400532 2200193 450000100060000000300040000600500170001000800410002702000150006809000150008309200140009810000190011224500430013126000410017430000270021544000300024294200230027295200430029557517LVL19990220000000.0961125s19uu 000 0 eng d a0373118511 c1090d1090 aAF Jordan10aJordan, Penny.10aHer Christmas fantasy /cPenny Jordan. aToronto :bHarlequin Books ;cc1996. a188 p. ;c18 cm. ; pa. 0aHarlequin Presentsv1851. aLVLcAFkAF Jordan bMAINp31000000049216r3.50u6244u198501131 2200373 450000100060000000300040000600500170001000800390002701000170006602000150008302000270009803500160012504000200014105000240016108200120018509000150019710000160021224500470022825000120027526000430028730000400033051000320037051000100040251000420041252001230045452100340057752100090061165000220062065000140064265000220065665000140067894200210069295200440071343480LVL19990313000000.0860924s1988 nyua j 000 1 eng a86025762 /AC a0688071597 a0688071600 (lib. bdg.) aflb01713201 aDLCcDLCdICrlF0 aPZ7.S6219bWav 19880 219a[E] c1091d10911 aSis, Peter.10aWaving :ba counting book /cby Peter Sis. a1st ed. aNew York :bGreenwillow Books,cc1988. a[28] p. :bcol. ill. ;c20 x 22 cm.0 aChildren's Catalog (Wilson) aSLJ*.0 aChildren's Book Review Service,cInc. aAs Mary and her mother walk down the street, they wave and are waved at by consecutively increasing numbers of people.0 a1.9bFollett Library Book Co.2 aK-3. 1aWalkingxFiction. 1aCounting. 7aWalkingxFiction. 7aCounting. aLVLcEASYkE Sis bMAINp32000000026115r11.59u6246u198600763 2200229 450000100060000000300040000600500170001000800390002703500160006609000150008209200140009710000320011124501510014325000180029426000440031230000330035649000380038950000220042765000170044994200230046695200440048950499LVL19990312000000.0740926s1975 nyua 00110 eng anpl94002069 c1092d1092 a808.81 Ga1 aGarrigue, Jean,d1912-1972.10aLove's aspects :bthe world's great love poems /cselected by Jean Garrigue. Arr. and with an introd. by Nancy Sullivan ; drawings by Nell Blaine. aBook club ed. aGarden City, N.Y. :bDoubleday,cc1975. axl, 413 p. :bill. ;c22 cm.00aInternational collectors library. aIncludes indexes. 0aLove poetry. aLVLcNFk808.81 Ga bMAINp32000000052296r10.00u6247u198700344 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000150009624500230011194200210013495200430015557518LVL19990220000000.0950324s19uu 000 0 eng d a89078400 c1093d1093 aSchooling.10aSchooling at home. aLVLcNFk649 SCH bMAINp31000000026821r8.82u6248u198800656 2200217 450000100060000000300040000600500170001000800410002703500160006809000150008409200130009924500980011226000420021030000280025244000300028050000200031065000220033065000210035294200220037395200430039529443LVL19990320000000.0951208s1963 iaua 00100 eng d anpl95001759 c1094d1094 a641.5 Be00aBetter Homes and Gardens barbecues and picnics /cby the editors of Better Homes and Gardens.0 aDes Moines :bMeredith Press,cc1963. a61 p. :bill. ;c26 cm. 0aCreative cooking library. aIncludes index. 0aBarbecue cookery. 0aOutdoor cookery. aLVLcNFk641.5 Be bMAINp32000000061376r7.95u6249u198900786 2200241 450000100060000000300040000600500170001000800390002701000190006603500200008504000130010505000220011805100330014005101420017308200130031509000150032810000170034324500520036026000420041230000250045494200220047995200430050136462LVL20000314000000.0711013s1966 nyu 000 1 eng a66015666 //r79 a 66015666 //r79 aDLCcDLC0 aPZ4.B284bGi 1966 aPS3552.A75bG5 1966cCopy 3. aPS3552.A75bG5 1966bcAnother issue. [2], xxxi, 710 p. Issued in a case. "This edition limited to two hundred and fifty copies." No. 201. a813/.5/4 c1095d10951 aBarth, John.10aGiles goat-boy ;bor, The revised new syllabus. aGarden City, N.Y.,bDoubleday,c1966. axxxi, 710 p.c24 cm. aLVLcAFkAF Barth bMAINp32000000101826r6.95u6250u199000711 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000180013624500670015426000470022130000400026865000390030874000140034794200220036195200430038395200430042650500LVL20030707070506.0941101s1992 moua 00010 eng a92072254 a0836217012 a 92072254 c1096d1096 a741.5 La1 aLarson, Gary.10aCows of our planet :ba Far side collection /cby Gary Larson. aKansas City :bAndrews and McMeel,cc1992. a95 p. :bill. (some col.) ;c21 cm. 0aAmerican wit and humor, Pictorial.0 aFar side. aLVLcNFk741.5 La bMAINp32000000053418r8.95u6251u1991 bMAINp32000000136905r8.95u6252u199200439 2200157 4500010001300000020001500013082001200028090001500040100002800055245003800083250002000121260005400141300002100195942002100216952004400237 a81002827 a08962127690 a813/.52 c1097d109710aGrey, Zane,d1872-1939.14aThe thundering herd /cZane Grey. aLarge print ed.0 aThorndike, Me. :bThorndike Press,c[1981] c1925. a521 p. ;c22 cm. aLVLcAFkAF Grey bMAINp31000000010641r10.95u6253u199301292 2200373 450000100060000000300040000600500170001000800390002701000170006602000250008302000270010803500180013504000180015305000260017108200070019709000150020410000190021924500310023825000120026926000430028130000450032452001700036960000580053960000190059765000690061665000540068565000170073965000230075665000180077965000310079765000180082894200230084695200490086929444LVL19990320000000.0900221s1991 nyua j 000 0aeng a90033142 /AC a0688099505 :c$13.95 a0688099513 (lib. bdg.) a 90033142 /AC aDLCcDLCdDLC00aPS3553.R45bZ465 199100220 c1098d10981 aCrews, Donald.10aBigmama's /cDonald Crews. a1st ed. aNew York :bGreenwillow Books,cc1991. a1 v (unpaged) :bcol. ill. ;c22 x26 cm. aVisiting Bigmama's house in the country, young Donald Crews finds his relatives full of news and the old place and its surroundings just the same as the year before.10aCrews, DonaldxBiographyxYouthxJuvenile literature.11aCrews, Donald. 0aAuthors, AmericanxBiographyxJuvenile literature.y20th century 0aCountry lifexJuvenile literature.zUnited States 1aFamily life. 1aAuthors, American. 1aIllustrators. 1aAfro-AmericansxBiography. 1aCountry life. aLVLcEASYkE Crews bMAINdMAINp32000000141492r8.23u6254u199400925 2200289 450000100060000000300040000600500170001000800390002701000130006602000220007902000150010103500140011604000130013004300120014305000210015508200180017609000150019410000370020924501210024626000370036730000440040450000200044865000430046865000450051194200240055695200550058036463LVL19990319000000.0790517s1979 nyua 001 0 eng a79051434 a0812908422 (pbk.) a0812908414 a 79051434 aDLCcDLC an------0 aQL681.bA96 1979 a599/.09/70222 c1099d10991 aAudubon, John James,d1785-1851.14aThe art of Audubon :bthe complete birds and mammals /cJohn James Audubon ; with an introd. by Roger Tory Peterson. aNew York :bTimes Books,cc1979. axiii, 674 p. :ball col. ill. ;c29 cm. aIncludes index. 0aBirdsxPictorial works.zNorth America 0aMammalsxPictorial works.zNorth America aLVLcNFk599.09 AUD bMAINdMAINp32000000009552u6255u1995v2003-09-0100742 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000190013424500760015325000120022926000510024130000360029265000200032865000190034865000280036770000180039594200200041395200430043343482LVL19990313000000.0950228s1995 nyua 00010 eng a95007743 a0786702052 a 95007743 c1100d1100 a818 Wa10aWade, James C.10aDrop us a line-- sucker! :bthe prank letters of James and Stuart Wade. a1st ed.0 aNew York :bCarroll & Graf Publishers,cc1995. a165 p. :bill. ;c21 cm. ;dpa. 0aLettersxHumor. 0aWit and humor. 0aAmerican wit and humor.10aWade, Stuart. aLVLcNFk818 Wa bMAINp32000000060460r5.37u6256u199600507 2200169 4500010001300000020001500013090001500028100002800043245002900071250002000100260004600120300002100166650002200187942002200209952004400231952006200275 a94012084 a0786202580 c1101d11011 aBrand, Max,d1892-1944.10aMarbleface /cMax Brand. aLarge print ed. aThorndike, Me. :bThorndike Press,c1994. a384 p. ;c23 cm. 0aLarge type books. aLVLcLPkLP Brand bMAINp31000000052453r13.46u6258u1997 bLB1dLB1p36000000006472r13.46u313906u1998v2004-09-2501024 2200349 450000100060000000300040000600500170001000800390002701000190006602000150008503500160010004000200011604100110013605000170014708200080016409000150017210000190018724000390020624500580024526000410030330000310034435000100037549000300038550000440041552000770045952100090053665000200054565000350056565000160060094200210061695200370063736464LVL19990319000000.0690820s1969 nyua 001 0 eng a69019489 //r83 a0806951281 aflb00269402 aDLCcDLCdICrlF1 aengger0 aTT205.bG813 a739 c1102d11021 aGruber, Elmar.10aArbeiten aus Buntmetall.lEnglish.10aMetal & wire sculpture.c[Translated by Gangolf Geis] aNew York,bSterling Pub. Co.c[1969] a48 p.billus.c20 x 20 cm. a2.95.0 aLittle craft book series. aTranslation of Arbeiten aus Buntmetall. aInstructions for making a variety of objects from wire and metal sheets.2 a5-8. 0aArt metal-work. 0aMetal-workxAmateurs' manuals. 0aWire craft. aLVLcNFk739 GRU bMAINp32000000011483u6259u199900775 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000240013424500650015826000780022330000330030150400650033460000330039965000370043294200200046995200440048950502LVL19990312000000.0940721s1995 enka b 00110beng a94031924 a0198239947 a 94031924 c1103d1103 a194 Ga10aGaukroger, Stephen.10aDescartes :ban intellectual biography /cStephen Gaukroger.0 aOxford :aNew York :bClarendon Press ;bOxford University Press,cc1995. axx, 499 p. :bill. ;c24 cm. aIncludes bibliographical references: p. (418-487) and index.10aDescartes, Rene,d1596-1650.0 aPhilosophersxBiography.zFrance aLVLcNFk194 Ga bMAINp32000000057605r21.00u6260u200000678 2200229 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200130011410000170012724500930014426000410023730000300027844000110030865000270031970000350034694200240038195200430040550503LVL20020418142126.0950809s1995 nyua j 00011 eng d a0590203088 anpl95001070 c1104d1104 aE Martin10aMartin, Ann.10aBuilding the new school /cwritten by Ann Martin; illustrated by Steven James Petruccio.0 aNew York :bScholastic Inc.,cc1995. a[32] p. :bill. ;c21 cm. 0aTonka. 1aConstructionxFiction.11aPetruccio, Steven James,eill. aLVLcEASYkE Martin bLB1p33000000023165r10.89u6263u200100648 2200229 450000100060000000300040000600500170001000800390002701000130006602000240007904000130010305000230011608200160013909000150015510000270017024500450019725000120024226000750025430000210032994200250035095200430037564541LVL19990217000000.0800728s1980 nyu 00011 eng a80001035 a038517182X :c$8.95 aDLCcDLC0 aPS3563.A31898bS650 219a813/.54 c1105d110510aMcMullen, Mary,d1920-10aSomething of the night /cMary McMullen. a1st ed.0 aGarden City, N.Y. :bPublished for the Crime Club by Doubleday,c1980. a187 p. ;c22 cm. aLVLcAFkAF McMullen bMAINp31000000024004r5.98u6264u200201027 2200289 450000100060000000300040000600500170001000800390002701000170006602000310008303500180011404000130013205000220014508200120016709000150017910000210019424500680021526000480028330000350033149000170036652002020038365000220058570000270060780000350063494200250066995200430069429447LVL19990320000000.0871006s1988 onca j 000 1 eng a87030626 /AC a0553054686 (U.S.) :c$3.95 a 87030626 /AC aDLCcDLC0 aPZ7.L549bGo 19880 219a[E] c1106d11061 aLeonard, Marcia.10aGoing to bed /cby Marcia Leonard ; pictures by Deborah Michel. aToronto ;aNew York :bBantam Books,c1988. a[20] p. :bcol. ill. ;c16 cm.1 aWhat I like. aAfter her bath, Emily goes through all her regular activities before bedtime, including putting on her pajamas, brushing her teeth, getting her special blanket, and hearing a story from her mother. 1aBedtimexFiction.11aMichel, Deborah,eill.1 aLeonard, Marcia.tWhat I like. aLVLcEASYkE Leonard bMAINp32000000024821r2.33u6265u200300703 2200253 450000100060000000300040000600500170001000800390002701000190006602000150008503500200010004000130012005000300013308200140016309000150017710000250019224500620021725000230027926000450030230000270034735000110037494200210038595200430040636466LVL20030517111742.0720209r1972 maua 000 1 eng a73177543 //r83 a0395135249 a 73177543 //r83 aDLCcDLC0 aPZ4.S132aPR6069.A42bEm3 a823/.9/14 c1107d11071 aRead,cMiss,d1913-.10aEmily Davis,cby Miss Read. Illustrated by J. S. Goodall. a[1st American ed.] aBoston,bHoughton Mifflin,c1972 [c1971] a237 p.billus.c22 cm. a$4.95. aLVLcAFkAF Read bMAINp32000000007356r3.30u6267u200400942 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009404000200011005000250013008200160015509000150017110000200018624500370020626000540024330000210029751000290031851000220034752001680036952100110053765000370054894200230058595200440060843485LVL19990313000000.0860926s1987 onc 000 1 eng a86026606 a0553051873 aflb01618802 aDLCcDLCdICrlF0 aPS3553.A625bI5 19870 219a813/.54 c1108d11081 aCaputo, Philip.10aIndian country /cPhilip Caputo. aToronto ;aNew York, N.Y. :bBantam Books,c1987. a419 p. ;c24 cm.0 aFiction Catalog (Wilson)0 aNYT Notable Book. aExplores the aftermath of the Vietnam war to reveal the heart and mind of a single soldier who returns to the States shattered by his experience in Southeast Asia.2 aAdult. 7aVietnam War, 1961-1975xFiction. aLVLcAFkAF Caputo bMAINp32000000001876r11.18u6268u200500583 2200217 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200130012510000200013824500350015826000360019330000280022994200220025795200430027995200430032250504LVL20030627114406.0951019s1995 nyu 00011 eng d a95094302 a0380771713 a 95094302 c1109d1109 aAF Drake10aDrake, Shannon.10aNo other man /cShannon Drake.0 aNew York :bAvon Books,cc1995. a396 p. ;c18 cm. ;dpa. aLVLcAFkAF Drake bMAINp32000000060140r3.53u6269u2006 bMAINp31000000056755r3.53u6270u200700400 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000160009624500770011294200220018995200430021157523LVL19990220000000.0950324s19uu 000 0 eng d a86061169 c1110d11101 aSeuss,cDr.14aThe tough coughs as he ploughs the dough :bearly writings and cartoons. aLVLcNFk741.5 Se bMAINp31000000023259r8.18u6271u200800779 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007904000130009405000160010708200130012309000150013610000230015124501230017426000470029730000270034450400300037165000160040165000180041765000110043594200240044695200430047064542LVL19990217000000.0740501s1974 paua b 00110 eng a74008630 a0811718822 aDLCcDLC0 aTT157.bM47 a745.59/2 c1111d111110aMetcalf, Harlan G.10aWhittlin', whistles, and thingamajigs ;bthe pioneer book of nature crafts and recreation arts,cby Harlan G. Metcalf.0 a[Harrisburg, Pa.]bStackpole Booksc[1974] a190 p.billus.c29 cm. aBibliography: p. 183-187. 0aHandicraft. 0aNature study. 0aGames. aLVLcNFk745.59 MET bMAINp31000000023366r5.98u6272u200900850 2200241 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200160011210000300012824501110015826000450026930000280031465000410034265000530038365100610043694200250049795200430052295200430056550505LVL20021009143042.0870416c19871986nyu 00011 eng a0140243062 anpl96000280 c1112d1112 aAF Cornwell10aCornwell, Bernard,d1944-10aSharpe's regiment :bRichard Sharpe and the invasion of France, June to November 1813 /cBernard Cornwell.0 aNew York :bPenguin Books,c1987, c1986. a301 p. ;c20 cm. ;dpa. 0aNapoleonic Wars, 1800-1815xFiction. 0aSharpe, Richard (Fictitious character)xFiction. 0aGreat BritainxHistory, MilitaryxFiction.y19th century aLVLcAFkAF Cornwell bMAINp32000000062573r5.97u6274u2010 bMAINp31000000058317r5.97u6275u201100328 2200133 450000100060000000300040000600500170001000800410002709000150006810000280008324500190011194200210013095200430015157524LVL19990220000000.0950324s19uu 000 0 eng d c1113d11131 aGrey, Zane,d1872-1939.10aForlorn river. aLVLcAFkAF Grey bMAINp31000000034748r5.40u6276u201201268 2200385 450000100060000000300040000600500170001000800410002701000130006802000150008103500160009604000240011208200100013609000150014610000190016124500650018026000430024530000110028851000320029951000480033151000480037952000940042752100340052152100100055565000190056565000190058465000280060365100300063165100300066194200210069195200430071295200430075595200420079895200420084036468LVL19990319000000.0890912s1961 nyu 00001 engsd a61009201 a0385056192 aflb00335101 aICrlFcICrlFdIMchF14a[Fic] c1114d111410aRawls, Wilson.10aWhere the red fern grows :bthe story of two dogs and a boy.0 aGarden City, N.Y. :bDoubleday,c1961. a212 p.0 aChildren's Catalog (Wilson)0 aSenior High School Library Catalog (Wilson)0 aJunior High School Library Catalog (Wilson) aThe adventures of a ten-year-old boy and the two dogs he bought with money he had earned.0 a6.4bFollett Library Book Co.2 a7-10. 1aDogsxFiction. 7aDogsxFiction. 0aDogsxJuvenile fiction. 1aOzark MountainsxFiction. 7aOzark MountainsxFiction. aLVLcJFkJ Rawls bMAINp32000000015610r7.64u6277u2013 bMAINp31000000006543r7.64u6278u2014 bLB1p33000000004298r5.12u6279u2015 bLB1p33000000010274r7.64u6280u201601176 2200325 450000100060000000300040000600500170001000800390002701000170006602000370008303500160012004000250013605000250016108200140018609000150020010000190021524500690023426000410030330000490034451000430039352001980043652100340063452100090066865000130067765000230069070000310071394200200074495200430076495200430080743487LVL19990313000000.0890425s1989 nyuaf j 00011 eng a89006918 /AC a0688078486 (lib. bdg.) :c$14.95 aflb00077403 aDLCcDLCdDLCdICrlF00aPZ7.B327256bDo 198900220a[Fic] c1115d111510aBaum, Roger S.10aDorothy of Oz /cRoger S. Baum ; illustrated by Elizabeth Miles.0 aNew York :bBooks of Wonder,cc1989. a166 p., [1] leaf of plates :bill. ;c24 cm.0 aChild Study Children's Book Committee. aWith the aid of Lion, Scarecrow, the Tin Man, and Tugg the talking boat, Dorothy battles Jester, who is using the dead Wicked Witch's magic wand to turn the citizens of Oz into porcelain dolls.0 a4.5bFollett Library Book Co.2 a3-6. 1aFantasy. 7aFantastic fiction.11aMiles, Elizabeth J.,eill. aLVLcJFkJ Baum bMAINp32000000026326r8.82u6281u2017 bMAINp31000000014223r8.82u6282u201800849 2200265 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200190011410000270013324500430016026000380020330000280024144000330026994200260030295200420032895200430037095200430041395200420045695200430049895200420054150506LVL19990618000000.0960618s1996 nyu j 00011 eng d a0553482963 anpl96001120 c1116d1116 aJ Char- bonnet10aCharbonnet, Gabrielle.10aBalancing act /cGabrielle Charbonnet.0 aNew York :bBantam Books,cc1996. a117 p. ;c20 cm. ;dpa. 0aAmerican Gold Gymnasts ;v2. aLVLcJFkJ Charbonnet bLB2p37000000002781r2.03u6283u2019 bMAINp32000000065276r2.03u6284u2020 bMAINp35000000002173r2.03u6286u2021 bLB2p34000000013968r2.03u6287u2022 bMAINp31000000060471r2.03u6288u2023 bLB1p33000000026017r2.03u6289u202400857 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200200012310000270014324500910017025000120026126000370027330000330031052001510034365000120049470000230050694200300052995200440055929450LVL19990320000000.0890630s1990 maua j 00010 eng a89037182 a0316109983 a 89037182 c1117d1117 aJNF 613.0432 Br1 aBrown, Laurene Krasny.10aDinosaurs alive and well :ba guide to good health /cLaurie Krasny Brown, Marc Brown. a1st ed. aBoston :bLittle, Brown,cc1990. a32 p. :bcol. ill. ;c23 cm. aPresents, in simple text and illustrations, advice on nutrition, exercise, relationships with friends and family, and ways of dealing with stress. 1aHealth.10aBrown, Marc Tolon. aLVLcJNFkJNF 613.0432 Br bMAINp32000000035652r13.01u6290u202500494 2200157 4500020001500000090001500015100002100030245004600051260003600097300003100133600004600164650005600210650001400266651003600280942002000316 a0807070610 c1118d111810aGrumbach, Doris.10aFifty days of solitude /cDoris Grumbach.0 aBoston :bBeacon Press,cc1994. a114 p. :bill. ;c22 cm. ;10aGrumbach, DorisxHomes and hauntszMaine. 0aWomen novelists, AmericanxBiography.y20th century 0aSolitude. 0aMainexSocial life and customs. aLVLcNFk818 Gr00660 2200229 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200190011410000180013324500530015126000360020430000350024065000160027565000240029194200290031595200430034495200430038750507LVL19990312000000.0960821s1996 nyua j 00010 eng d a0590540831 anpl96001666 c1119d1119 aJNF 796.323 We10aWeber, Bruce.10aPro basketball megastars :b1996 /cBruce Weber.0 aNew York :bScholastic,cc1996. a32 p. :bill. ;c28 cm. ;dpa. 1aBasketball. 1aBasketball players. aLVLcJNFkJNF 796.323 We bMAINp32000000066469r2.95u6292u2026 bMAINp31000000061383r2.95u6293u202700351 2200133 450000100060000000300040000600500170001000800410002709000150006810000140008324500490009794200280014695200430017464545LVL19990304000000.0911204s19xx xxu 00010 eng d c1120d1120 aDegering.10aMy Bible friends :bSamuel, the little pr... aLVLcJNFkJNF 220.92 De bMAINp31000000006244r4.50u6294u202800856 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000210013624500390015725000120019626000340020830000210024250000360026352001290029965000260042865000250045465000330047994200220051295200440053429451LVL19990320000000.0810408s1981 nyu j 00011 eng a81003480 a0689502109 a 81003480 c1121d1121 aJ Uchida1 aUchida, Yoshiko.12aA jar of dreams /cYoshiko Uchida. a1st ed. aNew York :bAtheneum,cc1981. a131 p. ;c22 cm. a"A Margaret K. McElderry book." aA young girl grows up in a closely-knit Japanese American family in California during the 1930's, a time of great prejudice. 1aFamily lifexFiction. 1aPrejudicesxFiction. 1aJapanese AmericansxFiction. aLVLcJFkJ Uchida bMAINp32000000036734r12.56u6295u202901491 2200409 450000100060000000300040000600500170001000800390002701000170006602000370008302000250012003500160014504000200016105000210018108200170020209000150021910000250023424500830025925000120034226000330035430000280038750000200041550400280043551000320046351000480049551000280054352001710057152100340074252100090077665000760078565000640086165000320092565000190095765000320097694200300100895200430103843489LVL19990313000000.0860321s1986 nyua j b 00110 eng a83046165 /AC a0690044216 (lib. bdg.) :c$11.89 a0690044208 :c$11.95 aflb00135213 aDLCcDLCdICrlF0 aTD792.bP75 19860 219a363.7/28 c1122d112210aPringle, Laurence P.10aThrowing things away :bfrom middens to resource recovery /cLaurence Pringle. a1st ed.0 aNew York :bCrowell,cc1986. a90 p. :bill. ;c24 cm. aIncludes index. aBibliography: p. 84-86.0 aChildren's Catalog (Wilson)0 aJunior High School Library Catalog (Wilson)0 aSchool Library Journal. aDescribes the phenomenon of garbage, what it can indicate about particular cultures, and past and present problems and methods of solid waste disposal and management.0 a7.5bFollett Library Book Co.2 a5-8. 0aRefuse and refuse disposalxEnvironmental aspectsxJuvenile literature. 0aLitter (Trash)xEnvironmental aspectsxJuvenile literature. 1aRefuse and refuse disposal. 1aLitter (Trash) 7aRefuse and refuse disposal. aLVLcJNFkJNF 363.728 PRI bMAINp32000000028267r7.71u6297u203001062 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200180012310000210014124500600016224600310022226000980025330000550035165100250040665100460043165100440047765100370052194200280055895200440058695200430063095200440067395200430071750508LVL19990312000000.0960209s1996 nyuab 00010 eng a96010494 a0028646592 a 96010494 c1123d1123 aREF 912.73 Ma10aMattson, Mark T.10aMacmillan color atlas of the states /cMark T. Mattson.3 aColor atlas of the states. aNew York :aLondon :bMacmillan Library Reference USA ;bPrentice Hall International,cc1996. a1 atlas (377 p.) :bcol. ill., col. maps ;c32 cm. 0aUnited StatesxMaps. 0aUnited StatesxEconomic conditionsxMaps. 0aUnited StatesxSocial conditionsxMaps. 0aUnited StatesxStatisticsxMaps. aLVLcREFkREF 912.73 Ma bMAINp32000000067727r22.50u6299u2031 bLB2p34000000014603r22.50u6300u2032 bMAINp31000000062476r22.50u6301u2033 bLB1p33000000027011r22.50u6302u203401087 2200325 450000100060000000300040000600500170001000800390002701000170006602000380008303500160012104000200013705000260015708200120018309000150019510000200021024500560023026000900028630000350037652001300041152100340054152100090057565000240058465000220060865000230063065000190065370000210067294200250069395200430071864546LVL19990217000000.0881017s1986 enka j 00011 eng a86040018 /AC a0670808539 : ¹c5.50 ($8.95 U.S.) aflb00137413 aDLCcDLCdICrlF0 aPZ7.H313513bMax 19860 219a[E] c1124d112410aHawkins, Colin.10aMax and the magic word /cColin and Jacqui Hawkins.0 aHarmondsworth, Middlesex, England ;aNew York, N.Y., U.S.A. :bViking Kestrel,c1986. a[24] p. :bcol. ill. ;c22 cm. aMax the dog becomes angry when his animal friends refuse to share their candy and toys with him until he says the magic word.0 a1.5bFollett Library Book Co.2 aK-3. 1aEtiquettexFiction. 1aAnimalsxFiction. 7aCourtesyxFiction. 7aDogsxFiction.10aHawkins, Jacqui. aLVLcEASYkE Hawkins bMAINp31000000002374r5.00u6303u203500789 2200253 450000100060000000300040000600500170001000800410002701000150006802000150008303500140009809000150011209200130012710000200014024500490016026000370020930000350024650000490028152000900033065000230042070000250044394200240046895200430049229452LVL19990320000000.0930312s1969 nyua j 00001 eng d a78077942 8 a0060263067 a 78077942 c1125d1125 aE Viorst1 aViorst, Judith.10aI'll fix Anthony.cPictures by Arnold Lobel. aNew York,bHarper & Row,cc1969. a[32] p. :bcol. ill. ;c21 cm. a"Previously published in McCall's magazine." aA little brother thinks of the ways he will someday get revenge on his older brother. 1aBrothersxFiction.11aLobel, Arnold,eill. aLVLcEASYkE Viorst bMAINp32000000037862r8.33u6304u203600932 2200325 450000100060000000300040000600500170001000800390002701000210006602000240008703500220011104000180013305000260015108200120017709000150018910000170020424500510022126000380027230000350031044000250034550000170037065000380038765000190042565000280044465000220047265000190049465000270051394200230054095200430056336471LVL20000916033722.0880310s1989 nyua j 000 1 eng a88060759 /AC/r91 a0394819500 :c$2.95 a 88060759 /AC/r91 aDLCcDLCdDLC00aPZ8.3.M45953bPu 198900220a[E] c1126d11261 aMcCue, Lisa.10aPuppy peek-a-boo /cillustrated by Lisa McCue. aNew York :bRandom House,cc1989. a[12] p. :bcol. ill. ;c23 cm. 2aA peek-a-board book. aCover title. 0aToy and movable booksxSpecimens. 1aDogsxFiction. 1aHide-and-seekxFiction. 1aStories in rhyme. 1aCatsxFiction. 1aToy and movable books. aLVLcEASYkE McCue bMAINp32000000024479r1.74u6305u203701245 2200385 450000100060000000300040000600500170001000800390002701000170006602000150008303500160009803900180011404000200013205000240015208200120017609000150018810000360020324500580023925000120029726000370030930000350034651000320038151000520041351000140046552001280047952100340060752100090064165000250065065000230067565000250069865000230072394200270074695200430077395200430081643491LVL19990313000000.0820903s1983 nyua j 00111 eng a82017715 /AC a0525440380 aflb006220080 a2b3c3d3e3 aDLCcDLCdICrlF0 aPZ7.P6335bIae 19830 219a[E] c1127d112710aPinkwater, Daniel Manus,d1941-10aI was a second grade werewolf /cby Daniel Pinkwater. a1st ed.0 aNew York :bE.P. Dutton,cc1983. a[32] p. :bcol. ill. ;c24 cm.0 aChildren's Catalog (Wilson)0 aElementary School Library Collection (Bro-Dart)0 aBooklist. aThough he has turned into a werewolf, his parents, teacher, and classmates still see him as Lawrence Talbot, second-grader.0 a2.8bFollett Library Book Co.2 aK-3. 1aWerewolvesxFiction. 1aMonstersxFiction. 7aWerewolvesxFiction. 7aMonstersxFiction. aLVLcEASYkE Pinkwater bMAINp32000000018687r5.70u6307u2038 bMAINp31000000003176r5.70u6308u203900361 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000210009824500290011994200240014895200430017257529LVL19990220000000.0950323s19uu 000 0 eng d a0553154532 c1128d11281 aSaunders, Susan.10aHaunted Halloween party. aLVLcJFkJ Saunders bMAINp31000000006571r4.29u6309u204000976 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000260013724501110016326000430027430000350031750000410035252001760039365000220056965000220059170000290061394200250064295200430066764548LVL20000912044341.0860220s1986 nyua j 00011 eng a86002543 a0805000070 a 86002543 c1129d1129 aE Scheidl10aScheidl, Gerda Marie.10aGeorge's garden /cGerda Marie Scheidl ; illustrated by Bernadette Watts ; translated by Rosemary Lanning.0 aNew York :bNorth-South Books,cc1986. a[28] p. :bcol. ill. ;c29 cm. aTranslation of: Der kleine GÈartner. aThe flowers, especially one small daisy, in George's small and unruly garden become unhappy with their modest surroundings when they hear of the splendid garden next door. 1aFlowersxFiction. 1aGardensxFiction.11aWatts, Bernadette,eill. aLVLcEASYkE Scheidl bMAINp31000000003460r5.00u6310u204100800 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200190012310000210014224500680016325000120023126000420024330000210028550000220030670000320032894200270036095200610038795200430044895200430049129454LVL19990320000000.0921014s1993 nyu 00011 eng a92054992 a0345381734 a 92054992 c1130d1130 aSF McCaf- frey10aMcCaffrey, Anne.10aPowers that be /cAnne McCaffrey and Elizabeth Ann Scarborough. a1st ed.0 aNew York :bBallantine Books,cc1993. a311 p. ;c24 cm. a"A Del Rey book."10aScarborough, Elizabeth Ann. aLVLcSCIkSF McCaffrey bMAINdMAINp32000000063709r2.00u6311u2042v2003-09-01 bMAINp31000000059221r2.00u6312u2043 bLB1p33000000021765r11.51u6313u204400329 2200133 450000100060000000300040000600500170001000800410002709000150006810000300008324500150011394200240012895200430015250511LVL19990312000000.0940502s19xx xxu 00010 eng d c1131d11311 aFleming, Ian,d1908-1964.10aDoctor No. aLVLcAFkAF Fleming bMAINp32000000009859r5.95u6314u204501091 2200337 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000220013724500700015925000120022926000380024130000260027950000200030550400300032560000340035565000420038994200240043195200430045595200430049895200420054195200420058395200430062595200430066895200420071143493LVL20030303090549.0831021s1984 nyu b 00110beng a83048798 a0060153040 a 83048798 c1132d1132 aB Lincoln10aOates, Stephen B.10aAbraham Lincoln, the man behind the myths /cby Stephen B. Oates. a1st ed.0 aNew York :bHarper & Row,cc1984. axiv, 224 p. ;c22 cm. aIncludes index. aBibliography: p. 191-214.10aLincoln, Abraham,d1809-1865. 0aPresidentsxBiography.zUnited States aLVLcBIOkB Lincoln bMAINp32000000032811r6.95u6315u2046 bMAINp32000000044235r7.08u6316u2047 bLB1p36000000005487r7.08u6317u2048 bLB2p34000000002618r6.95u6318u2049 bMAINp31000000038428r6.95u6319u2050 bMAINp31000000046139r7.08u6320u2051 bLB1p33000000017399r7.08u6321u205200921 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000260013824500840016426000420024830000330029044000290032350000340035250400590038665000230044565000270046870000230049594200250051895200440054395200440058750512LVL19990312000000.0930621s1994 nyua j b 00110 eng a93024398 a1568471025 a 93024398 c1133d1133 aJNF 690 Wo10aWood, Richard,d1949-14aThe builder through history /cRichard Wood ; with illustrations by Mark Peppe.0 aNew York :bThomson Learning,cc1994. a48 p. :bcol. ill. ;c28 cm. 0aJourney through history. a"A Wayland book"--Cover p. 4. aIncludes bibliographical references (p. 46) and index. 1aBuildingxHistory. 1aArchitecturexHistory.11aPeppe, Mark,eill. aLVLcJNFkJNF 690 Wo bMAINp32000000062008r11.96u6322u2053 bMAINp31000000058003r11.96u6323u205400940 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009409000150011009200160012510000250014124500800016626000530024630000580029950400640035760000390042165000370046065100300049765100250052794200250055295200430057795200420062029456LVL20020130102034.0930728c19931991mouaf b 00110beng a90046379 a0836280172 anpl93000647 c1134d1134 a972.9106 Ge10aGeyer, Georgie Anne.10aGuerrilla prince :bthe untold story of Fidel Castro /cGeorgie Anne Geyer.0 aKansas City :bAndrews and McMeel,c1993, c1991. axxi, 458 p., [8] p. of plates :bill. ;c23 cm. ; pa. aIncludes bibliographical references (p. 412-445) and index.10aCastro, Fidel,d1927-xPsychology. 0aHeads of statexBiography.zCuba 0aCubaxHistoryy1933-1959. 0aCubaxHistoryy1959- aLVLcNFk972.9106 Ge bMAINp31000000043923r7.64u6324u2055 bLB1p33000000016018r7.64u6325u205600536 2200205 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000290013424500360016326000440019930000210024394200230026495200430028743494LVL20020807143706.0901220s1991 nyu 00011 eng a90027673 a0312059787 a 90027673 c1135d1135 aVeryan10aVeryan, Patricia,d1923-10aTime's fool /cPatricia Veryan.0 aNew York :bSt. Martin's Press,cc1991. a375 p. ;c22 cm. aLVLcAFkAF Veryan bLB1p33000000011682r11.77u6327u205700856 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007904000130009405000220010708200080012909000150013711000340015224501680018626000570035430000290041150000200044050400280046065000130048874000250050194200210052695200430054757532LVL19990220000000.0781027s1979 dcua b 00100 eng a78025601 a0871871424 aDLCcDLC0 aQ158.5.bC66 1979 a500 c1136d113620aCongressional Quarterly, inc.10aEditorial research reports on advances in science :btimely reports to keep journalists, scholars, and the public abreast of developing issues, events, and trends.0 aWashington :bCongressional Quarterly, inc.,cc1979. a188 p. :bill. ;c23 cm. aIncludes index. aBibliography: p. [182]. 0aScience.01aAdvances in science. aLVLcNFk500 CON bMAINp31000000018850r6.95u6328u205800778 2200253 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200190011410000330013324500560016624600170022224600210023926000390026030000280029994200270032795200420035495200430039695200420043995200430048143495LVL20011116141605.0960314s1996 nyu 00011 eng d a0843939494 anpl96000602 c1137d1137 aW Over- holser10aOverholser, Wayne D.,d1906-10aBunch grass/Sun on the wall /cWayne D. Overholser.1 aBunch grass.1 aSun on the wall.0 aNew York :bLeisure Books,cc1996. a382 p. ;c18 cm. ;dpa. aLVLcWESkW Overholser bLB2p37000000003124r2.89u6330u2059 bMAINp32000000063407r2.89u6331u2060 bLB2p34000000013339r2.89u6332u2061 bMAINp31000000058923r2.89u6333u206200320 2200121 450000100060000000300040000600500170001000800410002709000150006824500490008394200290013295200370016150514LVL19990312000000.0930426s19xx xxu 00010 eng d c1138d113810aMotor's factory shop manual :b5th ed. 1941. aLVLcREFkREF 629.28 MOT bMAINp32000000022432u6335u206301461 2200361 450000100060000000300040000600500170001000700100002700800410003702000150007803500160009303700360010909000150014509200110016024501550017126000590032630000540038544000200043950000710045950000530053050600310058351101050061452001660071952100130088553800090089865000190090770000320092670000210095870000320097970000250101194200200103695200430105629458LVL19991013000000.0vf bbahom931028r19871940cau110 g vleng d a1559602066 avid93000507 a2093bTurner Home Entertainment c1139d1139 aAV Abe00aAbe Lincoln in IllinoiscRKO Radio Pictures; produced by Max Gordon; directed by John Cromwell ; screenplay by Robert E. Sherwood.h[videorecording] / a[New York] :bTurner Home Entertainment,c1987, c1940. a1 videocassette (110 min.) :bsd., b&w ;c1/2 in. 0aRKO collection. aBased on the play by Robert Sherwood; adaptation by Grover Jones.. aOriginally released as a motion picture in 1940. aFor private home use only.0 aRaymond Massey, Gene Lockhart, Ruth Gordon, Mary Howard, Minor Watson, Alan Baxter, Harvey Stephens. aMassey portrays Lincoln in this story of his early life leading up to his political career. Shows his involvement with his two loves, Ann Rutledge and Mary Todd. aGeneral. aVHS. 0aFeature films.11aCromwell, John,d1888-1979.11aMassey, Raymond.11aLockhart, Gene,d1891-1957.11aGordon, Ruth,d1896- aLVLcAVkAV Abe bLB1p33000000004420r15.03u6336u206400541 2200193 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200180011210000250013024500530015526000470020830000230025594200260027895200430030443496LVL20010804214047.0911125c19921948nyu 00011 eng a0060923407 aonv90003663 c1140d1140 aM Went- worth1 aWentworth, Patricia.14aThe case of William Smith /cPatricia Wentworth. aNew York :bHarperPerennial,c1992, c1948. a260 p. ;c21 cm.;. aLVLcMYSkM Wentworth bMAINp32000000035942r4.64u6337u206500353 2200133 450000100060000000300040000600500170001000800410002709000150006810000340008324500340011794200250015195200430017650515LVL19990312000000.0920714s19xx xxu 00010 eng d c1141d11411 aChristie, Agatha,d1890-1976.10aMurder on the Orient Express. aLVLcMYSkM Christie bMAINp32000000026575r3.95u6340u206600815 2200253 450000100060000000300040000600500170001000800410002701000130006809000150008109200150009610000210011124500570013226000410018930000310023052001150026165000260037665000210040265000240042365000200044770000240046794200260049195200440051764553LVL19990217000000.0950215s19xx xxu 00010 eng d a87026416 c1142d1142 aE Weinberg10aWeinberg, Larry.14aThe Forgetful bears help Santa /cby Larry Weinberg.0 aNew York :bScholastic Inc.,cc1988. a[32] p. :billus.,c21 cm. aWhen Mr. Forgetful Bear sees Santa's clothes and reindeer, he forgets who he is and delivers toys to children. 7aSanta ClausxFiction. 7aMemoryxFiction. 7aChristmasxFiction. 7aBearsxFiction.11aDegen, Bruce,eill. aLVLcEASYkE Weinberg bMAINp31000000004008r11.95u6341u206700502 2200193 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200130011210000260012524500340015126000320018530000270021794200220024495200420026629459LVL20020427091911.0900223s1991 nyu 00011 eng a055328990X anpl95000230 c1143d1143 aAF Brown10aBrown, Sandra,d1948-10aTexas! Chase /cSandra Brown.0 aNew York :bBantam,cc1991. a329 p. ;c18 cm. ; pa. aLVLcAFkAF Brown bLB2p37000000020886r4.99u6342u206800728 2200241 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200130011410000390012724500660016626000450023230000280027750000320030565000440033765000220038170000180040394200220042195200430044336478LVL19990319000000.0951206r19811961nyu 00010 eng d a0140441077 anpl95001728 c1144d1144 a320.1 Ma10aMachiavelli, NiccolÁo,d1469-1527.14aThe prince /ctranslated with an introduction by George Bull.0 aNew York :bPenguin Books,c1981, c1961. a153 p. ;c18 cm. ;dpa. aTranslation of Il principe. 0aPolitical sciencexEarly works to 1800. 0aPolitical ethics.10aBull, George. aLVLcNFk320.1 Ma bMAINp32000000061280r3.50u6344u206900671 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200200012310000220014324500380016525000200020326000450022330000210026865000470028965000220033694200270035895200440038550516LVL20021011143116.0951024r1996 meu d 00011 eng a95047386 a0786206098 a 95047386 c1145d1145 aLP Water- house10aWaterhouse, Jane.10aGraven images /cJane Waterhouse. aLarge print ed.0 aThorndike, ME :bThorndike Press,c1996. a502 p. ;c22 cm. 0aWomen journalistsxFiction.zUnited States 0aLarge type books. aLVLcLPkLP WATERHOUSE bMAINp31000000058778r11.98u6345u207000531 2200205 450000100060000000300040000600500170001000800390002701000190006602000150008509000150010009200150011510000200013024500340015026000540018430000210023850000200025965000220027994200240030157535LVL20030325103442.0770308c19771972mau d 00011 eng a77003686 //r88 a0893400610 c1146d1146 aLP Lovesey10aLovesey, Peter.10aAbracadaver /cPeter Lovesey.0 aSouth Yarmouth, Mass. :bJ. Curley,c1977, c1972. a405 p. ;c22 cm. aLarge print ed. 0aLarge type books. aLVLcLPkLP Lovesay00920 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200180012310000220014124500710016326000480023430000320028252001640031465000190047865000190049770000260051694200260054295200430056895200430061136479LVL19990319000000.0880622c19891988nyua j 00011 eng a88020359 a0517571137 a 88020359 c1147d1147 aJ King- Smith2 aKing-Smith, Dick.10aMartin's mice /cDick King-Smith ; illustrations by Jez Alborough. aNew York :bCrown Publishers,c1989, c1988. av, 122 p. :bill. ;c21 cm. aA farm cat who doesn't want to catch mice keeps a family of them as pets in the barn; but then he is given away to a townswoman and acquires a new perspective. 1aCatsxFiction. 1aMicexFiction.11aAlborough, Jez,eill. aLVLcJFkJ King-Smith bMAINp32000000035816r6.95u6347u2071 bMAINp32000000035851r8.06u6348u207201206 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000250014024501060016526000400027130000350031150002440034652000820059065000170067265000280068970000280071794200270074595200430077295200590081595200420087443498LVL19990313000000.0880706s1992 nyua j 00010 eng a88022411 a0399215816 a 88022411 c1148d1148 aJNF 398.2 Sa20aSan Souci, Robert D.14aThe Tsar's promise :ba Russsian tale /cretold by Robert D. San Souci ; illustrated by Lauren Mills.0 aNew York :bPhilomel Books,cc1992. a[32] p. :bcol. ill. ;c29 cm. a"Inspired by 'King Kojata' in Andrew Lang's classic The Green Fairy book, first published in London in 1893. The author has also drawn on other versions of the tale, including Slavic, Russian, and English, to create this book"--T.p. verso. aThe Tsar's son outwits a powerful demon with the aid of a beautiful princess. 1aFairy tales. 1aFolklorezSoviet Union.11aMills, Lauren A.,eill. aLVLcJNFkJNF 398.2 Sa bMAINp32000000037041r8.82u6349u2073 bLB2dLB2p37000000009994r8.82u6350u2074v2004-12-11 bLB1p33000000014682r8.82u6351u207500339 2200133 450000100060000000300040000600500170001000800410002709000150006810000280008324500300011194200210014195200430016264555LVL19990217000000.0950324s19uu 000 0 eng d c1149d11491 aGrey, Zane,d1872-1939.14aThe spirit of the border. aLVLcAFkAF Grey bMAINp31000000029218r5.00u6352u207600753 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200160012310000300013924500310016925000120020026000500021230000210026244000390028365000490032265100590037194200250043095200440045536480LVL20030506135555.0920611s1993 nyu 00011 eng a92053344 a0060177136 a 92053344 c1150d1150 aAF Cornwell1 aCornwell, Bernard,d1944-10aRebel /cBernard Cornwell. a1st ed. aNew York :bHarperCollins Publishers,cc1993. a308 p. ;c24 cm. 4aThe Starbuck chronicles ;vvol. 1. 0aBull Run, 1st Battle of, Va., 1861xFiction. 0aUnited StatesxHistoryxFiction.yCivil War, 1861-1865 aLVLcAFkAF Cornwell bMAINp32000000038006r12.00u6354u207700722 2200253 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011010000190012524500810014425000120022526000450023730000280028265000240031065000120033465000130034694200220035995200440038195200430042543499LVL19990313000000.0930513s1989 gau 00010 eng d a88083935 a0929264126 a 88083935 c1151d115110aShelnutt, Eve.14aThe writing room :bkeys to the craft of fiction and poetry /cEve Shelnutt. a1st ed.0 aAtlanta, GA :bLongstreet Press,cc1989. a320 p. ;c24 cm. ;dpa. 0aFictionxTechnique. 0aPoetry. 0aPoetics. aLVLcNFk808.3 Sh bMAINp32000000039434r15.00u6355u2078 bLB1p33000000029631r15.00u6356u207900480 2200193 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200130011410000160012724500360014325000200017926000440019930000210024394200220026450518LVL20021223153826.0920720c19781974enk d 00011 eng d a0708900968 aonv90002853 c1152d1152 aLP Foley1 aFoley, Rae.10aMurder by bequest /cRae Foley. aLarge print ed. aLeicester :bUlverscroft,c1978, c1974. a323 p. ;c23 cm. aLVLcLPkLP Foley00768 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010824500820012326000490020530000480025450400260030265000240032870000200035294200230037295200440039595200440043995200430048329463LVL19990616000000.0871119s1987 coua b 00000 eng a87080522 a0934026262 a 87080522 c1153d115300aHomespun, handknit :bcaps, socks, mittens & gloves /cedited by Linda Ligon.0 aLoveland, Colo. :bInterweave Press,cc1987. a160 p. :bill. (some col.) ;c23 cm. ;dpa. aBibliography: p. 160. 0aKnittingxPatterns.10aLigon, Linda C. aLVLcNFk746.92 Ho bMAINp32000000054378r15.00u6358u2080 bMAINp32000000082423r15.00u6359u2081 bLB1p36000000010300r15.00u6360u208201137 2200313 450000100060000000300040000600500170001000700090002700800410003603500160007709000150009309200170010824500830012526000410020830000560024944000290030550500850033452100140041953800160043365000220044970000450047170000380051670000690055494200270062395200430065095200430069395200440073695200430078036482LVL20000911201519.0vd cbaho930427s1989 ctu038 b 0 0vaeng d avid93000069 c1154d1154 aAVJ Corduroy00aCorduroy and other bear stories /c[compiled by] CC Studios.h[videorecording]0 aWeston, CT :bCC Home Video,cc1989. a1 videocassette ; (38 min.) :bsd., col, ;c1/2 in. 0aChildren's Circle ;v10.0 aCorduroy / D. Freeman -- Panama / Janosch -- Blueberries for Sal / R. McCloskey. aAll ages. aVHS Format. 0aChildren's films.11aFreeman, DonhVideorecording.tCorduroy.11aJanoschhVideorecording.tPanama.11aMcCloskey, Robert,d1914-hVideorecording.tBlueberries for Sal. aLVLcAVJkAVJ Corduroy bLB1p36000000005549r19.95u6361u2083 bLB2p34000000011982r14.95u6362u2084 bMAINp31000000030388r22.50u6363u2085 bMAINp32000000000195r0.15u6364u208600915 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200190012324500300014226000460017230000330021844000290025150000440028050000200032452001140034465000200045894200290047895200440050795200430055195200430059443501LVL19990313000000.0870723s1988 mnua j 00110 eng a87020688 a0817231129 a 87020688 c1155d1155 aJNF 591.909 An10aAnimals in the mountains.0 aMilwaukee :bRaintree Publishers,cc1988. a48 p. :bcol. ill. ;c26 cm. 0aAnimals and their homes. aTranslation of: Animaux de la montagne. aIncludes index. aFocuses on sheep, goats, lions, birds, and other animals that reside in the mountainous regions of the world. 1aAlpine animals. aLVLcJNFkJNF 591.909 An bMAINp32000000040217r14.65u6365u2087 bLB2p34000000008460r14.96u6366u2088 bLB1p33000000015756r14.65u6367u208900687 2200241 450000100060000000300040000600500170001000800390002701000130006604000130007905000190009208200210011109000150013210000290014724500910017625000140026726000420028130000190032335000110034270000260035394200230037995200430040257539LVL19990220000000.0720501s1972 nyu 00000aeng a78161313 aDLCcDLC0 aPN2598.L56bA3 a792/.028/0924aB c1156d115611aLillie, Beatrice,d1898-10aEvery other inch a lady.cAided and abetted by John Philip. Written with James Brough. a[1st ed.]0 aGarden City, N.Y.,bDoubleday,c1972. a360 p.c22 cm. a$7.95.10aBrough, James,d1918- aLVLcBIOkB Lillie bMAINp31000000022100r4.93u6368u209000552 2200193 450000100060000000300040000600500170001000800410002702000150006809000150008309200160009810000180011424500480013226000350018030000510021570000230026694200260028995200430031564558LVL19990217000000.0910814s19xx xxu 00010 eng d a0394891171 c1157d1157 aKit Cameron10aCameron, Ann.10aJulian's glorious summer /cby Ann Cameron.0 aNew YorkbRandom Housecc1987. a1 Kit; 1 cassette; 1 book.bill.c20 cm. ;pap.11aLeader, Dora ;ill. aLVLcKITkKit Cameron bMAINp31000000012191r2.67u6369u209100854 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000220013524500450015726000310020230000210023350000370025465000530029165000370034494200210038195200430040295200440044595200440048995200430053329464LVL20010804214040.0960705s1996 nyu 00011 eng a96001409 a0312890397 a 96001409 c1158d1158 aAF Gear10aGear, W. Michael.14aThe morning river /cby W. Michael Gear.0 aNew York :bForge,cc1996. a382 p. ;c25 cm. a"A Tom Doherty Associates book." 0aFrontier and pioneer lifexFiction.zWest (U.S.) 0aYoung menxFiction.zWest (U.S.) aLVLcAFkAF Gear bLB2p37000000013586r14.72u6370u2092 bMAINp32000000069278r14.72u6371u2093 bMAINp31000000060725r14.72u6372u2094 bLB1p33000000026139r14.72u6373u209500504 2200193 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200150011410000190012924500360014826000360018430000230022094200240024395200430026743502LVL19990313000000.0930811s1991 nyu j 00011 eng d a0590449419 anpl93000824 c1159d1159 aYA Athkins1 aAthkins, D. E.10aSister dearest /cD.E. Athkins. aNew York :bScholastic,cc1991. a106 p. ;c17 cm.;. aLVLcYAkYA Athkins bMAINp31000000044153r2.31u6374u209600732 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007904000130009405000190010708200110012609000150013710000190015224500870017126000370025830000250029550400410032065000130036170000360037494200250041095200430043564559LVL19990217000000.0790316s1979 nyu 00010 eng a79011711 a0670776084 aDLCcDLC0 aBF637.S8bS467 a158/.1 c1160d116010aSher, Barbara.10aWishcraft :bhow to get what you really want /cBarbara Sher, with Annie Gottlieb.0 aNew York :bViking Press,c1979. axv, 278 p. ;c24 cm. aIncludes bibliographical references. 0aSuccess.10aGottlieb, Annie,ejoint author. aLVLcNFk331.128 SHE bMAINp31000000014093r4.17u6375u209700908 2200301 450000100060000000300040000600500170001000700150002700800410004202000150008303500160009803700190011409000150013309200140014810000250016224500900018726000440027730000490032150000170037051100220038765000190040965000290042865000180045770000230047594200230049895200430052195200420056429465LVL19990320000000.0ss lmnjlc ce940622s1994 caunnn l eng d a1561700843 avid93001142 a347bHay House c1161d1161 aAC 299 Ja10aJampolsky, Gerald G.10aWake-up callscby Gerald G. Jampolsky and Diane V. Cirincione. .h[sound recording] /0 aCarson, CA :bHay House, Inc.,cp1994.. a2 sound cassettes (2 hrs.) :banalog., mono. aUnabridged..3 aRead by authors.. 0aTalking Books. 0aPeace of mindxReligion. 0aAffirmations.10aCirincione, Diane. aLVLcACkAC 299 Ja bMAINp31000000048236r9.35u6376u2098 bLB1p33000000018918r9.35u6377u209900624 2200217 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200130011410000220012724500430014926000360019230000280022894200230025695200430027995200420032295200420036443503LVL20010808185429.0930927s1993 nyu 00011 eng d a0515111635 anpl93001187 c1162d1162 aM Frazer10aFrazer, Margaret.14aThe servant's tale /cMargaret Frazer.0 aNew York :bJove Books,cc1993. a234 p. ;c17 cm. ;dpa. aLVLcMYSkM Frazer bMAINp32000000042425r2.61u6378u2100 bLB2p34000000006243r2.61u6379u2101 bLB2p37000000008183r2.61u6380u210200879 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009404000200011005000310013008200130016109000150017410000210018924500630021025000120027326000510028530000210033651000140035752001460037152100170051794200240053495200430055850522LVL19990312000000.0780130s1978 nyu 00011 eng a77091474 a0151152780 aflb00088404 aDLCcDLCdICrlF0 aPZ4.D3792aPS3554.E472bBy a813/.5/4 c1163d116310aDeMille, Nelson.10aBy the rivers of Babylon :ba novel /cby Nelson De Mille. a1st ed.0 aNew York :bHarcourt Brace Jovanovich,cc1978. a391 p. ;c24 cm.0 aBooklist. aIsraeli military and civilian personnel race against time to counter a plot devised by a Palestinian terrorist who intends to destroy Israel.2 aYoung Adult. aLVLcAFkAF DeMille bMAINp31000000015264r6.00u6381u210301054 2200325 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200160012310000220013924500760016125000240023726000570026130000210031844000280033952001310036765000300049865000200052865000220054865000270057065000220059765000220061970000190064194200250066095200430068529466LVL19990320000000.0890627r19891984ctu jd 00011 eng a89036817 a1559050144 a 89036817 c1164d1164 aLP J Pascal1 aPascal, Francine.10aAll night long /cwritten by Kate William ; created by Francine Pascal. a1st Grey Castle ed. aLakeville, Conn. :bGrey Castle Press,c1989, c1984. a117 p. ;c24 cm. 0aSweet Valley High ;v5. aElizabeth worries when her twin Jessica sneaks off to a college beach party with her latest boyfriend and stays out all night. 1aConduct of lifexFiction. 1aTwinsxFiction. 1aSistersxFiction. 1aHigh schoolsxFiction. 1aSchoolsxFiction. 1aLarge type books.10aWilliam, Kate. aLVLcLPkLP J Pascal bMAINp32000000049356r6.75u6382u210400590 2200205 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200160012310000430013924500710018226000370025330000250029094200250031595200440034043504LVL19990313000000.0921102s1994 nyu 00011 eng a92040010 a0393034410 a 92040010 c1165d1165 aAF Turgenev1 aTurgenev, Ivan Sergeevich,d1818-1883.10aFathers and sons /cIvan Turgenev ; translated by Michael R. Katz. aNew York :bW.W. Norton,cc1994. aix, 157 p. ;c22 cm. aLVLcAFkAF Turgenev bMAINp32000000043345r16.25u6383u210500568 2200205 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200130011210000430012524500420016825000200021026000480023030000210027894200200029995200430031957542LVL19990220000000.0910423 19881970enk d 00011 eng a0745108164 aonv90000545 c1166d1166 aL.P. Nye10aNye, Nelson C.d1907-q(Nelson Coral),10aHellbound for Ballarat /cNelson Nye. aLarge print ed. aBath :bLythway/Chivers Press,cc1988,1970. a201 p. ;c22 cm. aLVLcLPkLP Nye bMAINp31000000035641r8.95u6384u210601451 2200409 450000100060000000300040000600500170001000800390002701000170006602000360008303500160011903900180013504000200015305000230017308200160019609000150021210000230022724500710025026000510032130000330037244000350040550000490044050000200048951000320050951000140054151000280055552002200058352100340080352100090083765000350084665000140088165000140089570000320090970000280094194200280096995200440099764561LVL19990217000000.0840315s1984 mnua j 00110 eng a84005760 /AC a0822514591 (lib. bdg.) :c$8.95 aflb012343010 a2b3c3d3e3 aDLCcDLCdICrlF0 aSB211.P8bJ63 19840 219a635/.21 c1167d116710aJohnson, Sylvia A.10aPotatoes /cby Sylvia A. Johnson ; photographs by Masaharu Suzuki.0 aMinneapolis :bLerner Publications Co.,c1984. a47 p. :bcol. ill. ;c23 cm. 2aA Lerner natural science book. aAdaptation of: Jagaimo / by Masaharu Suzuki. aIncludes index.0 aChildren's Catalog (Wilson)0 aBooklist.0 aSchool Library Journal. aDescribes the development of the potato, including information on planting seed potatoes, sprouting, the growth of the plant and its underground tubers, and the role played by tubers in the life of the potato plant.0 a6.6bFollett Library Book Co.2 a5-8. 0aPotatoesxJuvenile literature. 1aPotatoes. 7aPotatoes.11aSuzuki, Masaharu.tJagaimo.11aSuzuki, Masaharu,eill. aLVLcJNFkJNF 635.21 Jo bMAINp31000000030952r10.95u6385u210700818 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000220013624500790015826000800023730000260031750000790034365000460042265000420046894200220051095200440053229467LVL19990320000000.0820226r19821980nyu 00010 eng a82004171 a0517381354 a 82004171 c1168d1168 a745.6 Pa1 aParker, Muriel M.10aCalligraphy, a practical handbook for the beginner /cby Muriel M. Parker. aNew York :bBonanza Books :bDistributed by Crown Publishers,c1982, c1980. a120 p. ;c22 x 29 cm. aReprint. Originally published: Formal & informal italic calligraphy. 1980. 0aWriting, ItalicxHandbooks, manuals, etc. 0aCalligraphyxHandbooks, manuals, etc. aLVLcNFk745.6 Pa bMAINp32000000053919r10.00u6386u210800596 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000210013724500440015826000480020230000320025065000300028294200230031295200430033529468LVL20030607135950.0851127s1986 nyu 00010 eng a85029992 a0517884305 a 85029992 c1169d1169 a795.41 Ro10aRoot, William S.10aCommonsense bidding /cWilliam S. Root.0 aNew York :bCrown Trade Paperbacks,cc1986. aix, 216 p. ;c26 cm. ;dpa. 0aContract bridgexBidding. aLVLcNFk795.41 Ro bMAINp32000000057044r9.00u6388u210900645 2200181 4500020001500000090001500015100001900030245004900049260005200098300005100150500001600201511002100217520011800238650001900356700002200375942002200397952004400419 a078870446X c1170d117010aWoods, Stuart.10aChokecby Stuart Woods.h[sound recording] /0 aPrince Frederick, MD :bRecorded Books,cp1995. a7 sound cassettes (9.75 hrs.) :banalog, mono. aUnabridged.3 aRichard Ferrone. aChuck Chandler, a tennis pro finds himself tangled in a treacherous web of scandal, Mafia secrets, and deception. 0aTalking Books.10aFerrone, Richard. aLVLcACkAC Woods bMAINp32000000097965r58.00u6392u211001240 2200361 450000100060000000300040000600500170001000800390002701000160006603500160008204000200009805000220011809000150014010000320015524500590018726000330024630000260027951000320030551000520033751000250038952001820041452100340059652100090063065000190063965000250065865000250068365000190070865100200072765100200074794200260076795200430079395200420083650525LVL19990312000000.0730313s1958 nyua j 00000 eng a58010917 /L aflb00106200 aDLCcDLCdICrlF0 aPZ10.3.C629bCat5 c1171d1171 0aCoatsworth, Elizabeth Jane.14aThe cat who went to heaven.cIllustrated by Lynd Ward.0 aNew York,bMacmillanc[1958] a62 p.billus.c24 cm.0 aChildren's Catalog (Wilson)0 aElementary School Library Collection (Bro-Dart)0 aNewbery Medal/Honor. aThe cat "Good Fortune" watches the Japanese artist as he paints the animals going one by one to do homage to the Buddha. At long last, a miracle brings the cat into the picture.0 a6.6bFollett Library Book Co.2 a5-8. 7aCatsxFiction. 7aNewbery Medal books. 0aNewbery medal books. 0aCatsxFiction. 7aJapanxFiction. 0aJapanxFiction. aLVLcJFkJ Coatsworth bMAINp32000000014301r7.17u6393u2111 bLB1p33000000030170r6.95u6395u211200724 2200253 450000100060000000300040000600500170001000800390002701000130006602000400007904000130011905000250013208200160015709000150017310000280018824500280021625000200024426000530026430000210031750000440033865000220038294200220040495200440042664563LVL19990217000000.0860618c19861962meu d 00011 eng a86014404 a089621737X (lg. print : alk. paper) aDLCcDLC1 aPS3511.A87bW37 19860 219a813/.52 c1172d117210aBrand, Max,d1892-1944.10aWar party /cMax Brand. aLarge print ed.0 aThorndike, Me. :bThorndike Press,c1986, c1962. a329 p. ;c22 cm. a"Thorndike large print"--P. 4 of cover. 0aLarge type books. aLVLcWESkW Brand bMAINp31000000010171r12.95u6396u211301212 2200325 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012324500770013425000250021126000370023630000290027350000580030250000860036052001950044665000190064165000170066065000140067765000320069170000190072374000370074294200200077995200440079995200430084329469LVL19990320000000.0950315r19951978nyua j 00001 eng a95012135 a0786830867 a 95012135 c1173d1173 aJ Walt00aWalt Disney's treasury of children's classics /cedited by Darlene Geis. a1st Disney Press ed.0 aNew York :bDisney Press,c1995. a306 p. :bill. ;c29 cm. aOriginally published by: Harry N. Abrams, Inc., 1978. a"Illustrated with original animation art and stills from the great Disney films." aRetells seventeen well-known fairy tales, folk tales, and short stories illustrated with scenes from Walt Disney films. Includes a behind-the-scenes look at the production of animated films. 1aShort stories. 1aFairy tales. 1aFolklore. 1aAnimation (Cinematography).10aGeis, Darlene.01aTreasury of children's classics. aLVLcJFkJ Walt bMAINp31000000056238r14.67u6397u2114 bLB1p33000000023590r14.67u6398u211500595 2200217 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200130011210000160012524500290014126000440017030000260021444000290024094200220026995200430029195200430033436488LVL19990319000000.0951207s1994 nyu 00011 eng a0671874527 anpl95001738 c1174d1174 aYA Smith10aSmith, L.J.14aThe chase /cL.J. Smith.0 aNew York :bArchway Paperbacks,cc1994. a226 p. ;c18 cm.dpa. 4aThe forbidden game ;v2. aLVLcYAkYA Smith bMAINp32000000061251r3.61u6399u2116 bMAINp31000000057695r3.61u6400u211700764 2200253 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200130011410000440012724500370017126000380020830000280024644000170027450000280029194200220031995200420034195200430038395200420042695200420046843507LVL20030520144545.0960316s1996 nyu 00011 eng d a0671894307 anpl96000624 c1175d1175 aYA Stine10aStine, R. L.d1943-q(Robert Lawrence),14aThe perfect date /cR. L. Stine.0 aNew York :bPocket Books,cc1996. a147 p. ;c18 cm. ;dpa. 0aFear Street. a"An Archway Paperback." aLVLcYAkYA Stine bLB2p37000000006126r2.35u6401u2118 bMAINp32000000063460r2.35u6402u2119 bLB2p34000000013355r2.35u6403u2120 bLB1p33000000025130r2.35u6404u212100742 2200241 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009910000440011424500380015826000360019630000280023244000220026050000260028294200210030895200430032995200430037295200430041595200420045829470LVL20020225154429.0960802s1995 nyu j 00011 eng d a0590483471 anpl96001450 c1176d117610aStine, R. L.d1943-q(Robert Lawrence),10aMonster blood III /cR. L. Stine.0 aNew York :bScholastic,cc1995. a126 p. ;c20 cm. ;dpa. 0aGoosebumps ;v29. a"An Apple Paperback." aLVLcJFkJ Stine bMAINp32000000065949r3.99u6405u2122 bMAINp32000000075047r3.99u6406u2123 bMAINp31000000098885r3.50u6407u2124 bLB1p33000000033119r3.50u6408u212500903 2200241 450000100060000000300040000600500170001000800390002702000140006603500160008009000150009609200150011110000260012624500710015226001090022330000560033250400640038865000590045265000400051165000430055194200240059495200430061836489LVL20030531105735.0920522s1992 nyuabf b 00110 eng a156025071 anpl94000027 c1177d1177 a956.704 Cl1 aClark, Ramsey,d1927-14aThe fire this time :bU.S. war crimes in the Gulf /cRamsey Clark. aNew York, NY :aEmeryville, CA :bThunder's Mouth Press ;bDistributed by Publishers Group West,cc1992. ail, 325, [16] p. of plates :bill., map ;c23 cm.;. aIncludes bibliographical references (p. 293-315) and index. 0aPersian Gulf War, 1991xDestruction and pillagezIraq. 0aPersian Gulf War, 1991xAtrocities. 0aPersian Gulf War, 1991zUnited States. aLVLcNFk956.704 Cl bMAINp32000000045064r8.23u6409u212601092 2200349 450000100060000000300040000600500170001000800390002701000220006602000160008802000280010403500160013204000200014804100140016804300120018205000160019408200130021009000150022324501220023826000310036030000330039151000140042452000950043852100340053352100090056765000300057665000280060670000190063470000190065394200270067295200430069950527LVL20020911070010.0790403s1979 nyua j 00000 eng a78011824 /AC/r872 a0688221726. a0688321720b(lib. bdg.) aflb00667506 aDLCcDLCdICrlF1 aengrusgeo ae-ur---0 aPZ8.1.bG74 a398.2aE c1178d117800aGrasshopper to the rescue :ba Georgian story /ctranslation from the Russian by Bonnie Carey ; ill. by Lady McCrady.0 aNew York :bMorrow,c1979. a32 p. :bcol. ill. ;c26 cm.0 aBooklist. aA cumulative tale describing a grasshopper's attempts to rescue his friend from the river.0 a3.9bFollett Library Book Co.2 aK-3. 1aFolklorezGeorgian S.S.R. 1aFolklorezSoviet Union.10aMcCrady, Lady.10aCarey, Bonnie. aLVLcJNFkJNF 398.2 Ca bMAINp32000000016556r3.25u6410u212700683 2200241 450000100060000000300040000600500170001000800390002701000130006602000250007903900180010404000130012205000270013508200160016209000150017810000270019324500450022025000120026526000750027730000210035294200250037395200430039864565LVL19990217000000.0820519s1982 nyu 00011 eng a82045398 a0385182953 :c$11.950 a2b3c3d3e3 aDLCcDLC0 aPS3563.A31898bU5 19820 219a813/.54 c1179d117910aMcMullen, Mary,d1920-10aUntil death do us part /cMary McMullen. a1st ed.0 aGarden City, N.Y. :bPublished for the Crime Club by Doubleday,c1982. a182 p. ;c22 cm. aLVLcAFkAF McMullen bMAINp31000000017419r5.00u6411u212800822 2200205 4500010001300000020001500013090001500028100004100043245013900084260006200223300002900285500003200314600005400346700002000400700002500420942002200445952004400467952004300511952006200554 a93085284 a0895775522 c1180d1180 0aDoyle, Sir Arthur Conan,d1859-1930.14aThe further adventures of Sherlock Holmes /cSir Arthur Conan Doyle; illustrations by David Johnson; afterword by Philip A. Shreffler.0 aPleasantville, NY :bReader's Digest Association,cc1993. a219 p. :bill. ;c24 cm. a"The world's best reading".10aHolmes, Sherlock (Fictitious character)xFiction.10aJohnson, David.10aShreffler, Philip A. aLVLcMYSkM Doyle bMAINp32000000062193r15.00u6412u2129 bLB1p33000000033044r15.00u6413u2130 bLB1dLB1p33000000066405r15.95u325726u2131v2005-02-0900601 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000220013824500340016025000200019426000460021430000210026065000220028194200240030395200440032736490LVL20030606141423.0931130r19941993meu d 00011 eng a93045624 a0786201649 a 93045624 c1181d1181 aLP Ritchie1 aRitchie, James A.10aKerrigan /cJames A. Ritchie. aLarge print ed. aThorndike, Me. :bThorndike Press,c1994. a281 p. ;c22 cm. 0aLarge type books. aLVLcLPkLP Ritchie bMAINp31000000047532r13.42u6414u213200786 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000340013824500950017225000200026726000460028730000210033365000520035465000360040665000220044294200240046495200440048843509LVL20030624161424.0930517c19941954meu d 00011 eng a93023967 a1560545321 a 93023967 c1182d1182 aLP Simenon1 aSimenon, Georges,d1903-1989.10aMaigret goes to school /cGeorges Simenon ; translated from the French by Daphne Woodward. aLarge print ed. aThorndike, Me. :bThorndike Press,c1994. a216 p. ;c22 cm. 0aMaigret, Jules (Fictitious character)xFiction. 0aPolicexFiction.zFrancezParis 0aLarge type books. aLVLcLPkLP Simenon bMAINp31000000047607r14.97u6415u213300766 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000160013824500330015425000120018726000310019930000440023050000570027450000200033165000250035170000380037694200240041495200620043850528LVL20020621143646.0940801s1994 inua 00110 eng a94065336 a1565297385 a 94065336 c1183d1183 a005.365 So10aSobol, Mel.10aEasy Macintosh /cMel Sobol. a2nd ed.0 aCarmel, IN :bQue,cc1994. ax, 241 p. :bcol. ill. ;c26 cm. ;dpa. aRev. ed. of: Easy Macintosh / Shelley O'Hara. c1992. aIncludes index. 0aMacintosh (Computer) 1aO'Hara, Shelley.tEasy Macintosh. aLVLcNFk005.365 So bMAINdMAINp31000000059374r11.99u6416u2134v2003-09-0100374 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000180009824500430011694200250015995200440018464566LVL19990217000000.0911204s19xx xxu 00010 eng d a0516097792 c1184d1184 aChild's Book.10aChild's book of myths and enchantment. aLVLcJNFkJNF 292 Ch bMAINp31000000006285r15.95u6417u213501192 2200325 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200110012510000210013624501230015726000430028030000470032350400640037065000530043465000720048765000590055965100230061865100470064165100230068870000250071170000220073694200200075895200440077895200440082229472LVL19990320000000.0950103s1995 nyuab b 00110 eng d a95060012 a0500050767 a 95060012 c1185d1185 a985 He10aHeyerdahl, Thor.10aPyramids of Tucume :bthe quest for Peru's forgotten city /cThor Heyerdahl, Daniel H. Sandweiss, and Alfredo Narvaez.0 aNew York :bThames and Hudson,cc1995. a240 p. :bill. (some col.), maps ;c26 cm. aIncludes bibliographical references (p. 233-235) and index. 0aIndian architecturezPeruzLambayeque (Province) 0aIndians of South AmericaxAntiquities.zPeruzLambayeque (Province) 0aExcavations (Archaeology)zPeruzLambayeque (Province) 0aTucume Site (Peru) 0aLambayeque (Peru : Province)xAntiquities. 0aPeruxAntiquities.10aSandweiss, Daniel H.10aNarvaez, Alfredo. aLVLcNFk985 He bMAINp32000000000398r17.97u6418u2136 bMAINp31000000060066r17.97u6419u213701532 2200421 450000100060000000300040000600500170001000800390002701000170006602000250008302000370010803500160014508200170016109000150017810000320019324500740022525000120029926000380031130000350034952000830038465000210046765000290048865000210051770000250053894200240056395200430058795200440063095200440067495200430071895200440076195200430080595200440084895200440089295200440093695200440098095200430102495200430106750529LVL20020717125331.0871009s1988 nyua j 00011 eng a85045829 /AC a0060209844 :c$11.95 a0060209852 (lib. bdg.) :c$11.89 aflb002979120 219aE Caines c1186d118610aCaines, Jeannette Franklin.10aI need a lunch box /cby Jeannette Caines ; pictures by Pat Cummings. a1st ed.0 aNew York :bHarper & Row,cc1988. a[32] p. :bcol. ill. ;c21 cm. aA little boy yearns for a lunch box, even though he hasn't started school yet. 1aWishesxFiction. 1aAfro-AmericansxFiction. 7aBlacksxFiction.11aCummings, Pat,eill. aLVLcEASYkE Caines bLB2p37000000022428r12.95u6420u2138 bMAINp32000000026063r11.60u6421u2139 bMAINp32000000128414r12.95u6422u2140 bLB1p36000000018874r12.95u6423u2141 bMAINp35000000010244r12.95u6424u2142 bLB2p34000000028383r12.95u6425u2143 bMAINp31000000013979r11.60u6426u2144 bMAINp31000000051299r13.40u6427u2145 bMAINp31000000051300r13.40u6428u2146 bMAINp31000000051301r13.40u6429u2147 bLB1p33000000051938r12.95u6430u2148 bLB1p33000000051939r12.95u6431u214900941 2200265 450000100060000000300040000600500170001000700100002700800410003703500160007809000150009409200140010924501600012326000610028330000550034450600310039952000390043052100130046953800090048265000380049165000420052971000370057194200230060895200440063157548LVL19990220000000.0vfucbahom941104s1987 cau030 g vleng d avid93001445 c1187d1187 aAV 788 Ho00aHow to play harmonicacHarp'n Music Publishing Co. ; produced in association with Warner Bros. Publications and Hohner Harmonicas, Inc.h[videorecording] / aHermosa Beach, CA :bHarmonica Music Publishing,cc1987. a1 videocassette (30 min.) :bsd., col. ;c1/2 in.. aFor private home use only. aElementary harmonica instructions. aGeneral. aVHS. 0aHarmonicaxInstruction and study. 0aHarmonicaxMethodsxSelf-instruction.21aHarmonica Music Publishing, Inc. aLVLcAVkAV 788 Ho bMAINp31000000030504r10.00u6432u215001110 2200349 450000100060000000300040000600500170001000800390002701000170006602000240008302000360010703500160014303900180015904000200017705000240019708200140022109000150023510000210025024500470027126000380031830000350035652001390039152100340053052100090056465000340057365000240060765000200063165000240065165000200067594200210069595200440071664567LVL19990217000000.0850207s1985 nyua j 00011 eng a85002009 /AC a039487286X :c$3.95 a0394972864 (lib. bdg.) :c$4.99 aflb001288110 a2b3c3d3e3 aDLCcDLCdICrlF0 aPZ7.H31455bCh 19850 219a[Fic] c1188d118810aHayes, Geoffrey.10aChristmas in Puttyville /cGeoffrey Hayes.0 aNew York :bRandom House,cc1985. a[32] p. :bcol. ill. ;c17 cm. aWeaver Bear and Hanna want to make money to buy a Christmas tree, but their sympathy for a poor family changes their course of action.0 a3.2bFollett Library Book Co.2 aK-3. 0aChildren's stories, American. 1aChristmasxFiction. 1aBearsxFiction. 7aChristmasxFiction. 7aBearsxFiction. aLVLcJFkJ Hayes bMAINp31000000004032r11.79u6433u215100752 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012324500520013626000470018830000350023550000200027065000230029065000270031365000150034071000210035594200220037695200440039895200440044229473LVL19990320000000.0961008s1996 vaua 00110 eng a96017861 a0783548311 a 96017861 c1189d1189 a641.5 Ti04aThe Time-Life old fashioned Christmas cookbook.0 aAlexandria, VA :bTime-Life Books,cc1996. a221 p. :bcol. illus.,c29 cm. aIncludes index. 0aChristmas cookery. 0aChristmas decorations. 0aChristmas.20aTime-Life Books. aLVLcNFk641.5 Ti bMAINp32000000067177r14.97u6434u2152 bMAINp31000000062019r14.97u6435u215302391 2200301 450000100060000000300040000600500170001000700150002700800410004202400160008303500160009903700410011503700510015609000150020709200120022224500730023426001280030730000820043550000360051750000930055350511500064651100470179651801060184365000400194965000340198994200220202395200440204536492LVL19990319000000.0sdufmngnn eu920930r1991 dcumun z eng d 1a3325104012 anav96000059 aA-22062bSony Music Special Products aRD 046-1bSmithsonian Collection of Recordings c1190d1190 aCD Folk00aFolk song Americaba 20th century revival.h[sound recording] .n1 :0 aWashington, DC :bSmithsonian Collection of Recordings :bProduced in association with Sony Music Special Products,cp1991. a1 sound disc (69 min., 29 sec.) :bdigital ;c4 3/4 in. +e1 pamphlet (6 p.). aCompact disc. Analog recording. aSmithsonian Collection of Recordings : RD 046-1 ; Sony Music Special Products : A-22062.0 aShout all over God's heaven (Fisk Jubilee Singers. 2:35) -- Jesse James (Bentley Ball. 3:02) -- Water boy (Paul Robeson. 3:11) -- All night long (Carl Sandburg. 1:17) -- Big rock candy mountain (Harry McClintock. 2:17) -- Deep river (Marian Anderson. 3:06) -- Lady gay (Buell Kazee. 3:02) -- The maid freed from the gallows (John Jacob Niles. 3:44) -- Marching to Pretoria (Josef Marais with his Bushveld Band. 2:58) -- C for conscription (Almanac Singers. 1:32) -- Goodnight Irene (Leadbelly. 1:54) -- Wayfaring stranger (American Chamber Music Group. 3:17) -- Buffalo skinners (John Lomax. 2:29) -- So long, it's been good to know you (Woody Guthrie. 3:42) -- Get thee behind me, Satan (Almanac Singers. 2:33) -- Greensleeves (Richard Dyer-Bennet. 2:28) -- The house I live in (Josh White. 2:31) -- Venezuela (Burl Ives. 2:44) -- Dark as a dungeon (Merle Travis. 2:49) -- Swing down, chariot (Golden Gate Quartet. 3:00) -- Black is the color (Jo Stafford. 2:45) -- Rock Island line (Leadbelly. 2:31) -- We will overcome (Joe Glazer and the Elm City Four. 2:31) -- Around the world medley (the Weavers. 2:58) -- Old man atom (Sam Hinton. 3:10).0 aVarious vocal and instrumental performers. aRecorded between May 1, 1919, and Dec. 4, 1955; all selections previously released on various labels. 0aFolk songs, EnglishzUnited States. 0aPopular musiczUnited States. aLVLcCDMkCD Folk bMAINp32000000000446r13.76u6436u215400767 2200205 4500010001300000020001500013090001500028245008800043260006400131300002900195500002000224651003900244651005500283651004100338710003300379942002000412952004300432952004300475952004300518 a93003508 a0895775204 c1191d119100aDiscovering America's past :bcustoms, legends, history & lore of our great nation.0 aPleasantville, N.Y. :bReader's Digest Association,cc1993. a400 p. :bill. ;c29 cm. aIncludes index. 0aUnited StatesxAnecdotes.xHistory 0aUnited StatesxAnecdotes.xSocial life and customs 0aUnited StatesxAnecdotes.xBiography20aReader's Digest Association. aLVLcNFk973 Di bLB2p37000000002217r19.18u6437u2155 bLB1p36000000014867r24.95u6438u2156 bLB1p33000000045556r24.95u6439u215700831 2200277 450000100060000000300040000600500170001000800390002701000190006602000240008504000130010905000170012208200130013909000150015210000270016724500750019426000370026930000210030650400410032765000310036865000230039970000330042270000350045594200200049095200430051050530LVL20020903150539.0750725s1975 nyu b 00010 eng a75025569 //r87 a0440363934 :c$7.95 aDLCcDLC0 aHQ1206.bB47 a155.6/33 c1192d119210aBloom, Lynn Z.,d1934-14aThe new assertive woman /cLynn Z. Bloom, Karen Coburn, Joan Pearlman.0 aNew York :bLaurel,c1980,[1975] a221 p. ;c22 cm. aIncludes bibliographical references. 0aAssertiveness (Psychology) 0aWomenxPsychology.10aCoburn, Karen Levin,d1941-.10aPearlman, Joan Crystal,d1941- aLVLcNFk158 Bl bMAINp32000000025927r2.97u6440u215800935 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000230014024501050016326000380026830000360030652001040034265000180044665000160046470000200048094200270050095200430052795200440057095200430061464568LVL20020124134613.0750320s1975 nyua j 00010 eng a75009574 a0911104496 a 75009574 c1193d1193 aJNF 745.5 Fi10aFiarotta, Phyllis.10aSnips & snails & walnut whales :bnature crafts for children /cPhyllis Fiarotta with Noel Fiarotta.0 aNew York :bWorkman Pub.,cc1975. a[284] p. :bill. ;c21 x 23 cm. aInstructions for making a variety of useful and decorative objects using raw materials from nature. 1aNature craft. 1aHandicraft.10aFiarotta, Noel. aLVLcJNFkJNF 745.5 Fi bLB2p34000000012274r12.83u6441u2159 bMAINp31000000035230r12.83u6442u2160 bLB1p33000000006117r12.83u6443u216100696 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012324500280013626000640016430000290022844000260025750000200028365000150030365000250031871000330034394200220037695200440039836493LVL19990319000000.0930406s1993 nyua 00100 eng a93019529 a0895775395 a 93019529 c1194d1194 a635.9 Pr04aThe practical gardener. aPleasantville, N.Y. :bReader's Digest Association,cc1993. a176 p. :bill. ;c31 cm. 0aSuccessful gardening. aIncludes index. 0aGardening. 0aLandscape gardening.20aReader's Digest Association. aLVLcNFk635.9 Pr bMAINp32000000047600r12.00u6444u216201015 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000220013624500760015826000430023430000300027752001320030765000210043970000250046094200240048595200430050995200440055295200440059695200430064095200420068343512LVL19990313000000.0920730s1993 nyua j 00011 eng a92028743 a0688120164 a 92028743 c1195d1195 aE Lillie10aLillie, Patricia.10aWhen this box is full /cby Patricia Lillie ; pictures by Donald Crews.0 aNew York :bGreenwillow Books,cc1993. a[24] p. :bill. ;c26 cm. aEach month a child adds something to an empty box, including a red foil heart in February and toasted pumpkin seeds in October. 1aMonthsxFiction.11aCrews, Donald,eill. aLVLcEASYkE Lillie bMAINp32000000019113r8.26u6445u2163 bMAINp32000000047766r11.84u6446u2164 bMAINp32000000047767r11.84u6447u2165 bLB2p34000000010586r12.54u6449u2166 bLB1p33000000019275r8.26u6450u216700840 2200313 450000100060000000300040000600500170001000800390002701000190006603500160008504000190010105000190012009000150013910000160015424500210017026000380019130000310022950000120026051000320027251000140030451000210031852000500033952100340038952100090042365000140043265000140044694200230046095200430048350531LVL19990312000000.0770920s1963 nyua j 000 1 eng a63017261 //r83 aflb00401700 cMBdDLCdICrlF0 aPZ8.3.G276bDm c1196d11961 aSeuss,cDr.10aDr. Seuss's ABC. aNew York,bBeginner Books,c1963. a63 p.bcol. illus.c24 cm. a"B-30."0 aChildren's Catalog (Wilson)0 aBooklist.0 aLibrary Journal. aAn alphabet book filled with funny creatures.0 a3.0bFollett Library Book Co.2 aK-3. 7aAlphabet. 0aAlphabet. aLVLcEASYkE Seuss bMAINp32000000024314r4.79u6451u216800527 2200205 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200120011410000160012624500310014226000310017330000300020444000210023494200230025595200430027843513LVL19990313000000.0940709s1993 utua j 00011 eng d a0898682517 anpl94001145 c1197d1197 aE Reese1 aReese, Bob.10aFor Keeps /cby Bob Reese. aProvo, UT :bArco,cc1993. a[20] p. :bill. ;c19 cm. 2aA ten word book. aLVLcEASYkE Reese bMAINp32000000048539r5.61u6452u216900508 2200193 450000100060000000300040000600500170001000800410002703500160006809000150008409200130009910000170011224500340012926000400016330000230020344000220022694200230024895200430027164571LVL19990217000000.0930115s1992 nyu 00011 eng d aonv90003898 c1198d1198 aW Bensen1 aBensen, D.R.14aThe renegade /cD.R. Bensen.. aNew York :bBantam Books,cc1992. . a218 p. ;c17 cm.;. 4aThe Tracker ;v4. aLVLcWESkW Bensen bMAINp31000000041784r4.50u6453u217000310 2200121 4500010001300000082001100013090001500024100003200039245003900071260003400110300002300144942002100167 a64015223 a812.54 c1199d11991 aBaldwin, James,d1924-1987.10aBlues for Mister Charlie,ba play. aNew York,bDial Press,c1964. axv, 121 p.c25 cm. aLVLcNFk812 BAL00813 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000170013824500400015526000620019530000210025752002110027865000260048994200240051595200440053936496LVL19990319000000.0940808r19891985cau jd 00011 eng a89015711 a1557361355 a 89015711 c1200d1200 aLP J Lowry1 aLowry, Lois.10aAnastasia on her own /cLois Lowry. aSanta Barbara, Calif. :bCornerstone Books,c1989, c1985. a165 p. ;c24 cm. aHer family's new organized schedule for easy housekeeping makes thirteen-year-old Anastasia confident that she can run the household while her mother is out of town, until she hits unexpected complications. 1aFamily lifexFiction. aLVLcJFkLP J Lowry bMAINp32000000049478r10.00u6455u217101022 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000200013724501320015725000120028926000520030130000350035352001450038865000210053365000190055465000240057365000360059770000330063394200230066695200430068950534LVL19990312000000.0890525s1990 caua j 00011 eng a89015230 a0152343326 a 89015230 c1201d1201 aJ Willard1 aWillard, Nancy.14aThe high rise glorious skittle skat roarious sky pie angel food cake /cby Nancy Willard ; illustrated by Richard Jesse Watson. a1st ed. aSan Diego :bHarcourt Brace Jovanovich,cc1990. a[63] p. :bcol. ill. ;c24 cm. aAs she is preparing a special angelfood cake for her mother's birthday, a girl is surprised by three angels who have dropped in for a taste. 1aAngelsxFiction. 1aCakexFiction. 1aBirthdaysxFiction. 1aMothers and daughtersxFiction.11aWatson, Richard Jesse,eill. aLVLcJFkJ Willard bMAINp32000000036097r9.89u6456u217200341 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000220009824500100012094200220013095200430015229478LVL20021021124349.0940816s19xx xxu 00010 eng d a0812024214 c1202d1202 aFritzsche, Helga.10aCats. aLVLcNFk636.8 Fr bMAINp32000000021400r3.95u6457u217300801 2200217 450000100060000000300040000600500170001000800390002703500160006609000150008209200120009710000260010924500780013526000540021330000380026752001530030565000230045874000360048194200230051795200430054036497LVL19990319000000.0940606s1988 nyua j 00011 eng anpl94002220 c1203d1203 aE Mayer1 aMayer, Mercer,d1943-10aThere's something in my attic /cwritten and illustrated by Mercer Mayer. aNew York :bDial Books for Young Readers,cc1988. a[32] p. :bcol. ill. ;c27 cm. ;. aConvinced there is something making noise in the attic at night, a brave little girl sneaks up the stairs, lasso in hand, to capture whatever it is. 1aMonstersxFiction.01aThere is something in my attic. aLVLcEASYkE Mayer bMAINp32000000052761r3.99u6458u217401014 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000240013424501090015825000120026726000410027930000280032049000350034850501290038365000410051265000400055370000250059394200200061895200440063895200420068250535LVL19990312000000.0860319s1986 wiua j 00011 eng a86060466 a0937295000 a 86060466 c1204d1204 aJ Shaw10aShaw, Janet Beeler.10aMeet Kirsten, an American girl /cby Janet Shaw ; illustrations, RenÂee Graef ; vignettes, Paul Lackner. a1st ed.0 aMadison, WI :bPleasant Co.,cc1986. a59 p. :bill. ;c23 cm. 4aThe American girls collection.0 aNine-year-old Kirsten and her family experience many hardships as they travel from Sweden to the Minnesota frontier in 1854. 1aEmigration and immigrationxFiction. 1aFrontier and pioneer lifexFiction.11aGraef, RenÂee,eill. aLVLcJFkJ Shaw bMAINp32000000037196r12.95u6459u2175 bLB1p33000000008457r6.00u6460u217600814 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000290013624500890016525000220025426000480027630000210032450000570034550000200040265000190042294200220044195200430046395200420050636498LVL20010817113233.0950203s1993 nyu 00110 eng a94001190 a0517882019 a 94001190 c1205d1205 a613.2 Ba10aBarnard, Neal D.,d1953-10aFood for life :bhow the new four food groups can save your life /cby Neal Barnard. a1st paperback ed.0 aNew York :bCrown Trade Paperbacks,cc1994. a334 p. ;c24 cm. aOriginally published: Harmony Books, New York, 1993. aIncludes index. 0aVegetarianism. aLVLcNFk613.2 Ba bMAINp32000000055723r7.80u6461u2177 bLB1p33000000021776r7.80u6462u217800721 2200229 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200150011210000300012724500620015726000520021930000240027150000270029565000520032265000490037494200250042395200430044843517LVL19990313000000.0940928c19941992onc 00011 eng a0373261497 anpl94002019 c1206d1206 aM Sprinkle1 aSprinkle, Patricia Houck.10aSomebody's dead in Snellville /cPatricia Houck Sprinkle. aToronto ;aNew York :bWorldwide,c1994, c1992. a251 p. ;c17 cm. ;. a"A Thomas Dunne book." 0aTravis, Sheila (Fictitious character)xFiction. 0aWomen detectivesxFiction.zGeorgiazAtlanta aLVLcMYSkM Sprinkle bMAINp32000000052077r3.99u6463u217900638 2200217 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200170011410000220013124500780015326000450023130000290027650000200030565000250032594200260035095200440037650536LVL19990312000000.0951106s1993 njua 00110 eng d a1555219071 anpl95001495 c1207d1207 a641.5 Do Van10aDo Van, Paulette.10aVietnamese cooking :bexotic delights from Indo-China /cPaulette Do Van.0 aSecaucus, NJ :bChartwell Books,cc1993. a128 p. :bill. ;c29 cm. aIncludes index. 0aCookery, Vietnamese. aLVLcNFk641.5 Do Van bMAINp32000000060551r14.95u6464u218000395 2200157 450000100060000000300040000600500170001000800410002701000130006809000150008110000180009624500180011460000350013294200260016795200440019357555LVL19990220000000.0950324s19uu 000 0 eng d a88008485 c1208d12081 aBrian, Denis.14aThe true gen.10aHemingway, Ernest,d1899-1961. aLVLcBIOkB Hemingway bMAINp31000000021299r11.77u6465u218100625 2200217 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200110011210000430012324500330016625000200019926000790021930000230029865000220032194200200034395200440036364574LVL19990217000000.0901011c19901952eng d 00011 eng a1850577382 aonv90000180 c1209d1209 aLP Nye1 aNye, Nelson C.d1907-q(Nelson Coral),10aTough company /cNelson Nye. aLarge print ed. aLong Preston, North Yorkshire, England :bMagna Print Books,c1990, c1952. a287 p. ;c22 cm.;.0 aLarge type books. aLVLcLPkLP Nye bMAINp31000000045789r15.95u6466u218200610 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000160013524500400015125000200019126000550021130000280026665000220029494200210031695200430033729480LVL19990320000000.0940127r19941961nhu d 00011 eng a94001761 a0792720350 a 94001761 c1210d1210 aLP Cook10aCook, Will.10aKiller behind a badge /cWill Cook. aLarge Print ed.0 aHampton, N.H. :bCurley Large Print,c1994, c1961. a171 p. ;c22 cm. ;dpa. 0aLarge type books. aLVLcLPkLP Cook bMAINp32000000063990r3.95u6467u218300859 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000470013724500740018426000420025830000350030050000310033550000200036660000300038665000670041694200230048395200440050695200430055036499LVL20030624102014.0941104s1995 njuaf 00110beng a94043393 a1559722673 a 94043393 c1211d1211 a791.43 He10aHeymann, C. Davidd1945-q(Clemens David),10aLiz :ban intimate biography of Elizabeth Taylor /cC. David Heymann.0 aNew York :bCarol Pub. Group,cc1995. a526, [32] p. :bill. ;c24 cm. a"A Birch Lane Press book." aIncludes index.10aTaylor, Elizabeth,d1932- 0aMotion picture actors and actressesxBiography.zUnited States aLVLcNFk791.43 He bMAINp31000000054265r14.97u6468u2184 bLB1p33000000022288r14.97u6469u218500741 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012324500520013625000210018826000460020930000350025544000230029050000200031365000120033370000220034594200220036795200430038995200430043243518LVL19990313000000.0940505s1995 nyua 00100 eng a94019143 a0895776472 a 94019143 c1212d1212 a635.9 Bo00aBonsai /ccontributing editor, Harry Tomlinson. a1st American ed.0 aPleasantville :bReader's Digest,cc1995. a216 p. :bill. ;c21 cm. ; pa. 0aRD home handbooks. aIncludes index. 0aBonsai.10aTomlinson, Harry. aLVLcNFk635.9 Bo bMAINp32000000056059r9.60u6470u2186 bMAINp31000000053470r9.60u6471u218700538 2200193 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200150011210000340012724500400016126000480020130000280024994200250027795200420030250537LVL20010802113001.0930524c19911973nyu 00011 eng a0061002763 anpl93000136 c1213d1213 aM Christie10aChristie, Agatha,d1890-1976.10aPostern of fate /cAgatha Christie.0 aNew York :bHarperPaperbacks,c1991, c1973. a294 p. ;c18 cm. ;dpa. aLVLcMYSkM Christie bLB2p34000000006163r2.89u6473u218801070 2200325 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000210013624500880015725000120024526000410025730000350029850500490033352000590038265000190044165000220046070000260048274000420050894200240055095200430057495200420061795200430065995200420070236500LVL19990319000000.0930301s1994 caua j 00011 eng a93021470 a0152562559 a 93021470 c1214d1214 aE Rylant10aRylant, Cynthia.10aMr. Putter and Tabby pour the tea /cCynthia Rylant ; illustrated by Arthur Howard. a1st ed.0 aSan Diego :bHarcourt Brace,cc1994. a[42] p. :bcol. ill. ;c23 cm.0 aMr. Putter -- Tabby -- Mr. Putter and Tabby. aMr. Putter gets an old cat to share his life with him. 1aCatsxFiction. 1aOld agexFiction.11aHoward, Arthur,eill.01aMister Putter and Tabby pour the tea. aLVLcEASYkE Rylant bMAINp32000000058318r6.46u6474u2189 bLB2p34000000006416r6.46u6475u2190 bMAINp31000000055048r6.46u6476u2191 bLB1p33000000022952r6.46u6477u219200620 2200229 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200130011424500170012726000450014430000450018944000140023465000200024865000140026894200240028295200420030695200420034843519LVL20030401151121.0950505s1995 nyua j 00011 eng d a1564589757 anpl95000696 c1215d1215 aE Around00aAround town.0 aNew York :bCovent Garden books,cc1995. a[12] p. :bill. ;c23 cm. ;[Board book]. 0aSnapshot. 1aTransportation. 1aVehicles. aLVLcEASYkE Around bLB2p37000000008918r4.95u6478u2193 bLB1p36000000003137r5.83u6479u219400542 2200205 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200150011210000200012724500370014726000300018430000230021444000310023794200250026895200430029350538LVL20010712104654.0940716s1993 nyu j 00011 eng a0440215285 anpl94001202 c1216d1216 aM Paretsky1 aParetsky, Sara.10aKilling orders /cSara Paretsky. aNew York :bDell,cc1993. a339 p. :c17 cm.;. 2aA V.I. Warshawski Mystery. aLVLcMYSkM Paretsky bMAINp31000000050199r5.99u6480u219500323 2200133 450000100060000000300040000600500170001000800410002709000150006810000280008324500200011194200210013195200370015264576LVL19990217000000.0950324s19uu 000 0 eng d c1217d12171 aGrey, Zane,d1872-1939.10aStairs of sand. aLVLcAFkAF Grey bMAINp31000000029219u6482u219600474 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000220009624501470011894200200026595200430028529482LVL20020918133112.0921019s19xx xxu 00010 eng d a89085060 c1218d12181 aDinkmeyer, Don C.10aParenting young children :bhelpful strategies based on Systematic Training for Effective Parenting (STEP), for parents of children under six. aLVLcNFk649 Di bMAINp32000000028784r6.35u6483u219700831 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500180009409000150011209200120012710000190013924500860015826000610024430000350030544000180034065000140035865000120037270000180038494200230040295200430042595200430046895200420051150539LVL19990312000000.0920923s1992 ilua j 000 0 eng a92219650 a1561734810 a 92219650 /AC c1219d1219 aE Siede10aSiede, George.10aShapes /cphotography, George Siede and Donna Preis ; consultant, Istar Schwager.0 aLincolnwood, Ill. :bPublications International,cc1992. a[18] p. :bcol. ill. ;c21 cm. 0aActive minds. 1aGeometry. 1aShapes.10aPreis, Donna. aLVLcEASYkE Siede bMAINp32000000040383r5.99u6485u2198 bMAINp31000000043688r5.99u6486u2199 bLB1p33000000015829r5.99u6487u220000369 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000140009624500450011094200240015595200440017957558LVL19990220000000.0950324s19uu 000 0 eng d a68027787 c1220d1220 aMcClinto.10aCollecting American 19th Century silver. aLVLcNFk739.237 Mc bMAINp31000000023262r12.50u6488u220100705 2200241 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200160011210000160012824500610014425000120020526000440021730000370026150000200029865000570031870000190037594200250039495200440041936502LVL20010731183211.0960810s1996 cauab 00110 eng a1566910714 anpl96001523 c1221d1221 a917.9104 We10aWeir, Bill.10aArizona traveler's handbook /cBill Weir & Robert Blake. a6th ed.0 aChico, CA :bMoon Publications,cc1996. a488 p. :bill. ;c19 cm . ;dpa. aIncludes index. 0aArizonad1981.xDescription and travelxGuide-books.10aBlake, Robert. aLVLcNFk917.9104 We bMAINp32000000066201r10.77u6489u220200823 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000180013824501350015626000370029130000290032850400620035760000270041965000310044665000240047794200240050195200440052543521LVL19990313000000.0941222s1995 nyuaf b 00110aeng a94045994 a0810932210 a 94045994 c1222d1222 a759.972 Ka10aKahlo, Frida.14aThe diary of Frida Kahlo :ban intimate self-portrait /cintroduction by Carlos Fuentes ; essay and commentaries by Sarah M. Lowe.0 aNew York :bH.N. Abrams,cc1995. a295 p. :bill. ;c25 cm. aIncludes bibliographical references: p. ( 293) and index.10aKahlo, FridadDiaries. 0aPaintersxDiaries.zMexico 0aSurrealismzMexico. aLVLcNFk759.972 Ka bMAINp32000000059991r39.95u6490u220300372 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000340009824500290013294200220016195200430018350540LVL19990312000000.0940817s19xx xxu 00010 eng d a0684128195 c1223d1223 aGrahame, Kenneth,d1859-1932.14aThe wind in the willows. aLVLcJFkJ Graham bMAINp32000000029613r7.64u6491u220400570 2200193 450000100060000000300040000600500170001000800410002702000150006809000150008310000220009824500780012026000380019830000270023644000280026370000200029194200220031195200430033357559LVL19990220000000.0950323s19uu 000 0 eng d a0553156772 c1224d12241 aPascal, Francine.10aOne of the gang /cwritten by Jamie Suzanne ; created by Francine Pascal.0 aNew York :bBantam Books,cc1987. a104 p. ;c20 cm. ; pa. 0aSweet Valley twinsv10.10aSuzanne, Jamie. aLVLcJFkJ Pascal bMAINp31000000009397r1.62u6492u220500679 2200229 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200170011424500400013125000360017126000480020730000280025550000460028365000360032974000150036594200270038095200420040736503LVL19990319000000.0960119s1996 cau 00000 eng d a1883392101 anpl96000183 c1225d1225 aREF 629.2 Ke00aKelley Blue Book :bused car guide. aConsumer ed. January-June 1996.0 aIrvine, CA :bKelley Blue Book Co.,cc1996. a399 p. ;c14 cm. ;dpa. a1981-1995 used car & truck retail values. 0aUsed automobilesxPrice guides.01aBlue Book. aLVLcREFkREF 629.2 Ke bLB2p34000000012593r5.87u6495u220600609 2200205 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200140011210000370012624500560016326000440021930000280026365100460029194200230033795200430036043522LVL19990313000000.0960123r19961977nyu 00011 eng a055334501X anpl96000209 c1226d1226 aAF Atwood10aAtwood, Margaret Eleanor,d1939-10aDancing girls and other stories /cMargaret Atwood.0 aNew York :bBantam Books,c1996, c1977. a243 p. ;c21 cm. ;dpa. 0aCanadaxSocial life and customsxFiction. aLVLcAFkAF Atwood bMAINp32000000062425r6.57u6496u220701137 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000200014024500880016025000210024826000550026930000290032450000820035352001350043565000170057065000140058770000210060194200270062295200440064995200430069395200440073695200430078050541LVL19990312000000.0930125s1993 nyua j 00010 eng a93012164 a0525450173 a 93012164 c1227d1227 aJNF 398.2 Ma10aMayo, Margaret.10aMagical tales from many lands /cretold by Margaret Mayo ; illustrated by Jane Ray. a1st American ed.0 aNew York, N.Y. :bDutton Children's Books,cc1993. a126 p. :bill. ;c28 cm. a"Originally published in Great Britain in 1993 by Orchard Books"--T.p. verso. aPresents an international collection of tales, including "The Lemon Princess," "Seven Clever Brothers," and "Baba Yaga Bony-legs." 1aFairy tales. 1aFolklore.11aRay, Jane,eill. aLVLcJNFkJNF 398.2 Ma bMAINp32000000041594r11.79u6497u2208 bLB2p34000000008039r11.79u6498u2209 bMAINp31000000044259r11.79u6499u2210 bLB1p33000000016146r11.79u6500u221100589 2200217 450000100060000000300040000600500170001000800390002701000190006604000130008505000300009808200130012809000150014110000260015624500450018226000300022730000190025735000100027694200240028695200610031064579LVL19990217000000.0691007s1969 nyu 00011 eng a76085407 //r82 aDLCcDLC0 aPZ4.L756aPS3562.I515bCr a813/.5/4 c1228d122810aShannon, Dell,d1921-10aCrime on their handsc[by] Dell Shannon.0 aNew York,bMorrow,c1969. a223 p.c22 cm. a5.95. aLVLcAFkAF Shannon bMAINdMAINp31000000027289r3.97u6501u2212v2003-09-0100962 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000260013824501100016426000500027430000340032444000250035850400600038365100170044365100110046065100190047165100130049070000280050394200250053195200440055695200600060036504LVL19990319000000.0941108s1996 nyuab j b 00110 eng a94042012 a079103397X a 94042012 c1229d1229 aJNF 974 Ay 0aAylesworth, Thomas G.10aNorthern New England :bMaine, New Hampshire, Vermont /cby Thomas G. Aylesworth, Virginia L. Aylesworth.0 aNew York :bChelsea House Publishers,cc1996. a96 p. :bill. ; map ;c21 cm. 0aDiscovering America. aIncludes bibliographical references: p. (94) and index. 1aNew England. 1aMaine. 1aNew Hampshire. 1aVermont.10aAylesworth, Virginia L. aLVLcJNFkJNF 974 Ay bMAINp32000000064907r18.95u6502u2213 bLB2dLB2p37000000019299r18.95u6503u2214v2004-12-1100937 2200289 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200170011210000200012924500700014925000320021926000410025130000360029265000470032865000460037573000150042174000380043674000170047494200260049195200440051795200430056195200430060450542LVL20020814145329.0960622s1996 nyuaf ks 00010 eng a0823076326 anpl96001147 c1230d1230 a016.78164 Wh10aWhitburn, Joel.14aThe Billboard book of top 40 hits /c[compiled by] Joel Whitburn. a6th ed., rev. and enlarged.0 aNew York :bBillboard Books,cc1996. a831 p. ;bill. ;c24 cm. ;dpa. 0aPopular musicxDiscography.zUnited States 0aPopular musicxStatistics.zUnited States01aBillboard.01aBillboard book of top forty hits.01aTop 40 hits. aLVLcNFk016.78164 Wh bMAINp32000000065372r12.95u6504u2215 bLB2p34000000014010r12.95u6505u2216 bLB1p33000000026085r12.95u6506u221700609 2200217 450000100060000000300040000600500170001000800390002701000190006602000280008508200130011309000150012610000280014124500310016926000390020030000210023950000430026065000220030394200220032595200440034764580LVL19990217000000.0820115s1982 mau d 00011 eng a81023519 //r84 a0816133050 (lg. print.)0 aLP Brand c1231d123110aBrand, Max,d1892-1944.10aWild freedom /cMax Brand.0 aBoston, MA. :bHall,c1982, c1981. a380 p. ;c24 cm. a"Published in large print"--Verso t.p. 0aLarge type books. aLVLcLPkLP Brand bMAINp31000000010172r11.01u6507u221800803 2200277 450000100060000000300040000600500170001000800390002701000130006602000310007903500140011003900180012404000130014205000230015508200160017809000150019410000200020924500570022926000350028630000320032165000320035365000350038565100400042094200230046095200420048329486LVL20000911204754.0850201s1985 nyua 000 0 eng a85001424 a0668063777 (pbk.) :c$3.95 a 850014240 a2b3c3d3e3 aDLCcDLC0 aQB723.H2bM85 19850 219a523.6/4 c1232d12321 aMuirden, James.10aObserver's guide to Halley's comet /cJames Muirden. aNew York :bArco Pub.,cc1985. aiv, 74 p. :bill. ;c21 cm. 0aCometsxObservers' manuals. 0aAstronomyxObservers' manuals. 0aHalley's cometxObservers' manuals. aLVLcNFk523.64 Mu bLB2p37000000006553r2.29u6508u221900892 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200200012310000210014324500700016425000120023426000430024630000370028944000380032644000230036450000200038765000640040765000560047194200250052795200620055243524LVL20030524113715.0960520s1996 fluk 00110 eng a95072909 a1572480459 a 95072909 c1233d1233 aREF 346.7301 Ha10aHaman, Edward A.10aHow to file your own divorce :bwith forms /cby Edward A. Haman. a2nd ed.0 aClearwater, FL :bSphinx Pub.,cc1996. a156 p. :bforms ;c28 cm. ;dpa. 0aTake the law into your own hands. 0aSelf-help law kit. aIncludes index. 0aDivorcexLaw and legislationxPopular works.zUnited States 0aDivorcexLaw and legislationxForms.zUnited States aLVLcNFk346.7301 Ha bMAINdMAINp32000000067533r18.95u6511u2220v2003-09-0100979 2200289 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200130012524501180013826000440025630000290030050000200032950001150034965000130046465000210047770000190049870000230051794200220054095200430056295200420060595200420064750543LVL20010725081958.0951116s1995 alua 00100 eng d a95071317 a0848715187 a 95071317 c1234d1234 a641.5 Ho00aHome for the holidays cookbook /c[Book introduction by Jodie Foster; chapter introductions by Christine Radant].0 aBirmingham, AL :bOxmoor House,cc1995. a108 p. :bill. ;c20 cm. aIncludes index. aHome for the holidays is now a major motion picture from Paramount Pictures and PolyGram Filmed Entertainment. 0aCookery. 0aHoliday cookery.10aFoster, Jodie.10aRadant, Christine. aLVLcNFk641.5 Ho bMAINp32000000060862r8.97u6512u2221 bLB2p37000000017800r8.97u6513u2222 bLB1p33000000024133r8.97u6514u222300351 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000180009624500250011494200230013995200430016236506LVL19990319000000.0940811s19xx xxu 00010 eng d a60015911 c1235d1235 aTudor, Tasha.10aA is for Anna Belle. aLVLcEASYkE Tudor bMAINp32000000008348r7.95u6515u222400658 2200193 4500010001300000020001500013090001500028100002600043245005700069260003500126300003100161500003800192650001600230740005300246740005800299942002200357952004300379952004200422 a83012243 a0668056584 c1236d123610aWhite, Robert,d1948-10a101 ways to improve your vocabulary /cRobert White.0 aNew York :bArco Pub.,cc1983. a197 p. :bill. ;c20 cm. ; a"A Nautilus communications book." 0aVocabulary.01aOne hundred one ways to improve your vocabulary.01aOne Hundred and one ways to improve your vocabulary.. aLVLcNFk428.1 Wh bMAINp32000000009185r2.92u6516u2225 bLB2p34000000005645r2.92u6517u222601523 2200397 450000100060000000300040000600500170001000700100002700800410003703500160007803700300009409000150012424501640013926000490030330000660035244000300041850000640044850600310051251100760054352001330061952100130075253800090076565000230077465000250079770000230082270000190084570000180086470000190088270000220090171000240092371000330094773000370098094200200101795200440103795200440108150544LVL20030626140704.0vf cbahom931228s1984 ilu058 gr vleng d avid93000664 aAND04bPublic Media Video c1237d123700aAnd the children shall leadcRainbow Television Workshop ; producer: Topper Carew ; coproducer: Henry Johnson ; director: Michael Pressman.h[videorecording] /0 aChicago, Ill. :bPublic Media Video,cc1984. a1 videocassette (58 min.) :bsd., col. ;c1/2 in. +e1 guide. 0aWonderWorks family movie. aOriginally broadcast on the television program WonderWorks. aFor private home use only.1 aDanny Glover, Pam Potillo, Levar Burton, Denise Nicholas, Andrew Prine. aOne young girl works to ease racial tension between blacks and whites in her south Mississippi town when activists come to town. aGeneral. aVHS. 0aYoung adult films. 1aCivil rightsxDrama.11aPressman, Michael.11aGlover, Danny.11aPotillo, Pam.11aBurton, Levar.11aNicholas, Denise.21aPublic Media Video.21aRainbow Television Workshop.01aWonderWorks (Television program) aLVLcAVkAV And bMAINp32000000043731r22.46u6518u2227 bMAINp31000000045706r22.46u6519u222800335 2200133 450000100060000000300040000600500170001000800410002709000150006810000280008324500260011194200210013795200430015857563LVL19990220000000.0950324s19uu 000 0 eng d c1238d12381 aGrey, Zane,d1872-1939.14aThe mysterious rider. aLVLcAFkAF Grey bMAINp31000000034749r5.40u6520u222900692 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007904000130009405000350010708200130014209000150015510000280017024500360019826000520023430000210028649000250030750000200033265000220035294200210037495200430039564582LVL19990217000000.0780214c19781937mau d 00011 eng a78002624 a0893401358 aDLCcDLC1 aPZ3.G87aPS3513.R6545bWd 1978 a813/.5/2 c1239d123910aGrey, Zane,d1872-1939.10aWest of the Pecos /cZane Grey.0 aSouth Yarmouth, Ma. :bJ. Curley,c1978, c1937. a481 p. ;c22 cm.0 aA Zane Grey western. aLarge print ed. 0aLarge type books. aLVLcAFkAF Grey bMAINp31000000010649r9.95u6521u223000789 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009404000130010805000230012108200160014409000150016024501110017526000450028630000290033150000200036050000430038065000140042373000220043794200210045995200430048029488LVL19990320000000.0891005s1986 ctua 001 0 eng a86050404 a0918804515 a 86050404 aDLCcDLC0 aTT180.bF5562 19860 220a684/.08 c1240d124000aFine woodworking on things to make :b35 articles /cselected by the editors of Fine woodworking magazine. aNewtown, Conn. :bTaunton Press,cc1986. a106 p. :bill. ;c28 cm. aIncludes index. a"A Fine woodworking book"--T.p. verso. 0aWoodwork.01aFine woodworking. aLVLcNFk684 FIN bMAINp32000000011188r4.69u6522u223100565 2200193 450000100060000000300040000600500170001000800410002709000150006809200130008310000270009624500560012326000610017930000240024052000160026470000240028094200230030495200440032764583LVL19990217000000.0910814s19xx xxu 00010 eng d c1241d1241 aKit Giff10aGiff, Patricia Reilly.10aLazy lions, lucky lambs /cby Patricia Reilly Giff.0 aNew YorkbBantam Doubleday Dell Pub. Group, Inc.cc1985. a73 p.bill.c20 cm. a1 cassette.11aSims, Blanche; ill. aLVLcKITkKit Giff bMAINp31000000009739r14.95u6524u223200339 2200133 450000100060000000300040000600500170001000800410002709000150006824500340008330000110011794200160012895200610014429489LVL19990320000000.0950809s19uu 000 0 eng d c1242d124210aRolling Stone 1995 August 24. a21 cm. aLVLcPERkA bMAINdMAINp32000000025423r2.95u6525u2233v2003-09-0100292 2200121 450000100060000000300040000600500170001000800410002709000150006824500280008394200160011195200430012743527LVL19990313000000.0921112s19xx xxu 00010 eng d c1243d124310aCOBBLESTONE 1984 APRIL. aLVLcPERkJ bMAINp32000000022106r2.25u6526u223400927 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000250014024500550016526000560022030000200027652001190029660000300041565000220044565000220046771000480048994200270053795200430056495200420060750546LVL19990312000000.0940228s1993 nyu j 00010 eng a93007580 a0670852058 a 93007580 c1244d1244 aJNF 759.4 Mu10aMuhlberger, Richard.10aWhat makes a Degas a Degas? /cRichard Muhlberger.0 aNew York :bThe Metropolitan Museum of Art,cc1993. a48 p. :c22 cm. aExplores such art topics as style, composition, color, and subject matter as they relate to twelve works by Degas.11aDegas, Edgar,d1834-1917. 1aPainting, French. 1aArt appreciation.20aMetropolitan Museum of Art (New York, N.Y.) aLVLcJNFkJNF 759.4 Mu bMAINp31000000046903r5.87u6528u2235 bLB1p33000000017909r5.87u6529u223600873 2200265 450000100060000000300040000600500170001000800390002701000190006602000240008504000130010905000220012208200140014409000150015810000220017324000300019524500600022526000500028530000290033550001210036450400410048565000210052694200230054795200370057064584LVL20020918094539.0780516r19781971nyua b 00010 eng a77092482 //r83 a0486236250 :c$5.00 aDLCcDLC0 aTT174.3.bD4 1978 a745.59/24 c1245d124510aDe Sarigny, Rudi.10aGood design in soft toys.10aHow to make and design stuffed toys /cRudi de Sarigny.0 aNew York :bDover Publications,c1978, c1971. a239 p. :bill. ;c28 cm. aReprint, with corrections, of the 1971 ed. published by Mills & Boon, London, under title: Good design in soft toys. aIncludes bibliographical references. 0aSoft toy making. aLVLcNFk745.59 Sa bMAINp31000000023355u6530u223700851 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000220013424501250015625000120028126000550029330000320034850000200038065000160040074000610041694200200047795200440049795200440054150547LVL19990312000000.0930312s1993 ohua 00110 eng a93003675 a0898795451 a 93003675 c1246d1246 a808 Ed1 aEdelstein, Scott.10a30 steps to becoming a writer and getting published :bthe complete starter kit for aspiring writers /cScott Edelstein. a1st ed. aCincinnati, Ohio :bWriter's Digest Books,cc1993. ax, 166 p. :bill. ;c24 cm. aIncludes index. 0aAuthorship.01aThirty steps to becoming a writer and getting published. aLVLcNFk808 Ed bMAINp32000000046159r15.25u6531u2238 bMAINp31000000047664r15.25u6532u223900717 2200253 450000100060000000300040000600500170001000800390002701000130006604000130007905000160009208200110010809000150011910000190013424500860015326000320023930000270027135000110029850400300030965000140033970000430035394200240039695200430042057566LVL20000524000000.0720203s1972 nyua b 00010 eng a75164550 aDLCcDLC0 aHQ728.bO55 a301.42 c1247d124710aO'Neill, Nena.10aOpen marriage ;ba new life style for couples,cby Nena O'Neill & George O'Neill.0 aNew York,bM. Evansc[1972] a287 p.billus.c22 cm. a$6.95. aBibliography: p. 281-287. 0aMarriage.10aO'Neill, George,d1921-ejoint author. aLVLcNFk301.42 ONE bMAINp31000000020807r5.95u6533u224000332 2200133 450000100060000000300040000600500170001000800410002709000150006810000340008324500130011794200250013095200430015536510LVL19990319000000.0920714s19xx xxu 00010 eng d c1248d12481 aChristie, Agatha,d1890-1976.10aCurtain. aLVLcMYSkM Christie bMAINp32000000001644r8.00u6534u224100614 2200205 450000100060000000300040000600500170001000800410002702000150006809000150008310000230009824500510012126000390017230000270021144000410023850000230027994200210030295200420032395200430036543529LVL20020226155759.0941224s19uu 000 0 eng d a0671692747 c1249d12491 aDixon, Franklin W.14aThe smoke screen mystery /cFranklin W. Dixon.0 aNew York :bPocket Books ,cc1990. a151 p. ;c20 cm. ; pa. 4aThe Hardy Boys mystery storiesv105. a"A Minstrel Book." aLVLcJFkJ Dixon bLB2p37000000015177r2.10u6535u2242 bMAINp32000000029622r2.10u6536u224300800 2200265 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200150011410000200012924500420014925000200019126000560021130000280026744000240029550400500031965000260036965000260039594200250042195200440044695200440049050548LVL19990312000000.0940513c19931989enka j b 00010 eng d a0713460164 anpl94000638 c1250d1250 aJNF 391 Ru1 aRuby, Jennifer.14aThe 1940s and 1950s /cJennifer Ruby. aReprinted 1993. aLondon, England :bB.T. Batsford Ltd,c1993, c1989. a64 p. :bill. ;c29 cm. 0aCostume in context. aIncludes bibliographical references: (62-63). 1aCostumey1940s-1950s. 1aFashiony1940s-1950s. aLVLcJNFkJNF 391 Ru bMAINp32000000047067r24.95u6537u2244 bMAINp31000000048297r24.95u6538u224500258 2200121 450000100060000000300040000600500170001000800410002709000150006810000180008324500120010194200230011336511LVL19990319000000.0941224s19uu 000 0 eng d c1251d1251 aNiven, Larry.10aLimits. aLVLcSCIkSF Niven00427 2200157 450000100060000000300040000600500170001000800410002702000150006809000150008310000280009824500320012694200230015895200440018195200440022543530LVL19990313000000.0930421s19xx xxu 00010 eng d a0385267967 c1252d12521 aShreve, Susan Richards.10aDaughters of the new world. aLVLcAFkAF Shreve bMAINp32000000032383r11.60u6540u2246 bMAINp32000000044710r11.60u6541u224700732 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000260013624500670016226000370022930000310026650400650029765000210036294200220038395200430040595200420044850549LVL20010702105542.0940210s1994 nyu b 00110 eng a94007532 a0070246440 a 94007532 c1253d1253 a658.4 Gr10aGriessman, B. Eugene.10aTime tactics of very successful people /cB. Eugene Griessman.0 aNew York :bMcGraw-Hill,cc1994. axv, 233 p. ;c21 cm. ; pa. aIncludes bibliographical references: p. (222-225) and index. 0aTime management. aLVLcNFk658.4 Gr bMAINp32000000047893r8.82u6542u2248 bLB1p33000000019331r8.82u6544u224901081 2200337 450000100060000000300040000600500170001000800390002701000170006602000150008303500160009803900180011404000200013205000250015208200120017709000150018910000210020424500390022526000420026430000350030652001690034152100340051052100090054465000340055365000250058765000200061265000250063265000200065794200230067795200430070064587LVL19990217000000.0830909s1984 nyua j 00011 eng a83018486 /AC a0590079026 aflb004139080 a2b3c3d3e3 aDLCcDLCdICrlF0 aPZ7.H31455bPar 19840 219a[E] c1254d125410aHayes, Geoffrey.10aPatrick and Ted /cGeoffrey Hayes.0 aNew York :bFour Winds Press,cc1984. a[30] p. :bcol. ill. ;c22 cm. aBest friends, Patrick and Ted, find their relationship strained when Ted goes away for the summer and Patrick finds other activities and friends to occupy his time.0 a3.0bFollett Library Book Co.2 aK-3. 0aChildren's stories, American. 1aFriendshipxFiction. 1aBearsxFiction. 7aFriendshipxFiction. 7aBearsxFiction. aLVLcEASYkE Hayes bMAINp31000000002378r2.49u6545u225000364 2200133 450000100060000000300040000600500170001000800410002709000150006810000480008324500310013194200240016295200440018629493LVL20021009104612.0920804s19xx xxu 00010 eng d c1255d12551 aClarke, Arthur C.d1917-q(Arthur Charles),14aThe fountains of paradise. aLVLcSCIkSF Clarke bMAINp32000000001457r10.00u6546u225101071 2200325 450000100060000000300040000600500170001000800390002701000130006602000150007902000300009403500160012404000250014005000210016508200120018609000150019824500720021325000120028526000350029730000660033250000200039852001640041852100110058265000220059365000140061570000290062971000170065894200260067595200440070136512LVL19990319000000.0900417s1990 nyuaf 001 0 eng a90006065 a0688078192 a0688099076 (slipcase ed.) aflb00442305 aDLCcDLCdDLCdICrlF00aRC81.bM473 199000220a613 c1256d125600aMayo Clinic family health book /cDavid E. Larson, editor-in-chief. a1st ed. aNew York :bW. Morrow,cc1990. axiv, 1378 p., [32] p. of plates :bill. (some col.) ;c28 cm. aIncludes index. aA medical reference for home use prepared by the Mayo Clinic includes information on human growth, over 1,000 diseases and disorders, first aid, and nutrition.2 aAdult. 0aMedicine Popular. 7aMedicine.10aLarson, David E.,d1929-20aMayo Clinic. aLVLcREFkREF 613 MAY bMAINp32000000029232r20.95u6547u225201068 2200349 450000100060000000300040000600500170001000800390002701000170006602000270008302000150011003500160012504000200014105000230016108200120018409000150019610000220021124500450023325000120027826000540029030000350034451000320037951000280041151000490043952000780048852100340056652100090060065000210060965000210063094200230065195200440067443531LVL19990313000000.0870520s1988 nyua j 000 1 eng a87003103 /AC a0688064582 (lib. bdg.) a0688064574 aflb01707901 aDLCcDLCdICrlF0 aPZ7.S8635bSp 19880 219a[E] c1257d12571 aStock, Catherine.10aSophie's knapsack /cby Catherine Stock. a1st ed. aNew York :bLothrop, Lee & Shepard Books,cc1988. a[33] p. :bcol. ill. ;c24 cm.0 aChildren's Catalog (Wilson)0 aSchool Library Journal.0 aBulletin Of The Center For Children's Books. aSophie accompanies her parents on an overnight hike to Purple Cloud Rock.0 a3.2bFollett Library Book Co.2 aK-3. 1aHikingxFiction. 7aHikingxFiction. aLVLcEASYkE Stock bMAINp32000000026121r10.59u6548u225300685 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007904000130009405000170010708200110012409000150013510000190015024500590016926000440022830000300027265000410030270000350034394200220037895200430040057569LVL20020904103632.0770512s1977 nyua 00010 eng a77008875 a0671228188 aDLCcDLC0 aTH4812.bB63 a690/.8 c1258d125810aBoericke, Art.14aThe craftsman builder /cArt Boericke & Barry Shapiro.0 aNew York :bSimon and Schuster,cc1977. a[96] p. :bill. ;c25 cm. 0aHouse constructionxPictorial works.10aShapiro, Barry,ejoint author. aLVLcNFk690.8 Bo bMAINp31000000023184r7.51u6549u225401019 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009405000210010808200160012909000150014509200190016010000190017924500650019826000430026330000280030652001380033465000210047265000110049365000160050470000260052094200290054695200430057595200440061895200430066264588LVL19990217000000.0880608s1988 maua j 00010 eng a88019336 a0201149338 a 880193360 aTL770.bF68 19880 219a745.592 c1259d1259 aJNF 745.592 Fr10aFrancis, Neil.10aSuper flyers /cNeil Francis ; illustrated by June Bradford.0 aReading, MA :bAddison-Wesley,cc1988. a79 p. :bill. ;c24 cm. aProvides instructions on how to make and fly a variety of flying craft, including paper airplanes, dirigibles, parachutes, and kites. 0aPaper airplanes. 0aKites. 2aHandicraft.11aBradford, June,eill. aLVLcJNFkJNF 745.592 Fr bLB1p36000000002851r12.83u6550u2255 bMAINp31000000035231r12.83u6551u2256 bLB1p33000000006118r12.83u6552u225700378 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000300009824500340012894200260016295200440018836513LVL19990319000000.0930423s19xx xxu 00010 eng d a0671760580 c1260d12602 aHeat Moon, William Least.10aPrairyerthh[sound recording] aLVLcACkAC Heat-Moon bMAINp32000000032072r13.50u6553u225800707 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009404000130010805000160012108200100013709000150014710000190016224500360018126000500021730000320026735000110029950400260031065000110033665000160034794200230036395200430038643532LVL19990313000000.0720606s1972 maua b 000 0 eng a72185461 a0871920476 a 72185461 aDLCcDLC0 aTP930.bB36 a746.6 c1261d12611 aBelfer, Nancy.10aDesigning in batik and tie dye. aWorcester, Mass.,bDavis Publicationsc[1972] avii, 116 p.billus.c27 cm. a$9.95. aBibliography: p. 116. 0aBatik. 0aTie-dyeing. aLVLcNFk746.6 BEL bMAINp32000000011677r5.00u6554u225900734 2200229 450000100060000000300040000600500170001000800390002701000130006603500140007909000150009309200150010810000210012324500720014426000420021630000340025852000970029265000220038970000260041194200250043795200420046264589LVL20000829000000.0740212s1973 nyua j 00001 eng a72087070 a 72087070 c1262d1262 aJE Schlein10aSchlein, Miriam.14aThe rabbit's world /cMiriam Schlein; illustrated by Peter Parnall.0 aNew York :bFour Winds Press,cc1973. a[31] p. :bill;.c20 x 23 cm. aA little snowshoe rabbit learns about the things in the world that are his to use and enjoy. 1aRabbitsxStories.11aParnall, Peter,eill. aLVLcEASYkE Schlein bLB1p33000000009109r4.88u6555u226000552 2200205 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200100012510000170013524500580015226000490021030000210025994200220028095200440030236514LVL19990319000000.0910216s1991 mau 00011 eng d a90044991 a0316082511 a 90044991 c1263d1263 aBarth10aBarth, John.14aThe last voyage of Somebody the Sailor /cJohn Barth. aBoston, MA :bLittle, Brown and Co.,cc1991. a573 p. ;c24 cm. aLVLcAFkAF Barth bMAINp32000000029797r13.25u6556u226100947 2200253 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200140011210000280012624500400015426000690019430000480026350001740031165000250048565000310051071000380054171000480057994200230062795200430065050552LVL19990312000000.0710412s1971 caua c 00110 eng a0875870414 anpl94002071 c1264d1264 a759.06 Co1 aCooper, Douglas,d1911-14aThe Cubist epoch /cDouglas Cooper. aLos Angeles :bPhaidon/Los Angeles County Museum of Art,cc1971. a320 p. :bill. ; (part col.)c25 cm. ;cpa. aBased on an exhibition of 321 paintings, sculpture, drawings, and prints shown at the Los Angeles County Museum of Art, 1970 and at the Metropolitan Museum of Art, 1971. 0aCubismxExhibitions. 0aArt, Moderny20th century.20aLos Angeles County Museum of Art.20aMetropolitan Museum of Art (New York, N.Y.) aLVLcNFk759.06 Co bMAINp32000000052298r7.95u6557u226200559 2200205 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200130011210000430012524500330016825000200020126000480022130000210026994200200029095200430031057571LVL20000911035741.0910423c19881987enk d 00011 eng a0745108105 aonv90000546 c1265d1265 aL.P. Nye10aNye, Nelson C.d1907-q(Nelson Coral),10aHorse thieves /cNelson Nye. aLarge print ed. aBath :bLythway/Chivers Press,cc1988,1987. a264 p. ;c22 cm. aLVLcLPkLP Nye bMAINp31000000035642r8.95u6558u226300542 2200193 450000100060000000300040000600500170001000800410002703500160006809000150008409200140009910000260011324500410013926000380018030000210021894200230023995200420026295200440030464590LVL20020924105429.0920923s1983 nyu 00011 eng d aonv90003398 c1266d1266 aAF Dailey10aDailey, Janet,d1944-10aStands a Calder man /cJaney Dailey.0 aNew York :bPocket Books,cc1983. a346 p. ;c22 cm. aLVLcAFkAF Dailey bLB2p34000000002995r4.17u6559u2264 bMAINp31000000040668r10.00u6560u226501370 2200409 450000100060000000300040000600500170001000800390002701000170006602000240008303500160010704000250012304300120014805000220016008200150018209000150019710000280021224501040024026000500034430000250039444000320041950000200045151000140047152001220048552100170060765000580062465000470068265000540072965000180078365000130080165000180081465000130083270000190084570000290086494200240089395200430091736515LVL19990319000000.0910205s1991 nju j 001 0 eng a91006868 /AC a1560790555 :c$7.95 aflb00856802 aDLCcDLCdDLCdICrlF an-us---00aBJ1661.bS25 199100220a373.18 c1267d12671 aSalzman, Marian,d1959-10aGreetings from high school /cby Marian Salzman and Teresa Reisgies with Ann O'Reilly ... [et al.]. aPrinceton, N.J. :bPeterson's Guides,cc1991. axi, 176 p. ;c23 cm. 4aThe Peterson's H.S. series. aIncludes index.0 aBooklist. aDiscusses what life is like in high school, covering such aspects as stress, schoolwork, family, romance, and sports.2 aYoung Adult. 0aHigh school studentsxConduct of life.zUnited States 0aTeenagersxConduct of life.zUnited States 0aHigh schoolsxJuvenile literature.zUnited States 1aHigh schools. 1aSchools. 7aHigh schools. 7aSchools.10aO'Reilly, Ann.10aReisgies, Teresa,d1966- aLVLcNFk373.18 SAL bMAINp32000000030608r4.69u6561u226600612 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200160012310000230013924500410016225000200020326000470022330000210027065000220029194200250031395200440033850553LVL19990312000000.0940604r19941994meu d 00011 eng a94021080 a0786202955 a 94021080 c1268d1268 aLP Estleman1 aEstleman, Loren D.10aCity of widows /cLoren D. Estleman. aLarge print ed. aThorndike, Me. :bThorndike Press,cc1994. a298 p. ;c23 cm. 0aLarge type books. aLVLcLPkLP Estleman bMAINp31000000052454r14.96u6563u226701022 2200325 450000100060000000300040000600500170001000800390002701000210006602000270008702000150011403500160012904000200014505000170016508200080018209000150019010000250020524500760023026000310030630000400033751000280037752001080040552100340051352100090054765000210055665000340057770000200061194200220063195200430065329497LVL19990320000000.0791206s1980 nyua j 000 1 eng a79028065 /AC/r87 a068832231X (lib. bdg.) a0688222315 aflb00157507 aDLCcDLCdICrlF0 aPZ7.W882bAp a[E] c1269d12691 aThayer, Jane,d1904-10aApplebaums have a robot! /cJane Thayer ; illustrated by Bari Weissman. aNew York :bMorrow,c1980. a[32] p. :bcol. ill. ;c21 x 26 cm.0 aSchool Library Journal. aA young robot finds his vocation in a bakery and earns a baker's hat as the result of his devoted work.0 a3.5bFollett Library Book Co.2 aK-3. 1aRobotsxFiction. 1aBakers and bakeriesxFiction.10aWeissman, Bari. aLVLcJFkJ Thayer bMAINp32000000015572r5.00u6564u226801321 2200361 450000100060000000300040000600500170001000700150002700800410004202000150008303500160009803700290011409000150014309200130015810000160017124500870018726000570027430000690033149000340040050000580043452000790049265000220057165000190059370000270061294200230063995200420066295200430070495200420074795200430078995200420083295200430087495200420091750554LVL20000110000000.0ssulmnjlc ce960404r19961988nyunnn j d f eng d a0694700355 anav96000194 aTBC 70035bHarper Trophy c1270d1270 aKIT Zion1 aZion, Gene.10aHarry and the lady next doorcbased on the book by Gene Zion.h[sound recording] /0 aNew York :bHarperCollins Publishers,cp1996, c1988. a1 sound cassette :banalog, mono. +e1 book (62 p. : col. ill.).1 aChildren's literature series. aRead-along book has pictures by Margaret Bloy Graham. aHarry the dog goes to fantastic lengths to make his neighbor stop singing. 0aSingingxFiction. 0aDogsxFiction.1 aGraham, Margaret Bloy. aLVLcKITkKIT Zion bLB2p37000000000684r4.37u6565u2269 bMAINp32000000063736r4.37u6566u2270 bLB1p36000000003073r4.37u6567u2271 bMAINp35000000000415r7.95u6568u2272 bLB2p34000000011819r4.37u6569u2273 bMAINp31000000058862r4.37u6570u2274 bLB1p33000000025036r4.37u6571u227501077 2200253 450000100060000000300040000600500170001000800390002701000130006604000130007905000330009208200130012509000150013810000200015324500660017325000140023926000420025330000270029535000110032250000550033350503670038894200250075595200430078057573LVL19990220000000.0710922r1971 nyua 00001 eng a72161317 aDLCcDLC0 aPZ4.S5485aPS3569.O3964bWan a813/.5/4 c1271d127110aShepherd, Jean.10aWanda Hickey's night of golden memories, and other disasters. a[1st ed.]0 aGarden City, N.Y.,bDoubleday,c1971. a350 p.billus.c22 cm. a$6.95. a"Stories originally appeared in Playboy magazine."0 aThe grandstand passion play of Delbert and the Bumpus hounds.--County fair!--Scut Farkas and the murderous Mariah.--Ollie Hopnoodle's haven of bliss.--The star-crossed romance of Josephine Cosnowski.--Daphne Bigelow and the spine-chilling saga of the snail-encrusted tinfoil noose.--The return of the smiling Wimpy doll.--Wanda Hickey's night of golden memories. aLVLcAFkAF Shepherd bMAINp31000000017356r4.64u6572u227600691 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000180013724500330015525000200018826000480020830000210025665000220027765100270029965100420032694200250036895200440039364592LVL20021021102721.0891206r19901989mau d 00010 eng a89077225 a0816149739 a 89077225 c1272d1272 aLP 978 Fr1 aFrazier, Ian.10aGreat Plains /cIan Frazier. aLarge print ed. aBoston, MA :bG.K. Hall & Co.,cc1990,1989. a412 p. ;c24 cm. 0aLarge type books. 0aGreat PlainsxHistory. 0aGreat PlainsxDescription and travel. aLVLcLPNFkLP 978 Fr bMAINp31000000045790r16.96u6573u227700577 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000200013424500560015425000120021026000500022230000230027294200200029595200440031550555LVL19990312000000.0950327s1995 nyu 00010 eng a95008675 a0060171553 a 95008675 c1273d1273 a811 Di10aDillard, Annie.10aMornings like this :bfound poems /cAnnie Dillard. a1st ed.0 aNew York :bHarperCollins Publishers,cc1995. ax, 75 p. ;c24 cm. aLVLcNFk811 Di bMAINp32000000057606r12.00u6574u227800836 2200241 450000100060000000300040000600500170001000800390002701000130006603500160007909000150009509200130011010000270012324500650015026000360021530000270025152001790027865000210045765000210047870000300049994200220052995200430055157574LVL19990220000000.0850809s1955 nyua j 00001 eng a55006065 aflb00092800 c1274d1274 aJ Farley10aFarley, Walter,d1915-14aThe island stallion races ;cillustrated by Harold Eldridge.0 aNew York,bRandom Housec[1955] a256 p.billus.c21 cm. aTwo visitors from another world enter the secret valley of Azul Island and provide Steve with a chance to see how Flame can do in competition with the world's fastest horses. 1aHorsesxFiction. 1aScience fiction.11aEldridge, Harold,eillus. aLVLcJFkJ Farley bMAINp31000000004729r3.19u6575u227901202 2200361 450000100060000000300040000600500170001000800390002701000170006602000370008303500160012004000250013605000210016108200170018209000150019910000280021424500430024226000480028526300100033330000400034350400410038351000140042451000280043852001510046652100340061752100090065165000350066065000140069565000140070994200290072395200440075295200440079629499LVL19990320000000.0900221s1990 mnu j b 001 0 eng a90002959 /AC a0875184456 (lib. bdg.) :c$12.95 aflb00295402 aDLCcDLCdDLCdICrlF00aQL697.bO26 199000220a598.24/7 c1275d12751 aO'Connor, Karen,d1938-14aThe feather book /cby Karen O'Connor. aMinneapolis, Minn. :bDillon Press,cc1990. a9009. a59 p. :bill. (some col.) ;c24 cm. aIncludes bibliographical references.0 aBooklist.0 aSchool Library Journal. aDescribes the appearance, function, types, coloring, formation and structure of a feather, and includes information about the origins of feathers.0 a6.4bFollett Library Book Co.2 a3-6. 0aFeathersxJuvenile literature. 1aFeathers. 7aFeathers. aLVLcJNFkJNF 598.24 O'C bMAINp32000000030991r13.46u6576u2280 bMAINp32000000030992r13.46u6577u228101099 2200313 450000100060000000300040000600500170001000800390002701000130006603500160007904000200009505000150011508200120013009000150014210000190015724501310017626000400030730000420034750400300038952001820041952100170060165000330061865000130065165000160066465000260068065000140070694200220072095200430074236518LVL20030714192834.0731212s1966 nyua b 00000 eng a66026172 aflb00232711 aDLCcDLCdICrlF0 aTS741.bC5 a739/.14 c1276d127610aChoate, Sharr.10aCreative casting: jewelry, silverware, sculpture.cDrawings by the author; photos. by the author except where otherwise noted.0 aNew York,bCrown Publishersc[1966] ax, 213 p.billus. (part col.)c27 cm. aBibliography: p. 209-210. aCovers the major methods of casting metals that are applicable to crafts including techniques for lost wax, replica, hollow core, sand, cuttlefish bone, and rubber-mold methods.2 aYoung Adult. 0aFoundingxAmateurs' manuals. 0aJewelry. 0aSilverwork. 0aSculpturexTechnique. 7aFounding. aLVLcNFk739.2 Ch bMAINp32000000011485r7.64u6578u228201091 2200325 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200190012310000290014224500800017126000380025130000290028944000240031852001060034265000200044865000190046865000270048765000210051470000280053580000480056394200260061195200430063795200430068095200420072350556LVL19990312000000.0940111s1994 nyua j 00011 eng a94002772 a0679858156 a 94002772 c1277d1277 aJ Beren- stain10aBerenstain, Stan,d1923-14aThe Berenstain Bears and the galloping ghost /cby Stan and Jan Berenstain.0 aNew York :bRandom House,cc1994. a104 p. :bill. ;c20 cm. 2aA big chapter book. aBrother Bear learns about fear and getting back in the saddle when a ghost haunts the riding academy. 1aBearsxFiction. 1aFearxFiction. 1aHorsemanshipxFiction. 1aGhostsxFiction.10aBerenstain, Jan,d1923-10aBerenstain, Stan,d1923-tBig chapter book. aLVLcJFkJ Berenstain bMAINp32000000058735r9.89u6580u2283 bMAINp31000000055378r9.89u6581u2284 bLB1p33000000023166r9.89u6582u228500681 2200229 450000100060000000300040000600500170001000800390002701000130006603500140007909000150009309200140010810000480012224500570017025000120022726000370023930000290027661000260030565000530033194200230038495200440040757575LVL20001025133239.0790809s1959 maub 00010 eng a59005268 a 59005268 c1278d1278 a940.54 Fo10aForester, C. S.d1899-1966.q(Cecil Scott),04aThe last nine days of the Bismarck /cC.S. Forester. a1st ed.0 aBoston :bLittle, Brown,cc1959. a138 p. :bmaps ;c21 cm.20aBismarck (Battleship) 0aWorld War, 1939-1945xNaval operations, British. aLVLcNFk940.54 Fo bMAINp31000000037237r10.00u6583u228600357 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000280009624500290012494200210015395200370017464594LVL19990217000000.0950324s19uu 000 0 eng d a58008781 c1279d12791 aGrey, Zane,d1872-1939.10aStranger from the Tonto. aLVLcAFkAF Grey bMAINp31000000029220u6584u228700569 2200217 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200150012510000300014024500380017026000380020830000210024644000150026794200250028295200440030729500LVL20030123144924.0920508s1992 nyu 00011 eng d a90064064 a0671724207 a 90064064 c1280d1280 aSF Bonanno10aBonanno, Margaret Wander.10aProbe /cMargaret Wander Bonanno.0 aNew York :bPocket Books,cc1992. a345 p. ;c22 cm. 0aStar Trek. aLVLcSCIkSF Bonanno bMAINp31000000039161r11.18u6586u228800811 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000230013524500450015826000410020330000300024444000420027452001530031665000350046994200210050495200440052536519LVL20000204000000.0960102s1971 nyua j 00011 eng a73155243 a0448089233 a 73155243 c1281d1281 aJ Dixon10aDixon, Franklin W.14aThe melted coins,cby Franklin W. Dixon.0 aNew York,bGrosset & Dunlap,cc1971. a180 p. :billus.,c20 cm. 4aThe Hardy Boys mystery stories ;v23. aSuspecting that their friend has been swindled, the Hardy brothers investigate and find themselves on the trail of a much larger criminal operation. 1aMystery and detective stories. aLVLcJFkJ Dixon bMAINp32000000061902r10.00u6587u228901403 2200421 450000100060000000300040000600500170001000800390002701000170006602000250008303500160010804000200012405000210014408200140016509000150017910000250019424500560021925000120027526000540028730000290034151000320037051000480040251000230045052001380047352100340061152100090064565000260065465000440068065000240072465000260074865000440077465000240081865100220084265100220086470000290088694200220091595200440093743538LVL19990313000000.0871014s1988 nyua j 000 1 eng a87029339 /AC a068807894X :c$13.00 aflb01706701 aDLCcDLCdICrlF0 aPZ7.B33bHe 19880 219a[Fic] c1282d12821 aBawden, Nina,d1925-10aHenry /cNina Bawden ; illustrated by Joyce Powzyk. a1st ed. aNew York :bLothrop, Lee & Shepard Books,cc1988. a119 p. :bill. ;c22 cm.0 aChildren's Catalog (Wilson)0 aJunior High School Library Catalog (Wilson)0 aALA Notable Books. aEvacuated to the English countryside during World War II, a fatherless family tries to raise a baby squirrel that also lost its home.0 a5.1bFollett Library Book Co.2 a3-6. 1aFamily lifexFiction. 1aWorld War, 1939-1945xFiction.zEngland 1aSquirrelsxFiction. 7aFamily lifexFiction. 7aWorld War, 1939-1945xFiction.zEngland 7aSquirrelsxFiction. 1aEnglandxFiction. 7aEnglandxFiction.11aPowzyk, Joyce Ann,eill. aLVLcJFkJ Bawden bMAINp32000000023669r11.70u6588u229000657 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000210013724500350015825000120019326000390020530000210024465000220026594200230028795200440031095200610035450557LVL19990312000000.0940708s1995 nyu 00011 eng a94028921 a0679415882 a 94028921 c1283d1283 aAF Chabon 0aChabon, Michael.10aWonder boys /cMichael Chabon. a1st ed.0 aNew York :bVillard Books,cc1995. a368 p. ;c22 cm. 0aAuthorsxFiction. aLVLcAFkAF Chabon bMAINp32000000060141r13.50u6589u2291 bMAINdLB2p31000000056756r13.50u6590u2292v2003-09-0101212 2200361 450000100060000000300040000600500170001000800390002701000170006602000310008303500160011404000200013005000230015008200140017309000150018710000180020224500700022026000610029030000290035149000240038051000320040451000520043651000270048852001460051552100340066152100090069565000130070465000230071770000220074070000230076294200220078595200430080757576LVL19990220000000.0860221c19861953caua j 00011 eng a86004645 /AC a0156136007 (pbk.) :c$3.95 aflb00961701 aDLCcDLCdICrlF0 aPZ7.N8248bBd 19860 219a[Fic] c1284d128410aNorton, Mary.14aThe Borrowers /cMary Norton ; illustrated by Beth and Joe Krush.0 aSan Diego :bHarcourt Brace Jovanovich,c[1986?], c1953. a180 p. :bill. ;c21 cm.0 aA Voyager/HBJ book.0 aChildren's Catalog (Wilson)0 aElementary School Library Collection (Bro-Dart)0 aBasal Reading Program. aMiniature people who live in an old country house by borrowing things from the humans are forced to emigrate from their home under the clock.0 a5.5bFollett Library Book Co.2 a3-6. 1aFantasy. 7aFantastic fiction.11aKrush, Joe,eill.11aKrush, Beth,eill. aLVLcJFkJ Norton bMAINp31000000049708r5.42u6591u229301682 2200457 450000100060000000300040000600500170001000800390002701000130006602000320007902000250011103500140013604000250015004300120017505000230018708200150021009000150022509200140024010000200025424501710027425000120044526000350045730000360049251000480052851000430057651000190061952001250063852100170076365000320078065000310081265000160084365100390085965100550089865100500095365100440100365100330104765100550108070000220113594200230115795200440118036520LVL19990319000000.0890206s1989 nyuc 00010 eng a89001109 a0385263465 (pbk.) :c$19.95 a0385262787 :c$27.50 a 89001109 aDLCcDLCdDLCdICrlF an-us---00aE169.12.bM69 198900219a973.92 c1285d1285 a973.92 Mo1 aMoyers, Bill D.12aA world of ideas :bconversations with thoughtful men and women about American life today and the ideas shaping our future /cBill Moyers ; Betty Sue Flowers, editor. a1st ed. aNew York :bDoubleday,cc1989. axii, 513 p. :bports. ;c29 cm.0 aSenior High School Library Catalog (Wilson)0 aBooklist Editors' (Reviewers') Choice.0 aSLJ Best Book. aA selection of one-on-one interviews with forty-two poets, physicists, historians, novelists, doctors, and philosophers.2 aYoung Adult. 0aCivilization, Moderny1950- 0aInterviewszUnited States. 7aInterviews. 0aUnited StatesxCivilizationy1970- 0aUnited StatesxPolitics and governmenty1981-1989. 0aUnited StatesxPolitics and governmenty1989- 7aUnited StatesxPolitics and government. 7aUnited StatesxCivilization. 0aUnited StatesxPolitics and governmenty1989-1993.10aFlowers, Betty S. aLVLcNFk973.92 Mo bMAINp32000000049866r11.77u6592u229400535 2200181 450000100060000000300040000600500170001000800410002709000150006810000220008324500850010526000320019030000290022265000170025165000140026894200280028295200430031043539LVL19990313000000.0920716s19xx xxu 00010 eng d c1286d128610aRockwell, Anne F.14aThe three bears & 15 other stories /cselected and illustrated by Anne Rockwell.0 aNew York :bCrowell,c1975. a116 p. :bill. ;c21 cm. 7aFairy tales. 7aFolklore. aLVLcJNFkJNF 398.2 ROC bMAINp32000000023398r8.54u6593u229500881 2200277 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200110011210000210012324500910014425000250023526000480026030000670030850000440037550000200041960000210043961100350046065000260049565100190052194200200054095200430056050558LVL20010730135905.0840424s1984 nyuabf 00110 eng a0671726528 anpl96000281 c1287d1287 a910 He10aHeyerdahl, Thor.10aKon-Tiki :bacross the Pacific by raft /cby Thor Heyerdahl ; translated by F.H. Lyon. a35th anniversary ed.0 aNew York :bWashington Square Press,c1984. axvi, 240 p. :b48 p. of plates :bill. ; maps ;c18 cm. ;dpa. aTranslation of: Kon-Tiki ekspedisjonen. aIncludes index.10aHeyerdahl, Thor.20aKon-Tiki ekspedisjonend(1947) 0aEthnologyzPolynesia. 0aPacific Ocean. aLVLcNFk910 He bMAINp32000000062574r3.59u6594u229600775 2200241 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200130011410000220012724500830014926000400023230000280027244000420030094200220034295200420036495200420040695200420044895200430049057577LVL20000301000000.0920220s1992 nyu j 00011 eng d a0553159437 aonv90002171 c1288d1288 aJ Pascal10aPascal, Francine.10aBig brother's in love /cwritten by Jamie Suzanne; created by Francine Pascal.0 aNew York :bBantam Skylark,cc1992. a133 p. ;c20 cm. ;dpa. 0aSweet Valley Twins and friends ;v57. aLVLcJFkJ Pascal bLB2p37000000007949r3.25u6595u2297 bLB1p36000000001838r1.89u6596u2298 bLB2p34000000009612r1.89u6597u2299 bMAINp31000000073765r1.89u6598u230000898 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009409000150011009200140012510000210013924500600016026000490022030000350026949000160030450000360032052001270035665000100048370000250049380000340051894200250055295200430057729502LVL19990320000000.0880219s1988 onca j 00010 eng a88003470 a0553054848 aflb01241806 c1289d1289 aE Leonard10aLeonard, Marcia.10aScared /cby Marcia Leonard ; pictures by Wendy Watson.0 aToronto ;aNew York :bBantam Books,cc1988. a[20] p. :bcol. ill. ;c16 cm.1 aHow I feel. a"A Bantam Little rooster book." aDescribes different types of fears, why we become afraid, and how talking with Mommy or Daddy can help in overcoming fear. 1aFear.11aWatson, Wendy,eill.1 aLeonard, Marcia.tHow I feel. aLVLcEASYkE Leonard bMAINp31000000004121r2.29u6600u230101394 2200397 450000100060000000300040000600500170001000800390002701000210006602000370008703500160012404000250014005000230016508200180018809000150020610000240022124500760024526000590032130000440038050000200042451000480044451000100049251000140050252001100051652100340062652100090066065000570066965000410072665000360076765000200080365000360082365000200085994200290087995200440090895200440095243540LVL19990313000000.0891127s1990 mnua j 001 0 eng a89049760 /AC/r91 a0822515911 (lib. bdg.) :c$15.95 aflb01346406 aDLCcDLCdDLCdICrlF00aQC912.3.bJ64 199000220a363.73/87 c1290d12901 aJohnson, Rebecca L.14aThe greenhouse effect :blife on a warmer planet /cRebecca L. Johnson. aMinneapolis, Minn. :bLerner Publications Co.,cc1990. a112 p. :bill. (chiefly col.) ;c23 cm. aIncludes index.0 aJunior High School Library Catalog (Wilson) aSLJ*.0 aBooklist. aDiscusses what the greenhouse effect is, research into its causes, and its possible impact on our planet.0 a6.9bFollett Library Book Co.2 a5-8. 0aGreenhouse effect, AtmosphericxJuvenile literature. 0aGlobal warmingxJuvenile literature. 1aGreenhouse effect, Atmospheric. 1aGlobal warming. 7aGreenhouse effect, Atmospheric. 7aGlobal warming. aLVLcJNFkJNF 363.73 JOH bMAINp32000000030934r16.95u6602u2302 bMAINp32000000030935r16.95u6603u230300811 2200253 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200130011410000220012724500880014926000370023730000280027444000440030270000200034694200220036695200420038895200430043095200420047395200420051550559LVL20000301000000.0960618s1996 myu j 00011 eng d a0553483919 anpl96001121 c1291d1291 aJ Pascal10aPascal, Francine.10aJessica's animal instincts /cwritten by Jamie Suzanne; created by Francine Pascal.0 aNew York :bBantam Books,cc996. a183 p. ;c20 cm. ;dpa. 0aSweet Valley twins ;vSuper editionv7.10aSuzanne, Jamie. aLVLcJFkJ Pascal bLB2p37000000008025r3.99u6604u2304 bMAINp32000000065277r2.31u6605u2305 bLB2p34000000013969r2.31u6607u2306 bLB1p33000000026018r2.31u6608u230700549 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000190013824500350015725000120019226000380020430000210024294200240026395200440028757578LVL19990220000000.0740501s1974 nyu 00011 eng a74008673 a0394493729 a 74008673 c1292d1292 aAF Maybury10aMaybury, Anne.10aJessamy Court /cAnne Maybury. a1st ed.0 aNew York :bRandom House,cc1974. a309 p. ;c22 cm. aLVLcAFkAF Maybury bMAINp31000000039380r10.00u6609u230800643 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000220013824500370016026000340019730000350023152000600026665000180032694200250034495200440036929503LVL19990320000000.0730301s1973 nyua j 00010 eng a72092442 a0027774805 a 72092442 c1293d1293 aJNF 616 Ro1 aRockwell, Harlow.10aMy doctor /cby Harlow Rockwell. aNew York :bMacmillancc1973. a[24] p. :bcol. illus.c23 cm. aDescribes a young child's visit to the doctor's office. 1aMedical care. aLVLcJNFkJNF 616 Ro bMAINp32000000035653r12.56u6610u230900521 2200193 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200200011210000230013224500370015526000420019230000210023494200280025595200440028343541LVL19990313000000.0930329s1988 enk 00011 eng a0340430486 aonv90004208 c1294d1294 aM Constan- tine1 aConstantine, K. C.10aJoey's case /cK.C. Constantine. aLondon :bHodder & Stoughton,cc1988. a216 p. ;c23 cm. aLVLcMYSkM Constantine bMAINp32000000038194r10.00u6611u231000599 2200217 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200190011410000180013324500510015126000360020230000350023865000140027365000220028794200290030995200430033850560LVL19990312000000.0960821s1995 nyua j 00010 eng d a0590535277 anpl96001667 c1295d1295 aJNF 796.332 We10aWeber, Bruce.10aPro football megastars :b1995 /cBruce Weber.0 aNew York :bScholastic,cc1995. a32 p. :bill. ;c28 cm. ;dpa. 1aFootball. 1aFootball players. aLVLcJNFkJNF 796.332 We bMAINp31000000061384r2.95u6613u231101509 2200445 450000100060000000300040000600500170001000800410002701000210006802000240008903500160011304000250012904300120015405000240016606000200019008200170021009000150022710000180024224500530026025000120031326000410032530000210036650000200038750400260040751000480043351000280048151000300050952001110053952100100065065000600066065000660072065000510078665000230083765000440086065000330090465000350093765000230097294200240099595200440101964598LVL20020903103057.0861009s1987 nyu b 00110 eng d a86026245 /AC/r87 a0823907325 :c$9.97 aflb00034611 aDNLM/DLCcDLCdICrlF an-us---0 aHD6060.3.bB55 1987 aHD 6060.3 B627c0 219a331.13/3 c1296d129610aBlack, Beryl.10aCoping with sexual harassment /cby Beryl Black. a1st ed.0 aNew York :bRosen Pub. Group,c1987. a149 p. ;c23 cm. aIncludes index. aBibliography: p. 145.0 aJunior High School Library Catalog (Wilson)0 aSchool Library Journal.0 aVoice of Youth Advocates. aDiscusses incidents of sexual harassment experienced by young people and ways of coping with this problem.2 a7-10. 0aSexual harassment of womenxMiscellanea.zUnited States 0aSex discrimination in employmentxMiscellanea.zUnited States 0aSexual harassmentxMiscellanea.zUnited States 1aSexual harassment. 2aInterpersonal relationsxPopular works. 2aSex Behaviorxpopular works. 2aWomen's Rightsxpopular works. 7aSexual harassment. aLVLcNFk331.133 Bl bMAINp31000000016377r12.95u6614u231200803 2200253 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200180011424500470013226000440017930000380022350000190026165000360028065000340031694200250035095200440037595200430041995200440046295200430050650561LVL19990312000000.0961105s1996 paua 00000 eng d a0801979218 anpl96001977 c1297d1297 aREF 629.28 Ch00aChilton's truck and van manual, 1993-1997.0 aRadnor, PA :bChilton Book Co.,cc1996. avarious pagings :bill. ;c28 cm. aPart no. 7921. 0aTrucksxMaintenance and repair. 0aVansxMaintenance and repair. aLVLcREFkREF 629.28 bMAINp32000000067728r14.72u6615u2313 bLB2p34000000014604r14.72u6616u2314 bMAINp31000000062477r14.72u6617u2315 bLB1p33000000027012r14.72u6618u231600579 2200217 450000100060000000300040000600500170001000800410002702000140006803500160008209000150009809200130011310000160012624500380014226000540018030000290023465000110026365000210027494200220029595200440031757580LVL19990220000000.0960826s1982 enka 00010 eng d a094629006 anpl96001703 c1298d1298 a641.8 Fo10aFord, Mary.10a101 cake designs /cby Mary Ford.0 aLondon :bMary Ford Cake Artistry Centre,cc1982. a320 p. :bill. ;c29 cm. 0aCakes. 0aCake decorating. aLVLcNFk641.8 Fo bMAINp31000000061471r20.00u6619u231700905 2200265 450000100060000000300040000600500170001000800390002702000140006603500160008009000150009609200150011110000320012624500750015826000440023330000400027744000240031752000880034165000390042965000340046870000250050294200260052795200430055395200430059629505LVL19990320000000.0960103r19921964nyua j 00011 eng a006440753 anpl96000004 c1299d1299 aE Benchley10aBenchley, Nathaniel,d1915-10aRed fox and his canoe /cNathaniel Benchley; pictures by Arnold Lobel.0 aNew York :bHarperTrophy,c1992, c1964. a62 p. :bcol. ill. ;c22 cm. ;dpa. 3aAn I can read book. aA young Indian boy receives a larger canoe along with some unforseen complications. 1aIndians of North AmericaxFiction. 1aCanoes and canoeingxFiction.11aLobel, Arnold,eill. aLVLcEASYkE Benchley bMAINp32000000061936r2.24u6620u2318 bMAINp32000000061937r2.24u6621u231900563 2200217 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200130011210000180012524500300014326000420017330000260021550000170024165000200025894200240027895200430030257581LVL19990220000000.0940203s1993 nyua j 00011 eng a0671882635 anpl93002014 c1300d1300 aE Tucker1 aTucker, Sian.10aLet's go! /cSian Tucker. aNew York :bSimon & Schuster,cc1993. a26 p. :bill.,c9 cm. a[Board book] 0aTransportation. aLVLcEASYkE Tucker bMAINp31000000046454r1.74u6623u232000856 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007904000130009405000240010708200150013109000150014610000220016124500510018326000450023430000410027950000200032050400260034065000520036665000450041865000490046394200220051295200440053464600LVL20020905093401.0880323s1988 nyua bf 00110 eng a88010197 a0670818941 aDLCcDLC0 aSB351.H5bB658 19880 219a635/.7 c1301d130110aBremness, Lesley.14aThe complete book of herbs /cLesley Bremness.0 aNew York :bViking Studio Books,cc1988. a288 p. :bill. (some col.) ;c31 cm. aIncludes index. aBibliography: p. 281. 0aHerbsxIdentificationxHandbooks, manuals, etc. 0aHerb gardeningxHandbooks, manuals, etc. 0aHerbsxUtilizationxHandbooks, manuals, etc. aLVLcNFk635.7 Br bMAINp31000000024408r14.28u6624u232100923 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000170013624500690015325000120022226000380023430000290027252001530030165000400045465000260049465100230052070000360054394200220057995200440060129506LVL19990320000000.0850520s1985 nyua j 00011 eng a85042633 a006021337X a 85042633 c1302d1302 aJ Conrad1 aConrad, Pam.10aPrairie songs /cPam Conrad ; illustrations by Darryl S. Zudeck. a1st ed. aNew York :bHarper & Row,cc1985. a167 p. :bill. ;c24 cm. aLouisa's life in a loving pioneer family on the Nebraska prairie is altered by the arrival of a new doctor and his beautiful, tragically frail wife. 1aFrontier and pioneer lifexFiction. 1aFamily lifexFiction. 1aNebraskaxFiction.11aZudeck, Darryl S.,d1961-eill. aLVLcJFkJ Conrad bMAINp32000000036735r12.50u6625u232200533 2200193 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200140011210000310012624500450015726000430020230000260024594200250027195200430029636525LVL19990319000000.0951103s1994 nyu 00011 eng a0671887416 anpl95001470 c1303d1303 aYA Cusick10aCusick, Richie Tankersley.14aThe drifter /cRichie Tankersley Cusick.0 aNew York :bArchway Paperback,cc1994. a231 p. ;c18 cm.dpa. aLVLcYANFkYA Cusick bMAINp31000000057067r3.61u6626u232300336 2200133 450000100060000000300040000600500170001000800410002709000150006810000310008324500210011494200240013595200430015950563LVL19990312000000.0930420s19xx xxu 00010 eng d c1304d13041 aForsyth, Frederick,d1938-14aThe dogs of war. aLVLcAFkAF Forsyth bMAINp32000000009861r2.75u6627u232400654 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007904000130009405000220010708200160012909000150014510000170016024500390017726000280021630000270024435000120027150400300028365000190031394200240033295200440035664601LVL19990217000000.0711019s1971 nyua b 00100 eng a74153651 a0668024844 aDLCcDLC0 aNK9509.bW5 1971b a745.59/2/09 c1305d130510aWhite, Gwen.10aAntique toys and their background.0 aNew York,bArcoc[1971] a260 p.billus.c26 cm. a$19.95. aBibliography: p. 254-255. 0aToysxHistory. aLVLcNFk745.59 WHI bMAINp31000000023439r19.95u6628u232501053 2200289 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200150012510000170014024500940015726000520025130000400030349000320034352001740037565000240054970000180057370000280059183000310061994200250065095200440067595200440071929507LVL19990320000000.0930312s1985 mnua j 00010beng d a84027446 a0876142757 a 84027446 c1306d1306 aJB Burgess1 aRoop, Peter.10aKeep the lights burning, Abbie /cby Peter and Connie Roop ; pictures by Peter E. Hanson. aMinneapolis, Minn. :bCarolrhoda Books,cc1985. a40 p. :bill. (some col.) ;c23 cm.10aCarolrhoda on my own books. aIn the winter of 1856, a storm delays the lighthouse keeper's return to an island off the coast of Maine, and his daughter Abbie must keep the lights burning by herself. 1aLighthouse keepers.10aRoop, Connie.11aHanson, Peter E.,eill. 0aCarolrhoda on my own book. aLVLcJNFkJB Burgess bMAINp32000000037863r13.46u6629u2326 bMAINp32000000037864r13.46u6630u232701570 2200433 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000270013724500480016425000120021226000380022430000390026252001240030165000190042565000240044465000200046865000270048865000270051594200250054295200420056795200420060995200430065195200430069495200430073795200590078095200430083995200430088295200420092595200420096795200430100995200420105295200420109436526LVL20020418142734.0871028s1988 nyua j 00011 eng a87045758 a0060242116 a 87045758 c1307d1307 aE McCully10aMcCully, Emily Arnold.14aThe Christmas gift /cEmily Arnold McCully. a1st ed.0 aNew York :bHarper & Row,cc1988. a[32] p. :ball col. ill. ;c24 cm. aWhen a little mouse's treasured Christmas gift is broken, Grandpa consoles her with a toy train from his own childhood. 1aMicexFiction. 1aChristmasxFiction. 1aGiftsxFiction. 1aGrandfathersxFiction. 1aStories without words. aLVLcEASYkE McCully bLB2p37000000004644r4.95u6631u2328 bLB2p37000000006102r4.95u6632u2329 bMAINp32000000022763r8.42u6633u2330 bMAINp32000000036663r4.95u6634u2331 bMAINp32000000044963r4.95u6635u2332 bLB1dLB1p36000000003689r4.95u6637u2333v2003-09-01 bMAINp35000000001555r8.42u6638u2334 bMAINp35000000003047r4.95u6639u2335 bLB2p34000000011573r4.95u6640u2336 bLB2p34000000010664r4.95u6641u2337 bMAINp31000000004026r8.42u6642u2338 bLB1p33000000017797r4.95u6643u2339 bLB1p33000000014554r4.95u6644u234000963 2200265 450000100060000000300040000600500170001000800390002701000170006602000240008303500180010704000180012505000230014308200120016609000150017810000360019324500610022925000120029026001410030230000400044352001210048365000230060494200270062795200430065443545LVL19990313000000.0900817s1991 nyua j 000 1 eng a90046925 /AC a0027744116 :c12.95 a 90046925 /AC aDLCcDLCdDLC00aPZ7.P6335bWe 199100220a[E] c1308d13081 aPinkwater, Daniel Manus,d1941-10aWempires /cwritten and illustrated by Daniel Pinkwater. a1st ed. aNew York :aToronto :aNew York :bMacmillan Pub. Co. ;bMaxwell Macmillan Canada ;bMaxwell Macmillan International Pub. Group,cc1991. a[32] p. :bcol. ill. ;c19 x 24 cm. aAt the height of his vampire craze, Jonathan meets some real vampires and finds they are not quite what he expected. 1aVampiresxFiction. aLVLcEASYkE Pinkwater bMAINp32000000031355r7.64u6645u234100382 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000320009824500390013094200240016995200430019350564LVL19990312000000.0940606s19xx xxu 00010 eng d a0517354217 c1309d13091 aL'Amour, Louis,d1908-1988.10aFive complete novels :bseries II. aLVLcWESkW L'Amour bMAINp32000000002327r4.71u6646u234200838 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000200013824500480015825000120020626000530021830000350027152001280030665000220043465000250045665000220048194200260050395200430052957583LVL19990220000000.0940906s1993 nyua j 00011 eng a92054864 a1562824341 a 92054864 c1310d1310 aE Borovsky1 aBorovsky, Paul.14aThe strange blue creature /cPaul Borovsky. a1st ed. aNew York :bHyperion Books for Children,cc1993. a[32] p. :bcol. ill. ;c23 cm. aA strange blue creature threatens to eat all the crayons in a tiny kingdom, until the princess shows him how they are used. 1aCrayonsxFiction. 1aPrincessesxFiction. 1aArtistsxFiction. aLVLcEASYkE Borovsky bMAINp31000000051079r8.95u6647u234300771 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007902000210009403500140011509000150012909200140014410000260015824500430018425000120022726000430023930000270028294200230030995200420033295200440037495200430041895200440046129508LVL20030310092107.0921224s1993 nyu 00011 eng a92056200 a0060167688 a0061091790 (pa.) a 92056200 c1311d1311 aAF Isaacs10aIsaacs, Susan,d1943-10aAfter all these years /cSusan Isaacs. a1st ed.0 aNew York, NY :bHarperCollins,cc1993. aviii, 343 p. ;c25 cm. aLVLcAFkAF Isaacs bLB2p37000000019042r6.99u6648u2344 bMAINp32000000042074r13.57u6649u2345 bLB2p34000000014222r13.57u6651u2346 bMAINp31000000043529r13.57u6652u234700606 2200205 450000100060000000300040000600500170001000800390002701000120006603500160007809000150009409200130010910000360012224500640015826000500022230000210027294200220029395200430031595200420035836527LVL19990319000000.0950321c1957 ohu j 00011 eng a57 7409 aonv90003919 c1312d1312 aJ Alcott10aAlcott, Louisa May,d1832-1888.10aJo's boys :ba sequel to "Little Men" /cLouisa May Alcott.0 aCleveland, OH :bWorld Publishing Co.,c1957. a342 p. ;c21 cm. aLVLcJFkJ Alcott bMAINp32000000036898r1.95u6654u2348 bLB2p34000000001168r2.98u6655u234900790 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000180013824500570015626000420021330000430025544000140029850400590031265000220037170000180039394200250041195200440043695200440048050565LVL19990312000000.0941121s1995 nyua j b 00110 eng a94045474 a1568472447 a 94045474 c1313d1313 aJNF 411 Ro10aRowe, Julian.10aLanguage and writing /cJulian Rowe and Peggy Burns.0 aNew York :bThomson Learning,cc1995. a48 p. :bill. (chiefly col.) ;c28 cm. 0aLegacies. aIncludes bibliographical references (p. 47) and index. 1aWritingxHistory.10aBurns, Peggy. aLVLcJNFkJNF 411 Ro bMAINp32000000062007r11.96u6657u2350 bMAINp31000000058002r11.96u6658u235101172 2200325 450000100060000000300040000600500170001000700100002700800410003703500160007803700180009409000150011209200210012724501680014826000580031630000540037449000260042850000500045450600310050452000840053552100130061953800240063265000220065670000290067870000280070770000160073570000230075194200280077495200440080257584LVL19990220000000.0vf cbahom941104s1983 cau025 g vaeng d avid93001446 a8006bEmbassy c1314d1314 aAVJ Beren- stain04aThe Berenstain Bears' play ballcJoseph Cates Company ; produced by Buzz Potamkin and Hal Hoffer ; directed by Mordecai Gerstein and Al Kouzel.h[videorecording] / aCanoga Park, CA :bEmbassy Home Entertainment,c1983. a1 videocassette (25 min.) :bsd., col. ;c1/2 in.00aChildren's treasures. aBased on the book by Stan and Jan Berenstain. aFor private home use only. aThe Berenstain Bears learn a valuable lesson about sports, competition and fun. aGeneral. aVHS. In hi-fi mono. 0aChildren's films.11aBerenstain, Stan,d1923-11aBerenstain, Jan,d1923-11aKouzel, Al.11aGerstein, Malachi. aLVLcAVkAVJ Berenstain bMAINp31000000030018r10.98u6659u235200903 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000170013824500780015525000380023326000380027144000310030950000500034050400510039060000400044161000370048165000400051894200250055895200420058329509LVL20020905152524.0920824r19931992nyuabf b 00110beng a92050621 a0679743987 a 92050621 c1315d1315 aB Sheridan10aMorris, Roy.10aSheridan :bthe life and wars of General Phil Sheridan /cRoy Morris, Jr. a1st Vintage Civil War library ed.0 aNew York :bVintage Books,c1993. 0aVintage Civil War library. aOriginally published: New York : Crown, 1992. aIncludes bibliographical references and index.10aSheridan, Philip Henry,d1831-1888.10aUnited States.bArmyxBiography. 0aGeneralsxBiography.zUnited States aLVLcBIOkB Sheridan bLB1p33000000016019r8.26u6660u235301037 2200325 450000100060000000300040000600500170001000800390002701000130006602000250007903500160010403900180012004000200013805000230015808200170018109000150019810000210021324500510023425000210028526000520030630000210035849000310037951000140041052001350042452100170055965000350057665000350061194200220064695200430066836528LVL20011201092810.0821014r1983 nyu 00011 eng a82018738 a0030629780 :c$13.00 aflb005915100 a2b3c3d3e3 aDLCcDLCdICrlF0 aPR6063.O9bS5 19830 219a823/.914 c1316d131610aMoyes, Patricia.12aA six-letter word for death /cPatricia Moyes. a1st American ed.0 aNew York :bHolt, Rinehart and Winston,cc1983. a241 p. ;c22 cm.0 aA Rinehart suspense novel.0 aBooklist. aHenry Tibbett, Chief Superintendent of Scotland Yard, receives an anonymous crossword puzzle containing clues to a murder mystery.2 aYoung Adult. 7aMystery and detective stories. 0aMystery and detective stories. aLVLcMYSkM Moyes bMAINp32000000002789r7.67u6661u235400947 2200265 450000100060000000300040000600500170001000800390002701000170006602000250008302000270010803500160013508200220015109000150017310000250018824500540021325000120026726000540027930000350033352001950036865000250056365000230058894200270061195200430063864604LVL20030604072430.0880323s1989 nyua j 00011 eng a88010936 /AC a0803705875 :c$10.95 a0803705883 (lib. bdg.) aflb017752040 219aE Alex- ander c1317d131710aAlexander, Martha G.10aMy outrageous friend Charlie /cMartha Alexander. a1st ed.0 aNew York :bDial Books for Young Readers,cc1989. a[32] p. :bcol. ill. ;c23 cm. aJessie Mae admires her outrageous friend Charlie because he can do anything; but, when he gives her a Super Delux Triple Magic kit for her birthday, she finds that she can be outrageous too. 1aFriendshipxFiction. 1aBehaviorxFiction. aLVLcEASYkE Alexander bMAINp31000000107321r6.46u6662u235500663 2200181 4500010001300000090001500013100002100028245004400049260004900093300002600142610005000168650004300218650002800261651004400289942002400333952006200357952006200419 a55011279 c1318d13181 aKennedy, John F.10aProfiles in courage /cJohn F. Kennedy. aNew York :bHarper & Brothers,c1956, c1955. axix, 266 p. ;c22 cm.10aUnited States.bSenatebCongress.xBiography. 0aLegislatorsxBiography.zUnited States 0aCouragezUnited States. 0aUnited StatesxPolitics and government. aLVLcNFk923.273 Ke bMAINdMAINp32000000042143r10.00u6663u2356v2003-09-01 bLB1dLB1p33000000062238r10.00u303223u2357v2004-06-0900921 2200289 450000100060000000300040000600500170001000800390002701000130006602000410007902000310012003500140015104000130016505000260017808200140020409000150021810000210023324500910025426000890034530000350043465000180046965000220048765000140050994200220052395200430054595200430058836529LVL19990319000000.0870219s1987 mnua 000 0 eng a87005599 z0671641799 (Simon & Schuster : pbk.) a0881660965 (pbk.) :c$4.95 a 87005599 aDLCcDLC0 aGV1472.7.S5bC67 19870 219a793.2 c1319d13191 aCooke, Courtney.14aThe best wedding shower book :ba complete guide for party planners /cCourtney Cooke. aDeephaven, MN :aNew York :bMeadowbrook ;bDistributed by Simon & Schuster,cc1987. aviii, 117 p. :bill. ;c18 cm. 0aEntertaining. 0aShowers (Parties) 0aWeddings. aLVLcNFk793.2 Co bMAINp32000000011915r2.92u6664u2358 bMAINp31000000027328r2.92u6666u235901410 2200385 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000240013724500790016126000380024030000350027844000380031350000350035152001290038665000260051565000200054165100200056170000250058180000550060694200230066195200420068495200430072695200420076995200430081195200420085495200430089695200430093995200420098250567LVL20020506084119.0940628s1995 nyua j 00011 eng a94029142 a0679863710 a 94029142 c1320d1320 aJ Osborne10aOsborne, Mary Pope.10aNight of the Ninjas /cby Mary Pope Osborne ; illustrated by Sal Murdocca.0 aNew York :bRandom House,cc1995. a68 p. :bill. ;c20 cm. ;dpa. 4aThe Magic tree house series ;v5. a"A First stepping stone book." aThe magic tree house takes Jack and Annie back in time to feudal Japan where the siblings learn about the ways of the Ninja. 1aTime travelxFiction. 1aNinjaxFiction. 1aJapanxFiction.11aMurdocca, Sal,eill.1 aOsborne, Mary Pope.tMagic tree house series ;v5. aLVLcJFkJ Osborne bLB2p37000000012705r3.99u6667u2360 bMAINp32000000063089r2.24u6668u2361 bLB1p36000000017038r3.99u6669u2362 bMAINp35000000010098r3.99u6670u2363 bLB2p34000000026577r3.99u6671u2364 bMAINp31000000058680r2.24u6672u2365 bMAINp31000000085636r3.99u6673u2366 bLB1p33000000042464r3.99u6674u236701268 2200337 450000100060000000300040000600500170001000700100002700800410003703500160007803700150009409000150010909200130012424501430013726000570028030000550033750000530039250600310044551100380047652001890051452100130070353800200071660000190073665000190075570000190077470000220079370000290081571000200084494200220086495200440088629511LVL20020927133206.0vf cbahom931028r19861978cau099 g vleng d avid93000508 a55117bMCA c1321d1321 aAV Other04aThe Other side of the mountain, part 2cUniversal Pictures ; produced by Edward S. Feldman ; directed by Larry Peerce.h[videorecording] / aUniversal City, CA :bMCA Home Video,cc1986, c1978. a1 videocassette (99 min.) :bsd., col. ;c1/2 in.. aOriginally released as a motion picture in 1978. aFor private home use only.1 aMarilyn Hassett, Timothy Bottoms. aA continuation of the true story of the life of Jill Kinmont, a skier who is paralyzed during an accident. In this part, she returns to her home town where she finds love and marriage. aGeneral. aVHS Hi-fi mono.10aKinmont, Jill. 0aFeature films.11aPeerce, Larry.11aHassett, Marilyn.11aBottoms, Timothy,d1951-21aMCA Home Video. aLVLcAVkAV Other bMAINp31000000039016r47.99u6676u236800697 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000230013624500340015926000440019330000210023765000680025865000350032665100290036194200220039095200430041236530LVL20020923121124.0930614s1993 nyu 00011 eng a93024278 a0312097999 a 93024278 c1322d1322 aAF Hodge10aHodge, Jane Aiken.10aEscapade /cJane Aiken Hodge.0 aNew York :bSt. Martin's Press,cc1993. a231 p. ;c22 cm. 0aBritishxTravelxHistoryxFiction.y18th centuryzItalyzSicily 0aYoung womenxFiction.zEngland 0aSicily (Italy)xFiction. aLVLcAFkAF Hodge bMAINp32000000063657r2.00u6677u236900945 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010810000260012324500450014926000580019430000630025244000890031550000810040460000740048565000790055994200210063895200440065943549LVL19990313000000.0830929s1984 mauacf 00010aeng a83018638 a0674639251 a 83018638 c1323d132310aWelty, Eudora,d1909-10aOne writer's beginnings /cEudora Welty.0 aCambridge, Mass. :bHarvard University Press,cc1984. a104 p., [11] p. of plates :bill., ports. ;c23 cm. ;dpa. 4aThe William E. Massey, Sr. lectures in the history of American civilization ;v1983. aRevised versions of 3 lectures delivered at Harvard University in Apr. 1983.10aWelty, Eudora,d1909-xBiographyxYouthxAddresses, essays, lectures. 0aNovelists, AmericanxBiographyxAddresses, essays, lectures.y20th century aLVLcNFkB Welty bMAINp32000000073595r10.00u6678u237000441 2200157 450000100060000000300040000600500170001000800410002701000130006809000150008110000240009624500540012094200230017495200430019795200430024050568LVL19990312000000.0930415s19xx xxu 00010 eng d a75012260 c1324d1324 aHolstein, Jonathan.14aThe pieced quilt :ban American design tradition. aLVLcNFk746.4 HOL bMAINp32000000022443r5.98u6679u2371 bMAINp31000000023470r5.98u6680u237200569 2200205 450000100060000000300040000600500170001000800410002703500160006809000150008409200140009910000260011324500370013925000180017626000380019430000210023294200230025395200440027695200430032064606LVL20020924105400.0920923s1981 nyu 00011 eng d aonv90003399 c1325d1325 aAF Dailey10aDailey, Janet,d1944-10aThis Calder sky /cJanet Dailey. aBook club ed.0 aNew York :bPocket Books.cc1981. a344 p. ;c22 cm. aLVLcAFkAF Dailey bMAINp31000000040669r10.00u6681u2373 bLB1p33000000016435r10.00u6682u237400577 2200205 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200140011224500460012626000390017230000360021165000360024771000260028394200250030995200370033429512LVL20000911212844.0931220s1993 ctua j be 00100deng a071720572X anpl93001701 c1326d1326 aJR 031 Ho00aHome and school reading and study guides. aDanbury, Conn. :bGrolier,cc1993. aii, 107; iii, 85 p. ;c26 cm.;. 1aEncyclopedias and dictionaries.20aGrolier Incorporated. aLVLcJREFkJR 031 Ho bMAINp32000000044065u6683u237500925 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012324500550013625000120019126000490020330000210025250000200027360000270029360000200032061000470034065000480038765000570043570000200049294200230051295200440053595200440057943550LVL19990313000000.0961002s1996 nyua 00110beng a96024774 a0060183632 a 96024774 c1327d1327 aB Mantle02aA hero all his life /cMerlyn Mantle ... [et al.]. a1st ed. aNew York :bHarperCollinsPublishers,cc1996. a260 p. :c24 cm. aIncludes index.10aMantle, Mickey,d1931-10aMantle, Merlyn.20aNew York Yankees (Baseball team)xHistory. 0aBaseball playersxBiography.zUnited States 0aBaseball players' spousesxBiography.zUnited States10aMantle, Merlyn. aLVLcBIOkB Mantle bMAINp32000000067118r15.00u6684u2376 bMAINp31000000061960r15.00u6685u237700347 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000220009624500140011894200260013295200430015850569LVL19990312000000.0940629s19xx xxu 00010 eng d a73012203 c1328d13281 aGrant, Matthew G.10aGeronimo. aLVLcJNFkJB Geronimo bMAINp32000000026577r2.19u6686u237800355 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000200009824500230011894200250014195200430016657588LVL19990220000000.0950324s19uu 000 0 eng d a0345341228 c1329d13291 aMichaels, Fern.10aSins of the flesh. aLVLcAFkAF Michaels bMAINp31000000026824r3.51u6687u237901222 2200349 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009404300120010805000150012008200180013509000150015309200150016810000230018324500850020626000460029130000300033749000330036752001820040060000300058260000330061265000150064565100470066070000170070794200210072495200420074595200430078795200420083064607LVL20000911221940.0800324s1979 njua j 00010ceng a78018055 a0893751669 a 78018055 ae-no---0 aE105.bS37 a970.01/3/0922 c1330d1330 ajb Ericson10aSchiller, Barbara.10aEric the Red and Leif the Lucky /cBarbara Schiller ; illustrated by Hal Frenck.0 aMahwah, N.J. :bTroll Associates,cc1979. a[48] p. :bill. ;c23 cm. 0aAdventures in the New World. aPresents brief biographies of the Norse explorer who settled Greenland and of his son who explored parts of North America almost 500 years before Columbus made his first voyage.01aEric,cthe Red,dfl. 985.11aEricson, Leif,dd. ca. 1020. 1aExplorers. 1aAmericaxDiscovery and explorationxNorse.11aFrenck, Hal. aLVLcJBkJB Eric bLB1p36000000002208r6.40u6688u2380 bMAINp31000000035232r6.40u6689u2381 bLB1p33000000006119r6.40u6690u238200976 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200180012310000180014124500410015925000210020026000370022130000350025852001540029365000210044765000200046894200280048895200430051695200420055995200430060195200420064429513LVL19990320000000.0881005r1989 nyua j 00010 eng a88043152 a0394922638 a 88043152 c1331d1331 aJNF 591.57 Bu10aBurton, Jane.10aAnimals keeping safe /cJane Burton. a1st American ed.0 aNew York :bRandom House,c1989. a[24] p. :bcol. ill. ;c20 cm. aPhotographs and text depict how animals use teeth, claws, spikes, horns, camouflage, poison, and other ways to protect themselves from their enemies. 1aAnimal defenses. 1aAnimal weapons. aLVLcJNFkJNF 591.57 Bu bMAINp32000000044865r2.98u6691u2383 bLB2p34000000008451r2.98u6692u2384 bMAINp31000000046577r2.98u6693u2385 bLB1p33000000017747r2.98u6694u238600911 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200160012310000250013924500850016425000260024926000350027530000400031052001640035060000550051465000200056994200250058995200430061436532LVL19990319000000.0880810s1989 nyua j 00010beng a88025721 a0385249268 a 88025721 c1332d1332 aJB Nijinsky1 aBrighton, Catherine.10aNijinsky :bscenes from the childhood of the great dancer /cCatherine Brighton. a1st ed. in the U.S.A. aNew York :bDoubleday,cc1989. a[28] p. :bcol. ill. ;c23 x 28 cm. aDescribes how the renowned Russian ballet dancer found an outlet for his childhood unhappiness through dance and was eventually called to perform for the Tsar.11aNijinsky, Waslaw,d1890-1950xChildhood and youth. 1aBallet dancers. aLVLcNFkJB Nijinsky bMAINp32000000035817r6.95u6695u238700429 2200157 4500010001300000020001500013082001200028090001500040100002900055245003200084260003800116300002100154740001100175942002100186952006400207 a90052897 a039456996200a813/.54 c1333d1333 0aPuzo, Mario,d1920-1999.14aThe fourth K /cMario Puzo.0 aNew York :bRandom House,cc1990. a479 p. ;c24 cm.01a4th K. aLVLcAFkAF Puzo bMAINdMAINp32000000037086r13.28u304061u2388v2004-06-1600316 2200133 450000100060000000300040000600500170001000800410002709000150006824500310008330000090011494200160012395200430013950570LVL20000303000000.0950422c19uu r p 0 a0eng d c1334d133400aConsumer Reports 1995 May. a21c. aLVLcPERkA bMAINp32000000056792r2.95u6697u238900322 2200133 450000100060000000300040000600500170001000800410002709000150006810000170008324500290010094200220012995200370015157589LVL19990220000000.0950323s19uu 000 0 eng d c1335d13351 aBlume, Judy.10aWifey :ban adult novel. aLVLcAFkAF Blume bMAINp31000000011630u6698u239000370 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000200009824500390011894200240015795200430018150571LVL19990312000000.0940620s19xx xxu 00010 eng d a0590430262 c1336d1336 aPeterson, John.14aThe Littles and the lost children. aLVLcJFkJ Peterson bMAINp32000000030017r1.45u6699u239100898 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000310013724500990016825000120026726000390027930000350031852001160035365000260046970000270049594200250052295200420054795200430058964609LVL19990217000000.0900209s1990 nyua j 00011 eng a90055106 a0823408264 a 90055106 c1337d1337 aE Sharmat10aSharmat, Marjorie Weinman.10aI'm Santa Claus and I'm famous /cby Marjorie Weinman Sharmat ; illustrated by Marylin Hafner. a1st ed.0 aNew York :bHoliday House,cc1990. a[32] p. :bcol. ill. ;c29 cm. aOn Career Day Santa Claus visits school and tells the children how he was trained for his job by the old Santa. 1aSanta ClausxFiction.11aHafner, Marylin,eill. aLVLcEASYkE Sharmat bLB2p34000000011937r8.67u6700u2392 bMAINp31000000033589r8.67u6701u239301155 2200325 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009924500420011424600290015626000370018530000280022249000320025074000330028294200260031595200430034195200420038495200430042695200610046995200430053095200420057395200430061595200430065895200430070195200430074495200420078729515LVL19990401000000.0960611s1996 nyua j 00000 eng d a1570821739 anpl96001059 c1338d133800aDisney's The hunchback of Notre Dame.1 aHunchback of Notre Dame.0 aNew York :bMouse Works,cc1996. a96 p. :bill. ;c30 cm.1 aThe Mouse Works collection.41aThe hunchback of Notre Dame. aLVLcEASYkE Disney's bLB2p37000000001464r11.99u6702u2394 bLB2p37000000001507r4.71u6703u2395 bMAINp32000000065078r4.79u6704u2396 bMAINdMAINp32000000065079r4.79u6705u2397v2003-09-01 bMAINp35000000001762r4.79u6707u2398 bLB2p34000000013894r4.79u6708u2399 bLB2p34000000018364r11.99u6709u2400 bMAINp31000000060289r4.79u6710u2401 bMAINp31000000060290r4.79u6711u2402 bMAINp31000000060291r4.79u6712u2403 bLB1p33000000025860r4.79u6713u240400899 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012324500350013826000460017330000330021944000290025250000560028150000200033752001190035765000200047665000130049694200250050995200440053495200430057843553LVL19990313000000.0870729s1988 wiua j 00110 eng a87020775 a0817231145 a 87020775 c1339d1339 aJNF 591 An10aAnimals in houses and gardens.0 aMilwaukee :bRaintree Publishers,cc1988. a48 p. :bcol. ill. ;c26 cm. 0aAnimals and their homes. aTranslation of: Animaux des maisons et des jardins. aIncludes index. aDescribes mice, snails, flies, birds, worms, spiders, cats, and other animals commonly found in homes and gardens. 1aGarden animals. 1aAnimals. aLVLcJNFkJNF 591 An bMAINp32000000040218r14.65u6714u2405 bLB1p33000000015757r14.65u6715u240600619 2200217 450000100060000000300040000600500170001000800410002703500160006809000150008409200150009910000160011424500620013026000480019230000300024044000220027065000150029270000260030794200250033395200430035850572LVL20011231103850.0920302s1982 ctua j 00010 eng d aonv90002243 c1340d1340 aJNF 395 Be10aBerry, Joy.10aBeing rude /cby Joy Berry; illustrated by John Costanza.0 aDanbury, CT :bGrolier Enterprises,cc1982. a[30] p. :bill. ;c19 cm. 0aLet's talk about. 1aEtiquette.11aCostanza, John,eill. aLVLcJNFkJNF 395 Be bMAINp31000000038352r3.95u6716u240700328 2200133 450000100060000000300040000600500170001000800410002709000150006810000170008324500280010094200230012895200430015157591LVL19990220000000.0950324s19uu 000 0 eng d c1341d1341 aSteele, Bob.10aRaid on the broken bow. aLVLcAFkAF Steele bMAINp31000000034750r5.40u6717u240801018 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000200013524500690015526000450022430000600026950000270032950000260035652001770038265000270055965000280058665000220061465100260063670000450066294200210070764610LVL19990217000000.0850605s1986 nyuaf j 00011 eng a85013292 a0517618141 a 85013292 c1342d1342 aJ Spyri10aSpyri, Johanna.10aHeidi /cby Johanna Spyri ; illustrated by Jessie Willcox Smith.0 aNew York :bChildren's Classics,cc1986. a349 p., [10] p. of plates :bill. (some col.) ;c24 cm. aTranslation of: Heidi. aErrata slip inserted. aA Swiss orphan is heartbroken when she must leave her beloved grandfather and their happy home in the mountains to go to school and to care for an invalid girl in the city. 1aGrandfathersxFiction. 1aMountain lifexFiction. 1aOrphansxFiction. 1aSwitzerlandxFiction.11aSmith, Jessie Willcox,d1863-1935,eill. aLVLcJFkJ Spyri00592 2200145 4500090001500000245017500015260005300190300005000243511002200293538001600315650002200331700002300353942002600376952004400402 c1343d134310aEveryone can dance :bPreschoolers /cCreative Art Television Productions ; Linda Strickland and Sandra Strickland, co-producers ; directed by Ed Smith.h[videorecording]0 aBoca Raton, FL :bCAT Productions, Inc.,cp1993. a1 videocassette; (30) :bsd., col. ;c1/2 in.0 aLinda Strickland. aVHS Format. 0aChildren's films.11aStrickland, Linda. aLVLcAVkAVJ Everyone bMAINp31000000058168r11.21u6719u240900569 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000180013724500310015526000360018630000210022265100410024394200230028495200440030736535LVL20010816182422.0920511s1993 nyu 00011 eng a92050347 a0670838675 a 92050347 c1344d1344 aAF Battle10aBattle, Lois.10aStoryville /cLois Battle.0 aNew York, NY :bViking,cc1993. a435 p. ;c24 cm. 0aNew Orleans (La.)xHistoryxFiction. aLVLcAFkAF Battle bMAINp32000000038007r13.20u6721u241000579 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009409000150011009200150012510000200014024500330016026000360019330000230022994200240025295200430027695200420031943554LVL20010906171139.0930811s1982 nyu j 00011 eng a90093388 a0380760029 anpl93000827 c1345d1345 aYA Zelazny1 aZelazny, Roger.10aEye of cat /cRoger Zelazny. aNew York :bAvon Books,cc1982. a188 p. ;c18 cm.;. aLVLcYAkYA Zelazny bMAINp32000000041357r2.31u6723u2411 bLB2p37000000018375r2.31u6724u241200478 2200181 450000100060000000300040000600500170001000800410002701000130006802000150008109000150009610000200011124500400013126000370017130000210020894200240022995200430025364611LVL20000426000000.0930419s19xx xxu 00010 eng d a81002047 a0688006086 c1346d134610aSouthall, Ivan.14aThe golden goosecby Ivan Southall.0 aNew York :bGreenwillow,cc1981. a180 p. ;c22 cm. aLVLcJFkJ Southall bMAINp31000000005723r1.98u6725u241300909 2200277 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200140012510000170013924501000015626000420025630000450029850000600034360000320040360000170043565000390045270000280049194200240051995200440054395200440058729517LVL20030403143438.0941116s1994 nyuaf 00010beng d a94076165 a0821746162 a 94076165 c1347d1347 aB Presley10aBova, Joyce.10aDon't ask forever: my love affair with Elvis /cby Joyce Bova as told to William Conrad Nowels.0 aNew York :bKensington Books,cc1994. a386, [16] p. of plates :bill. ;c24 cm. a"A Washington woman's secret years with Elvis Presley".10aPresley, Elvis,d1935-1977.10aBova, Joyce. 0aSingersxBiography.zUnited States10aNowels, William Conrad. aLVLcBIOkB Presley bMAINp32000000053920r11.80u6726u2414 bMAINp31000000052192r11.80u6727u241500605 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000250013524500580016026000410021830000210025994200210028095200430030195200430034450574LVL20030602141024.0950420s1995 nyu 00011 eng a95011018 a1563246910 a 95011018 c1348d1348 aAF Fast10aFast, Howard,d1914-14aThe bridge builder's story :ba novel /cHoward Fast.0 aArmonk, N.Y. :bM.E. Sharpe,cc1995. a210 p. ;c24 cm. aLVLcAFkAF Fast bLB2p37000000017358r11.77u6728u2416 bLB1p33000000024272r11.77u6729u241700719 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200160012310000230013924500410016225000200020326000390022330000210026250000300028365000500031365000550036365000220041894200250044064612LVL19990217000000.0900427r19901989mau d 00011 eng a90037612 a0816149763 a 90037612 c1349d1349 aLP Estleman1 aEstleman, Loren D.10aSilent thunder /cLoren D. Estleman. aLarge print ed. aBoston, Mass. :bG.K. Hall,c1990. a288 p. ;c25 cm. a"An Amos Walker mystery." 0aWalker, Amos (Fictitious character)xFiction. 0aPrivate investigatorsxFiction.zMichiganzDetroit 0aLarge type books. aLVLcLPkLP Estleman01097 2200301 450000100060000000300040000600500170001000700150002700800410004202000220008302000210010503500160012609000150014209200160015710000200017324500560019326000470024930000710029652001690036765000320053665000250056865000230059365000260061694200260064295200430066895200420071195200420075329518LVL19990320000000.0ss lmnjlc ce940622s1994 nyunnn j f eng d a0395543827 (book) a0395691761 (set) avid93001144 c1350d1350 aKIT Wiesner10aWiesner, David.10aHurricanecby David Wiesner. .h[sound recording] /0 aNew York :bHoughton Mifflin Co.,cp1994.. a1 sound recording :banalog., mono. +e1 book ([32]p.: col. ill.). aThe morning after a hurricane, two brothers find an uprooted tree which becomes a magical place, transporting them on adventures limited only by their imagination.. 0aTalking books for children. 0aHurricanesxFiction. 0aBrothersxFiction. 0aImaginationxFiction. aLVLcKITkKIT Wiesner bMAINp32000000046920r5.13u6731u2418 bLB2p34000000011420r5.13u6732u2419 bLB1p33000000018932r5.13u6733u242000698 2200193 4500020001500000090001500015100002400030245003900054260003600093300002700129942002200156952004300178952004300221952004300264952004300307952004200350952004900392952006300441 a0590453874 c1351d135110aStine, R. L.d1943-14aThe dead girlfriend /cR.L. Stine.0 aNew York :bScholastic,cc1993. a182 p. ;c18 cm. ; pa. aLVLcYAkYA Stine bMAINp32000000042426r2.03u6735u2421 bMAINp32000000064970r3.50u6736u2422 bMAINp32000000069315r3.99u6737u2423 bMAINp31000000053737r3.50u6738u2424 bLB1p33000000016566r2.03u6739u2425 bLB1dLB1p36000000020377r3.50u319800u2426 bMAINdMAINp31000000119451r3.99u319801u2427v2004-11-1801021 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200160012310000220013924500740016125000240023526000570025930000350031644000290035152001070038065000320048765000300051965000270054965000220057665000220059870000190062094200250063995200430066429519LVL19990320000000.0890627r19891988ctu jd 00011 eng a89036815 a1559050152 a 89036815 c1352d1352 aLP J Pascal1 aPascal, Francine.10aOut of reach /cwritten by Kate William ; created by Francine Pascal. a1st Grey Castle ed. aLakeville, Conn. :bGrey Castle Press,c1989, c1988. a151 p. (large print) ;c25 cm. 0aSweet Valley High ;v50. aJade Wu, a talented dancer, accepts a role in a show despite the objections of her traditional father. 1aChinese AmericansxFiction. 1aFamily problemsxFiction. 1aHigh schoolsxFiction. 1aSchoolsxFiction. 1aLarge type books.10aWilliam, Kate. aLVLcLPkLP J Pascal bMAINp32000000049357r6.75u6740u242801118 2200289 450000100060000000300040000600500170001000700090002700800410003603500160007709000150009309200130010824500980012126000410021930000440026044000280030450500990033252100190043153800160045065000220046670000890048870000570057770000840063494200230071895200440074195200430078536538LVL20000911201521.0vd cbaho930427s1989 ctu B 0 0vaeng d avid93000070 c1353d1353 aAVJ Ugly04aThe ugly duckling and other classic fairytales /c[compiled by] CC Studios.h[videorecording] aWeston, CT :bCC Home Video,cc1989. a1 videocassette ;bsd., col. ;c1/2 in. 0aChildren's Circle ;v9.0 aUgly duckling / H. C. Andersen -- Stonecutter / G. McDermott -- Swineherd / by H. C. Andersen. aAges 3 and up. aVHS Format. 0aChildren's films.11aAndersen, H. C.d1805-1875.hVideorecording.q(Hans Christian),tThe ugly duckling .11aMcDermott, GeraldhVideorecording.tThe stonecutter.11aAndersen, H. C.d1805-1875.hVideorecording.q(Hans Christian),tThe swineherd. aLVLcAVJkAVJ Ugly bMAINp31000000030387r10.93u6741u2429 bMAINp32000000060571r0.15u6742u243001003 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009404000200011005000220013008200170015209000150016910000190018424500730020326000480027630000510032451000480037551000140042352001000043752100170053765000120055465000120056694200250057895200430060395200430064650576LVL20030228140053.0880329s1988 oncaf 000 0 eng a88047514 a0553052993 aflb00222006 aDLCcDLCdICrlF0 aPN2061.bA35 19880 219a792/.028 c1354d13541 aAdler, Stella.14aThe technique of acting /cStella Adler ; foreword by Marlon Brando. aToronto ;aNew York :bBantam Books,c1988. axi, 132 p., [8] p. of plates :bill. ;c24 cm.0 aSenior High School Library Catalog (Wilson)0 aBooklist. aGives instruction and exercises designed to develop mastery of body, speech, mind, and emotion.2 aYoung Adult. 0aActing. 7aActing. aLVLcNFk792.028 ADL bMAINp32000000028882r6.08u6743u2431 bMAINp31000000033244r6.08u6744u243200511 2200193 450000100060000000300040000600500170001000800410002701000130006803500140008109000150009509200140011010000270012424500370015126000360018830000270022494200230025195200430027429520LVL19990320000000.0941212s1964 nyu 00011 eng d a64020284 a 64020284 c1355d1355 aAF Berger1 aBerger, Thomas,d1924-10aLittle big man /cThomas Berger. aNew York :bDial Press,cc1964. axxii, 440 p. ;c22 cm. aLVLcAFkAF Berger bMAINp32000000054379r3.97u6746u243300949 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000200013624500410015626000400019730000330023750000350027065000240030565000230032965000370035265000220038970000330041194200220044495200420046695200430050895200420055195200420059336539LVL20030514131239.0930805s1991 maua 00010 eng a91010083 a0395585643 a 91010083 c1356d1356 a613.7 Ba10aBailey, Covert.14aThe new fit or fat /cCovert Bailey.0 aBoston :bHoughton Mifflin,cc1991. axi, 167 p. :bill. ;c21 cm. aRev. ed. of: Fit or fat? 1978. 0aReducing exercises. 0aAerobic exercises. 0aExercisexPhysiological aspects. 0aBody composition.11aBailey, Covert.tFit or fat? aLVLcNFk613.7 Ba bLB2p37000000006479r8.95u6747u2434 bMAINp32000000061728r8.95u6748u2435 bLB1p36000000000349r8.95u6749u2436 bLB2p34000000001641r8.95u6750u243700687 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200160012310000280013924500460016725000210021326000410023430000210027550000920029694200250038895200440041343558LVL19990313000000.0890207r1989 nyu 00011 eng a89080445 a0394573439 a 89080445 c1357d1357 aAF Ishiguro1 aIshiguro, Kazuo,d1954-14aThe remains of the day /cKazuo Ishiguro. a1st American ed. aNew York :bAlfred A. Knopf,cc1989. a245 p. ;c22 cm. a"Originally published in Great Britain by Faber and Faber Limited, London"--T.p. verso. aLVLcAFkAF Ishiguro bMAINp32000000043346r11.07u6751u243800786 2200265 450000100060000000300040000600500170001000800390002701000130006602000250007903900180010404000130012205000210013508200160015609000150017210000190018724500790020626000520028530000410033750000200037850400260039865000300042494200220045495200440047657596LVL20020904133711.0831221s1984 nyua b 00110 eng a83027353 a0823007219 :c$24.950 a2b3c3d3e3 aDLCcDLC0 aNC758.bB67 19840 219a741.2/4 c1358d135810aBorgeson, Bet.10aColor drawing workshop /cby Bet Borgeson ; photography by Edwin Borgeson.0 aNew York :bWatson-Guptill Publications,c1984. a142 p. :bill. (some col.) ;c29 cm. aIncludes index. aBibliography: p. 140. 0aColor drawingxTechnique. aLVLcNFk741.2 Bo bMAINp31000000023265r14.97u6752u243900331 2200121 4500020001500000090001500015100002100030245003400051260003600085300002300121942002200144952004300166 a0440193613 c1359d135910aSteel, Danielle.10aWanderlust /cDanielle Steel.0 aNew York :bDell,c1989, c1986. a506 p. ;c18 cm. ; aLVLcAFkAF Steel bMAINp32000000055613r3.59u6753u244000374 2200133 4500010001300000020001500013090001500028100002100043245004800064260003900112300002300151942002400174952004200198 a93090188 a0449221571 c1360d136010aChesney, Marion.14aThe glitter and the gold /cMarion Chesney.0 aNew York :bFawcett Crest,cc1993. a170 p. ;c18 cm. ; aLVLcAFkAF Chesney bLB2p37000000001847r2.31u6754u244100653 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000190013624500580015526000520021330000330026550000200029865000150031865000140033394200220034795200420036964616LVL20020610191346.0950630s1995 cau 00110 eng a95094058 a0963975579 a 95094058 c1361d1361 a613.7 Sa10aSahelian, Ray.10aMelatonin :bnaturer's sleeping pill /cRay Sahelian.0 aMarina Del Rey, CA :bBe Happier Press,cc1995. axvi, 144 p. ;c23 cm. ;dpa. aIncludes index. 0aMelatonin. 0aInsomnia. aLVLcNFk613.7 Sa bLB2p34000000009992r8.37u6756u244200416 2200133 4500020001500000090001500015100002100030245008600051260004800137300003100185650002100216700002200237942002300259 a0517883937 c1362d136210aRoot, William S.10aHow to defend a bridge hand /cby William S. Root; introduction by Alan Truscott.0 aNew York :bCrown Trade Paperbacks,cc1994. a410 p. :bill. ;c25 cm. ; 0aContract bridge. 0aTruscott, Alan F. aLVLcNFk795.41 Ro01058 2200325 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000190013724500350015625000120019126000340020330000210023752001250025865000260038365000310040965000200044065100370046094200230049795200430052095200420056395200420060595200430064795200420069043560LVL20000910211104.0961011s1995 nyu j 00011 eng a94012785 a0689807406 a 94012785 c1363d1363 aJ Neufeld10aNeufeld, John.10aAlmost a hero /cJohn Neufeld. a1st ed.0 aNew York :bAtheneum,cc1995. a147 p. ;c20 cm. aTwelve-year-old Ben Derby spends his spring break volunteering at a Santa Barbara day care center for homeless children. 1aChild abusexFiction. 1aHomeless personsxFiction. 1aDeathxFiction. 1aSanta Barbara (Calif.)xFiction. aLVLcJFkJ Neufeld bMAINp32000000067292r2.35u6758u2443 bLB1p36000000001812r2.35u6759u2444 bLB2p34000000014489r2.35u6760u2445 bMAINp31000000062083r2.35u6761u2446 bLB1p33000000026837r2.35u6762u244700320 2200133 450000100060000000300040000600500170001000800410002709000150006810000280008324500170011194200210012895200370014964617LVL19990217000000.0950324s19uu 000 0 eng d c1364d13641 aGrey, Zane,d1872-1939.10aSunset Pass. aLVLcAFkAF Grey bMAINp31000000029221u6763u244800839 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000200013624501160015626000550027230000340032750000200036165000160038170000260039794200220042395200430044595200430048895200420053129523LVL19990320000000.0950523s1995 mau 00110 eng a95009571 a0201483289 a 95009571 c1365d1365 a658.4 De10aDeep, Samuel D.10aSmart moves for people in charge :b130 checklists to help you be a better leader /cSam Deep and Lyle Sussman.0 aReading, Mass. :bAddison-Wesley Pub. Co.,cc1995. axvii, 296 p. ;c21 cm. ;dpa. aIncludes index. 0aLeadership.10aSussman, Lyle,d1944- aLVLcNFk658.4 De bMAINp32000000059632r6.92u6764u2449 bMAINp31000000056239r6.92u6765u2450 bLB1p33000000023591r6.92u6766u245100663 2200229 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200140012510000300013924500440016926000420021330000280025594200230028395200420030695200420034895200430039036542LVL20030304124324.0931228c19931984nyu 00011 eng d a93090797 a0380767600 a 93090797 c1366d1366 aAF Lowell10aLowell, Elizabeth,d1944-10aLover in the rough /cElizabeth Lowell.0 aNew York :bAvon Books,c1993, c1984. a322 p. ;c18 cm. ;dpa. aLVLcAFkAF Lowell bLB2p37000000013687r4.99u6767u2452 bLB1p36000000004479r2.89u6768u2453 bMAINp31000000046072r2.89u6769u245400980 2200349 450000100060000000300040000600500170001000800390002701000190006602000240008503500160010904000200012504300120014505000150015708200140017209000150018610000200020124500430022125000120026426000450027630000250032150400260034652000620037252100340043452100100046865000280047865000290050665000130053565000140054894200240056295200440058657599LVL19990220000000.0781218s1979 nyu b 00010 eng a78027751 //r87 a0823904288 :c$7.97 aflb01095303 aDLCcDLCdICrlF an-us---0 aHQ834.bR3 a301.42/84 c1367d136710aRaab, Robert A.10aCoping with divorce /cRobert A. Raab. a1st ed.0 aNew York :bRichards Rosen Press,c1979. axi, 116 p. ;c22 cm. aBibliography: p. 116. aExplores various facets of divorce in modern day America.0 a6.3bFollett Library Book Co.2 a7-10. 0aDivorcezUnited States. 0aMarriagezUnited States. 7aDivorce. 7aMarriage. aLVLcNFk301.42 RAA bMAINp31000000016391r12.95u6771u245500575 2200205 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200110011210000280012324500630015125000270021426000380024130000270027994200200030695200430032629524LVL19990320000000.0830714s1984 nyu 00010 eng a0394723678 anpl96000149 c1368d1368 a811 Wr10aWright, Charles,d1935-14aThe other side of the river :bpoems /cby Charles Wright. a1st. Vintage Books ed.0 aNew York :bRandom House,cc1984. a73 p. ;c21 cm. ;dpa. aLVLcNFk811 Wr bMAINp32000000062194r5.95u6772u245601479 2200325 450000100060000000300040000600500170001000800390002701000210006602000150008703500160010204000200011805000200013808200160015809000150017410000340018924501380022325000140036126000320037530000270040735000110043450000360044550505170048152100090099865000240100765000270103170000310105894200270108995200370111650581LVL20020911082201.0740529s1974 nyua j 000 1 eng a73085318 /AC/r82 a0689304250 aflb00719402 aDLCcDLCdICrlF0 aPZ8.1.C2277bGr a398.2/09729 c1369d13691 aCarter, Dorothy Sharp,ecomp.10aGreedy Mariani and other folktales of the Antilles.cSelected and adapted by Dorothy Sharp Carter. Illustrated by Trina Schart Hyman. a[1st ed.] aNew York,bAtheneum,c1974. a131 p.billus.c22 cm. a$5.50. a"A Margaret K. McElderry book."0 aHow the moonfish came to be.--How the clever doctor tricked death.--Why dog lost his voice.--Why misery remains in the world.--How El BizarrÂon fooled the devil.--Brer Rabbit's trickery.--The goat and the tiger.--Compae rabbit's ride.--The tortoise who flew to heaven.--Rabbit's long ears.--Brother Annancy fools Brother Fire.--Man-Crow.--Snake the postman.--Wheeler.--Malice, Bouki and Momplaisir.--Greedy Mariani.--The three fairies.--Juan Bobo.--The shepherd and the princess.--The miser who received his due.2 a5-8. 0aTaleszWest Indies. 1aFolklorezWest Indies.11aHyman, Trina Schart,eill. aLVLcJNFkJNF 398.2 Ca bMAINp32000000016558u6773u245700355 2200145 450000100060000000300040000600500170001000800410002709000150006810000260008324500220010930000110013194200240014295200430016664619LVL19990217000000.0950324s19uu 000 0 eng d c1370d13701 aShannon, Dell,d1921-10aWith a vengeance. a200 p. aLVLcAFkAF Shannon bMAINp31000000027295r1.20u6774u245801157 2200301 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200140011210000290012624500430015526000440019830000280024250000240027052002810029465000250057565000230060065000370062365000200066065000370068065100290071794200230074695200430076995200430081229525LVL20020927133536.0960528r`9951993nyu j 00011 eng a0380725223 anpl96000971 c1371d1371 aYA Taylor10aTaylor, Theodore,d1921-10aTimothy of the cay /cTheodore Taylor.0 aNew York :bAvon Camelot,c1995, c1993. a145 p. ;c19 cm. ;dpa. aSequel to: The cay. aHaving survived being blinded and shipwrecked on a tiny Caribbean island with the old black man Timothy, twelve-year-old white Phillip is rescued and hopes to regain his sight with an operation. Alternate chapters follow the life of Timothy from his days as a young cabin boy. 1aShipwrecksxFiction. 1aSurvivalxFiction. 1aBlacksxFiction.zCaribbean Area 1aBlindxFiction. 1aPhysically handicappedxFiction. 1aCaribbean AreaxFiction. aLVLcYAkYA Taylor bMAINp32000000064775r2.35u6775u2459 bMAINp31000000060067r2.35u6777u246000955 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000240013424501420015825000120030026000430031230000270035550000750038265000200045765000330047765000330051070000710054394200200061495200430063436544LVL20030616185606.0931021s1994 ohu 00110 eng a93041641 a1558703616 a 93041641 c1372d1372 a640 Sc10aSchofield, Deniece.10aConfessions of an organized homemaker :bthe real secrets of uncluttering your home and taking control of your life /cDeniece Schofield. a1st ed.0 aCincinnati, Ohio :bBetterway,cc1994. a215 p. ;c23 cm. ; pa. aRev. ed. of: Confessions of an organized housewife. 1st rev. ed. 1982. 0aHome economics. 0aHousewivesxTime management. 0aHomemakersxTime management.11aSchofield, Deniece,d1947-tConfessions of an organized housewife. aLVLcNFk640 Sc bMAINp32000000045065r6.46u6778u246100964 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012324501040013626000360024030000460027650000200032250400300034265000580037265000570043065000690048771000210055694200220057795200440059995200430064343563LVL20030712144048.0841113s1985 nyua b 00100 eng a84025261 a0805001263 a 84025261 c1373d1373 a643.7 Ho00aHow things work in your home (and what to do when they don't) /cby the editors of Time-Life Books.0 aNew York :bHenry Holt,cc1985. a368 p. :bill. (some col.) ;c25 cm.; pa. aIncludes index. aBibliography: p. 358-359. 0aDwellingsxMaintenance and repairxAmateurs' manuals. 0aPlumbingxMaintenance and repairxAmateurs' manuals. 0aHousehold appliancesxMaintenance and repairxAmateurs' manuals.20aTime-Life Books. aLVLcNFk643.7 Ho bMAINp32000000046987r11.48u6779u2462 bLB1p33000000018879r11.48u6780u246300509 2200205 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200130011410000160012724500310014325000200017426000440019430000210023865000220025994200220028150582LVL20021223153949.0920720c19781971enk d 00011 eng d a0708901077 aonv90002854 c1374d1374 aLP Foley1 aFoley, Rae.10aOminous star /cRae Foley. aLarge print ed. aLeicester :bUlverscroft,c1978, c1971. a334 p. ;c23 cm. 0aLarge type books. aLVLcLPkLP Foley00637 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007904000130009405000320010708200140013909000150015310000310016824500270019926000360022630000190026235000110028194200240029295200370031695200420035357601LVL20001006082902.0710813s1971 nyu 00001 eng a74158414 a0670259365 aDLCcDLC0 aPZ4.F7349aPR6056.O699bDay a823/.9/14 c1375d137510aForsyth, Frederick,d1938-14aThe day of the jackal.0 aNew York,bViking Pressc[1971] a380 p.c23 cm. a$7.95. aLVLcAFkAF Forsyth bMAINp31000000040132u6782u2464 bLB1p33000000002843r3.00u6783u246500776 2200217 4500020001500000090001500015100002400030245004500054260003600099300002100135440002200156500002600178942002100204952004300225952005900268952004200327952004300369952004300412952004200455952006100497 a0590483528 c1376d137610aStine, R. L.d1943-14aThe cuckoo clock of doom /cR. L. Stine.0 aNew York :bScholastic,cc1995. a118 p. ;c20 cm. 0aGoosebumps ;v28. a"An Apple Paperback." aLVLcJFkJ Stine bMAINp32000000065950r3.99u6784u2466 bLB1dLB1p36000000013441r3.99u6785u2467v2003-09-01 bLB2p34000000027770r3.50u6786u2468 bMAINp31000000065950r3.99u6787u2469 bMAINp31000000079152r3.50u6788u2470 bLB1p33000000033112r3.50u6789u2471 bLB2dLB2p37000000028805r3.99u318220u2472v2004-11-0400788 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000280013624500400016425000200020426000530022430000210027750000950029865000220039370000530041594200220046895200440049036545LVL20021112143118.0931130r19941927meu d 00011 eng a93044659 a1560547057 a 93044659 c1377d1377 aLP Brand1 aBrand, Max,d1892-1944.10aThe mustang herder /cby Max Brand. aLarge print ed. aThorndike, Me. :bThorndike Press,c1994, c1927. a324 p. ;c22 cm. aOriginally published: The mustang herder / David Manning. New York : Chelsea House, c1927. 0aLarge type books.11aManning, David,d1892-1944.tThe mustang herder. aLVLcLPkLP Brand bMAINp31000000047533r13.42u6790u247300840 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000180013424500610015226000530021330000400026652001220030665000320042870000180046094200220047895200440050095200420054443564LVL20020308135617.0861028s1987 nyua j 00011 eng a86028130 a0670808709 a 86028130 c1378d1378 aE Baum10aBaum, Arline.10aOpt :ban illusionary tale /cby Arline and Joseph Baum.0 aNew York, N.Y., U.S.A. :bViking Kestrel,c1987. a32 p. :bill. (some col.) ;c24 cm. aA magical tale of optical illusions, in which objects seem to shift color and size while images appear and disappear. 1aOptical illusionsxFiction.10aBaum, Joseph. aLVLcEASYkE Baum bMAINp32000000047768r10.16u6791u2474 bLB1p33000000019276r7.77u6792u247501212 2200373 450000100060000000300040000600500170001000800390002701000170006602000150008302000270009803500160012504000200014105000250016108200150018609000150020110000430021624500860025926000430034530000290038850000200041752001180043752100340055552100090058965000430059865000160064165000160065765000160067365000180068970000280070774000310073594200280076695200440079450583LVL20020911143232.0871116s1988 nyua j 001 0 eng a87033531 /AC a080696748X a0806967498 (lib. bdg.) aflb00976608 aDLCcDLCdICrlF0 aTT174.5.P3bC49 19880 219a745.54 c1379d13791 aChurchill, E. Richardq(Elmer Richard)10aQuick & easy paper toys /cE. Richard Churchill ; illustrated by Dennis Kendrick. aNew York :bSterling Pub. Co.,cc1988. a128 p. :bill. ;c27 cm. aIncludes index. aAn illustrated compilation of paper projects, including paper airplanes, paperweights, and Christmas decorations.0 a5.9bFollett Library Book Co.2 a3-6. 0aPaper toy makingxJuvenile literature. 1aPaper work. 1aHandicraft. 7aHandicraft. 7aPaper crafts.11aKendrick, Dennis,eill.01aQuick and easy paper toys. aLVLcJNFkJNF 745.54 Ch bMAINp32000000023977r12.99u6793u247600347 2200133 450000100060000000300040000600500170001000800410002702000150006809000150008324500460009894200250014495200440016957602LVL19990220000000.0910708s19xx xxu 00010 eng d a0910542090 c1380d138010aLanguage/30 Indonesianh[sound recording] aLVLcACkAC Language bMAINp31000000034567r14.95u6794u247700997 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200180012324501110014125000120025226000490026430000330031350000200034652000820036665000240044865000230047265000250049570000170052094200280053795200440056595200430060995200430065229527LVL20010710152808.0961008s1995 nyua j 00110 eng a95012796 a0525454098 a 95012796 c1381d1381 aJNF 808.81 Bo04aThe book of giving :bpoems of thanks, praise, and celebration /ccollected and illustrated by Kay Chorao. a1st ed.0 aNew York :bDutton Children's Books,cc1995. a56 p. :bcol. ill. ;c29 cm. aIncludes index. aA collection of poems celebrating the act of giving and the joy of receiving. 1aGenerosityxPoetry. 1aGratitudexPoetry. 1aPoetryxCollections.10aChorao, Kay. aLVLcJNFkJNF 808.81 Bo bMAINp32000000067178r10.02u6795u2478 bLB2p34000000014450r10.02u6796u2479 bLB1p33000000026793r10.02u6797u248000909 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000190013524500670015426000480022130000350026944000420030452001560034665000260050265000230052870000260055194200230057795200430060036546LVL20000406000000.0940603s1987 nyua j 00011 eng a86025215 a0819311413 a 86025215 c1382d1382 aE Kroll1 aKroll, Steven.10aI'd like to be /cby Steven Kroll ; pictures by Ellen Appleby. aNew York :bParents Magazine Press,cc1987. a[42] p. :bcol. ill. ;c22 cm. 0aParents magazine read aloud original. aA child imagines solving various problems by being a clock, a doctor, a duck, and other identities, before deciding that being "me" is the best of all. 1aImaginationxFiction. 1aIdentityxFiction.11aAppleby, Ellen,eill. aLVLcEASYkE Kroll bMAINp32000000047601r9.99u6798u248100558 2200193 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200140011410000390012824500590016726000500022630000210027694200240029795200430032150584LVL19990312000000.0920921c19871943nyu 00011 eng d a0345336917 aonv90003369 c1383d1383 aM Gardner1 aGardner, Erle Stanley,d1889-1970.14aThe case of the buried clock /cErle Stanley Gardner.. aNew York :bBallantine Books,c1987, c1943. . a231 p. ;c18 cm. aLVLcMYSkM Gardner bMAINp32000000035031r2.95u6799u248200364 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000220009624500310011894200270014995200420017664622LVL20000302000000.0911206s19xx xxu 00010 eng d a89081604 c1384d13841 aGrunsell, Angela.10aDivorce /cAngel Grunsell. aLVLcJNFkJNF 306.8 Gr bLB2p37000000008128r9.88u6800u248300868 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000230013724500780016026000350023830000310027352001530030465000380045765000210049570000330051694200230054995200420057236547LVL20000911174037.0940706r19921990nyua j 00011 eng a89026017 a0380713136 a 89026017 c1385d1385 aJ Gormley1 aGormley, Beatrice.10aWanted, UFO /cby Beatrice Gormley ; illustrated by Emily Arnold McCully. aNew York :bAvon,c1992,c1990. a119 p. :bill. :c19 cm.;. aFifth grader Elise is thrilled when a UFO appears in her friend Nick's backyard but shocked when she discovers why its occupants have come to Earth. 1aExtraterrestrial beingsxFiction. 1aScience fiction.11aMcCully, Emily Arnold,eill. aLVLcJFkJ Gormley bLB2p37000000012413r2.99u6801u248400541 2200157 4500020001500000090001500015100002800030245005900058260004300117300002300160440003600183700003700219740005300256942003200309952004200341 a0671744666 c1386d13862 aReeves-Stevens, Judith.10aPrime directive /cJudith and Garfield Reeves-Stevens. aNew York :bPocket Books,c1991,c1990. a406 p. :c18 cm.;. 0aStar Trek: the original series.20aReeves-Stevens, Garfield,d1953-01aStar Trek: the original series: Prime Directive. aLVLcSCIkSF Reeves-Stevens bLB2p37000000016191r4.95u6802u248500467 2200181 450000100060000000300040000600500170001000800390002703500160006609000150008209200130009710000230011024500310013326000340016430000210019894200220021995200440024136548LVL19990320000000.0940808s1985 nyu 00011 eng anpl94001426 c1387d1387 aAF Smith1 aSmith, Lee,d1944-10aFamily linen /cLee Smith. aNew York :bPutnam's,cc1985. a207 p. ;c22 cm. aLVLcAFkAF Smith bMAINp32000000049479r10.00u6805u248601061 2200289 450000100060000000300040000600500170001000800390002701000210006602000220008702000270010903500160013608200200015209000150017210000170018724500760020426000730028030000430035344000340039652001710043065000140060165000190061570000270063494200240066195200430068595200430072850586LVL20000315000000.0880526s1988 nyua j 00011 eng a88144223 /AC/r88 a0307100979 (pbk.) a030768797X (lib. bdg.) aflb005060010 219aE CalderaE c1388d138810aCalder, Lyn.10aLittle red hen /cretold by Lyn Calder ; illustrated by Jeffrey Severn.0 aNew York :aRacine, Wis. :bGolden Book ;bWestern Pub. Co.,cc1988. a[24] p. :bchiefly col. ill. ;c21 cm. 2aA Golden super shape classic. aThe little red hen finds none of her lazy friends willing to help her plant, harvest, or grind wheat into flour, but all are eager to eat the bread she makes from it. 1aFolklore. 7aWorkxFiction.11aSevern, Jeffrey,eill. aLVLcEASYkE Calder bMAINp32000000095075r1.59u6806u2487 bMAINp31000000001831r3.99u6807u248800594 2200229 450000100060000000300040000600500170001000800390002701000130006604000130007905000160009208200120010809000150012010000250013524500510016025000140021126000280022530000270025361000240028094200230030495200370032764624LVL19990217000000.0730410s1955 nyua 00000 eng a55010643 aDLCcDLC0 aG530.T6bL6 a910.45* c1389d138910aLord, Walter,d1917-12aA night to remember.cIllustrated with photos. a[1st ed.]0 aNew York,bHoltc[1955] a209 p.billus.c22 cm.20aTitanic (Steamship) aLVLcNFk910.4 LOR bMAINp31000000027092u6808u248901101 2200253 450002800260000009000150002610000270004124500710006826000590013930000500019850000160024851100200026452002270028465000350051165000420054665000190058865000520060765000380065965000190069770000210071694200220073795200440075995200440080302a90083bRecorded Books c1390d1390 aBraun, Lilian Jackson.14aThe cat who saw redcby Lilian Jackson Braun.h[sound recording] /0 aPrince Frederick, MD :bRecorded Books,cp1990, c1986. a4 sound cassettes (5.75 hr.) :banalog, mono. aUnabridged.3 aGeorge Guidall. aJust as most other prize-winning crime reporters were becoming elder statesmen of their beats, Jim Qwilleran's doctor told him to diet and his boss assigned him to the new gourmet beat. A couple of disappearing acts ensue. 0aDetective and mystery stories. 0aKoko (Fictitious character)xFiction. 0aCatsxFiction. 0aQwilleran, Jim (Fictitious character)xFiction. 0aReporters and reportingxFiction. 0aTalking Books.10aGuidall, George. aLVLcACkAC Braun bMAINp32000000050490r34.00u6809u2490 bMAINp31000000061147r34.00u6810u249101591 2200421 450000100060000000300040000600500170001000800390002701000170006602000360008302000310011903500160015004000200016605000250018608200250021109000150023610000220025124500640027326000520033730000420038944000190043151000430045051000570049352001480055052100340069852100090073260000680074160000350080960000350084465000690087965000630094865000230101165000160103465000230105065000270107394200260110095200430112657606LVL19990220000000.0870205s1987 mnuabc j 00010beng a87004242 /AC a082250488X (lib. bdg.) :c$7.95 a0822595168 (pbk.) :c$4.95 aflb00834108 aDLCcDLCdICrlF0 aPS3523.I516bZ6 19870 219a818/.5209aBa92 c1391d139110aChadwick, Roxane.10aAnne Morrow Lindbergh :bpilot and poet /cRoxane Chadwick.0 aMinneapolis :bLerner Publications Co.,cc1987. a56 p. :bill., maps, ports. ;c21 cm. 4aThe Achievers.0 aNational Science Teachers Association.0 aAmerican Association For The Advancement Of Science. aA biography of the poet, essayist, and pilot who flew with her husband, Charles A. Lindbergh around the world charting new routes for airlines.0 a6.0bFollett Library Book Co.2 a5-8.10aLindbergh, Anne Morrow,d1906-xBiographyxJuvenile literature.11aLindbergh, Anne Morrow,d1906-17aLindbergh, Anne Morrow,d1906- 0aAuthors, AmericanxBiographyxJuvenile literature.y20th century 0aAir pilotsxBiographyxJuvenile literature.zUnited States 1aAuthors, American. 1aAir pilots. 7aAuthors, American. 7aAir pilotsxBiography. aLVLcJBkJB Lindbergh bMAINp31000000009594r7.16u6811u249200909 2200253 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200120011210000250012424500760014925000360022526000420026130000380030352001790034165000250052065000220054570000220056794200230058995200430061236550LVL19990320000000.0941025c19921987nyua j 00011 eng a0140545646 anpl94002221 c1392d1392 aE Noble1 aNoble, Trinka Hakes.10aMeanwhile back at the ranch /cTrinka Hakes Noble ; pictures Tony Ross. a1st Puffin Pied Piper printing. aNew York :bPuffin Pied Piper,c1992. a[32] p. :bcol. ill. ;c24 cm. ;. aLooking for some diversion, a bored rancher drives to the town of Sleepy Gulch little knowing that some amazing things are happening to his wife and ranch during his absence. 1aRanch lifexFiction. 1aHumorous stories.11aRoss, Tony,eill. aLVLcEASYkE Noble bMAINp32000000052762r4.95u6812u249301030 2200349 450000100060000000300040000600500170001000800390002701000210006602000270008702000150011403500160012904000200014505000190016508200080018409000150019210000160020724500500022326000400027330000330031335000110034649000310035752000710038852100340045952100090049365000220050265000220052470000260054694200230057295200430059595200420063850588LVL19990312000000.0740426s1974 nyua j 00000 eng a74005517 /AC/r82 a0394929136 (lib. bdg.) a0394829131 aflb00327002 aDLCcDLCdICrlF0 aPZ8.3.G276bGo a[E] c1393d139310aSeuss,cDr.10aGreat day for up!cPictures by Quentin Blake.0 aNew York :bBeginner Books,cc1974. a28 p. :bcol. ill. ;c24 cm. a$2.50.0 aA Bright & early book, 19. aRhymed text and illustrations introduce the many meanings of "up."0 a1.9bFollett Library Book Co.2 aK-3. 1aStories in rhyme. 7aStories in rhyme.11aBlake, Quentin,eill. aLVLcEASYkE Seuss bMAINp32000000012952r5.90u6813u2494 bLB1p33000000005425r8.31u6815u249500889 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009409000150011009200100012510000200013524500750015526000530023030000400028352001170032365000300044065000200047065000260049065000190051665000110053594200210054695200440056757607LVL19990220000000.0871109s1988 nyua j 00010 eng a87031799 a0670818534 aflb01000806 c1394d1394 aE Rae10aRae, Mary Maki.14aThe farmer in the dell :ba singing game /cpictures by Mary Maki Rae.0 aNew York, N.Y., U.S.A. :bViking Kestrel,c1988. a[25] p. :bcol. ill. ;c22 x 27 cm. aThis illustrated edition includes the entire song with music and instructions for playing this traditional game. 0aNursery rhymes, American. 1aNursery rhymes. 1aFolk songs, American. 1aSinging games. 1aGames. aLVLcEASYkE Rae bMAINp31000000014037r11.66u6816u249600713 2200205 450000100060000000300040000600500170001000800410002702000150006809000150008310000210009824500600011926000470017930000290022652001430025565000190039870000260041794200220044395200420046529532LVL19990320000000.0941224s19uu 000 0 eng d a0440474566 c1395d13951 aCleary, Beverly.10aRibsy /cBeverly Cleary ; illustrated by Louis Darling.0 aNew York :bDell Publishing,c1982, c1964. a192 p. :bill. ;c21 cm. aSeparated from his owner, Henry Huggins, in a shopping center parking lot, an ordinary city dog begins a string of bewildering adventures. 1aDogsxFiction.10aDarling, Louis,eill. aLVLcJFkJ Cleary bLB1p36000000001369r5.43u6817u249700691 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000290013424500460016326000570020930000210026660000290028765000130031665000250032970000190035494200200037395200440039336551LVL19990320000000.0950203s1994 miu 00010deng a94021184 a0310480000 a 94021184 c1396d1396 a170 Th1 aThomas, R. David,d1932-10aWell done! /cDave Thomas with Ron Beyma. aGrand Rapids, Mich. :bZondervan Pub. House,cc1994. a224 p. ;c24 cm.10aThomas, R. David,d1932- 0aSuccess. 0aSuccess in business.10aBeyma, Ronald. aLVLcNFk170 Th bMAINp31000000053327r11.39u6819u249800857 2200253 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200140011210000240012624501110015026000440026130000280030550400510033365000350038465000300041965000470044994200230049695200420051995200420056143570LVL19990313000000.0950210c19951994nyu b 00110 eng a0671511289 anpl95000341 c1397d1397 a306.85 Ma10aMarston, Stephanie.14aThe divorced parent :bsuccess strategies for raising your children after separation /cStephanie Marston.0 aNew York :bPocket Books,c1995, c1994. a348 p. ;c21 cm. ;dpa. aIncludes bibliographical references and index. 0aSingle parentszUnited States. 0aParentingzUnited States. 0aChildren of single parentszUnited States. aLVLcNFk306.85 Ma bLB1p36000000000093r5.90u6820u2499 bLB2p34000000001349r5.90u6821u250000911 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000180013524500740015325000170022726000540024430000350029852001340033365000260046765000210049365000290051470000240054394200230056795200430059050589LVL19990312000000.0880120s1988 nyua j 00011 eng a87036205 a0688081495 a 87036205 c1398d1398 aE Hayes1 aHayes, Sarah.10aEat up, Gemma /cwritten by Sarah Hayes ; illustrated by Jan Ormerod. a1st U.S. ed. aNew York :bLothrop, Lee & Shepard Books,cc1988. a[28] p. :bcol. ill. ;c25 cm. aBaby Gemma refuses to eat, throwing her breakfast on the floor and squashing her grapes, until her brother gets an inspired idea. 1aFood habitsxFiction. 1aBabiesxFiction. 1aAfro-AmericansxFiction.11aOrmerod, Jan,eill. aLVLcEASYkE Hayes bMAINp32000000036098r9.30u6822u250100546 2200205 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200150011210000280012724500310015525000200018626000480020630000210025494200220027595200430029757608LVL20020128114700.0910423c19881952enk d 00011 eng a0745108318 aonv90000547 c1399d1399 aL.P. Brand10aBrand, Max,d1892-1944.10aSeven trails /cMax Brand. aLarge print ed. aBath :bLythway/Chivers Press,cc1988,1952. a294 p. ;c22 cm. aLVLcLPkLP Brand bMAINp31000000035643r8.95u6823u250200932 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009409000150011009200150012510000220014024500360016226000320019830000210023044000240025152001890027565000450046465000380050980000510054794200240059895200440062264627LVL19990217000000.0880404s1988 nyu 00011 eng a88012657 a0399133801 aflb00019912 c1400d1400 aAF Griffin10aGriffin, W. E. B.14aThe aviators /cW.E.B. Griffin.0 aNew York :bPutnam,cc1988. a409 p. ;c24 cm. 0aBrotherhood of war. aAs the Vietnam War begins to escalate, the U.S. Army must scramble to create its first-ever Air Assault Division. Old faces and new are swept into the struggle as hostilities increase. 0aVietnamese Conflict, 1961-1975xFiction. 7aVietnam Ward1961-1975.xFiction,1 aGriffin, W. E. BtBrotherhood of war ;vbk. 8. aLVLcAFkAF Griffin bMAINp31000000041807r11.18u6824u250300348 2200133 450000100060000000300040000600500170001000800410002702000150006809000150008324500470009894200250014595200440017029533LVL19990320000000.0930419s19xx xxu 00010 eng d a0521362059 c1401d140114aThe Cambridge encyclopedia of ornithology. aLVLcREFkREF 598 Ca bMAINp32000000031714r29.19u6825u250400639 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000270013724500860016426000390025030000210028994200240031095200440033495200430037836552LVL20020822142142.0941012s1995 nyu 00011 eng a94037348 a0385477074 a 94037348 c1402d1402 aM Ackroyd10aAckroyd, Peter,d1949-14aThe trial of Elizabeth Cree :ba novel of the Limehouse murders /cPeter Ackroyd.0 aNew York :bNan A. Talese,cc1995. a261 p. ;c24 cm. aLVLcAFkAF Ackroyd bMAINp32000000069490r13.20u6826u2505 bLB2p34000000015357r13.20u6827u250600740 2200253 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200180011424500150013226000450014730000450019244000140023765000240025165000140027594200270028995200430031695200420035995200420040195200430044343571LVL19990313000000.0950505s1995 nyua j 00001 eng d a1564589749 anpl95000697 c1403d1403 aE Emer- gency00aEmergency!0 aNew York :bCovent Garden books,cc1995. a[12] p. :bill. ;c23 cm. ;[board book]. 0aSnapshot. 1aEmergency vehicles. 1aVehicles. aLVLcEASYkE Emergency bMAINp32000000057324r2.83u6828u2507 bLB1p36000000003575r2.83u6829u2508 bLB2p34000000005267r2.83u6830u2509 bMAINp31000000054369r2.83u6831u251001205 2200325 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000240013424501180015825000120027626000410028830000280032949000350035752001820039265000320057465000410060665000400064765000390068765000220072670000250074894200200077395200440079395200420083750590LVL19990312000000.0860423s1986 wiua j 00011 eng a86060622 a0937295094 a 86060622 c1404d1404 aJ Shaw10aShaw, Janet Beeler.10aKirsten learns a lesson :ba school story /cby Janet Shaw ; illustrations RenÂee Graef ; vignettes Paul Lackner. a1st ed.0 aMadison, WI :bPleasant Co.,cc1986. a69 p. :bill. ;c23 cm. 4aThe American girls collection. aAfter immigrating from Sweden to join relatives in an American prairie community, Kirsten endures the ordeal of a strange school through a secret friendship with an Indian girl. 1aSwedish AmericansxFiction. 1aEmigration and immigrationxFiction. 1aFrontier and pioneer lifexFiction. 1aIndians of North AmericaxFiction. 1aSchoolsxFiction.11aGraef, RenÂee,eill. aLVLcJFkJ Shaw bMAINp32000000037197r12.95u6832u2511 bLB1p33000000008451r6.00u6833u251200510 2200181 450000100060000000300040000600500170001000800410002702000150006809000150008309200180009810000230011624500500013926000430018930000260023294200270025895200430028557609LVL19990220000000.0951021s19uu 000 0 eng d a0373076614 c1405d1405 aAF Ferrarella1 aFerrarella, Marie.10aCaitlin's guardian angel /cMarie Ferrarella. aNew York :bSilhouette Books ;cc1995. a251p. ;bpa. ;c18cm. aLVLcAFkAF Ferrarella bMAINp31000000032266r3.75u6834u251300762 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000260013724500600016326000450022330000400026850000200030865000260032894200230035495200440037795200440042195200430046529534LVL19990320000000.0920514s1992 paua 00110 eng a92019772 a0801981964 a 92019772 c1406d1406 a629.26 Jo10aJoseph, James,d1924-10aAuto detailing :bthe professional way /cJames Joseph.0 aRadnor, Pa. :bChilton Book Co.,cc1992. avi, 170 p. :bill. ;c28 cm. ;dpa. aIncludes index. 0aAutomobile detailing. aLVLcNFk629.26 Jo bMAINp32000000060619r17.95u6835u2514 bMAINp31000000057127r17.95u6836u2515 bLB1p33000000024010r17.95u6837u251600779 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000200013424500670015426000500022130000340027165000330030565100440033865100360038265100430041894200200046195200440048136553LVL20020409113814.0950414s1995 wiua 00010 eng a95017767 a1572230215 a 95017767 c1407d1407 a973 Sh10aShafer, Mary A.10aRural America :ba pictorial folk memory /cby Mary A. Shafer.0 aMinocqua, Wis. :bWillow Creek Press,cc1995. a144 p. :bill. ;c23 x 26 cm. 0aCountry lifezUnited States. 0aUnited StatesxSocial life and customs. 0aUnited StatesxPictorial works. 0aUnited StatesxDescription and travel. aLVLcNFk973 Sh bMAINp32000000058319r17.97u6838u251700908 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000180013524500350015325000120018826000430020030000350024352001080027865000210038665000140040794200230042195200440044495200430048895200440053195200430057543572LVL19990313000000.0930908s1994 nyua j 00011 eng a93036521 a0688103553 a 93036521 c1408d1408 aE Lobel10aLobel, Anita.10aAway from home /cAnita Lobel. a1st ed.0 aNew York :bGreenwillow Books,cc1994. a[32] p. :bcol. ill. ;c28 cm. aProceeds through the alphabet using boys' names and the names of exotic places in alliterative fashion. 1aTravelxFiction. 1aAlphabet. aLVLcEASYkE Lobel bMAINp32000000058547r14.34u6839u2518 bLB2p34000000006497r14.34u6840u2519 bMAINp31000000055211r14.34u6841u2520 bLB1p33000000023081r14.34u6842u252100913 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000250013824501060016325000120026926000420028130000350032352000980035865000200045665000190047665000350049570000350053094200260056595200440059157610LVL19990220000000.0940906s1993 nyua j 00011 eng a92010868 a002708325X a 92010868 c1409d1409 aE Bancroft1 aBancroft, Catherine.10aFelix's hat /cby Catherine Bancroft and Hannah Coale Gruenberg ; pictures by Hannah Coale Gruenberg. a1st ed. aNew York :bFour Winds Press,cc1993. a[32] p. :bcol. ill. ;c24 cm. aWhen Felix Frog loses his favorite hat, the rest of the family tries to make him feel better. 1aFrogsxFiction. 1aHatsxFiction. 1aBrothers and sistersxFiction.11aGruenberg, Hannah Coale,eill. aLVLcEASYkE Bancroft bMAINp31000000051080r14.95u6843u252201062 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000240013824500880016226000440025030000210029450000510031565000690036665000690043565000390050465000370054365000350058065100310061570000470064694200240069395200430071736554LVL20021025142229.0950516s1995 nyu 00011 eng a95021657 a0312135130 a 95021657 c1410d1410 aAF O'Leary10aO'Leary, Elizabeth.12aA house at war :bthe continuing story of the House of Eliott /cElizabeth O'Leary.0 aNew York :bSt. Martin's Press,cc1995. a247 p. ;c22 cm. aSequel to: The House of Eliott, by Jean Marsh. 0aCostume designxHistoryxFiction.y20th centuryzEnglandzLondon 0aClothing tradexHistoryxFiction.y20th centuryzEnglandzLondon 0aSistersxFiction.zEnglandzLondon 0aWomenxFiction.zEnglandzLondon 0aWorld War, 1939-1945xFiction. 0aLondon (England)xFiction.10aMarsh, Jean.,d1934-tThe house of Eliott. aLVLcAFkAF O'Leary bLB2p37000000017529r13.17u6844u252300675 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000220013624500420015825000210020026000440022130000290026550000200029465000280031465000130034294200220035595200440037743573LVL19990313000000.0940629s1995 nyua 00110 eng a94022569 a1564588629 a 94022569 c1411d1411 a641.5 Hi10aHillier, Malcolm.10aGood food fast /cby Malcolm Hillier. a1st American ed.0 aNew York :bDorling Kindersley,cc1995. a128 p. :bill. ;c30 cm. aIncludes index. 0aQuick and easy cookery. 0aCookery. aLVLcNFk641.5 Hi bMAINp32000000059992r24.45u6845u252401196 2200325 450000100060000000300040000600500170001000700100002700800410003703500160007809000150009409200140010924501530012326000590027630000540033550000450038950600310043451100170046552001410048252100140062353800150063765000330065265000190068570000180070470000180072271000250074074000380076594200230080395200440082657611LVL19990220000000.0vf cbahom941104s1985 tnu060 g vleng d avid93001447 c1412d1412 aAV 793 Ca00aCatch dance fever with Alan MeyersbCountry/western /cAlan Meyers & Assoc. ; produced by Alan Meyers ; directed by Jim Mattson.h[videorecording] . aMemphis, TN :bMPL Film/Video Post Production,cc1985. a1 videocassette (60 min.) :bsd., col. ;c1/2 in. aFor beginning and intermediate students. aFor private home use only.2 aAlan Meyers. aLearn how to do western and country dances including cotton-eyed-Joe, Texas two step, San Antonio polka, ten-step polka Tennessee stomp. aGeneral.. aVHS Hi-fi. 0aDancingxStudy and teaching. 0aPolka (Dance).11aMeyers, Alan.11aMattson, Jim.21aAlan Meyers & Assoc.01aCountry/westernh[videorecording] aLVLcAVkAV 793 Ca bMAINp31000000030443r22.00u6846u252501010 2200313 450000100060000000300040000600500170001000800390002701000190006602000150008502000220010003500200012204000180014205000230016008200190018309000150020224501500021725000120036726000450037930000330042450000200045765000660047770000220054370000230056570000220058874000190061094200230062995200440065229536LVL19990320000000.0841210s1985 paua f 001 0 eng a84073397 //r90 a0801975549 a0801975530 (pbk.) a 84073397 //r90 aDLCcDLCdDLC00aTL152.bC5276 198500219a629.28/722 c1413d141300aChilton's easy car care /cexecutive editor, Kerry A. Freeman, manager, editing and design, Dean F. Morgantini, senior editor, Richard J. Rivele. a2nd ed. aRadnor, Pa. :bChilton Book Co.,cc1985. aiv, 567 p. :bill. ;c29 cm. aIncludes index. 0aAutomobilesxMaintenance and repairxHandbooks, manuals, etc.10aFreeman, Kerry A.10aRivele, Richard J.10aMorgantini, Dean.01aEasy car care. aLVLcNFk629.28 Ch bMAINp32000000028788r10.59u6847u252600624 2200217 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200130011210000170012524500470014226000480018930000280023750000340026594200220029995200430032195200420036436555LVL20020320124931.0960119r19951948nyu 00011 eng a0684818949 anpl96000184 c1414d1414 aAF Paton10aPaton, Alan.10aCry, the beloved country /cby Alan Paton.0 aNew York :bSimon & Schuster,c1995, c1948. a316 p. ;c21 cm. ;dpa. a"Scribner Paperback Fiction." aLVLcAFkAF Paton bMAINp32000000062310r7.20u6848u2527 bLB1p33000000024497r7.20u6850u252800718 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000370013724500410017425000210021526000380023630000280027465000320030265000380033465000260037294200230039895200430042143574LVL20030502141027.0950719r19961970nyu 00011 eng a95031304 a0553377922 a 95031304 c1415d1415 aAF Atwood10aAtwood, Margaret Eleanor,d1939-14aThe edible woman /cMargaret Atwood. aBantam trade ed.0 aNew York :bBantam Books,cc1996. a310 p. ;c21 cm. ;dpa. 0aWomenxPsychologyxFiction. 0aMan-woman relationshipsxFiction. 0aFood habitsxFiction. aLVLcAFkAF Atwood bMAINp32000000062426r6.57u6851u252900554 2200193 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200150011210000340012724500530016126000480021430000310026294200250029395200420031850593LVL20011025112116.0930524c19921968nyu 00011 eng a0061003352 anpl93000137 c1416d1416 aM Christie10aChristie, Agatha,d1890-1976.10aBy the pricking of my thumbs /cAgatha Christie.0 aNew York :bHarperPaperbacks,c1992, c1968. ax, 290 p. ;c18 cm. ;dpa. aLVLcMYSkM Christie bLB2p34000000006157r2.89u6852u253000916 2200229 4500020001500000090001500015100003400030245009800064260004800162300002300210440003400233500002000267942002500287952004200312952004200354952006100396952004300457952006000500952004200560952004200602952004200644 a0345339738 c1417d141710aTolkien, J. R. R.d1892-1973.14aThe return of the king :bbeing the third part of The lord of the rings /cby J.R.R. Tolkien.0 aNew York :bBallantine Books,c1983, c1955. a507 p. ;c18 cm. ; 0aThe Lord of the rings ;vv.3. aIncludes index. aLVLcSCIkSF Tolkien bLB2p37000000019486r6.99u6853u2531 bLB2p37000000020813r3.95u6854u2532 bMAINdMAINp32000000120271r6.99u6855u2533v2003-09-01 bMAINp32000000120272r6.99u6856u2534 bMAINdLB1p32000000121764r6.99u6857u2535v2003-09-01 bLB1p36000000005308r3.59u6858u2536 bLB1p36000000017266r6.99u6859u2537 bLB1p33000000047997r6.99u6861u253800879 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009405000230010808200120013109000150014309200170015810000190017524500490019426000460024330000330028952000640032265000220038665000240040894200270043295200430045995200440050295200430054664631LVL19990217000000.0880810s1989 orua j 00010 eng a88025421 a0939217104 a 880254210 aNC780.5.bD84 19890 aJ 743.6 c1418d1418 aJNF 743.6 Du10aDuBosque, D.C.10aHow do you draw dinosaurs? /cD.C. DuBosque.0 aPortland, OR :bPeel Productions,cc1989. a62 p. :bill. ;c14 x 21 cm. aAn instruction book for drawing dinosaurs of various types. 1aDinosaurs in art. 1aDrawingxTechnique. aLVLcJNFkJNF 743.6 Du bLB1p36000000002838r12.83u6862u2539 bMAINp31000000035233r12.83u6863u2540 bLB1p33000000006120r12.83u6864u254100827 2200301 450000100060000000300040000600500170001000800390002701000190006602000150008503500200010004000180012004300120013805000240015008200160017409000150019010000180020524500530022326000410027630000210031760000250033860000220036360000300038565000180041565000260043394200230045995200430048229537LVL19990320000000.0820406s1982 nyu 000 0 eng a82005149 //r90 a0440093236 a 82005149 //r90 aDLCcDLCdDLC an-us-ut00aHV6533.U8bK56 198200219a362.8/8 c1419d14191 aKinder, Gary.10aVictim, the other side of murder /cGary Kinder. aNew York :bDelacorte Press,cc1982. a305 p. ;c24 cm.10aPierre, Dale,d1953-10aAndrews, William.10aNaisbitt, Cortney,d1957- 0aMurderzUtah. 0aMurder victimszUtah. aLVLcNFk362.8 KIN bMAINp32000000020616r9.57u6865u254201108 2200325 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000260014024501070016626000500027330000340032344000250035750400600038252000990044265100230054165100120056465100110057665100120058765100240059970000280062394200270065195200440067895200600072236556LVL19990320000000.0941214r19961988nyuab j b 00110 eng a94045824 a0791034062 a 94045824 c1420d1420 aJNF 979.5 Ay 0aAylesworth, Thomas G.14aThe Northwest :bAlaska, Idaho, Oregon, Washington /cby Thomas G. Aylesworth, Virginia L. Aylesworth.0 aNew York :bChelsea House Publishers,cc1996. a96 p. :bill. ; map ;c21 cm. 0aDiscovering America. aIncludes bibliographical references: p. (94) and index. aExamines the geography, history, culture, and people of Washington, Oregon, Idaho, and Alaska. 1aWashington (State) 1aOregon. 1aIdaho. 1aAlaska. 1aNorthwest, Pacific.10aAylesworth, Virginia L. aLVLcJNFkJNF 979.5 Ay bMAINp32000000064908r18.95u6866u2543 bLB2dLB2p37000000016214r18.95u6867u2544v2004-12-1100713 2200205 4500020001500000090001500015100001900030245002800049260003800077300002100115942002400136952004300160952004300203952004400246952004300290952004400333952004400377952004300421952004300464 a067153470X c1421d142110aAndrews, V. C.10aMelody /cV.C. Andrews.0 aNew York :bPocket Books,cc1996. a373 p. ;c22 cm. aLVLcAFkAF Andrews bLB2p37000000025396r13.34u6868u2545 bLB1p36000000001084r13.34u6870u2546 bMAINp35000000000524r13.34u6871u2547 bLB2p34000000014281r13.34u6872u2548 bMAINp31000000061334r13.57u6873u2549 bMAINp31000000061425r13.34u6874u2550 bLB1p33000000026434r13.57u6875u2551 bLB1p33000000026473r13.34u6876u255200746 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000190013524500880015426000610024230000300030344000180033365000140035170000180036594200230038395200430040695200430044950594LVL19990312000000.0921113s1992 ilua j 00011 eng a92238856 a1561734853 a 92238856 c1422d1422 aE Siede1 aSiede, George.10aAlphabet /cphotography, George Siede and Donna Preis ; consultant, Istar Schwager. aLincolnwood, Ill. :bPublications International,cc1992. a[18] p. :bill. ;c21 cm. 0aActive minds. 1aAlphabet.10aPreis, Donna. aLVLcEASYkE Siede bMAINp32000000000040r5.99u6877u2553 bMAINp31000000043689r5.99u6878u255400947 2200277 450000100060000000300040000600500170001000800390002701000130006603500140007909000150009309200150010810000210012324501160014425000120026026000440027230000330031644000240034952001490037365000110052265000140053365000220054770000310056994200260060095200430062664632LVL19990217000000.0840924s1985 nyua j 00011 eng a84048330 a 84048330 c1423d1423 aE Schwartz10aSchwartz, Alvin.10aAll of our noses are here, and other noodle tales /cretold by Alvin Schwartz ; pictures by Karen Ann Weinhaus. a1st ed.0 aNew York, N.Y. :bHarper & Row,cc1985. a64 p. :bcol. ill. ;c22 cm. 3aAn I can read book. aA collection of five stories about a family of silly people, based on noodle folklore from America, India, Japan, Korea, and the Arabian Nights. 0aTales. 1aFolklore. 1aHumorous stories.11aWeinhaus, Karen Ann,eill. aLVLcEASYkE Schwartz bMAINp31000000003491r9.79u6879u255500776 2200265 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200190012524500370014425000220018126000370020330000280024065000150026865000260028394200290030995200430033895200430038195200430042495200430046736557LVL20010703154056.0960810s1996 mnua j 00000 eng d a94074169 a0806689889 a 94074169 c1424d1424 aJNF 745.594 Ch00aChristmas :ban annual treasury. aVolume sixty-six.0 aMinneapolis :bAugsburg,cc1996. a63 p. :bill. ;c31 cm. 0aChristmas. 0aChristmas activities. aLVLcJNFkJNF 745.594 Ch bLB2p37000000002610r10.61u6881u2556 bLB1p36000000002937r10.61u6883u2557 bLB2p34000000014229r10.61u6884u2558 bLB1p33000000026405r10.61u6885u255900754 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000200013724500460015726000450020330000460024844000420029465000180033665000350035494200230038995200440041295200440045643576LVL19990313000000.0950109s1995 inua 00010 eng a95002553 a1570340129 a 95002553 c1425d1425 a599.74 Je10aJenkins, Ken L.10aGrizzly reflections /cby Ken L. Jenkins.0 aMerrillville, Ind. :bICS Books,cc1995. aviii, 55 p. :bcol. ill. ;c23 cm. ;dpa. 0aReflections of the wilderness series. 0aGrizzly bear. 0aGrizzly bearxPictorial works. aLVLcNFk599.74 Je bMAINp32000000067534r11.95u6886u2560 bMAINp31000000062340r11.95u6887u256100804 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000180013624500760015426000450023030000610027552000990033665000210043570000400045694200220049695200440051864633LVL19990217000000.0860508s1986 nyuaf j 00011 eng a86012977 a0517618842 a 86012977 c1426d1426 aJ Sewell10aSewell, Anna.10aBlack Beauty /cby Anna Sewell ; with illustrations by Lucy Kemp-Welch.0 aNew York :bChildren's Classics,cc1986. axi, 226, [12] p. of plates :bill. (some col.) ;c24 cm. aA horse in nineteenth-century England recounts his experiences with both good and bad masters. 1aHorsesxFiction.21aKemp-Welch, Lucy,d1869-1958,eill. aLVLcJFkJ Sewell bMAINp31000000038627r12.95u6888u256200607 2200181 4500010001300000020001500013090001500028100002700043245004300070260004100113300002800154942002500182952004300207952004400250952004400294952004400338952004300382 a96034802 a0679454462 c1427d1427 aLe Carre, John,d1931- aThe tailor of Panama /cJohn le Carre. aNew York :bAlfred A. Knopf,cc1996. a331 p. :bmap ;c24 cm. aLVLcAFkAF Le Carre bLB2p37000000013092r14.46u6889u2563 bMAINp32000000069130r14.46u6890u2564 bMAINp32000000113739r14.46u6891u2565 bMAINp31000000062216r14.46u6892u2566 bLB1p33000000026891r14.46u6893u256700345 2200133 450000100060000000300040000600500170001000800410002709000150006810000260008324500440010994200210015395200370017443577LVL19990313000000.0941224s19uu 000 0 eng d c1428d14281 aThomas, Henry,d1886-10aLiving biographies of famous novelists. aLVLcNFk920 THO bMAINp32000000013028u6894u256800936 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000280013724500480016526000360021330000300024952001340027965000270041365000220044094200250046295200430048795200430053095200430057395200420061650596LVL19990312000000.0920630s1993 nyua j 00011 eng a92025770 a0805022643 a 92025770 c1429d1429 aE Fleming10aFleming, Denise,d1950-10aIn the small, small pond /cDenise Fleming.0 aNew York :bHenry Holt,cc1993. a[32] p. :bill. ;c26 cm. aIllustrations and rhyming text describe the activities of animals living in and near a small pond as spring progresses to autumn. 1aPond animalsxFiction. 1aStories in rhyme. aLVLcEASYkE Fleming bMAINp32000000041595r9.41u6895u2569 bMAINp32000000043597r9.19u6896u2570 bMAINp31000000044260r9.41u6897u2571 bLB1p33000000016147r9.41u6898u257200998 2200313 450000100060000000300040000600500170001000800390002701000130006602000250007903500140010403900180011804000130013604300120014905000210016108200220018209000150020410000190021924501630023826000450040130000350044650000430048150000200052450400260054465000300057070000190060094200210061995200440064029540LVL19990320000000.0850228s1984 ctua b 001 0 eng a83050679 a0918804191 :c$22.95 a 830506790 a2b3c3d3e3 aDLCcDLC aa-ja---0 aTT186.bO33 19840 219a684/.082/0952 c1430d14301 aOdate, Toshio.10aJapanese woodworking tools :btheir tradition, spirit, and use /cToshio Odate ; [photographs by Brian Gulick, except where noted ; drawings by Toshio Odate]. aNewtown, Conn. :bTaunton Press,cc1984. aviii, 189 p. :bill. ;c32 cm. a"A Fine woodworking book"--T.p. verso. aIncludes index. aBibliography: p. 185. 0aWoodworking toolszJapan.10aGulick, Brian. aLVLcNFk684 ODA bMAINp32000000030968r23.95u6899u257301542 2200397 450000100060000000300040000600500170001000700100002700800410003703500160007803700300009409000150012409200150013924501460015426000500030030000660035044000300041650000640044650600310051051100830054152001640062452100130078853800090080165000230081070000190083370000190085270000200087170000170089171000240090871000200093273000370095294200240098995200440101395200430105795200440110050597LVL20020319122450.0vf cbahom931228s1985 ilu058 gr vleng d avid93000665 aMIR03bPublic Media Video c1431d1431 aAV Miracle00aMiracle at MoreauxcAtlantis Films in association with WQED-Pittsburgh ; producer: Janice Platt ; director: Paul Shapiro.h[videorecording] / aChicago, Ill. :bPublic Media Video,cc1985.. a1 videocassette (58 min.) :bsd., col. ;c1/2 in. +e1 guide. 0aWonderWorks family movie. aOriginally broadcast on the television program WonderWorks. aFor private home use only.1 aLoretta Swit, Marsha Moreau, Robert Joy, Ken Pogue, Robert Kosoy, Talya Rubin. aThe nun leader and children attending a Catholic school in Nazi-occupied France overcome their fears and risk their lives to help 3 Jewish children to freedom. aGeneral. aVHS. 0aYoung adult films.11aShapiro, Paul.11aSwit, Loretta.11aMoreau, Marsha.11aJoy, Robert.21aPublic Media Video.21aAtlantis Films.01aWonderWorks (Television program) aLVLcAVkAV Miracle bMAINp32000000043729r22.46u6900u2574 bLB2p34000000027705r10.00u6901u2575 bMAINp31000000045704r22.46u6902u257600582 2200229 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200150012510000190014024500300015925000200018926000320020930000210024165000220026294200240028495200440030864635LVL19990217000000.0931207c19901989mau d 00011 eng d a90026426 a0816149917 a 90026426 c1432d1432 aLP Francis1 aFrancis, Dick.10aStraight /cDick Francis. aLarge print ed. aBoston :bG.K. Hall,c1990. a411 p. ;c25 cm. 0aLarge type books. aLVLcLPkLP Francis bMAINp31000000045792r16.11u6903u257700915 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000200013524500710015525000210022626000480024730000430029565000580033865000420039665100460043894200220048495200440050695200440055095200430059429541LVL20000910173946.0950901c19941992nyubj 00011 eng a94013060 a051759241X a 94013060 c1433d1433 aM Davis10aDavis, Lindsey.10aPoseidon's gold :ba Marcus Didius Falco mystery /cLindsey Davis. a1st American ed.0 aNew York :bCrown Publishers,c1994, c1992. a336 p. :bgeneal. table, map ;c24 cm. 0aFalco, Marcus Didius (Fictitious character)xFiction. 0aPrivate investigatorsxFiction.zRome 0aRomexHistoryxFiction.yVespasian, 69-79 aLVLcMYSkM Davis bMAINp32000000059190r13.60u6904u2578 bMAINp31000000055762r13.60u6905u2579 bLB2p37000000008150r13.60u6906u258000290 2200121 450000100060000000300040000600500170001000800410002709000150006824500260008394200160010995200430012543579LVL19990313000000.0921112s19xx xxu 00010 eng d c1434d143410aCOBBLESTONE 1984 MAY. aLVLcPERkJ bMAINp32000000022107r2.25u6907u258101123 2200337 450000100060000000300040000600500170001000800390002701000130006602000360007902000250011503500160014004000250015604100130018105000300019408200120022409000150023610000320025124000240028324500700030725000120037726000470038930000210043650000330045751000430049051000220053352001460055552100110070194200290071295200440074129542LVL19990320000000.0890324s1989 nyu 000 1 eng a89007452 c$75.00z0374270864 (lim. ed.) : a0374270856 :c$17.95 aflb00091506 aDLCcDLCdDLCdICrlF1 aenghspa00aPQ8498.32.A65bH3413 198900220a863 c1435d14352 aVargas Llosa, Mario,d1936-10aHablador.lEnglish.14aThe storyteller /cMario Vargas Llosa ; translated by Helen Lane. a1st ed. aNew York :bFarrar, Straus, Giroux,c1989. a245 p. ;c24 cm. aTranslation of: El hablador.0 aBooklist Editors' (Reviewers') Choice.0 aNYT Notable Book. aTranslation of: El hablador. Follows the destiny of the Peruvian Jew, Saul Zuratas, who eventually becomes a member of the Machiguenga tribe.2 aAdult. aLVLcAFkAF Vargas Llosa bMAINp32000000026409r10.59u6908u258200337 2200133 450000100060000000300040000600500170001000800410002709000150006810000300008324500240011394200290013795200370016636561LVL19990320000000.0930426s19xx xxu 00010 eng d c1436d14361 aMcNeer, May Yonge,d1902-10aArmed with courage. aLVLcJNFkJNF 920.02 MCN bMAINp32000000016337u6909u258300922 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000270013524501320016226000380029430000270033244000500035952001060040965000220051565000350053770000200057294200210059295200430061350599LVL19990312000000.0940228s1982 nyu j 00011 eng a82000372 a0394849515 a 82000372 c1437d1437 aJ Arden1 aArden, William,d1924-14aThe three investigators in The mystery of the purple pirate /cby William Arden ; based on characters created by Robert Arthur. aNew York :bRandom House,cc1982. aviii, 181 p. ;c20 cm. 4aThe Three investigators mystery series ;v33. aSearching for a legendary pirate treasure, the three investigators find a band of modern day pirates. 1aPiratesxFiction. 1aMystery and detective stories.10aArthur, Robert. aLVLcJFkJ Arden bMAINp32000000045259r2.37u6910u258401253 2200325 450000100060000000300040000600500170001000700100002700800390003702000150007603500160009103700300010709000150013709200120015224501770016426000560034130000560039751100720045352001660052552100150069153800160070665000190072265000330074170000180077470000190079270000210081170000300083294200210086295200440088364637LVL19990217000000.0vf cbahos961230p19961994nyu100 g vleng a1565018494 anav96000699 aAAE-15107bA&E Home Video c1438d1438 aAV Mind12aA mind to murdercA Co-production of Anglia Television Entainment, WGBH/Boston and CIPANGO ; produced by Hilary Bevan Jones ; directed by Gareth Davies.h[videorecording] /0 aNew York :bA & E Home Entertainmentcc1996, c1994. a1 videocassette; (100 min.) :bsd., col. ;c1/2 in.0 aRoy Marsden, Frank Finlay, David Hemmings, Christopher Ravenscroft. aPoet and Superintendant of detectives Adam Dalgliesh is called away from a publisher's party to investigate the brutal murder of a woman at a mental institution. aNot rated. aVHS Format. 0aFeature films. 0aDetective and mystery films.11aMarsden, Roy.11aFinlay, Frank.11aHemmings, David.11aRavenscroft, Christopher. aLVLcAVkAV Mind bMAINp31000000062108r18.95u6911u258501127 2200337 450000100060000000300040000600500170001000800390002701000190006602000240008503500160010904000200012505000270014508200130017209000150018510000250020024500380022526000530026330000210031652000900033752100340042752100100046194200200047195200420049195200430053395200430057695200420061995200430066195200430070495200420074729543LVL19990825000000.0790613s1979 mnu 00011 eng a79016421 //r88 a0871233428 :c$2.95 aflb00274310 aDLCcDLCdICrlF0 aPR9199.3.O38bL55 1979 a813/.5/4 c1439d143910aOke, Janette,d1935-10aLove comes softly /cJanette Oke.0 aMinneapolis :bBethany Fellowship, inc.,cc1979. a188 p. ;c21 cm. aA 19-year-old pioneer girl who is widowed cares for a widower and his young daughter.0 a6.9bFollett Library Book Co.2 a7-10. aLVLcAFkAF Oke bLB2p37000000002706r3.51u6912u2586 bMAINp32000000026401r3.51u6913u2587 bMAINp32000000029043r3.51u6914u2588 bLB1p36000000004580r3.51u6915u2589 bMAINp31000000014367r3.51u6916u2590 bMAINp31000000033301r3.51u6917u2591 bLB1p33000000003080r3.51u6918u259200934 2200265 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200130011410000210012724501430014825000190029126000600031030000310037044000240040165000270042565000190045270000220047174001100049394200220060395200430062550600LVL19990312000000.0940407c19931991ilua 00010 eng d a0844251763 anpl94000377 c1440d1440 a428.4 Co1 aComan, Marcia J.10aWhat you need to know about reading comprehension & speed, skimming & scanning, reading for pleasure /cMarcia J. Coman; Kathy L. Heavers. a1993 printing. aLincolnwood, IL :bNational Textbook Co.,c1993, c1991. a106 p. :bill. ;c28 cm.;. 0aNTC skill builders. 0aReading comprehension. 0aRapid reading.10aHeavers, Kathy L.01aWhat you need to know about reading comprehension and speed, skimming and scanning, reading for pleasure. aLVLcNFk428.4 Co bMAINp32000000046160r6.95u6919u259300362 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000390009624500140013594200250014995200420017457619LVL20020822084059.0950324s19uu 000 0 eng d a54008386 c1441d14411 aSchaefer, Jack Warner,d1907-1991.10aOut West. aLVLcWESkW Schaefer bLB2p37000000017947r6.50u6920u259400341 2200133 450000100060000000300040000600500170001000800410002709000150006810000280008324500380011194200210014995200370017064638LVL19990217000000.0950324s19uu 000 0 eng d c1442d14421 aGrey, Zane,d1872-1939.10aTappan's burro and other stories. aLVLcAFkAF Grey bMAINp31000000029222u6921u259500970 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000260013824500500016425000210021426000390023530000210027450000590029552001520035465000230050665000180052965100240054794200240057195200430059595200420063829544LVL19990320000000.0940701s1995 mau 00011 eng a94029299 a0395706734 a 94029299 c1443d1443 aYA Marsden10aMarsden, John,d1950-10aTomorrow, when the war began /cJohn Marsden. a1st American ed.0 aBoston :bHoughton Mifflin,c1995. a286 p. ;c22 cm. a"Originally published 1993 ... Australia"--T.p. verso. aSeven Australian teenagers return from a camping trip in the bush to discover that their country has been invaded and they must hide to stay alive. 1aSurvivalxFiction. 1aWarxFiction. 1aAustraliaxFiction. aLVLcYAkYA Marsden bMAINp32000000063553r8.37u6922u2596 bLB1p33000000025207r8.37u6924u259700700 2200193 4500010001700000020001700017082000800034090001500042100002500057245004000082260003900122300003300161520014000194650001900334650001900353942003000372952004300402952006100445 a88012988 /AC a0395486688 :0 a[E] c1444d14441 aVan Allsburg, Chris.10aTwo bad ants /cChris Van Allsburg. aBoston :bHoughton Mifflin,c1988. a31 p. :bcol. ill. ;c31 cm. aWhen two bad ants desert from their colony, they experience a dangerous adventure that convinces them to return to their former safety. 1aAntsxFiction. 1aAntsxFiction. aLVLcEASYkE Van Allsburg bMAINp32000000008279r9.57u6925u2598 bLB1dLB1p33000000066414r9.57u325807u2599v2005-02-1000789 2200265 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200150011410000200012924500370014925000200018626000560020630000280026244000240029050400500031465000230036465000230038794200250041095200440043595200440047950601LVL19990312000000.0940513c19931989enka j b 00010 eng d a071346075X anpl94000639 c1445d1445 aJNF 391 Ru1 aRuby, Jennifer.10aMedieval Times /cJennifer Ruby. aReprinted 1993. aLondon, England :bB.T. Batsford Ltd,c1993, c1989. a64 p. :bill. ;c29 cm. 0aCostume in context. aIncludes bibliographical references: p. (63). 1aCostumexMedieval. 1aFashionxMedieval. aLVLcJNFkJNF 391 Ru bMAINp32000000047068r24.95u6926u2600 bMAINp31000000048298r24.95u6927u260101031 2200313 450000100060000000300040000600500170001000800390002701000210006602000240008703500160011104000200012705000280014708200180017509000150019310000190020824500720022726000390029930000280033851000140036652001590038052100340053952100090057365000240058265000240060670000270063094200230065795200370068029545LVL19990320000000.0780612s1978 maua j 000 1 eng a78016973 /AC/r87 a0395272041 :c$5.95 aflb00714004 aDLCcDLCdICrlF0 aPZ4.T394aPS3570.H4bCh a813/.5/4aFic c1446d1446 aTheroux, Paul.12aA Christmas card /cby Paul Theroux ; illustrated by John Lawrence. aBoston :bHoughton Mifflin,c1978. a84 p. :bill. ;c22 cm.0 aBooklist. aLost in a New England snowstorm, a family is sheltered by a mysterious old man who disappears the next morning, leaving behind a magical "Christmas card."0 a5.3bFollett Library Book Co.2 a3-6. 1aChristmasxFiction. 7aChristmasxFiction.10aLawrence, John,d1933- aLVLcJFkJ Theroux bMAINp32000000018649u6928u260200400 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000190009624500730011594200220018895200440021043583LVL19990313000000.0941225s19uu 000 0 eng d a91008005 c1447d14471 aMcClane, A. J.12aA taste of the wild :ba compendium of modern American game cookery. aLVLcNFk641.6 Mc bMAINp32000000032387r34.80u6929u260300356 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000320009824500180013094200200014895200420016864640LVL20020826133856.0950324s19uu 000 0 eng d a0440403081 c1448d14481 aPeck, Robert Newton,d1928-10aSoup's uncle. aLVLcJFkJ Peck bLB2p37000000012319r2.95u6930u260400352 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000190009624500250011594200230014095200430016357622LVL19990220000000.0930415s19xx xxu 00010 eng d a85090548 c1449d14491 aWesley, James.10aBitterroot showdown. aLVLcWESkW Wesley bMAINp31000000030742r6.95u6933u260501169 2200337 450000100060000000300040000600500170001000800390002701000170006602000390008303500160012204000200013804300120015805000220017008200170019209000150020910000180022424500720024226000430031430000210035752001640037852100100054265000800055265000530063265000210068565000170070665000170072365000200074094200290076095200420078936567LVL20011201092735.0890406s1989 nyu j 00110 eng a89008414 /AC a0399515666 :c$10.95 ($14.50 Can.) aflb01494205 aDLCcDLCdICrlF an-us---0 aLB1135.bM37 19890 220a373.2/36 c1450d145010aMcCoy, Kathy.10aChanges and choices :ba junior high survival guide /cKathy McCoy.0 aNew York, NY :bPerigee Books,cc1989. a140 p. ;c28 cm. aA guide to surviving socially and psychologically such concerns as crushes, first love, embarrassment, changing families, making choices, and peer competition.2 a7-10. 0aJunior high school studentsxAttitudesxJuvenile literature.zUnited States 0aAdolescencexJuvenile literature.zUnited States 1aConduct of life. 1aAdolescence. 7aAdolescence. 7aHuman behavior. aLVLcYANFkYA 373.236 Mc bLB1p33000000004618r6.46u6936u260600820 2200289 450000100060000000300040000600500170001000800390002701000130006602000250007903500140010404000130011804300120013105000180014308200160016109000150017710000210019224500770021325000120029026000400030230000550034250000200039750400270041765000200044494200230046495200430048743586LVL20020904142951.0800404s1980 nyuaf b 001 0 eng a80007704 a0394500393 :c$15.95 a 80007704 aDLCcDLC aa------0 aNK2808.bB764 a746.7/5/075 c1451d14511 aBosly, Caroline.10aRugs to riches :ban insider's guide to oriental rugs /cCaroline Bosly. a1st ed. aNew York :bPantheon Books,cc1980. avi, 247 p., [4] leaves of plates :bill. ;c24 cm. aIncludes index. aBibliography: p. [243] 0aRugs, Oriental. aLVLcNFk746.75 Bo bMAINp32000000000544r7.64u6937u260700834 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000250013824500820016325000210024526000570026630000350032352000800035865000210043865000210045965000200048094200250050095200430052550605LVL19990312000000.0850305r1985 nyua j 00010 eng a85070560 a0872260208 a 85070560 c1452d1452 aJNF 821 Ba1 aBarker, Cicely Mary.10aFlower fairies of the wayside :bpoems and pictures /cby Cicely Mary Barker. a1st American ed. aNew York, NY :aLondon :bBedrick ;bBlackie,c1985. a[44] p. :bcol. ill. ;c16 cm. aThe author celebrates fairies and spring flowers in her poems and pictures. 1aFairiesxPoetry. 1aFlowersxPoetry. 1aEnglish poetry. aLVLcJNFkJNF 821 Be bMAINp32000000050686r5.00u6938u260800336 2200133 450000100060000000300040000600500170001000800410002709000150006810000170008324500320010094200270013295200430015957624LVL20020927103152.0911206s19xx xxu 00010 eng d c1453d1453 aFelton, Har.14aThe legends of Paul Bunyan. aLVLcJNFkJNF 398.2 Fe bMAINp31000000006576r4.97u6939u260900703 2200241 450000100060000000300040000600500170001000800390002701000130006604000130007905000180009208200110011009000150012110000290013624500980016526000380026330000270030135000100032850000360033865000200037494200230039495200440041764643LVL19990217000000.0691125s1969 nyua 00100 eng a73085441 aDLCcDLC0 aSB351.H5bS56 a635/.7 c1454d145410aSimmons, Adelma Grenier.10aHerbs to grow indoors ;bFor flavor, for fragrance, for fun.cIllustrated by Kathleen Bourke.0 aNew York,bHawthorn Booksc[1969] a146 p.billus.c22 cm. a5.95. a"A Helen Van Pelt Wilson book." 0aHerb gardening. aLVLcNFk635.7 SIM bMAINp31000000024509r10.00u6940u261000860 2200289 450000100060000000300040000600500170001000800390002701000130006602000250007902000150010403500160011903900180013504000200015305000250017308200160019809000150021410000190022924500300024826000520027830000210033051000140035152001230036552100170048894200220050595200430052743587LVL19990313000000.0810918s1982 nyu 00011 eng a81015671 a0698111532 :c$13.95 z0399901264 aflb011167030 a2b3c3d3e3 aDLCcDLCdICrlF0 aPS3552.L634bO7 19820 219a813/.54 c1455d145510aBlock, Thomas.10aOrbit /cThomas H. Block.0 aNew York :bCoward, McCann & Geoghegan,cc1982. a297 p. ;c24 cm.0 aBooklist. aA saboteur controls the fate of 100 passengers aboard a hypersonic jetliner that has gone into orbit around the earth.2 aYoung Adult. aLVLcAFkAF Block bMAINp32000000002228r8.37u6941u261101017 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000170013424500350015126000430018630000300022952001750025965000220043465000190045665000190047565000290049494200220052395200430054595200420058895200430063095200420067350606LVL19990312000000.0930907s1994 nyua j 00011 eng a93036490 a0688070159 a 93036490 c1456d1456 aE Bang10aBang, Molly.10aOne fall day /cby Molly Bang.0 aNew York :bGreenwillow Books,cc1994. a[24] p. :bill. ;c27 cm. aAt bedtime, a sleepy child listens as her mother describes the events of the day, which are illustrated in three-dimensional pictures featuring the child's favorite toys. 1aBedtimexFiction. 1aPlayxFiction. 1aToysxFiction. 1aAfro-AmericansxFiction. aLVLcEASYkE Bang bMAINp32000000052299r8.85u6942u2612 bLB2p34000000009728r8.85u6943u2613 bMAINp31000000051528r8.85u6944u2614 bLB1p33000000020593r8.85u6945u261501391 2200397 450000100060000000300040000600500170001000800390002701000220006602000380008802000310012603500160015704000200017304300120019305000220020508200260022709000150025310000260026824500830029426000460037730000280042351000270045152001220047852100340060052100090063460000510064360000300069460000300072465000540075465000600080865000140086865000140088270000310089694200230092795200430095029550LVL19990320000000.0820824s1983 njua j b 000 0beng a82016092 /AC/r892 a0893758566 (pbk.) :c$1.95 (est.) a0893758558 :c$6.45 (est.) aflb00863403 aDLCcDLCdICrlF ae-pl---0 aQD22.C8bB77 19830 219a530/.092/4aBa92 c1457d14571 aBrandt, Keith,d1930-10aMarie Curie, brave scientist /cby Keith Brandt ; illustrated by Karen Milone. aMahwah, N.J. :bTroll Associates,cc1983. a48 p. :bill. ;c24 cm.0 aBasal Science Program. aA brief biography focusing on the youth of the scientist who twice received the Nobel Prize for her work with radium.0 a4.6bFollett Library Book Co.2 a3-6.10aCurie, Marie,d1867-1934xJuvenile literature.11aCurie, Marie,d1867-1934.17aCurie, Marie,d1867-1934. 0aChemistsxBiographyxJuvenile literature.zPoland 0aWomen chemistsxBiographyxJuvenile literature.zPoland 1aChemists. 7aChemists.21aMilone-Dugan, Karen,eill. aLVLcJNFkJB Curie bMAINp32000000029713r6.30u6946u261601116 2200337 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009403900180011004000200012805000240014808200190017209000150019110000280020624500750023425000120030926000610032130000330038250000200041550400320043551000140046752001760048152100170065765000180067465000180069294200240071095200440073436569LVL20010628160132.0840522s1984 nyua b 00110 eng a84047640 a0394529987 aflb000559080 a2b3c3d3e3 aDLCcDLCdICrlF0 aQL737.C27bM36 19840 219a599.74/446 c1458d145810aMcNamee, Thomas,d1947-14aThe grizzly bear /cby Thomas McNamee ; with drawings by Gordon Allen. a1st ed.0 aNew York :bKnopf :bDistributed by Random House,c1984. avi, 308 p. :bill. ;c25 cm. aIncludes index. aBibliography: p. [277]-297.0 aBooklist. aA portrait of a grizzly bear family-mother and two cubs and the family's daily life as they stay in and near Yellowstone Park during the seven months between hibernations.2 aYoung Adult. 0aGrizzly bear. 7aGrizzly bear. aLVLcNFk599.74 MCN bMAINp31000000019605r11.57u6947u261700821 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009403900180011004000200012805000250014808200160017309000150018910000340020424500560023825000120029426000310030630000210033752001010035852100170045994200240047695200430050043588LVL19990313000000.0820817s1983 nyu 00011 eng a82014301 a0688016227 aflb002582100 a2b3c3d3e3 aDLCcDLCdICrlF0 aPS3569.T464bE4 19830 219a813/.54 c1459d1459 0aStewart, Fred Mustard,d1932-10aEllis Island :ba novel /cby Fred Mustard Stewart. a1st ed.0 aNew York :bMorrow,c1983. a396 p. ;c25 cm. aRelates the saga of five aspiring young immigrants who flee their homelands for America in 1907.2 aYoung Adult. aLVLcAFkAF Stewart bMAINp32000000007721r9.25u6948u261800640 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000230013624500320015925000200019126000460021130000210025750000320027865000220031094200220033295200440035450607LVL20030304092558.0940614r19941970meu d 00011 eng a94028139 a0786203072 a 94028139 c1460d1460 aLP Hogan1 aHogan, Ray,d1908-14aThe rimrocker /cRay Hogan. aLarge print ed. aThorndike, Me. :bThorndike Press,c1994. a227 p. ;c23 cm. a"A Shawn Starbuck western". 0aLarge type books. aLVLcLPkLP Hogan bMAINp31000000052455r12.71u6949u261900985 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200180012310000270014124501150016826000310028330000330031452001740034765000210052165000200054265000290056265000190059170000290061094200250063995200430066457626LVL19990220000000.0960917s1992 nyua j 00011 eng a92003021 a0679818634 a 92003021 c1461d1461 aJ Mc- Kissack10aMcKissack, Pat,d1944-14aThe dark-thirty :bSouthern tales of the supernatural /cPatricia C. McKissack ; illustrated by Brian Pinkney.0 aNew York :bKnopf,cc1992. aiv, 122 p. :bill. ;c28 cm. aA collection of ghost stories with African American themes, designed to be told during the Dark Thirty--the half hour before sunset--when ghosts seem all too believable. 1aGhostsxFiction. 1aHorror stories. 1aAfro-AmericansxFiction. 1aShort stories.11aPinkney, J. Brian,eill. aLVLcJFkJ McKissack bMAINp31000000061743r9.95u6950u262001034 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200190012310000290014224500700017126000380024130000280027944000240030752001310033165000200046265000200048270000280050280000480053094200260057895200430060495200430064795200420069050608LVL19990312000000.0940408s1994 nyua j 00011 eng a94015995 a0679860282 a 94015995 c1462d1462 aJ Beren- stain10aBerenstain, Stan,d1923-14aThe Berenstain Bears at Camp Crush /cby Stan and Jan Berenstain.0 aNew York :bRandom House,cc1994. a94 p. :bill. ;c20 cm. 2aA big chapter book. aWhen the director of Camp Grizzmeyer tries to keep the boys and girls away from each other, he makes an interesting discovery. 1aCampsxFiction. 1aBearsxFiction.10aBerenstain, Jan,d1923-10aBerenstain, Stan,d1923-tBig chapter book. aLVLcJFkJ Berenstain bMAINp32000000058736r9.89u6951u2621 bMAINp31000000055361r9.89u6952u2622 bLB1p33000000023167r9.89u6953u262300375 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000210009824500460011994200210016595200430018629552LVL19990320000000.0941024s19xx xxu 00010 eng d a0373708149 c1463d1463 0aLamb, Charlotte.10aDuel of desire /bHarlequin Presents 314. aLVLcAFkPB Lamb bMAINp32000000051567r1.50u6954u262401141 2200361 450000100060000000300040000600500170001000800390002701000170006603500160008304000200009905000190011908200100013809000150014810000180016324500440018126000500022530000400027535000110031551000520032651000140037851000210039252001310041352100340054452100090057865000240058765000220061165000240063365000220065770000350067994200220071495200430073643590LVL19990313000000.0720418s1972 nyua j 000 1 eng a74138553 /AC aflb00237813 aDLCcDLCdICrlF0 aPZ7.B3435bCoy a[Fic] c1464d14641 aBaylor, Byrd.10aCoyote cry.cDrawings by Symeon Shimin. aNew York,bLothrop, Lee & Shepard Co.c[1972] a[39] p.billus. (part col.)c26 cm. a$4.50.0 aElementary School Library Collection (Bro-Dart)0 aBooklist.0 aLibrary Journal. aWhen a coyote steals one of his collie's pups to raise, a shepherd boy learns that wild creatures must follow their instincts.0 a3.4bFollett Library Book Co.2 aK-3. 1aShepherdsxFiction. 1aCoyotesxFiction. 7aShepherdsxFiction. 7aCoyotesxFiction.11aShimin, Symeon,d1902-eillus. aLVLcJFkJ Baylor bMAINp32000000013147r3.95u6956u262501020 2200289 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200120011410000260012624500800015226000300023230000280026250000860029050000470037674000300042374000440045394200210049795200420051895200430056095200420060395200430064595200420068850609LVL20010804224332.0951019s1982 nyu 00011 eng d a0451183940 anpl95001391 c1465d1465 aAF King10aKing, Stephen,d1947-10aDifferent seasons :bfeaturing The Shawshank redemption /cby Stephen King.0 aNew YorkbSignet,cc1982. a507 p. ;c18 cm. ;dpa. aBased on "Rita Hayworth and Shawshank redemption" a novella in Different seasons. a"The Shawshank redemption" on front cover.41aThe Shawshank redemption.01aRita Hayworth and Shawshank redemption. aLVLcAFkAF King bLB2p37000000016324r6.99u6957u2626 bMAINp32000000060142r4.12u6958u2627 bLB2p34000000009915r4.12u6959u2628 bMAINp31000000056757r4.12u6960u2629 bLB1p33000000023829r4.12u6961u263000680 2200229 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200140011410000200012824500730014826000380022130000360025950000230029570000240031894200230034295200430036595200420040850610LVL19990312000000.0960130s1989 nyua j 00011 eng d a0671737295 anpl96000282 c1466d1466 aJ Coville10aCoville, Bruce.10aMy teacher is an alien /cBruce Coville; illustrated by Mike Wimmer.0 aNew York :bPocket Books,cc1989. a123 p. :bill. ;c19 cm. ;dpa. a"A Minstrel Book".11aWimmer, Mike,eill. aLVLcJFkJ Coville bMAINp31000000058320r2.39u6962u2631 bLB1p33000000024627r2.39u6963u263200674 2200205 4500010001300000020001500013090001500028100002100043245006100064260004100125300002300166490002900189500002000218650004000238650004200278942002000320952004300340952004300383952004200426 a91031564 a0812048768 c1467d146710aFontenelle, Don.10aKeys to parenting your teenager /cby Don H. Fontenelle.0 aHauppauge, N.Y. :bBarron's,cc1992. a218 p. ;c21 cm. ;1 aBarron's parenting keys. aIncludes index. 0aParent and teenagerzUnited States. 0aAdolescent psychologyzUnited States. aLVLcNFk649 Fo bMAINp32000000033372r3.45u6964u2633 bMAINp31000000039162r3.45u6966u2634 bLB1p33000000012567r3.45u6967u263501000 2200289 450000100060000000300040000600500170001000800390002701000130006602000250007903500160010404000200012005000240014008200160016409000150018010000290019524500470022425000120027126000330028330000210031651000290033751000210036652002460038752100110063394200220064495200440066636573LVL19990320000000.0861215s1987 nyu 000 1 eng a85048144 a0689117353 :c$18.95 aflb01685502 aDLCcDLCdICrlF0 aPS3569.A38bM4 19870 219a813/.54 c1468d14681 aSaint, H. F.q(Harry F.)10aMemoirs of an invisible man /cH.F. Saint. a1st ed. aNew York :bAtheneum,c1987. a396 p. ;c25 cm.0 aFiction Catalog (Wilson)0 aLibrary Journal. aDuring a press conference at a small technology firm, an explosion occurs. When Nick regains consciousness several hours later, he has become invisible. He is pursued by intelligence agents as he attempts to cope with his perilous existence.2 aAdult. aLVLcAFkAF Saint bMAINp32000000032306r10.00u6968u263600782 2200253 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200120011410000260012624500440015226000380019630000280023444000330026294200210029595200420031695200430035895200430040195200420044495200420048650611LVL20020308151927.0960618s1996 nyu j 00011 eng d a0553483951 anpl96001122 c1469d1469 aJ Wyeth10aWyeth, Sharon Dennis.14aThe human shark /cSharon Dennis Wyeth.0 aNew York :bBantam Books,cc1996. a133 p. ;c20 cm. ;dpa. 0aAmerican Gold Swimmers ;v2. aLVLcJFkJ Wyeth bLB2p37000000008016r3.50u6969u2637 bMAINp32000000065278r2.03u6970u2638 bMAINp35000000002179r2.03u6971u2639 bLB2p34000000013970r2.03u6972u2640 bLB1p33000000026019r2.03u6973u264101114 2200325 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009404300120010805000170012008200180013709000150015509200130017010000220018324500740020526000460027930000300032552001760035560000400053160000270057165000150059865100490061370000190066294200220068195200430070395200420074664649LVL19990217000000.0800306s1979 njua j 00010ceng a78018054 a0893751642 a 78018054 ae-uk-en0 aE129.C1bG66 a970.01/7/0924 c1470d1470 ajb Cabot10aGoodnough, David.10aJohn Cabot & son /cby David Goodnough ; illustrated by Allan Eitzen.0 aMahwah, N.J. :bTroll Associates,cc1979. a[48] p. :bill. ;c23 cm. aPresents a brief biography of the Venetian explorer who laid the first English claim to the North American continent and of his son who further explored the new territory.11aCabot, Sebastian,d1474 (ca.)-1557.11aCabot, John,dd. 1498? 1aExplorers. 1aAmericaxDiscovery and explorationxEnglish.11aEitzen, Allan. aLVLcJBkJB Cabot bMAINp31000000035234r6.40u6974u2642 bLB1p33000000006121r6.40u6975u264300901 2200289 450000100060000000300040000600500170001000800390002701000130006602000250007903500160010404000200012005000260014008200170016609000150018310000250019824500390022325000210026226000400028330000210032351000140034452001350035852100170049365000350051094200220054595200440056743593LVL19990313000000.0881101r1989 nyu 000 1 eng a88038044 a0684188511 :c$16.95 aflb00170504 aDLCcDLCdICrlF0 aPR6052.R4296bM7 19890 219a823/.914 c1471d14711 aBrett, Simon,d1945-10aMrs, presumed dead /cSimon Brett. a1st American ed. aNew York :bScribner,c1989, c1988. a248 p. ;c25 cm.0 aBooklist. aAfter moving into a suburban home outside London, Melita searches for the home's former owner and finds some shocking revelations.2 aYoung Adult. 7aMystery and detective stories. aLVLcMYSkM Brett bMAINp32000000024360r10.00u6976u264401021 2200289 450000100060000000300040000600500170001000800390002701000200006602000250008604000130011105000170012408200110014109000150015210000240016724000310019124501370022226000730035930000330043250400510046565000240051670000480054070000460058874000310063494200220066595200440068757631LVL20020918100857.0780421s1977 nyua b 00110 eng a77006559 //r873 a0060109874 :c$14.95 aDLCcDLC0 aTH4811.bD38 a690/.8 c1472d147210aDeCristoforo, R. J.10aHousebuilding illustrated.10aDe Cristoforo's housebuilding illustrated /cby R. J. De Cristoforo ; drawings by Richard J. Meyer, W. David Houser, and the author.0 aNew York :bPopular Science : [distributed by] Harper & Row,cc1977. axi, 644 p. :bill. ;c24 cm. aIncludes bibliographical references and index. 0aHouse construction.10aMeyer, Richard J.d1927-q(Richard Joseph),10aHouser, W. Davidd1944-q(William David),01aHousebuilding illustrated. aLVLcNFk690.8 De bMAINp31000000024087r12.79u6977u264500936 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000270013624501110016325000260027426000300030030000360033050000200036650400320038665000580041865000410047665000430051770000220056094200220058295200420060464650LVL19990217000000.0950322s1988 nyua bf 00110 eng a87030515 a0440504007 a 87030515 c1473d1473 a028.1 Ki10aKimmel, Margaret Mary.10aFor reading out loud! :ba guide to sharing books with children /cMargaret Mary Kimmel & Elizabeth Segel. aRev. and expanded ed.0 aNew York :bDell,cc1988. a279 p. :bill. ;c21 cm. ;dpa. aIncludes index. aBibliography: p. [264]-266. 0aChildrenxBooks and readingxHandbooks, manuals, etc. 0aChildren's literaturexBibliography. 0aOral readingxHandbooks, manuals, etc.10aSegel, Elizabeth. aLVLcNFk028.1 Ki bLB1p33000000008380r5.30u6978u264600956 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200180012310000240014124501010016526000390026630000280030550400530033352002370038665000190062394200280064295200440067029556LVL19990320000000.0881027s1989 nyua j b 00110 eng a88039196 a0899198341 a 88039196 c1474d1474 aJNF 618.92 Ha1 aHausherr, Rosmarie.10aChildren and the AIDS virus :ba book for children, parents, & teachers /cby Rosmarie Hausherr. aNew York :bClarion Books,cc1989. a48 p. :bill. ;c23 cm. aIncludes bibliographical references (p. 45-46.). aExplains in simple terms the body's immune system, how it is attacked by the AIDS virus, and what can be done to prevent the disease. The text is divided into a main text for the young reader and an informational subtext for adults. 1aAIDS (Disease) aLVLcJNFkJNF 618.92 Ha bMAINp32000000035654r13.01u6979u264701197 2200349 450000100060000000300040000600500170001000800390002701000170006603500160008304000200009905000210011908200140014009000150015410000190016924500760018825000210026426000590028526300100034430000180035450000200037252002140039252100340060652100100064063000320065063000110068263000200069370000200071394200280073395200430076195200430080436575LVL19990320000000.0880729r19891988nyu j 00110 eng a88020832 /AC aflb01848601 aDLCcDLCdICrlF0 aBS539.bH64 19890 219a220.9 c1475d147510aHofman, Ya'ir.14aThe world of the Bible for young readers /cYair Hoffman, Ilana Shamir. a1st American ed.0 aNew York, N.Y. U.S.A. :bViking Kestrel,c1989, c1988. a8910. a96 p. :bill. aIncludes index. aA survey of the historical background of events and people that are mentioned in the Old and New Testament. Includes more than 300 photographs, maps, charts, and drawings as well as a time line and a glossary.0 a7.8bFollett Library Book Co.2 a7-10.00aBiblexJuvenile literature.01aBible.07aBiblexHistory.10aShamir, Ilanah. aLVLcJNFkJNF 220.9 HOF bMAINp32000000026268r9.41u6980u2648 bMAINp31000000014164r9.41u6981u264901437 2200421 450000100060000000300040000600500170001000800390002701000170006602000340008303500160011704000200013305000210015308200140017409000150018810000190020324500800022226000430030230000330034549000170037850000200039551000480041551000150046352002270047852100340070552100090073965000360074865000310078465000330081565000150084865000100086365000120087365000100088565000150089580000330091094200280094395200440097143594LVL19990313000000.0860326s1987 enka j 00110 eng a86050357 /AC a0531102599 (U.S. : lib. bdg.) aflb01481903 aDLCcDLCdICrlF0 aRA784.bW36 19870 219a613.2 c1476d147610aWard, Brian R.10aDiet and nutrition /cBrian R. Ward ; series consultant, Alan Maryon-Davis.0 aLondon ;aNew York :bF. Watts,c1987. a48 p. :bcol. ill. ;c26 cm.1 aLife guides. aIncludes index.0 aJunior High School Library Catalog (Wilson)0 aAppraisal. aExplains how different types of foods provide nutrients which help our bodies grow properly, how improper diets can lead to poor health, and the benefits of vegetarianism, eating ethnic foods, and avoiding processed foods.0 a6.5bFollett Library Book Co.2 a5-8. 0aNutritionxJuvenile literature. 0aDietxJuvenile literature. 0aHealthxJuvenile literature. 1aNutrition. 1aDiet. 1aHealth. 7aDiet. 7aNutrition.1 aWard, Brian R.tLife guides. aLVLcJNFkJNF 641.1 WAR bMAINp32000000019741r10.90u6982u265000772 2200241 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200180011224500450013026000440017530000380021950000300025765000410028794200280032895200440035695200430040095200440044395200430048750613LVL19990312000000.0961105s1996 paua 00100 eng a0801979196 anpl96001978 c1477d1477 aREF 629.28 Ch00aChilton's auto repair manual, 1993-1997.0 aRadnor, PA :bChilton Book Co.,cc1996. avarious pagings :bill. ;c28 cm. a"Part no. 7919" on spine. 0aAutomobilesxMaintenance and repair. aLVLcREFkREF 628.28 Ch bMAINp32000000067729r14.72u6984u2651 bLB2p34000000014605r14.72u6985u2652 bMAINp31000000062478r14.72u6986u2653 bLB1p33000000027013r14.72u6987u265401217 2200361 450000100060000000300040000600500170001000800390002701000210006602000150008703500160010203900180011804000200013605000270015608200160018309000150019910000210021424501160023526000400035130000330039152001160042452100340054052100090057465000440058365000330062765000290066065000210068965000290071070000240073971000250076394200240078895200430081257632LVL19990220000000.0840928s1985 ilua j 00010 eng a84021511 /AC/r86 a0516029061 aflb006691080 a2b3c3d3e3 aDLCcDLCdICrlF0 aPS3552.E54738bM9 19850 219a811/.54 c1478d147810aBennett, Marian.10aMy first Valentine's Day book /cby Marian Bennett ; illustrated by Pam Peltier ; created by the Child's World.0 aChicago :bChildrens Press,cc1985. a31 p. :bcol. ill. ;c25 cm. aPoems describe Valentine's Day experiences, such as the school party, greeting the mailman, and family dessert.0 a2.3bFollett Library Book Co.2 aK-3. 0aSaint Valentine's DayxJuvenile poetry. 0aChildren's poetry, American. 1aValentine's DayxPoetry. 1aAmerican poetry. 7aValentine's DayxPoetry.11aPeltier, Pam,eill.20aChild's World (Firm) aLVLcNFk811.54 BEN bMAINp31000000008604r7.95u6988u265500940 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000270013624500810016326000460024430000290029052001820031965000350050165000220053665000230055870000270058194200220060895200440063029557LVL19990320000000.0821215s1983 nyua j 00011 eng a82024206 a0374312400 a 82024206 c1479d1479 aJ Selden1 aSelden, George,d1929-10aChester Cricket's new home /cGeorge Selden ; illustrated by Garth Williams. aNew York :bFarrar Straus Giroux,cc1983. a142 p. :bill. ;c24 cm. aWhen two rather stout ladies sit on Chester Cricket's home in the Old Meadow, the worm-eaten stump collapses and Chester, aided by his friends, is forced to look for a new home. 1aAnimalsxHabitationsxFiction. 1aAnimalsxFiction. 1aCricketsxFiction.11aWilliams, Garth,eill. aLVLcJFkJ Selden bMAINp32000000036736r13.50u6989u265600702 2200229 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200120011410000280012624500690015426000460022330000300026970000230029994200220032295200430034495200430038795200420043043595LVL20020930171910.0921125c19921952nyu 00011 eng d a0553242695 aonv90003665 c1480d1480 aM Stout10aStout, Rex,d1886-1975.10aPrisoner's base /cRex Stout; introduction by William DeAndrea..0 aNew York :bBantam Books,c1992, c1952. . a209 p. ;c18 cm. ;dpa. .10aDeAndrea, William. aLVLcMYSkM Stout bMAINp32000000035944r2.89u6990u2657 bMAINp31000000041337r2.89u6991u2658 bLB1p33000000014298r2.89u6992u265900580 2200229 450000100060000000300040000600500170001000800390002701000190006602000150008504000130010005000320011308200140014509000150015910000310017424500210020526000320022630000260025850000200028465000220030494200240032657633LVL19990220000000.0740904s1974 mau d 00001 eng a74019206 //r89 a081616245X aDLCcDLC1 aPZ4.F7349aPR6056.O699bDo4 a823/.9/14 c1481d148110aForsyth, Frederick,d1938-14aThe dogs of war.0 aBoston,bG. K. Hall,c1974. a2 v. (810 p.)c24 cm. aLarge print ed. 0aLarge type books. aLVLcLPkLP Forsyth01034 2200277 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200170012510000210014224501510016325000120031426000520032630000380037852001540041665000290057065000230059970000390062270000240066194200270068595200440071229558LVL19990320000000.0930312s1989 caua j 00010 eng d a89007417 z0152413545 a 89007417 c1482d1482 aJNF 398.2 Pa1 aParks, Van Dyke.10aJump on over! :bthe adventures of Brer Rabbit and his family /cby Joel Chandler Harris ; adapted by Van Dyke Parks ; illustrated by Barry Moser. a1st ed. aSan Diego :bHarcourt Brace Jovanovich,cc1989. avii, 39 p. :bcol. ill. ;c29 cm. aA collection of five tales in which Brer Rabbit outwits Brer Fox, Brer Wolf, and Brer Bear in order to ensure his family's survival during a drought. 1aFolklore, Afro-American. 1aAnimalsxFolklore.10aHarris, Joel Chandler,d1848-1908.11aMoser, Barry,eill. aLVLcJNFkJNF 398.2 Pa bMAINp32000000037866r14.36u6994u266001143 2200349 450000100060000000300040000600500170001000800390002701000170006602000240008303500160010704000200012305000230014308200120016609000150017810000360019324500830022925000260031226000450033830000400038351000140042352001340043752100340057152100090060565000190061465000220063365000190065565000220067470000270069694200270072395200430075043596LVL19990313000000.0880106c19881980nyua j 000 1 eng a88000878 /AC a068971257X :c$4.50 aflb01761701 aDLCcDLCdICrlF1 aPZ7.P6335bWu 19880 219a[E] c1483d14831 aPinkwater, Daniel Manus,d1941-14aThe Wuggie Norple story /cby Daniel M. Pinkwater ; pictures by Tomie dePaola. a1st Aladdin Books ed. aNew York :bAladdin Books,c1988, c1980. a[40] p. :bcol. ill. ;c18 x 23 cm.0 aBooklist. aThe family's new pet kitten grows at such a ridiculous rate that the father must bring home animals to compare its size each day.0 a3.0bFollett Library Book Co.2 aK-3. 1aCatsxFiction. 1aHumorous stories. 7aCatsxFiction. 7aHumorous stories.11aDe Paola, Tomie,eill. aLVLcEASYkE Pinkwater bMAINp32000000022599r2.61u6995u266100892 2200265 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200120012510000190013724500870015626000760024330000350031952000930035465000220044770000240046970000250049394200230051895200430054195200420058464653LVL19990217000000.0930115c19881977nyua j 00011 eng d a88003192 a0671668455 a 88003192 c1484d1484 aE Kraus10aKraus, Robert.10aNoel, the coward /cby Robert Kraus ; illustrated by Jose Aruego and Ariane Dewey.0 aNew York :bSimon and Schuster Books for Young Readers,c[1988], c1977. a[32] p. :bcol. ill. ;c29 cm. aCoward powered Noel changes to a hero with the help of Charlie's School of Self Defense. 1aCouragexFiction.11aAruego, Jose,eill.11aDewey, Ariane,eill. aLVLcEASYkE Kraus bMAINp31000000041788r8.96u6996u2662 bLB1p33000000014589r8.96u6997u266300641 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000230013624500400015926000380019930000210023794200230025895200430028195200440032495200430036829559LVL19990320000000.0920930s1993 nyu 00011 eng a92035630 a0553092537 a 92035630 c1485d1485 aM George10aGeorge, Elizabeth.10aMissing Joseph /cElizabeth George.0 aNew York :bBantam Books,cc1993. a496 p. ;c24 cm. aLVLcMYSkM George bLB2p34000000006262r12.95u6998u2664 bMAINp31000000043530r12.95u6999u2665 bLB1p33000000015719r12.95u7000u266601338 2200433 450000100060000000300040000600500170001000800390002701000170006602000270008303500160011003900180012604000200014405000240016408200170018809000150020510000180022024500990023826000330033730000330037044000310040350000200043451000480045452000900050252100340059252100090062665000320063565000320066765000110069965000110071065000110072165000110073270000210074370000220076470000250078674000210081194200290083295200430086136578LVL20020909080124.0830817s1984 nyua j 001 0 eng a83050851 /AC a0531047245 (lib. bdg.) aflb004783040 a2b3c3d3e3 aDLCcDLCdICrlF0 aTK6550.7.bY68 19840 219a621.3841 c1486d14861 aYoung, Frank.10aRadio & radar /cFrank Young ; editor, James McCarter ; illustrators, Rob Shone, Elsa Godfrey. aNew York :bF. Watts,c1984. a29 p. :bcol. ill. ;c30 cm. 4aThe Electronic revolution. aIncludes index.0 aJunior High School Library Catalog (Wilson) aText and illustrations explain applications of radio technology in our everyday life.0 a6.1bFollett Library Book Co.2 a5-8. 0aRadioxJuvenile literature. 0aRadarxJuvenile literature. 1aRadio. 1aRadar. 7aRadio. 7aRadar.10aMcCarter, James.11aShone, Rob,eill.11aGodfrey, Elsa,eill.01aRadio and radar. aLVLcJNFkJNF 621.381 Yo bMAINp32000000015520r9.40u7001u266700690 2200229 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200150011410000280012924500520015726000380020930000230024744000180027050200600028894200250034895200430037395200440041643597LVL19990313000000.0920911c19911983nyu 00011 eng d a0671656155 aonv90003275 c1487d1487 aSF Bradley1 aBradley, Marion Zimmer.14aThe fall of Atlantis /cMarion Zimmer Bradley.. aNew York :bBaen,c1991, c1983. . a502 p. ;c18 cm.;. 4aThe Web saga. aFormerly published as Web of light and Web of darkness. aLVLcSCIkSF Bradley bMAINp32000000034900r5.99u7002u2668 bMAINp31000000041136r10.00u7003u266901128 2200349 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000180014024500990015826000420025730000330029944000180033250000220035050000540037250000200042665000280044665000170047470000200049170000230051194200270053495200440056195200430060595200430064895200440069195200430073550616LVL19990312000000.0931115r19941993nyua j 00110 eng a93042984 a1568472560 a 93042984 c1488d1488 aJNF 621.8 Ba10aBaker, Wendy.10aMachines /cWendy Baker & Andrew Haslam ; written by David Glover ; photography by Jon Barnes.0 aNew York :bThomson Learning,cc1994. a48 p. :bcol. ill. ;c28 cm. 0aMake it work! a"A two-Can book." aOriginally published: London: Two-Can Pub., 1993. aIncludes index. 1aMachineryxExperiments. 1aExperiments.10aHaslam, Andrew.11aBarnes, Jon,eill. aLVLcJNFkJNF 621.8 Ba bMAINp32000000062012r11.96u7004u2670 bLB1p36000000002781r12.76u7005u2671 bLB2p34000000013859r12.76u7006u2672 bMAINp31000000058007r11.96u7007u2673 bLB1p33000000025795r12.76u7008u267400642 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000190013624500760015525000120023126000440024330000290028765100300031694200220034695200440036836579LVL20030219163510.0920602s1993 nyub 0011 eng a92020991 a0805019065 a 92020991 c1489d1489 a914.5 Ho1 aHofmann, Paul.10aRoma :bthe smart traveler's guide to the Eternal City /cPaul Hofmann. a1st ed. aNew York :bHenry Holt and Co.,cc1993. a272 p. :bmaps ;c22 cm. 0aRome (Italy)xGuidebooks. aLVLcNFk914.5 Ho bMAINp32000000038008r13.20u7009u267501143 2200349 450000100060000000300040000600500170001000800390002701000200006602000250008603500160011104000200012704300120014705000180015908200200017709000150019710000260021224500400023825000120027826000510029030000290034150000260037051000480039652000990044452100170054360000590056065000420061965000360066165000270069794200260072495200430075057636LVL19990220000000.0761104s1977 nyua 00010beng a76054288 //r852 a0151524017 :c$11.95 aflb00514903 aDLCcDLCdICrlF an-us---0 aTL540.L5bG54 a629.13/092/4aB c1490d149010aGill, Brendan,d1914-10aLindbergh alone /cby Brendan Gill. a1st ed.0 aNew York :bHarcourt Brace Jovanovich,cc1977. a216 p. :bill. ;c26 cm. aErrata slip inserted.0 aSenior High School Library Catalog (Wilson) aDiscusses Lindbergh's life and the extraordinary flight that made him a hero at the age of 25.2 aYoung Adult.10aLindbergh, Charles A.d1902-1974.q(Charles Augustus), 0aAir pilotsxBiography.zUnited States 7aLindbergh, Charles,d1902-1974. 7aAir pilotsxBiography. aLVLcBIOkB Lindbergh bMAINp31000000021928r7.17u7011u267600981 2200289 450000100060000000300040000600500170001000700100002700800410003703500160007803700360009409000150013009200170014524501240016224600210028626000530030730000550036044000260041551100300044152100150047153800160048665000350050265000390053770000270057694200260060395200620062964655LVL19990217000000.0vf cbahom961230s1995 cau032 g vleng d anav96000701 aMVP-210bMVP Home Entertainment c1491d1491 aAV 787.87 Le10aLearn to play acoustic guitarcA MVP Home Entertainment production ; with Dr. Michael Christiansen.h[videorecording] /3 aAcoustic guitar.0 aChatsworth, CA :bMVP Home Entertainmentcc1995. a1 videocassette; (32 min.) :bsd., col. ;c1/2 in. 0aLearn to play series.0 aDr. Michael Christiansen. aNot rated. aVHS Format. 0aGuitarxInstruction and study. 0aGuitarxMethodsxSelf-instruction.11aChristiansen, Michael. aLVLcAVkAV 787.87 Le bMAINdMAINp31000000063083r14.95u7012u2677v2003-09-0101009 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012324501170013726000410025430000330029544000400032850000200036865000550038865000400044370000410048374000420052494200230056695200440058995200430063395200430067629561LVL20030627133333.0920902s1993 nyua 00100 eng a92030548 a0385411197 a 92030548 c1492d1492 a372.19 Wh00aWhat your 5th grader needs to know :bfundamentals of a good fifth-grade education /cedited by E.D. Hirsch, Jr.0 aNew York, N.Y. :bDoubleday,cc1993. axx, 393 p. :bill. ;c24 cm. 4aThe Core knowledge series ;vbk. 5. aIncludes index. 0aFifth grade (Education)xCurricula.zUnited States 0aCurriculum planningzUnited States.10aHirsch, E. D.d1928-q(Eric Donald),01aWhat your fifth grader needs to know. aLVLcNFk372.19 Wh bMAINp32000000137949r22.50u7014u2678 bLB2p34000000001492r13.28u7015u2679 bLB1p33000000016020r13.28u7016u268001152 2200289 4500010001700000020001500017020001500032082001500047090001500062100002800077245007800105260006200183300003500245520014400280650002700424650002700451700002200478942002600500952003600526952004400562952004300606952004400649952004200693952004300735952004200778952004200820 a87003200 /AC a0394993306 a03948933010 aE Ackerman c1493d149310aAckerman, Karen,d1951-10aSong and dance man /cby Karen Ackerman ; illustrated by Stephen Gammell.0 aNew York :bDistributed by Random House,bKnopf :cc1988. a[30] p. :bcol. ill. ;c28 cm. aGrandpa demonstrates for his visiting grandchildren some of the songs, dances, and jokes he performed when he was a vaudeville entertainer. 1aEntertainersxFiction. 1aGrandfathersxFiction.11aGammell, Stephen, aLVLcEASYkE Ackerman bLB2p37000000012298u7017u2681 bMAINp32000000026002r10.79u7018u2682 bMAINp32000000031821r7.71u7019u2683 bMAINp35000000005780r15.00u7021u2684 bLB2p34000000017472r5.00u7022u2685 bMAINp31000000037304r7.71u7023u2686 bLB1p33000000009477r7.71u7024u2687 bLB1p33000000021448r3.95u7025u268801075 2200325 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012324500870014026000340022730000290026150000330029050000220032352000870034565000200043265000110045270000220046370000230048594200270050895200430053595200430057895200430062195200430066495200420070743599LVL19990313000000.0921092s1988 nyusgznj 100 eng a87753871 a0806967714 a 87753871 c1494d1494 aJNF 784.6 Wo04aThe World's best funny songs /cby Esther L. Nelson ; illustrations by Joyce Behr.0 aNew York :bSterling,cc1988. a128 p. :bill. ;c22 cm. aMelodies with chord symbols. aIncludes indexes. aPresents the lyrics, melody lines, and guitar chords to over sixty humorous songs. 1aHumorous songs. 1aSongs.10aNelson, Esther L.11aBehr, Joyce,eill. aLVLcJNFkJNF 784.6 Wo bMAINp32000000032813r3.95u7026u2689 bMAINp32000000037832r3.96u7027u2690 bMAINp31000000038430r3.95u7028u2691 bMAINp31000000042304r3.96u7029u2692 bLB1p33000000012004r3.95u7030u269301558 2200385 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000270013524501370016226000480029930000330034744000350038052001640041565000240057965000250060365100330062865100800066170000260074194200210076795200420078895200430083095200430087395200430091695200420095995200430100195200430104495200420108795200430112943600LVL20000910181738.0910522s1991 wiu j 00011 eng a91020704 a1562470108 a 91020704 c1495d1495 aJ Tripp10aTripp, Valerie,d1951-10aFelicity's surprise :ba Christmas story /cby Valerie Tripp ; illustrations, Dan Andreasen ; vignettes, Luann Roberts, Keith Skeen.0 aMiddletown, WI :bPleasant Company,cc1991. a69 p. :bcol. illus.c22 cm. 4aThe American girls collection. aChristmas in Williamsburg means a dancing party at the Governor's Palace for Felicity, but her mother becomes very ill and cannot finish the special blue gown. 1aChristmasxFiction. 1aFriendshipxFiction. 1aWilliamsburg (Va.)xFiction. 1aVirginiaxSocial life and customsxFiction.yColonial period, ca. 1600-177511aAndreasen, Dan,eill. aLVLcJFkJ Tripp bLB2p37000000003700r5.95u7031u2694 bMAINp32000000034029r3.49u7032u2695 bMAINp32000000034336r3.49u7033u2696 bMAINp32000000052110r5.95u7034u2697 bLB1p36000000002038r3.49u7035u2698 bMAINp31000000039811r3.49u7036u2699 bMAINp31000000040088r3.49u7037u2700 bLB1p33000000013192r3.49u7038u2701 bLB1p33000000014326r11.05u7039u270200641 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009405000250010808200130013309000150014609200160016110000230017724500370020025000200023726000520025750000240030994200230033395200430035657638LVL20020128140946.0861112s1987 mau d 00011 eng a86029186 a1555043097 a 860291861 aPS3523.E434bG8 19870 a813/.549 c1496d1496 aL.P. Lehman10aLehman, Paul Evan.10aGun-whipped /cPaul Evan Lehman. aLarge print ed.0 aSouth Yarmouth, MA, USA :bJohn Curley,cc1987. a"Atlantic western." aLVLcLPkLP Lehman bMAINp31000000035644r8.95u7040u270300327 2200133 450000100060000000300040000600500170001000800410002709000150006810000280008324500240011194200210013595200370015664657LVL20010807083452.0950324s19uu 000 0 eng d c1497d14971 aGrey, Zane,d1872-1939.10a30,000 on the hoof. aLVLcWESkW Grey bMAINp31000000029223u7041u270401068 2200289 450000100060000000300040000600500170001000700100002700800410003702000150007803500160009303700390010909000150014809200130016324501420017626000610031830000550037950000140043450600310044852001660047952100130064553800090065865000220066770000230068994200230071295200430073529563LVL20000911201339.0vf cbahom931028r19831965inu024 g vaeng d a0804302685 avid93000509 a268-5bKartes Video Communications c1498d1498 aAVJ What00aWhat have we learned, Charlie BrowncLee Mendelson-Bill Melendez Production ; written & created by Charles M. Schulz.h[videorecording] / aIndianapolis, IN :bKartes Video Communications,cc1983. a1 videocassette (24 min.) :bsd., col. ;c1/2 in.. aAnimated. aFor private home use only. aCharlie Brown and the Peanuts gang are visiting the war monuments in France as part of a student exchange, and recalling what happened during the last world war. aGeneral. aVHS. 0aChildren's films.11aSchulz, Charles M. aLVLcAVJkAVJ What bMAINp32000000038431r0.16u7042u270501395 2200397 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000270013724500400016425000120020426000380021630000350025452000910028965000190038065000190039965000270041894200250044595200420047095200430051295200430055595200430059895200590064195200420070095200430074295200420078595200420082795200430086995200430091295200420095536582LVL20020823154947.0850304s1985 nyua j 00011 eng a84043244 a0060241292 a 84043244 c1499d1499 aE McCully10aMcCully, Emily Arnold.10aFirst snow /cEmily Arnold McCully. a1st ed.0 aNew York :bHarper & Row,cc1985. a[32] p. :bcol. ill. ;c24 cm. aA timid little mouse discovers the thrill of sledding in the first snow of the winter. 1aMicexFiction. 1aSnowxFiction. 1aStories without words. aLVLcEASYkE McCully bLB2p37000000004648r4.95u7043u2706 bMAINp32000000005553r4.89u7044u2707 bMAINp32000000028219r4.95u7045u2708 bMAINp32000000044965r4.95u7046u2709 bLB1dLB1p36000000003690r4.95u7047u2710v2003-09-01 bLB1p36000000003691r4.95u7048u2711 bMAINp35000000001556r4.95u7049u2712 bLB2p34000000010672r4.95u7050u2713 bLB2p34000000010674r4.95u7051u2714 bMAINp31000000003028r4.89u7052u2715 bMAINp31000000046641r4.95u7054u2716 bLB1p33000000002406r4.95u7055u271700954 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200180012310000220014124501250016326000420028830000400033044000140037050400590038465000160044365000160045965000160047565000280049170000170051994200280053695200440056495200440060850620LVL19990312000000.0941031s1995 nyua j b 00110 eng a94042865 a1568473826 a 94042865 c1500d1500 aJNF 745.58 Ch10aChapman, Gillian.10aArt from rocks and shells :bwith projects using pebbles, feathers, flotsam, and jetsam /cGillian Chapman & Pam Robson.0 aNew York :bThomson Learning,cc1995. a32 p. :bill. (some col.) ;c28 cm. 0aSalvaged! aIncludes bibliographical references (p. 31) and index. 1aRock craft. 1aShellcraft. 1aHandicraft. 1aRecycling (Waste, etc.)10aRobson, Pam. aLVLcJNFkJNF 745.58 Ch bMAINp32000000061998r10.46u7056u2718 bMAINp31000000057977r10.46u7057u271900748 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000170013424000150015124500490016625000130021526000560022830000210028450000200030565000150032570000230034094200200036395200440038395200430042757639LVL20000713000000.0910918s1992 nyu 00110 eng a91058284 a0062700472 a 91058284 c1501d1501 a395 Po10aPost, Emily.10aEtiquette.10aEmily Post's Etiquette /cElizabeth L. Post. a15th ed.0 aNew York, N.Y. :bHarperCollins Publishers,cc1992. a783 p. ;c24 cm. aIncludes index. 0aEtiquette. 0aPost, Elizabeth L. aLVLcNFk395 Po bMAINp31000000039382r14.75u7058u2720 bLB1p33000000012746r14.75u7059u272100810 2200277 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200140012524500540013926000370019330000440023050000270027450000220030165000130032365000130033671000300034974000400037994200250041995200440044495200440048829564LVL20000911212846.0930128s1990 iluab j 00100 eng d a90052621 a0528834096 a 90052621 c1502d1502 aJR 591 Ra00aRand McNally children's atlas of world wildlife..0 aChicago :bRand McNally,cc1990. a93 p. :bcol. ill., col. maps ;c28 cm. aMaps on lining papers. aIncludes indexes. 1aAnimals. 1aAtlases.20aRand McNally and Company.01aChildren's atlas of world wildlife. aLVLcJREFkJR 591 Ra bMAINp32000000044066r11.40u7060u2722 bMAINp31000000046001r11.40u7061u272301182 2200325 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009409000150011009200170012524500980014225000250024026000440026530000410030950400280035052001100037865000370048870000280052570000220055394200270057595200420060295200420064495200430068695200420072995200430077195200420081457640LVL19991215000000.0880115c19921989nyua j b 00100 eng a88002675 a0064461114 aonv90003189 c1503d1503 aJNF 810.8 Ha00aHalloween :bstories and poems /cedited by Caroline Feller Bauer ; illustrated by Peter Sis. a1st HarperTrophy ed.0 aNew York :bHarperTrophy,c1992, c1989. axiii, 78 p. :bill. ;c23 cm. ;dpa. aBibliography: p. 73-76. aA collection of Halloween stories and poems by a variety of authors. Includes recipes and a bibliography. 1aHalloweenxLiterary collections.10aBauer, Caroline Feller.11aSis, Peter,eill. aLVLcJNFkJNF 810.8 Ha bLB2p37000000006670r2.87u7063u2724 bLB1p36000000002946r6.65u7064u2725 bMAINp35000000002888r2.87u7065u2726 bLB2p34000000009462r2.87u7066u2727 bMAINp31000000040429r2.87u7067u2728 bLB1p33000000013494r2.87u7068u272900761 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000260013524500350016126000310019630000210022750000320024891000130028091000190029391000350031291000290034794200220037695200430039895200420044129565LVL20021030144130.0870720s1988 nyu 00011 eng a87021665 a0802740723 a 87021665 c1504d1504 aW Paine10aPaine, Lauran,d1916-10aCuster Meadow /cLauran Paine.0 aNew York :bWalker,c1988. a183 p. ;c23 cm. a"A Walker western"--Jacket. a1998 May a1998 September a1998 September --bPPL --g000 a1998 May --bCPL --g000 aLVLcWESkW Paine bMAINp32000000059247r2.98u7069u2730 bLB1p33000000017749r2.98u7071u273100860 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000180013424500460015225000230019826000370022130000330025844000290029150000860032052000560040665000140046265000190047674000090049594200220050495200440052657641LVL19990220000000.0961005r19941992wiua j 00011 eng a93036139 a0836810732 a 93036139 c1505d1505 aE Dodd10aDodd, Lynley.14aThe minister's cat :bABC /cLynley Dodd. aNorth American ed.0 aMilwaukee :bG. Stevens,cc1994. a30 p. :bcol. ill. ;c22 cm. 0aGold star first readers. a"First published in New Zealand by Mallinson Rendel Publishers Ltd."--T.p. verso. aPlayful cats introduce the letters of the alphabet. 1aAlphabet. 1aCatsxFiction.01aABC. aLVLcEASYkE Dodd bMAINp31000000062006r12.95u7073u273200975 2200313 450000100060000000300040000600500170001000800390002701000190006602000150008503500200010004000180012004300120013805000150015008200160016509000150018110000220019624501050021825000160032326000540033930000290039335000120042250400410043465000490047565000370052465000370056194200200059895200430061836585LVL19990320000000.0710609s1971 maua b 000 0 eng a71143711 //r90 a0316757454 a 71143711 //r90 aDLCcDLCdDLC an-us---00aHV91.bR7300220a361/.05 c1506d15061 aRothman, David J.14aThe discovery of the asylum ;bsocial order and disorder in the new republicc[by] David J. Rothman. aRevised ed. aBoston, MA :bLittle, Brownand Co.,cc1990, 1971. a380 p. :bill. ;c21 cm. a$12.50. aIncludes bibliographical references. 0aPublic institutionsxHistory.zUnited States 0aAsylumsxHistory.zUnited States 0aPrisonsxHistory.zUnited States aLVLcNFk361 Ro bMAINp32000000028639r7.35u7074u273300922 2200277 450000100060000000300040000600500170001000800390002701000180006602000150008403500190009909000150011809200190013310000210015224500740017325500270024726000510027430000540032550400280037965100320040765100530043965100350049294200290052795200440055695200440060043604LVL19990313000000.0870413s1987 ohuab b s00010 eng a87675046 /MAP a0821408763 a 87675046 /MAP c1507d1507 aREF 977.197 Ke10aKenney, Frank J.10aAthens County :ba physical and cultural atlas /cby Frank J. Kenney. aScale [ca. 1:200,000].0 aAthens, Ohio :bOhio University Press,cc1987. a1 atlas (vii, 40 p.) :bill., maps ;c28 x 43 cm. aBibliography: p. 39-40. 0aAthens County (Ohio)xMaps. 0aAthens County (Ohio)xEconomic conditionsxMaps. 0aAthens County (Ohio)xHistory. aLVLcREFkREF 977.197 Ke bMAINp32000000007436r12.95u7075u2734 bMAINp35000000002010r12.95u7076u273501178 2200289 4500010001300000020001500013090001500028100001800043245003000061250001200091260004100103300003500144520014900179650001900328942002400347952004300371952004300414952004400457952004300501952004400544952004300588952004300631952004400674952004200718952006400760952006400824 a94047183 a0152000747 c1508d150810aEhlert, Lois.10aSnowballs /cLois Ehlert. a1st ed.0 aSan Diego :bHarcourt Brace,cc1995. a[34] p. :bill. ;c26 x 29 cm. aSome children create a family out of snow. Includes labeled pictures of all the items they use, as well as information about how snow is formed. 1aSnowxFiction. aLVLcEASYkE Ehlert bLB2p37000000015084r17.96u7077u2736 bMAINp32000000060686r8.85u7078u2737 bMAINp32000000112830r17.96u7079u2738 bLB1p36000000016748r17.96u7080u2739 bMAINp35000000008775r17.96u7081u2740 bLB2p34000000025754r17.96u7082u2741 bMAINp31000000057193r8.85u7083u2742 bMAINp31000000091653r17.96u7084u2743 bLB1p33000000024047r8.85u7085u2744 bMAINdMAINp32000000156403r16.00u318683u2745v2004-11-09 bMAINdMAINp32000000156404r16.00u318684u2746v2004-11-0900818 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000190013624500440015525000120019926000410021130000210025265000360027365000350030994200220034495200430036695200440040995200440045395200430049729567LVL20000911161403.0950727s1996 nyu 00011 eng a95037591 a0679435980 a 95037591 c1509d1509 aAF Kagan10aKagan, Elaine.10aBlue heaven :ba novel /cElaine Kagan. a1st ed.0 aNew York :bAlfred A. Knopf,cc1996. a351 p. ;c25 cm. 0aFamilyxFiction.zUnited States 0aWomenxFiction.zUnited States aLVLcAFkAF Kagan bLB2p37000000012489r13.87u7086u2747 bMAINp32000000068803r13.87u7087u2748 bMAINp31000000059059r13.87u7088u2749 bLB1p33000000025201r13.87u7089u275000979 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200190012324500270014226000460016930000330021544000290024850000530027750000200033052001160035065000200046694200290048695200440051595200430055995200440060295200430064643605LVL19990313000000.0870727s1988 wiua j 00110 eng a87020689 a0817231110 a 87020689 c1510d1510 aJNF 591.909 An10aAnimals in the forest.0 aMilwaukee :bRaintree Publishers,cc1988. a48 p. :bcol. ill. ;c26 cm. 0aAnimals and their homes. aTranslation of: Animaux des bois et des forÃets. aIncludes index. aDescribes birds, insects, snakes, deer, and other facsinating creatures that make their homes in the woodlands. 1aForest animals. aLVLcJNFkJNF 591.909 An bMAINp32000000044333r14.96u7091u2751 bLB2p34000000008409r14.96u7092u2752 bMAINp31000000043565r14.65u7093u2753 bLB1p33000000015758r14.65u7094u275401360 2200373 450000100060000000300040000600500170001000800390002701000190006602000150008503500160010004000200011604300210013605000250015708200250018209000150020710000280022224500390025026000430028930000540033252001720038652100110055860000280056960000480059760000200064560000280066565000380069365000570073165000440078865000480083265000370088094200250091795200440094250624LVL19990312000000.0870616s1988 nyuaf 00010deng a87040174 //r89 a0446513954 aflb00165911 aDLCcDLCdICrlF an-us-caan-us---0 aPS3569.O652bK4 19880 219a792/.028/0924aB c1511d151110aSomers, Suzanne,d1946-10aKeeping secrets /cSuzanne Somers.0 aNew York, N.Y. :bWarner Books,c1988. axvii, 297 p., [24] p. of plates :bill. ;c24 cm. aSuzanne Somers tells her story of hope and courage as her family is ravaged by the disease of alcoholism, and how they overcome the almost impossible odds to get well.2 aAdult.10aSomers, Suzanne,d1946-10aSomers, Suzanne,d1946-xBiographyxFamily.30aMahoney family.17aSomers, Suzanne,d1946- 0aAlcoholicsxFamily relationships. 0aAdult children of alcoholicsxBiography.zCalifornia 0aEntertainersxBiography.zUnited States 0aAuthors, AmericanxBiography.y20th century 7aActors and actressesxBiography. aLVLcNFk792.028 SOM bMAINp31000000027238r10.30u7095u275501049 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000220013624500890015825000210024726000390026830000350030750000910034252001480043365000260058165000270060765000260063470000310066094200240069195200440071557643LVL19990220000000.0940906s1993 nyua j 00011 eng a92044192 a0531086372 a 92044192 c1512d1512 aE Castle1 aCastle, Caroline.10aGrandpa Baxter and the photographs /cby Caroline Castle ; pictures by Peter Bowman. a1st American ed. aNew York :bOrchard Books,cc1993. a[32] p. :bcol. ill. ;c25 cm. a"First published in Great Britain by Hutchinson Children's Books in 1993"--T.p. verso. aBenjamin, a young teddy bear, watches the history of his family unfold as he and Grandpa explore Great-granddad Dudley's photograph collection. 1aPhotographsxFiction. 1aGrandfathersxFiction. 1aTeddy bearsxFiction.11aBowman, Pete,d1957-eill. aLVLcEASYkE Castle bMAINp31000000051081r14.95u7096u275600956 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009409000150011009200120012510000330013724500840017026000340025430000310028852001290031965000270044865000260047570000270050194200210052895200430054995200430059295200430063536587LVL19990320000000.0830705s1984 nyua j 00011 eng a83014366 a0440492769 aonv90003920 c1513d1513 aJ Smith aSmith, Robert Kimmel,d1930-14aThe war with Grandpa /cby Robert Kimmel Smith ; illustrated by Richard Lauter. aNew York :bYearling,cc1984. a140 p. :bill. ;c20 cm.;. aUpset that he has to give up the room he loves to his grandfather, Pete decides to declare war in an attempt to get it back. 1aGrandfathersxFiction. 1aFamily lifexFiction.11aLauter, Richard,eill. aLVLcJFkJ Smith bMAINp32000000036900r2.10u7097u2757 bMAINp32000000036901r2.10u7098u2758 bMAINp32000000036902r2.10u7099u275901034 2200325 450000100060000000300040000600500170001000800390002701000130006602000250007902000310010403900180013504000130015304300120016605000210017808200230019909000150022210000230023724501230026026000490038330000330043250000310046550000200049650400300051665000330054665000420057970000210062194200230064295200430066564663LVL19990217000000.0850819s1986 vtua b 00110 eng a85045163 a0882664042 :c$20.00 a0882664050 (pbk.) :c$9.950 a2b3c3d3e3 aDLCcDLC an-us---0 aSB439.bA78 19860 219a635.9/676/0973 c1514d1514 0aArt, Henry Warren.12aA garden of wildflowers :b101 native species and how to grow them /cHenry W. Art ; illustrations by Hyla M. Skudder.0 aPownal, Vt. :bStorey Communications,c1986. axi, 290 p. :bill. ;c29 cm. aIllustrated lining papers. aIncludes index. aBibliography: p. 277-278. 0aWild flowerszUnited States. 0aWild flower gardeningzUnited States.10aSkudder, Hyla M. aLVLcNFk635.9 ART bMAINp31000000024409r7.64u7102u276000742 2200229 450000100060000000300040000600500170001000800410002703500160006809000150008409200130009910000110011224500810012326000440020430000230024865000510027165000400032265000240036270000430038694200220042995200610045122550LVL19990327000000.0930715c19611951ilu 00010 eng d anpl93000568 c1515d1515 a883.1 Ho0 aHomer.14aThe Iliad of Homer /ctranslated with an introduction by Richmond Lattimore. aChicago :bPhoenix Books,c1961, c1951. a527 p. ;c21 cm.;. 0aEpic poetry, GreekxTranslations into English. 0aAchilles (Greek mythology)xPoetry. 0aTrojan WarxPoetry.11aLattimore, Richmond Alexander,d1906-. aLVLcNFk883.1 Ho bMAINdMAINp32000000040911r1.95u7103u2761v2003-09-0100884 2200253 450000100060000000300040000600500170001000700150002700800410004202000210008302000220010403500160012609000150014209200150015710000190017224500650019126000470025630000630030352000810036665000730044794200250052095200430054595200420058829569LVL20020927140031.0ssulmnjlcmnnce940622s1994 mnunnn j r j eng d a0934633606 (set) a0934633665 (text) avid93001145 c1516d1516 aKIT 428 Ma1 aMahoney, Judy.10aTeach me more Englishcby Judy Mahoney.h[sound recording] /0 aMinneapolis, MN :bTeach Me Tapes,cc1994. a1 sound cassette :banalog, mono. +e1 book (19 p. : ill.) aA program of children's songs in English, as an aid in language instruction. 0aEnglish languagexStudy and teaching (Elementary)xEnglish speakers. aLVLcKITkKIT 428 Ma bMAINp31000000048789r7.67u7104u2762 bLB1p33000000018959r7.67u7105u276300632 2200217 450000100060000000300040000600500170001000800390002703500160006609000150008209200110009710000160010824500360012426000440016030000210020450000310022565000520025665000410030894200210034995200440037036588LVL19990320000000.0890519s1989 nyu 00011 eng anpl96000397 c1517d1517 aM Hess10aHess, Joan.12aA diet to die for /cJoan Hess.0 aNew York :bSt. Martin's Press,cc1989. a199 p. ;c22 cm. a"A Claire Malloy mystery." 0aMalloy, Claire (Fictitious character)xFiction. 0aWomen detectivesxFiction.zArkansas aLVLcMYSkM Hess bMAINp32000000062796r10.00u7106u276400651 2200217 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200120011410000280012624500700015426000440022430000340026870000240030294200220032695200430034895200420039143607LVL20011204161000.0930927c19931962nyu 00011 eng d a0553234463 anpl93001189 c1518d1518 aM Stout10aStout, Rex,d1886-1975.10aHomicide trinity /cRex Stout; introduction by Stephen Greenleaf.0 aNew York :bBantam Books,c1993, c1962. aviii, 205 p. ;c18 cm. ;dpa.10aGreenleaf, Stephen. aLVLcMYSkM Stout bMAINp31000000044781r2.89u7108u2765 bLB1p33000000016567r2.89u7109u276600888 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009403900180011004000200012805000260014808200160017409000150019010000220020524500450022725000120027226000350028430000210031951000140034052001640035452100170051894200200053595200430055550626LVL19990312000000.0840308s1984 nyu 00011 eng a84004665 a0688039189 aflb001362080 a2b3c3d3e3 aDLCcDLCdICrlF0 aPS3554.E9288bT5 19840 219a813/.54 c1519d151910aDew, Robb Forman.14aThe time of her life /cRobb Forman Dew. a1st ed.0 aNew York :bW. Morrow,cc1984. a259 p. ;c22 cm.0 aBooklist. aTells what happens to a family where the parents have never emotionally grown up and the effect upon their child who is treated not as a child but as an equal.2 aYoung Adult. aLVLcAFkAF Dew bMAINp32000000003726r7.35u7110u276700348 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000160009624500240011294200220013695200440015843608LVL19990313000000.0940813s19xx xxu 00010 eng d a55009178 c1520d1520 aZion, Gene.14aThe summer snowman. aLVLcEASYkE Zion bMAINp32000000015112r10.31u7111u276801303 2200337 450000100060000000300040000600500170001000800390002701000200006602000150008603500160010104000250011705000300014208200140017209000150018610000490020124501590025026000490040930000330045851000480049151000140053952001200055352100340067352100100070765000370071765000430075465000270079770000760082494200220090095200430092250627LVL19990312000000.0770304s1977 txua 000 1 eng a77003454 //r893 a0292707185 aflb00940210 aDLCcDLCdDLCdICrlF00aPZ3.W5854aPR6045.H2bBo400a823/.9/12 c1521d15211 aWhite, T. H.d1906-1964.q(Terence Hanbury),14aThe book of Merlyn :bthe unpublished conclusion to The once and future king /cT. H. White ; prologue by Sylvia Townsend Warner ; ill. by Trevor Stubley. aAustin :bUniversity of Texas Press,cc1977. axx, 137 p. :bill. ;c26 cm.0 aJunior High School Library Catalog (Wilson)0 aBooklist. aThe "last" chapter of The once and Future King," which tells how Arthur, Guenever, and Lancelot come to their ends.0 a6.9bFollett Library Book Co.2 a7-10. 0aArthurian romancesxAdaptations. 0aMerlin (Legendary character)xFiction. 7aArthur, KingxFiction.11aWhite, T. H.d1906-1964.q(Terence Hanbury),tThe once and future king. aLVLcAFkAF White bMAINp32000000008102r5.97u7112u276900355 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000220009824500240012094200220014495200430016657646LVL19990220000000.0950323s19uu 000 0 eng d a0553157272 c1522d15221 aPascal, Francine.10aJessica's bad idea. aLVLcJFkJ Pascal bMAINp31000000011633r1.62u7113u277000723 2200241 450000100060000000300040000600500170001000800390002701000130006602000370007904000130011605000200012908200140014909000150016310000290017824500700020726000460027730000210032349000390034465000310038394200230041495200440043764665LVL20000912055650.0860827c19871985mau d 00010 eng a86022880 a0816141304 (lg. print) :c$19.95 aDLCcDLC1 aG465.bR68 19870 219a910.4 c1523d152310aRouechÂe, Berton,d1911-10aSea to shining sea :bpeople, travels, places /cBerton RouechÂe.0 aBoston, Mass. :bG.K. Hall,c1987, c1985. a493 p. ;c25 cm.0 aG.K. Hall large print book series. 0aVoyages and travelsy1951- aLVLcNFk910.4 ROU bMAINp31000000015733r16.96u7114u277100776 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000320013824500840017026000320025430000210028665000470030765000430035465000330039770000240043094200240045495200440047822552LVL20021126180826.0930503s1993 nyu 00011 eng a93013901 a0670852198 a 93013901 c1524d1524 aAF Wharton10aWharton, Edith,d1862-1937.14aThe buccaneers :ba novel /cby Edith Wharton ; completed by Marion Mainwaring.0 aNew York :bViking,cc1993. a406 p. ;c24 cm. 0aMan-woman relationshipsxFiction.zEngland 0aYoung womenxFiction.zNew York (N.Y.) 0aAmericansxFiction.zEngland10aMainwaring, Marion. aLVLcAFkAF Wharton bMAINp32000000042050r12.98u7115u277200553 2200169 4500020001500000090001500015100002700030245006400057260003900121300003600160650001400196700002500210942002000235952004300255952004200298952004300340 a0425150755 c1525d152510aCanfield, Jack,d1944-14aThe Aladdin factor /cJack Canfield and Mark Victor Hansen.0 aNew York :bBerkley Books,cc1995. axvi, 277 p. :bill. ;c22 cm. ; 0aParables.10aHansen, Mark Victor. aLVLcNFk158 Ca bMAINp32000000062799r7.67u7116u2773 bLB2p34000000012784r7.67u7117u2774 bMAINp31000000058487r7.67u7118u277501368 2200361 450000100060000000300040000600500170001000700090002700800410003602000150007703500160009203700270010809000150013509200140015024500930016426000410025730000540029844000290035250501360038150600270051752100140054453800160055865000220057470000570059670000510065370000620070494200240076695200430079095200430083395200440087695200430092095200430096336590LVL20000911201523.0vd cbaho940608s1990 ctu035 b vaeng d a1555920276 avid93000071 aVHS0027bCC Home Video c1526d1526 aAVJ Danny00aDanny and the dinosaur and other stories /c[compiled by] CC Studios..h[videorecording]0 aWeston, CT :bCC Home Video,cp1990. a1 videocassette (35 min.) ;bsd., col. ;c1/2 in. 0aChildren's Circle ;v27.0 aDanny and the dinosaur / S. Hoff -- Camel who took a walk / J. Tworkov -- Happy lion / L. Fatio -- Island of the Skog / S. Kellogg. aPrivate home use only. aAges 3-8. aVHS Format. 0aChildren's films. 1aHoff, SydhVideorecording.tDanny and the dinosaur .11aFatio, LouishVideorecording.tThe happy lion.11aKellogg, StevenhVideorecording.tThe Island of the Skog. aLVLcAVJkAVJ Danny bLB1p36000000005558r14.95u7120u2776 bLB2p34000000011981r14.95u7121u2777 bMAINp31000000045310r14.95u7122u2778 bMAINp32000000002147r0.15u7123u2779 bLB1p33000000018940r14.95u7124u278000801 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000240013724500390016125000120020026000550021230000210026750000860028865000360037465000300041065000280044094200230046895200440049143609LVL19990313000000.0930125r19931992nyu 00011 eng a93002831 a0880641479 a 93002831 c1527d1527 aAF McCabe1 aMcCabe, Pat,d1955-14aThe butcher boy /cPatrick McCabe. a1st ed. aNew York :bFromm International Pub. Corp.,c1993. a215 p. ;c22 cm. a"First published in the United Kingdom in 1992 by Pan Books Limited"--T.p. verso. 0aMentally illxFiction.zIreland 0aFamilyxFiction.zIreland 0aBoysxFiction.zIreland aLVLcAFkAF McCabe bMAINp32000000043347r11.77u7125u278100526 2200205 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200140011410000200012824500420014825000200019026000440021030000210025465000220027594200230029750628LVL20020906112518.0920720c19881987enk d 00011 eng d a0708918468 aonv90002855 c1528d1528 aLP Fraser1 aFraser, Anthea.10aDeath speaks softly /cAnthea Fraser. aLarge print ed. aLeicester :bUlverscroft,c1988, c1987. a327 p. ;c22 cm. 0aLarge type books. aLVLcLPkLP Fraser01446 2200361 450000100060000000300040000600500170001000700100002700800410003703500160007803700250009409000150011909200140013424502040014826000450035230000540039750600310045150800860048251100880056852001260065652100130078253800230079565000220081870000240084070000210086470000210088570000220090671000410092871000240096971000240099394200240101795200430104122553LVL20000911201250.0vf cbahos931020s1985 ilu040 g vleng d avid93000485 a8339243bHome Vision c1529d1529 aAVJ Where00aWhere the wild things arecGlyndebourne Productions ; National Video Corporation ; produced by BBC TV in association with the National Video Corp. ; directed by Christopher Swann.h[videorecording] / a[Chicago, Ill.] :bHome Vision,cc1985.. a1 videocassette (40 min.) :bsd., col. ;c1/2 in. aFor private home use only. aComposed and conducted by Oliver Knussen ; libretto and design by Maurice Sendak.1 aKaren Beardsley, Andrew Gallacher, Glyndebourne Festival Opera; London Sinfonietta. aFantasy opera about a naughty young boy, sent to his room, who conjures up a world filled with monsters worse than he is. aGeneral. aVHS. Hi-fi stereo. 0aChildren's films.11aSwann, Christopher.11aKnussen, Oliver.11aSendak, Maurice.11aBeardsley, Karen.21aGlyndebourne Festival Opera Company.21aLondon Sinfonietta.21aHome Vision (Firm). aLVLcAVJkAVJ Where bMAINp32000000026774r0.31u7127u278201262 2200373 450000100060000000300040000600500170001000700100002700800410003702000150007803500160009303700290010904300120013809000150015009200130016524501100017826000520028830000550034050000180039551100430041352001100045652100130056653800150057965000190059465000190061370000310063270000230066370000170068670000330070394200220073695200440075895200430080295200430084529572LVL20030210135153.0vfucbahom960612p19921952cau100 g vleng d a0790710013 anav96000314 a11865bWarner Home Video ae-fr--- c1530d1530 aAV April00aApril in PariscWarner Bros. ; produced by William Jacobs ; directed by David Butler.h[videorecording] /0 aBurbank, CA :bWarner Home Video,c1992, c1952. a1 videocassette (100 min.) :bsd., col. ;c1/2 in. aWarner 11865.1 aDoris Day, Ray Bolger, Claude Dauphin. aA chorus girl is mistakenly invited to a U.S. arts festival in Paris and charms the bureaucrat in charge. aGeneral. aVHS Hi-fi. 0aMusical films. 0aFeature films.1 aButler, David,d1894-1979.1 aDay, Doris,d1924-1 aBolger, Ray.1 aDauphin, Claude,d1903-1978. aLVLcAVkAV April bMAINp32000000064719r14.99u7128u2783 bLB2p34000000013571r14.99u7129u2784 bLB1p33000000025053r14.99u7130u278501170 2200337 450000100060000000300040000600500170001000700100002700800410003702000150007803500160009303700330010909000150014209200120015724501740016926000720034330000470041550000470046251100520050952100140056153800160057565000190059170000230061070000200063370000190065371000280067271000220070094200220072295200440074495200440078836591LVL20000911201528.0vf cbahos960304s1196 cau100 g vleng d a078880331X anav96000118 a6693bWalt Disney Home Video c1531d1531 aAVJ Big14aThe Big GreencWalt Disney Pictures in association with Caravan Pictures ; produced by Roger Birnbaum ; written and directed by Holly Goldberg Sloan.h[videorecording] /0 aBurbank, CA :bWalt Disney Home Video,bCaravan Pictures,c[p1996]. a1 videocassette; (100 min.) :bsd., col.;. aClosed-captioned for the hearing impaired.0 aSteve Guttenberg, Olivia d'Abo, Jay O. Sanders. aRated PG. aVHS Format. 0aFeature films.11aGuttenberg, Steve.11aSanders, Jay O.11ad'Abo, Olivia.21aWalt Disney Home Video.21aCaravan Pictures. aLVLcAVJkAVJ Big bMAINp31000000058181r14.39u7131u2786 bMAINp32000000098899r10.00u7132u278700982 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200100012310000160013324500470014926000390019630000210023550000410025652001830029765000280048065000310050865000290053965000200056894200190058895200430060795200420065050629LVL20000911174410.0940616s1995 nyu j 00011 eng a94026415 a0531068927 a 94026415 c1532d1532 aJ Fox10aFox, Paula.14aThe eagle kite :ba novel /cby Paula Fox.0 aNew York :bOrchard Books,cc1995. a127 p. ;c21 cm. a"A Richard Jackson book"--verso t.p. aLiam's father has AIDS, and his family cannot talk about it until Liam reveals a secret that he has tried to deny ever since he saw his father embracing another man at the beach. 1aHomosexualityxFiction. 1aFathers and sonsxFiction. 1aAIDS (Disease)xFiction. 1aDeathxFiction. aLVLcJFkJ Fox bMAINp32000000063071r8.60u7133u2788 bLB2p37000000012012r8.60u7134u278900514 2200169 4500010001300000020002700013082001200040090001500052100002100067245005400088260004600142300002100188500004400209650002200253942002500275952004400300 a84008924 a0816137080 (lg. print)0 a813/.54 c1533d153310aMcMurtry, Larry.10aTerms of endearment :ba novel /cLarry McMurtry.0 aBoston, Mass. :bG.K. Hall,c1984, c1975. a634 p. ;c25 cm. a"Published in large print"--T.p. verso. 0aLarge type books. aLVLcLPkLP McMurtry bMAINp31000000011431r11.37u7135u279000659 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000240013424500550015825000170021326000380023030000220026850000200029094200200031095200440033095200430037422554LVL19990327000000.0940203s1993 nyu 00110 eng a91039743 a0679414894 a 91039743 c1534d1534 a814 Vi10aVidal, Gore,d1925-10aUnited States :bessays : 1952-1992 /cGore Vidal. a1st U.S. ed.0 aNew York :bRandom House,cc1993. a1295 p. ;c24 cm. aIncludes index. aLVLcNFk814 Vi bMAINp32000000044775r22.20u7136u2791 bLB1p33000000020423r22.20u7137u279200628 2200229 450000100060000000300040000600500170001000800390002701000130006603500140007909000150009309200130010810000180012124500270013925000160016626000350018230000520021744000310026960000330030094200220033395200430035529573LVL19990320000000.0680301s1967 enkaf 00010 eng a68071815 a 68071815 c1535d1535 a759.4 Ha1 aHayes, Colin.10aRenoir /cColin Hayes. aRevised ed. aLondon :bPaul Hamlyn,cc1967. a39 p. :bfront., ill., 48 col. plates ;c28 cm. 4aThe Colour library of art.10aRenoir, Auguste,d1841-1919. aLVLcNFk759.4 Ha bMAINp32000000054380r3.60u7138u279300759 2200241 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200150011410000210012924500860015026000390023630000280027570000180030394200250032195200430034695200420038995200430043195200430047436592LVL20020128114111.0931228s1994 nyu 00011 eng d a0425158063 anpl93001777 c1536d1536 aW Tippette10aTippette, Giles.10aTombstone /ca novel by Giles Tippette, based upon the screenplay by Kevin Jarre.0 aNew York :bBerkley Books,cc1994. a219 p. ;c17 cm. ;dpa.10aJarre, Kevin. aLVLcWESkW Tippette bMAINp32000000044155r2.84u7139u2794 bLB2p34000000008843r2.84u7140u2795 bMAINp31000000046073r2.84u7141u2796 bMAINp31000000046074r2.84u7142u279700851 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000200013724500530015726000490021030000320025944000330029150400540032465000230037865000220040194200230042395200430044695200420048995200420053143611LVL20030628122757.0941117s1995 oru b 00010 eng a94044137 a1885223064 a 94044137 c1537d1537 a153.35 Ea10aEaly, C. Diane.14aThe woman's book of creativity /cC. Diane Ealy.0 aHillsboro, Or. :bBeyond Words Pub.,cc1995. axv, 261 p. ;c23 cm. ;dpa. 4aThe Business of life series. aIncludes bibliographical references (p. 251-261). 0aWomenxPsychology. 0aCreative ability. aLVLcNFk153.35 Ea bMAINp32000000062502r7.64u7143u2798 bLB2p34000000012669r7.64u7144u2799 bLB1p33000000024580r7.64u7145u280000849 2200265 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009910000250011424500610013925000120020026000450021230000430025765000460030065000420034670000170038891000460040591000190045194200270047095200430049795200430054050630LVL19990312000000.0950727s1995 caua 00110 rng d a0078820987 anpl95001032 c1538d153810aHahn, Harley,d1952-14aThe internet yellow pages /cHarley Hahn and Rick Stout. a2nd ed.0 aBerkeley :bOsborne McGraw-Hill,cc1995. axxxvi, 812 p. :bill. ;c26 cm. ;dpa. 0aInternet (Computer network)xDirectories. 0aElectronic mail systemsxDirectories.10aStout, Rick. a1997 September --bNPL --gbibliographies a1997 September aLVLcREFkREF 011.3 Ha bLB2p34000000016154r18.57u7146u2801 bLB1p33000000023079r18.57u7147u280200763 2200253 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200110011210000210012324500390014426000420018330000320022550400540025765000290031165000360034065000280037694200200040495200430042495200420046736593LVL20011221101548.0911226s1993 nyu b 00010 eng a0446395447 anpl94000028 c1539d1539 a302 Ve10aVedral, Joyce L.10aGet rid of him /cJoyce L. Vedral.0 aNew York, NY :bWarner Books,cc1993. axiv, 318 p. ;c21 cm. ; pa. aIncludes bibliographical references (p. 307-313). 0aInterpersonal relations. 0aSelf-actualization (Psychology) 0aRelationship addiction. aLVLcNFk302 Ve bMAINp31000000046691r5.30u7149u2803 bLB1p33000000017822r5.30u7150u280400787 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000210014024500740016126000400023530000330027550400360030865000470034470000280039194200270041995200440044695200430049050631LVL19990312000000.0940518s1995 maua j b 00010 eng a94018545 a0395673445 a 94018545 c1540d1540 aJNF 289.7 Ke10aKenna, Kathleen.12aA people apart /cby Kathleen Kenna ; photographs by Andrew Stawicki.0 aBoston :bHoughton Mifflin,cc1995. a64 p. :bill. ;c24 x 27 cm. aIncludes bibliography: p. (64). 0aOld Order MennonitesxJuvenile literature.11aStawicki, Andrew,eill. aLVLcJNFkJNF 289.7 Ke bMAINp32000000061131r10.03u7151u2805 bLB1p36000000006515r10.03u7152u280601017 2200325 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009404300120010805000170012008200140013709000150015109200120016610000210017824500670019926000460026630000280031249000290034052000910036960000320046065000570049265000150054970000210056494200210058595200430060695200420064964669LVL20020118150429.0800324s1979 njua j 00010beng a78018057 a0893751677 a 78018057 ae-po---0 aG286.G2bK56 a910/.92/4 c1541d1541 ajb Gama10aKnight, David C.10aVasco da Gama /cDavid Knight ; illustrated by George Sottung.0 aMahwah, N.J. :bTroll Associates,cc1979. a48 p. :bill. ;c23 cm. 0aAdventures in discovery. aA brief biography of the first European to sail around the Cape of Good Hope to India.11aGama, Vasco da,d1469-1524. 0aExplorersxBiographyxJuvenile literature.zPortugal 1aExplorers.11aSottung, George. aLVLcJBkJB Gama bMAINp31000000035235r6.40u7153u2807 bLB1p33000000006122r6.40u7154u280800811 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000180013524500300015325000200018326000450020330000210024865000460026965000620031565000220037765100270039994200210042695200430044795200430049022556LVL19990327000000.0940319c19941993meu d 00011 eng a93044120 a0786201487 a 93044120 c1542d1542 aLP Rice1 aRice, Luanne.10aBlue moon /cLuanne Rice. aLarge print ed. aThorndike, ME :bThorndike Press,c1994. a509 p. ;c22 cm. 0aFishingxAccidents and injuriesxFiction. 0aFamily-owned business enterprisesxFiction.zRhode Island 0aLarge type books. 0aRhode IslandxFiction. aLVLcLPkLP Rice bMAINp32000000045664r4.95u7155u2809 bMAINp31000000047253r4.95u7156u281001514 2200433 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000230014024500330016325000210019626000540021730000280027165000140029965000280031365000150034194200270035695200420038395200420042595200430046795200430051095200420055395200420059595200430063795200430068095200430072395200590076695200420082595200430086795200430091095200430095395200420099695200420103829575LVL20030328132919.0940919r1995 enka j 00010 eng a94024403 a1564585158 a 94024403 c1543d1543 aJNF 631.3 Ll10aLlewellyn, Claire.10aTractor /cClaire Llewellyn. a1st American ed.0 aLondon ;aNew York :bDorling Kindersley,cc1995. a21 p. :bill. ;c29 cm. 1aTractors. 1aAgricultural machinery. 1aMachinery. aLVLcJNFkJNF 631.3 Ll bLB2p37000000000766r9.95u7157u2811 bLB2p37000000001244r9.95u7158u2812 bMAINp32000000102291r9.95u7159u2813 bMAINp32000000102292r9.95u7160u2814 bLB1p36000000012355r9.95u7161u2815 bLB1p36000000015217r9.95u7162u2816 bLB1p36000000019901r13.95u7163u2817 bMAINp35000000006463r9.95u7164u2818 bMAINp35000000007712r9.95u7165u2819 bLB2dLB2p34000000004924r5.72u7166u2820v2003-09-01 bLB2p34000000023749r9.95u7167u2821 bMAINp31000000054179r5.72u7168u2822 bMAINp31000000074919r9.95u7169u2823 bMAINp31000000085064r9.95u7170u2824 bLB1p33000000022219r5.72u7171u2825 bLB1p33000000040086r9.95u7172u282601015 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000240013424501270015826000500028530000390033550000360037450400640041065000690047494200200054395200440056395200430060795200440065095200430069443613LVL19990313000000.0930514s1994 vtua bf 00110 eng a93014118 a0882668412 a 93014118 c1544d1544 a694 So10aSobon, Jack,d1955-10aBuild a classic timber-framed house :bplanning and design, traditional materials, affordable methods /cby Jack A. Sobon.0 aPownal, Vt. :bStorey Communications,cc1994. av, 202 p. :bill. ;c28 cm. ;dpa. a"A Garden Way Publishing book." aIncludes bibliographical references (p. 193-196) and index. 0aWooden-frame housesxDesign and constructionxAmateurs' manuals. aLVLcNFk694 So bMAINp32000000046988r11.77u7173u2827 bLB2p34000000002569r11.77u7174u2828 bMAINp31000000048179r11.77u7175u2829 bLB1p33000000018880r11.77u7176u283001314 2200397 450000100060000000300040000600500170001000800390002701000170006602000260008302000160010903500160012504000200014105000180016108200080017909000150018710000190020224500740022125000120029526000310030730000350033851000320037351000520040551000140045752001390047152100340061052100090064465000190065365000350067265000350070770000210074294200250076395200430078895200430083195200420087450632LVL20000912092322.0781228s1979 nyua j 00011 eng a78031718 /AC a0688321860blib. bdg. a0688221866. aflb00666206 aDLCcDLCdICrlF0 aPZ7.C1278bCr a[E] c1545d154510aCalhoun, Mary.10aCross-country cat /cby Mary Calhoun ; illustrated by Erick Ingraham. a1st ed.0 aNew York :bMorrow,c1979. a[40] p. :bcol. ill. ;c26 cm.0 aChildren's Catalog (Wilson)0 aElementary School Library Collection (Bro-Dart)0 aBooklist. aWhen he becomes lost in the mountains, a cat with the unusual ability of walking on two legs finds his way home on cross-country skis.0 a4.7bFollett Library Book Co.2 aK-3. 1aCatsxFiction. 1aCross-country skiingxFiction. 7aCross country skiingxFiction.10aIngraham, Erick. aLVLcEASYkE Calhoun bMAINp32000000006279r3.50u7177u2831 bMAINp32000000008670r9.50u7178u2832 bLB1p33000000030149r6.95u7179u283300884 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000310013724501050016826000390027330000350031252000800034765000220042765000410044965000350049070000240052594200250054995200440057464670LVL19990217000000.0861030s1987 nyua j 00011 eng a86029074 a0698206312 a 86029074 c1546d1546 aE Sharmat10aSharmat, Marjorie Weinman.10aNate the Great and the boring beach bag /cby Marjorie Weinman Sharmat ; illustrated by Marc Simont.0 aNew York :bCoward-McCann,cc1987. a[46] p. :bcol. ill. ;c23 cm. aNate the Great finds mystery at the beach when Oliver's beach bag vanishes. 1aBeachesxFiction. 1aLost and found possessionsxFiction. 1aMystery and detective stories.11aSimont, Marc,eill. aLVLcEASYkE Sharmat bMAINp31000000003544r10.66u7180u283400870 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012324500930013826000410023130000290027250400510030165000480035265000350040065100270043570000160046270000240047870000220050294200240052495200440054822557LVL19990327000000.0950203s1996 nyua b 00100 eng a95006263 a0810939274 a 95006263 c1547d1547 a811.008 Un04aThe United States of poetry /c[compiled by] Josh Blum, Bob Holman, and Mark Pellington.0 aNew York :bHarry N. Abrams,cc1995. a176 p. :bill. ;c28 cm. aIncludes bibliographical references and index. 0aNational characteristics, AmericanxPoetry. 0aAmerican poetryy20th century. 0aUnited StatesxPoetry.10aBlum, Josh.10aHolman, Bob,d1948-10aPellington, Mark. aLVLcNFk811.008 Un bMAINp32000000063490r17.97u7181u283500640 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200190012310000350014224500540017725000200023126000460025130000210029765000220031894200260034095200440036636595LVL20030612162945.0931117s1994 meu d 00011 eng a93040528 a0786201568 a 93040528 c1548d1548 aLP Scho- field1 aSchofield, Susan Clark,d1958-10aTelluride :ba novel /cby Susan Clark Schofield. aLarge print ed. aThorndike, Me. :bThorndike Press,c1994. a467 p. ;c22 cm. 0aLarge type books. aLVLcLPkLP Schofield bMAINp31000000047534r14.22u7183u283600788 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000180013524500770015325000170023026000480024730000300029565000200032570000250034594200230037095200440039395200430043795200420048043614LVL19990313000000.0930104s1993 paua j 00011 eng a92074967 a1563972247 a 92074967 c1549d1549 aE Akass10aAkass, Susan.10aNumber nine duckling /cstory by Susan Akass ; pictures by Alex Ayliffe. a1st U.S. ed.0 aHonesdale, PA :bBoyds Mills Press,cc1993. a[26] p. :bill. ;c22 cm. 1aDucksxFiction.11aAyliffe, Alex,eill. aLVLcEASYkE Akass bMAINp32000000047770r11.86u7184u2837 bMAINp31000000048848r8.23u7185u2838 bLB1p33000000019278r8.23u7186u283900544 2200205 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000240013724500570016126000300021830000230024894200240027195200430029550633LVL19990312000000.0840620s1985 nyu 00011 eng a84013578 a0380700514 a 84013578 c1550d1550 aM MacLeod1 aMacLeod, Charlotte.14aThe curse of the giant hogweed /cCharlotte MacLeod. aNew York :bAvon,cc1985. a168 p. ;c18 cm.;. aLVLcMYSkM MacLeod bMAINp32000000035033r2.95u7187u284000844 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000170013624500830015326000420023650000520027850400540033060000330038465000480041765000590046594200230052495200430054764671LVL20020312164145.0910130c19911990nyu b 00010aeng a91007943 a0671740954 a 91007943 c1551d1551 aB Lerner10aLerner, Max.10aWrestling with the angel :ba memoir of my triumph over illness /cMax Lerner.0 aNew York :bTouchstone,c1991, c1990. aPreviously published: New York : Norton, c1990. aIncludes bibliographical references (p. 205-210).10aLerner, Max,d1902-xHealth. 0aCancerxPatientsxBiography.zUnited States 0aHeartxInfarctionxPatientsxBiography.zUnited States aLVLcBIOkB Lerner bMAINp31000000036515r6.08u7188u284101642 2200421 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200190012310000220014224500650016425000170022926000500024630000300029652001990032665000260052565000240055165000230057594200280059895200420062695200420066895200430071095200430075395200430079695200420083995200430088195200420092495200420096695200430100895200430105195200420109495200420113695200420117822558LVL20020715091354.0921015s1993 maua j 00011 eng a92054957 a1564022463 a 92054957 c1552d1552 aE Burn- ingham10aBurningham, John.10aHarvey Slumfenburger's Christmas present /cJohn Burningham. a1st U.S. ed.0 aCambridge, Mass. :bCandlewick Press,cc1993. a[40] p. :bill. ;c31 cm. aOn discovering late Christmas Eve that he has forgotten to deliver one present, Santa Claus wearily makes his way in a variety of conveyances to the top of the Roly Poly Mountains to deliver it. 1aSanta ClausxFiction. 1aChristmasxFiction. 1aVehiclesxFiction. aLVLcEASYkE Burningham bLB2p37000000022239r9.41u7189u2842 bLB2p37000000022240r9.41u7190u2843 bMAINp32000000048251r9.41u7191u2844 bMAINp32000000067159r4.63u7192u2845 bMAINp32000000128367r9.41u7193u2846 bLB1p36000000018838r9.41u7195u2847 bMAINp35000000010163r9.41u7197u2848 bLB2p34000000010577r9.41u7198u2849 bLB2p34000000014442r4.63u7199u2850 bMAINp31000000057265r8.50u7202u2851 bMAINp31000000057269r8.50u7203u2852 bLB1p33000000019558r9.41u7205u2853 bLB1p33000000026732r4.63u7206u2854 bLB1p33000000051901r9.41u7207u285501214 2200361 450000100060000000300040000600500170001000800390002701000220006603500160008804000200010405000200012408200080014409000150015210000160016724500430018326000370022630000380026351000320030151000520033351000210038552002020040652100340060852100090064265000330065165000130068465000220069765000240071965000210074365000220076494200230078695200430080950634LVL19990312000000.0850909s1940 nyua j 000 1 eng a40027753 /AC/r872 aflb00362600 aDLCcDLCdICrlF0 aPZ10.3.G257bHo a811 c1553d15531 aSeuss,cDr.10aHorton hatches the egg,cby Dr. Seuss. aNew York,bRandom Housec[c1940] a[55] p.bcol. illus.c27 x 22 cm.0 aChildren's Catalog (Wilson)0 aElementary School Library Collection (Bro-Dart)0 aLibrary Journal. aWhen a lazy bird hatching an egg wants a vacation, she asks Horton, the elephant, to sit on her egg--which he does through all sorts of hazards until he is rewarded for doing what he said he would.0 a3.6bFollett Library Book Co.2 aK-3. 0aElephantsxJuvenile fiction. 1aFantasy. 1aStories in rhyme. 7aElephantsxFiction. 7aNonsense verses. 7aStories in rhyme. aLVLcEASYkE Seuss bMAINp32000000024146r9.26u7208u285600894 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000530013824500590019125000120025026000380026230000690030060000630036965000480043294200250048095200360050595200440054195200430058564672LVL20020905101137.0910415s1992 nyuabf 00110aeng a91018447 a0679401342 a 91018447 c1554d1554 aB Michener10aMichener, James A.,d1907-1997.q(James Albert),14aThe world is my home :ba memoir /cJames A. Michener. a1st ed.0 aNew York :bRandom House,cc1992. a519 p. [16] p. of plates :bill.; maps on lining paper ;c24 cm.10aMichener, James A.d1907-1997q(James Albert),xBiography. 0aAuthors, AmericanxBiography.y20th century aLVLcBIOkB Michener bLB2p37000000018425u7209u2857 bMAINp31000000037515r14.46u7210u2858 bLB1p33000000009712r14.46u7211u285900715 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012324500480013626000640018430000340024850000200028265000290030271000350033194200220036695200420038895200430043022559LVL20010831123104.0930909c19941993nyua 00100 eng a93037107 a0452270502 a 93037107 c1555d1555 a641.5 We00aWeight Watchers favorite homestyle recipes. aNew York, NY :bWeight Watchers International,c1993, 1994. ax, 310 p. :bill. ;c26 cm.;. aIncludes index. 0aReducing dietsxRecipes.20aWeight Watchers International. aLVLcNFk641.5 We bLB2p37000000003177r8.23u7212u2860 bMAINp32000000049218r8.23u7213u286100845 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200200012310000270014324500450017026000480021530000350026344000690029852001060036765000260047365000200049994200290051995200430054836597LVL19990320000000.0940604s1983 nyua j 00011 eng a83002247 a0819311081 a 83002247 c1556d1556 aE Quacken- bush10aQuackenbush, Robert M.10aHenry babysits /cby Robert Quackenbush.0 aNew York :bParents Magazine Press,cc1983. a[40] p. :bcol. ill. ;c22 cm. 2aA Parents magazine read aloud and easy reading program original. aHenry the Duck has his hands full when all the neighbors bring their babies for him to watch one day. 1aBabysittersxFiction. 1aDucksxFiction. aLVLcEASYkE Quackenbush bMAINp32000000000583r9.99u7214u286200827 2200253 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200110011410000420012524501490016725000260031626000360034230000210037865000110039974000430041091000150045394200200046895200420048895200430053050635LVL20011101160537.0920302r19881891enk 00010 eng d a0600559211 aonv90002244 c1557d1557 a784 Pa10aPalgrave, Francis Turner,d1824-1897.14aThe golden treasury :bselected from the best songs and lyrical poems in the English language and arranged with notes /cby Francis T. Palgrave. aRevised and enlarged.0 aLondon :bSpring Books,cc1988. a381 p. ;c22 cm. 0aSongs.41aThe golden treasury of songs & lyrics. a2000 March aLVLcNFk784 Pa bLB2p34000000002250r4.95u7216u2863 bMAINp31000000038353r4.95u7217u286400865 2200253 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200130011210000240012524500390014926000470018830000280023552001660026365000250042965000270045465000220048194200220050395200430052595200430056829579LVL20021220144456.0960528r19911990nyu j 00011 eng a0449704033 anpl96000972 c1558d1558 aYA Tolan10aTolan, Stephanie S.10aPlague year /cStephanie S. Tolan.0 aNew York :bFawcett Juniper,c1991, c1990. a185 p. ;c18 cm. ;dpa. aSixteen-year-old David becomes intimately involved when a scandal is discovered about the strange new boy in his high school and everyone else turns against him. 1aPrejudicesxFiction. 1aHigh schoolsxFiction. 1aSchoolsxFiction. aLVLcYAkYA Tolan bMAINp35000000001160r2.35u7218u2865 bMAINp31000000060068r2.35u7219u286600946 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000210013624500730015726000460023030000300027644000210030652001700032765000350049765000200053265000200055270000320057294200210060495200430062536598LVL19990320000000.0940706s1990 njua j 00011 eng a89020279 a0816717133 a 89020279 c1559d1559 aYA Avery1 aAvery, Lorraine.14aThe creepy carousel /cLorraine Avery ; illustrated by Linda Thomas. aMahwah, N.J. :bTroll Associates,cc1990. a92 p. :bill. :c20 cm.;. 0aApple Park kids. aThe Apple Park Gang decides to investigate when the members hear ghostly music coming from the park's carousel and spot some mysterious people lurking in the bushes. 1aMystery and detective stories. 1aClubsxFiction. 1aParksxFiction.11aThomas, Linda,d1947-eill. aLVLcJFkJ Avery bMAINp32000000048454r2.95u7221u286700973 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000210014024501410016126000430030230000330034544000320037850400590041052001110046965000160058065000410059694200270063795200430066464674LVL19990217000000.0951113s1996 mnua j b 00110ceng a95050305 a1560653590 a 95050305 c1560d1560 aJNF 509.2 St20aSt. John, Jetty.10aNative American scientists :bFred Begay, Wilfred F. Denetclaw Jr., Frank C. Dukepoo, Clifton Poodry, Jerrel Yakel /cby Jetty St. John.0 aMankato, MN :bCapstone Press,cc1996. a48 p. :bcol. ill. ;c23 cm. 0aCapstone short biographies. aIncludes bibliographical references (p. 45) and index. aPresents five brief biographies of Native Americans who have pursued careers in various scientific fields. 1aScientists. 1aIndians of North AmericaxBiography. aLVLcJNFkJNF 509.2 St bLB1p33000000027199r13.80u7222u286800760 2200217 450000100060000000300040000600500170001000800390002701000130006603500140007909000150009309200160010810000510012424501280017525000340030326000470033730000310038450000410041594200250045695200610048122561LVL19990327000000.0731016c19731967nyua 00010aeng a61011940 a 61011940 c1561d1561 a769.9492 Es1 aEscher, M. C.d1898-1972.q(Maurits Cornelis),14aThe graphic work of M. C. Escher /cintroduced and explained by the artist; [translated from the Dutch by John E. Grigham]. aNew, revised and expanded ed. aNew York :bBallantine Books,c1973, 1967. a61 p. :bill. ;c30 cm. ;. aTranslation of Grafiek entekeningen. aLVLcNFk769.9492 Es bMAINdMAINp32000000050064r3.95u7223u2869v2003-09-0100715 2200241 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200120011410000440012624500410017026000360021130000280024744000220027550000260029794200210032395200430034495200430038795200430043029580LVL20020228131016.0960802s1994 nyu j 00011 eng d a0590483552 anpl96001452 c1562d1562 aJ Stine10aStine, R. L.d1943-q(Robert Lawrence),10aAttack of the mutant /cR. L. Stine.0 aNew York :bScholastic,cc1994. a117 p. ;c20 cm. ;dpa. 0aGoosebumps ;v25. a"An Apple Paperback." aLVLcJFkJ Stine bMAINp32000000065952r3.99u7224u2870 bMAINp32000000000818r3.99u7225u2871 bMAINp31000000079154r3.50u7226u287200862 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000170013824500770015526000560023230000350028852001120032360000260043565000220046165100200048370000250050394200240052895200440055236599LVL19990320000000.0940808s1987 caua j 00011 eng a87012517 a1557360707 a 87012517 c1563d1563 aLP J Fritz1 aFritz, Jean.10aHomesick :bmy own story /cby Jean Fritz ; illustrated by Margot Tomes. aSanta Barbara, Calif. :bCornerstone Books,cc1987. aviii, 172 p. :bill. ;c25 cm. aThe author's fictionalized version, though all the events are true, of her childhood in China in the 1920s.11aFritz, JeanxFiction. 1aLarge type books. 1aChinaxFiction.11aTomes, Margot,eill. aLVLcJFkJ LP Fritz bMAINp32000000049480r10.00u7227u287300325 2200133 450000100060000000300040000600500170001000800410002709000150006810000280008324500220011194200210013395200370015464675LVL19990217000000.0950324s19uu 000 0 eng d c1564d15641 aGrey, Zane,d1872-1939.10aThunder mountain. aLVLcAFkAF Grey bMAINp31000000029224u7228u287401236 2200349 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000210013824500370015926000420019630000350023844000240027352001230029765000350042065000190045594200260047495200430050095200440054395200420058795200430062995200420067295200430071495200440075795200420080195200430084322562LVL19991220000000.0940401s1994 nyua j 00011 eng a94015070 a0448407485 a 94015070 c1565d1565 aE De Paola10aDe Paola, Tomie.10aKit and Kat /cby Tomie dePaola.0 aNew York :bGrosset & Dunlap,cc1994. a32 p. :bill. ;c23 cm. ;dpa. 0aAll aboard reading. aThree stories featuring the Kitten Kids sleeping at their grandparents' house, riding bikes, and playing with a bully. 1aBrothers and sistersxFiction. 1aCatsxFiction. aLVLcEASYkE De Paola bMAINp32000000052626r2.03u7230u2875 bMAINp32000000059622r11.89u7231u2876 bLB1p36000000003326r2.03u7232u2877 bMAINp35000000001738r2.03u7233u2878 bLB2p34000000010173r2.03u7234u2879 bMAINp31000000051792r2.03u7235u2880 bMAINp31000000056221r11.89u7236u2881 bLB1p33000000020819r2.03u7237u2882 bLB1p33000000023585r11.89u7238u288301288 2200373 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000250013624501100016124600160027124600300028725000120031726000710032930000350040050000200043560000250045561000700048065000470055065000430059765000330064065000290067365000520070270000240075470000260077894200220080495200440082695200440087029581LVL20030513095003.0961008s1996 gauab 00110aeng a96017740 a1570362777 a 96017740 c1566d1566 a614.4 Mc10aMcCormick, Joseph B.10aLevel 4 :bvirus hunters of the CDC /cJoseph B. McCormick, Susan Fisher-Hoch ; with Leslie Alan Horvitz.3 aLevel four.3 aVirus hunters of the CDC. a1st ed. aAtlanta :bTurner Pub.bDistributed by Andrews and McMeel,cc1996. a379 p. :bill., maps ;c25 cm. aIncludes index.10aMcCormick, Joseph B.20aCenters for Disease Control and Prevention (U.S.)xPopular works. 0aEpidemiologistsxBiography.zUnited States 0aVirologistsxBiography.zUnited States 0aEpidemiologyxPopular works. 0aVirologyxPopular works. 0aHemorrhagic feverxEpidemiologyxPopular works.20aFisher-Hoch, Susan.10aHorvitz, Leslie Alan. aLVLcNFk614.4 Mc bMAINp32000000067179r13.77u7239u2884 bMAINp31000000062021r13.77u7240u288500916 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000300013724500640016726000380023130000350026950000370030452001570034165000190049865000220051794200250053995200430056495200430060736600LVL19990320000000.0941212s1995 nyua j 00011 eng a94045764 a0307175626 a 94045764 c1567d1567 aE Wallace10aWallace, Nancy Elizabeth.10aSnow /cwritten and illustrated by Nancy Elizabeth Wallace.0 aNew York :bGolden Books,cc1995. a[30] p. :bcol. ill. ;c21 cm. a"Artists & Writers Guild books." aNow grown, a rabbit reminisces about the magic and warmth of the times when he, his brother, and his mother frolicked in the first snowfall of the year. 1aSnowxFiction. 1aRabbitsxFiction. aLVLcEASYkE Wallace bMAINp32000000062615r6.87u7241u2886 bMAINp32000000010031r6.87u7242u288701322 2200361 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200100012310000210013324500670015425000170022126000600023830000350029850000220033352001610035565000310051665000200054770000250056794200210059295200430061395200430065695200440069995200430074395200440078695200430083095200440087395200430091750638LVL20010804224333.0881019c19891988caua j 00011 eng a88026810 a0152005021 a 88026810 c1568d1568 aE Fox1 aFox, Mem,d1946-10aKoala Lou /cwritten by Mem Fox ; illustrated by Pamela Lofts. a1st U.S. ed. aSan Diego :bHarcourt Brace Jovanovich,c[1989], c1988. a[32] p. :bcol. ill. ;c24 cm. a"Gulliver books." aA young koala, longing to hear her mother speak lovingly to her as she did before other children came along, plans to win her distracted parent's attention. 1aMother and childxFiction. 1aKoalaxFiction.11aLofts, Pamela,eill. aLVLcEASYkE Fox bLB2p37000000015907r15.00u7243u2888 bMAINp32000000036100r8.65u7244u2889 bMAINp32000000114055r15.00u7245u2890 bLB1p36000000016410r15.00u7246u2891 bMAINp35000000008852r15.00u7247u2892 bLB2p34000000025964r15.00u7248u2893 bMAINp31000000092411r15.00u7249u2894 bLB1p33000000045271r15.00u7250u289500588 2200193 4500010001300000020001500013090001500028100002400043245003300067250001200100260003800112300002100150650003500171651004000206651003700246942002400283952004400307952004300351 a94010181 a0679434224 c1569d156910aRowland, Laura Joh.10aShinju /cLaura Joh Rowland. a1st ed.0 aNew York :bRandom House,cc1994. a367 p. ;c25 cm. 0aPolicexFiction.zTokyozJapan 0aJapanxFiction.xHistoryy1333-1600 0aTokyo (Japan)xFiction.xHistory aLVLcMYSkM Rowland bMAINp32000000053773r12.71u7251u2896 bLB1p33000000021056r12.71u7252u289700612 2200217 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200120012510000320013724500640016926000430023330000290027670000240030594200210032995200440035036601LVL19990320000000.0941025s1990 paua j 00011 eng d a90084707 a0894719971 a 90084707 c1570d1570 aJ Defoe aDefoe, Daniel,d1661?-1731.10aRobinson Crusoe /cDaniel Defoe; illustrated by N.C. Wyeth. aPhiladelphia :bCourage Books,cc1990. a368 p. :bill. ;c24 cm.11aWyeth, N. C.,eill. aLVLcJFkJ Defoe bMAINp32000000052763r15.00u7253u289801500 2200385 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000320013624501430016825000120031126000470032330000280037044000450039852001780044365000290062165000300065065000250068065000220070570000270072794200220075495200420077695200420081895200430086095200420090395200420094595200420098795200430102995200420107243620LVL20030303140023.0940401s1993 wiua j 00011 eng a94011267 a1562470841 a 94011267 c1571d1571 aJ Porter10aPorter, Connie Rose,d1959-10aAddy saves the day :ba summer story /cby Connie Porter ; illustrations, Bradford Brown ; vignettes, RenÂee Graef, Geri Strigenz Bourget. a1st ed.0 aMiddleton, WI :bPleasant Company,cc1993. a67 p. :bill. ;c23 cm. 4aThe American girls collection ;vbook 5. aAddy and Harriet feud over everything, including fund-raising plans to help the families of freed slaves, but tragedy finally forces them to stop fighting and work together. 1aAfro-AmericansxFiction. 1aConduct of lifexFiction. 1aFriendshipxFiction. 1aSlaveryxFiction.11aBrown, Bradford,eill. aLVLcJFkJ Porter bLB2p37000000002569r7.51u7254u2899 bLB2p37000000003697r5.95u7255u2900 bMAINp32000000052080r7.51u7256u2901 bLB1p36000000001916r7.51u7257u2902 bLB1p36000000013748r5.95u7258u2903 bLB2p34000000012060r7.51u7259u2904 bMAINp31000000051414r7.51u7260u2905 bLB1p33000000020574r7.51u7261u290601097 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000240013424501240015825000120028226000410029430000280033549000310036350000240039452001380041865000400055665000320059665000240062870000250065294200200067795200440069795200420074150639LVL19990312000000.0870421s1987 wiua j 00011 eng a87012208 a0937295329 a 87012208 c1572d1572 aJ Shaw10aShaw, Janet Beeler.10aHappy birthday, Kirsten! :ba springtime story /cby Janet Shaw ; illustrations, RenÂee Graef ; vignettes, Keith Skeen. a1st ed.0 aMadison, WI :bPleasant Co.,cc1987. a58 p. :bill. ;c23 cm. 0aAmerican girls collection. a"Ages 7-11"--Cover. aOn a Minnesota farm in the mid 1800's, the hard working members of the Larson family find time to celebrate Kirsten's tenth birthday. 1aFrontier and pioneer lifexFiction. 1aSwedish AmericansxFiction. 1aBirthdaysxFiction.11aGraef, RenÂee,eill. aLVLcJFkJ Shaw bMAINp32000000037198r12.95u7262u2907 bLB1p33000000008448r6.00u7263u290800779 2200253 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200180011410000260013224500500015826000370020830000280024544000160027374000400028994200260032995200430035595200420039895200420044095200430048222564LVL19990327000000.0950123s1994 nyu 00011 eng d a0821747843 anpl95000146 c1573d1573 aW John- stone10aJohnstone, William W.10aDeath in Snake Creek /cWilliam W. Johnstone.0 aNew York :bZebra Books,cc1994. a221 p. ;c18 cm. ;dpa. 0aBlood Bond.01aBlood Bond :bDeath in Snake Creek. aLVLcWESkW Johnstone bMAINp32000000055473r2.35u7264u2909 bLB1p36000000005368r2.35u7265u2910 bLB2p34000000004608r2.35u7266u2911 bMAINp31000000053071r2.35u7267u291200327 2200133 450000100060000000300040000600500170001000800410002709000150006810000200008324500230010394200230012695200440014929583LVL19990320000000.0940506s19xx xxu 00010 eng d c1574d15741 aHailey, Arthur.10aRunway zero-eight. aLVLcAFkAF Hailey bMAINp32000000004913r10.00u7268u291300343 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000200009624500150011694200230013195200430015436602LVL19990320000000.0940811s19xx xxu 00010 eng d a78060495 c1575d15751 aWaber, Bernard.14aThe snake. aLVLcEASYkE Waber bMAINp32000000008351r1.78u7269u291401031 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000270013724500930016426000350025730000330029250000380032550400510036365000270041465000370044165000150047870000310049394200230052495200430054795200420059095200430063295200420067543621LVL19990313000000.0940817s1995 nyu b 00110 eng a94031232 a0385475829 a 94031232 c1576d1576 a371.91 Tu10aTuttle, Cheryl Gerson.10aParenting a child with a learning disability /cCheryl Gerson Tuttle and Penny Paquette.0 aNew York :bDoubleday,cc1995. axvi, 188 p. ;c24 cm. ;dpa. a"A Main Street book"--T.p. verso. aIncludes bibliographical references and index. 0aLearning disabilities. 0aEducationxParent participation. 0aParenting.1 aPaquette, Penny Hutchings. aLVLcNFk371.91 Tu bMAINp32000000056061r6.49u7270u2915 bLB2p34000000003802r6.49u7271u2916 bMAINp31000000053471r6.49u7272u2917 bLB1p33000000021854r6.49u7273u291800802 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000310013424500920016525000130025726000380027030000540030849000310036250000200039350400300041365100290044394200200047295200440049250640LVL19990312000000.0741209r19741962nyuaf b 00110 eng a74193212 a0060117818 a 74193212 c1577d1577 a977 Ha1 aHavighurst, Walter,d1901-14aThe heartland :bOhio, Indiana, Illinois /cWalter Havighurst ; ill. by Grattan Condon. aRev. ed. aNew York :bHarper & Row,cc1974. ax, 430 p., [2] leaves of plates :bill. ;c22 cm.02aA Regions of America book. aIncludes index. aBibliography: p. 407-417. 0aNorthwest, OldxHistory. aLVLcNFk977 Ha bMAINp32000000038364r10.00u7274u291900390 2200157 450000100060000000300040000600500170001000800410002709000150006810000170008324500120010091000430011291000180015594200220017395200370019557659LVL20000810000000.0950324s19uu 000 0 eng d c1578d1578 aEhrmann, Er.10aHummel. a1997 December --bNPL --gceramic arts a1997 December aLVLcNFk738.8 Eh bMAINp31000000023267u7275u292000867 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000280013624500620016426000420022630000290026850000430029750000200034065000260036065000250038670000230041174000340043494200220046895200440049095200430053422565LVL20010718100318.0940816s1994 ctua 00110 eng a94031332 a1561580961 a 94031332 c1579d1579 a684.1 Ja10aJackson, Albert,d1943-10aCare & repair of furniture /cAlbert Jackson & David Day.0 aNewtown, CT :bTaunton Press,cc1994. a160 p. :bill. ;c27 cm. a"A Fine woodworking book"--T.p. verso. aIncludes index. 0aFurniturexRepairing. 0aFurniture finishing.10aDay, David,d1944-01aCare and repair of furniture. aLVLcNFk684.1 Ja bMAINp32000000056885r16.77u7276u2921 bLB2p37000000017568r16.77u7277u292200543 2200193 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200140011410000280012824500440015626000550020030000280025594200230028395200430030636603LVL20021015150024.0960716r19961956nyu 00011 eng d a0671000241 anpl96001304 c1580d1580 aAF Howard10aHoward, Elizabeth Jane.14aThe long view /cElizabeth Jane Howard.0 aNew York :bWashington Square Press,c1996, c1956. a371 p. ;c21 cm. ;dpa. aLVLcAFkAF Howard bMAINp32000000065586r7.08u7278u292301174 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200180012310000210014124501050016226000420026730000330030950000320034250400590037452001330043365000160056670000290058274000470061194200280065895200440068695200430073095200440077395200430081743622LVL19990313000000.0930510r1993 nyua j b 00110 eng a93024978 a1568471254 a 93024978 c1581d1581 aJNF 796.44 Du10aDurrant, Amanda.10aMy book of gymnastics :bhealth and movement /cby Amanda Durrant ; photographs by Chris Fairclough.0 aNew York :bThomson Learning,cc1993. a32 p. :bcol. ill. ;c28 cm. aTitle on spine: Gymnastics. aIncludes bibliographical references (p. 31) and index. aA beginner's guide to the techniques of gymnastics, featuring simple exercises like stretching, balancing, bending, and jumping. 1aGymnastics.11aFairclough, Chris,eill.01aMy book of gymnastics health and movement. aLVLcJNFkJNF 796.44 Du bMAINp32000000062021r10.46u7280u2924 bLB2p34000000011841r10.46u7281u2925 bMAINp31000000058016r10.46u7282u2926 bLB1p33000000024429r10.46u7283u292700309 2200133 450000100060000000300040000600500170001000800410002709000150006824500220008330000110010594200160011695200430013250641LVL19990312000000.0950221s19uu 000 0 eng d c1582d158210aSassy 1995 April. c26 cm. aLVLcPERkA bMAINp32000000055910r1.00u7284u292800616 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200100012310000180013324500350015126000400018630000210022665000350024794200200028295200420030295200420034422566LVL20030630105524.0911202s1992 nyu 00011 eng a91045384 a0802741304 a 91045384 c1583d1583 aW Ell10aEll, Flynn J.10aDakota scouts /cFlynn J. Ell.0 aNew York :bWalker and Co.,cc1992. a139 p. ;c22 cm. 0aDakota IndiansxWarsxFiction. aLVLcWESkW Ell bLB2p37000000016907r3.50u7285u2929 bLB1p33000000022684r4.98u7286u293000848 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009403900180010804000130012605000240013908200150016309000150017810000300019324500770022326000340030030000590033444000360039350000450042965000280047494200240050295200440052629585LVL19990320000000.0830307s1983 nyuaf 000 0 eng a82042669 a0684178834 a 820426690 a2b3c3d3e3 aDLCcDLC0 aTT778.C76bL56 19830 219a746.44 c1584d15841 aLindberg, Jana Hauschild.10aCounted cross-stitch designs for all seasons /cJana Hauschild Lindberg. aNew York :bScribner,cc1983. a94 p., [16] p. of plates :bill. (some col.) ;c29 cm. 0a[Scribner needlecrafts library] a"Scribner needlecrafts library"--Jacket. 0aCross-stitchxPatterns. aLVLcNFk746.44 LIN bMAINp32000000012266r10.59u7287u293100988 2200253 4500010001300000020001500013090001500028100002500043245008200068260006500150300005100215440004200266650004800308700003600356700001700392942002000409952004400429952004300473952004400516952004400560952004300604952004400647952004300691 a94039518 a0930031717 c1585d158510aBainbridge, David A.14aThe straw bale house /cDavid Bainbridge, Athena Swentzell Steen, Bill Steen.0 aWhite River Junction, Vt. :bChelsea Green Pub. Co.,cc1994. axxii, 297, [16] p. of plates :bill. ;c26 cm. 2aA real goods independent living book. 0aStraw bale housesxDesign and construction.10aSteen, Athena Swentzell,d1961-10aSteen, Bill. aLVLcNFk693 Ba bMAINp32000000055725r18.00u7288u2932 bLB1p36000000006116r30.00u7289u2933 bMAINp32000000082945r30.00u7290u2934 bMAINp32000000124624r30.00u7291u2935 bLB2p34000000006539r27.00u7292u2936 bMAINp31000000053328r18.00u7293u2937 bLB1p33000000023240r27.00u7294u293800510 2200169 4500020001500000090001500015245002000030260004500050300004500095440001400140650001500154650002100169942002300190952004200213952004200255952004300297 a1564589730 c1586d158600aGiant machines.0 aNew York :bCovent Garden books,cc1995. a[12] p. :bill. ;c23 cm. ;[board book]. 0aSnapshot. 1aMachinery. 1aHeavy equipment. aLVLcEASYkE Giant bLB2p37000000008917r4.95u7295u2939 bLB2p37000000013578r2.78u7296u2940 bMAINp35000000001501r2.78u7297u294100588 2200205 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200150011210000240012724500440015126000480019530000280024394200250027195200430029695200430033950642LVL20011206103108.0930524c19931975nyu 00011 eng a0446401358 anpl93000138 c1587d1587 aM Westlake10aWestlake, Donald E.10aBrothers keepers /cDonald E. Westlake.0 aNew York :bMysterious Press,c1993, c1975. a261 p. ;c17 cm. ;dpa. aLVLcMYSkM Westlake bMAINp32000000039701r2.89u7299u2942 bMAINp31000000043048r2.89u7300u294300347 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000170009624500160011394200280012995200440015764680LVL19990217000000.0920318s19xx xxu 00010 eng d a85051603 c1588d15881 aPope, Joyce.10aGuinea pig. aLVLcJNFkJNF 636.08 Po bMAINp31000000008118r10.80u7301u294402073 2200481 450000100060000000300040000600500170001000700100002700800410003702000150007803500160009303700390010909000150014809200110016324501690017426000560034330000550039950000470045450000450050150000410054650801370058751100550072452001750077952100210095452100130097553800370098853800100102565000180103565000190105365000470107265100530111965100620117270000220123470000230125670000320127970000260131170000720133771000330140994200200144295200430146295200430150595200430154822567LVL20010804191704.0vfucbahoq950918s1993 cau138 g vleng d a0800126424 anav95000185 a52633bColumbia Tristar Home Video c1589d1589 aAV Age04aThe age of innocencecColumbia Pictures ; produced by Barbara De Fina ; directed by Martin Scorsese ; screenplay by Jay Cocks & Martin Scorsese.h[videorecording] /0 aBurbank, CA :bColumbia Tristar Home Video,cc1993. a1 videocassette (138 min.) :bsd., col. ;c1/2 in. aClosed-captioned for the hearing impaired. aOriginally released as a motion picture. aBased on the novel by Edith Wharton. aDirector of photography, Michael Ballhaus ; production design, Dante Ferretti ; editor, Thelma Schoonmaker ; music, Elmer Bernstein.1 aDaniel Day-Lewis, Michelle Pfeiffer, Winona Ryder. aStory of the manners and morals of New York society in the later 1800's, focusing on a handsome young lawyer who cannot decide between passion and propriety in his women.8 aMPAA rating: PG. aGeneral. aVHS Dolby Hi-fi stereo surround. aNTSC. 0aLove stories. 0aFeature films. 0aVideo recordings for the hearing impaired. 0aNew York (N.Y.)xSocial life and customsxDrama. 0aUnited StatesxSocial life and customsxDrama.y1865-19181 aScorsese, Martin.2 aDay-Lewis, Daniel.1 aPfeiffer, Michelle,d1957-.1 aRyder, Winona,d1971-1 aWharton, Edith,d1862-1937.hVideorecording.tThe age of innocence.2 aColumbia TriStar Home Video. aLVLcAVkAV Age bMAINp32000000059369r9.99u7302u2945 bMAINp35000000008622r7.99u7303u2946 bMAINp31000000055859r9.99u7304u294701229 2200337 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000270013624500750016325000120023826000390025030000280028944000400031752001700035765000370052765000230056465000200058770000260060780000620063394200220069595200440071795200430076195200440080495200430084843624LVL19990313000000.0911126s1994 nyua j 00011 eng a91044763 a006021063X a 91044763 c1590d1590 aJ Hunter10aHunter, Mollie,d1922-10aDay of the unicorn /cby Mollie Hunter ; illustrated by Donna Diamond. a1st ed.0 aNew York :bHarperCollins,cc1994. a59 p. :bill. ;c21 cm. 2aA Knight of the Golden Plain story. aA young boy's daydream transforms him into the fearless Sir Dauntless and he sets out to capture a unicorn that has magically escaped from a tapestry at Crag Castle. 1aKnights and knighthoodxFiction. 1aUnicornsxFiction. 1aMagicxFiction.11aDiamond, Donna,eill.10aHunter, Mollie,d1922-tKnight of the Golden Plain story. aLVLcJFkJ Hunter bMAINp32000000058548r12.50u7305u2948 bLB2p34000000006498r12.50u7306u2949 bMAINp31000000055212r12.50u7307u2950 bLB1p33000000023082r12.50u7308u295100749 2200253 450000100060000000300040000600500170001000800390002701000130006602000340007902000270011304000130014005000250015308200160017809000150019410000320020924500380024126000460027930000410032549000390036665000220040594200240042795200440045164681LVL19990217000000.0870408c19871986mau d 00011 eng a87008626 a0816142947 (pbk. : lg. print) a0816142939 (lg. print) aDLCcDLC1 aPS3523.A446bD8 19870 219a813/.52 c1591d159110aL'Amour, Louis,d1908-1988.10aDutchman's flat /cLouis L'Amour.0 aBoston, Mass. :bG.K. Hall,c1987, c1986. axiii, 348 p. (large print) ;c24 cm.0 aG.K. Hall large print book series. 0aLarge type books. aLVLcAFkAF L'Amour bMAINp31000000031148r14.41u7310u295200646 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000270013824500350016526000320020030000240023250000320025665100590028894200250034795200440037222568LVL19990327000000.0860929s1987 nyu 00011 eng a86024726 a0802709435 a 86024726 c1592d1592 aW Cummings10aCummings, Jack,d1925-10aRebels West! /cJack Cummings.0 aNew York :bWalker,cc1987. av, 185 p. ;c22 cm. a"A Walker western"--Jacket. 0aUnited StatesxHistoryxFiction.yCivil War, 1861-1865 aLVLcWESkW Cummings bMAINp32000000061955r15.95u7311u295300737 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000190013424500440015325000120019726000440020930000340025350400510028765000410033865000410037994200200042095200430044036606LVL19990320000000.0941213s1995 nyua be 00110 eng a94048204 a0805035311 a 94048204 c1593d1593 a616 Bi10aBiddle, Wayne.12aA field guide to germs /cWayne Biddle. a1st ed.0 aNew York :bHenry Holt and Co.,cc1995. axix, 196 p. :bill. ;c25 cm. aIncludes bibliographical references and index. 0aMedical microbiologyxEncyclopedias. 0aMedical microbiologyxPopular works. aLVLcNFk616 Bi bLB1p33000000022954r13.20u7313u295400798 2200253 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200110011210000210012324500850014425000390022926000560026830000610032450000200038550400320040565000210043765000230045894200200048195200430050122569LVL19990327000000.0741104s1974 cauaf b 00110 eng a0520026136 anpl96001425 c1594d1594 a701 Ar10aArnheim, Rudolf.10aArt and visual perception :ba psychology of the creative eye /cRudolf Arnheim. aNew version, expanded and rev. ed.0 aBerkeley :bUniversity of California Press,c[1974] ax, 508 p., [2] leaves of plates :bill. ;c23 cm. ;dpa. aIncludes index. aBibliography: p. [487]-501. 0aArtxPsychology. 0aVisual perception. aLVLcNFk701 Ar bMAINp32000000065864r6.95u7315u295500829 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000170013424501190015126000320027030000270030250400410032960000320037065000370040265000540043994200200049395200620051336607LVL20010813092412.0950419s1995 nyu b 00010beng a95017402 a0802713122 a 95017402 c1595d1595 a526 So10aSobel, Dava.10aLongitude :bthe true story of a lone genius who solved the greatest scientific problem of his time /cDava Sobel.0 aNew York :bWalker,cc1995. aviii, 184 p. ;c20 cm. aIncludes bibliographical references.10aHarrison, John,d1693-1776. 0aLongitudexMeasurementxHistory. 0aClock and watch makersxBiography.zGreat Britain aLVLcNFk526 So bMAINdMAINp32000000059834r11.40u7316u2956v2003-09-0100951 2200253 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200150011224502020012726000480032930000490037765000360042665100360046265100680049870000180056670000250058470000200060994200240062995200440065343626LVL20020321125208.0951017s1986 caua 00000 eng a000649207X anpl95001363 c1596d1596 a973.927 Da02aA Day in the life of America /cphotographed by 200 of the world's leading photojournalists on one day, May 2, 1986 ; [project directors, Rick Smolan and David Cohen ; art director, Leslie Smolan].0 aSan Francisco :bCollins Publishers,c1986. a268 p. :bchiefly col. ill. ;c36 cm. ;dpa. 0aPhotojournalismzUnited States. 0aUnited StatesxPictorial works. 0aUnited StatesxSocial life and customsxPictorial works.y1971-10aSmolan, Rick.10aCohen, David,d1955-10aSmolan, Leslie. aLVLcNFk973.927 Da bMAINp31000000056625r19.95u7317u295701005 2200265 4500010001300000020001500013090001500028100001900043245008900062260006100151300003500212440001800247650004500265650001600310700001900326942002700345952004300372952004400415952004300459952004400502952004300546952004400589952004300633952006300676 a92238850 a1566740045 c1597d15971 aSiede, George.10aOpposites /cphotography, George Siede and Donna Preis ; consultant, Istar Schwager. aLincolnwood, Ill. :bPublications International,cc1992. a[18] p. :bcol. ill. ;c21 cm. 0aActive minds. 1aEnglish languagexSynonyms and antonyms. 1aVocabulary.1 aPreis, Donna., aLVLcJNFkJNF 428.1 Si bLB2p37000000002124r10.95u7318u2958 bMAINp32000000088667r10.95u7319u2959 bLB1p36000000012743r10.95u7320u2960 bMAINp35000000006711r10.95u7321u2961 bLB2p34000000020924r10.95u7322u2962 bMAINp31000000076829r10.95u7323u2963 bLB1p33000000035165r10.95u7324u2964 bMAINdMAINp32000000040385r5.99u302397u2965v2004-06-0200606 2200193 4500010001300000020003600013020002900049082001200078090001500090100003700105245004400142250001700186260004600203300003500249490003900284650002200323942002300345952004400368 a86026960 a0816141711 (pbk. : lg. print) : a081614172X (lg. print) :0 a813/.54 c1598d159810aAtwood, Margaret Eleanor,d1939-14aThe handmaid's tale /cMargaret Atwood. aLarge print.0 aBoston, Mass. :bG.K. Hall,c1987, c1986. a443 p. (large print) ;c25 cm.0 aG.K. Hall large print book series. 0aLarge type books. aLVLcLPkLP Atwood bMAINp31000000010093r16.11u7325u296600700 2200241 450000100060000000300040000600500170001000800390002701000130006602000250007904000130010405000230011708200150014009000150015510000220017024500700019226000470026230000290030965000410033865000150037994200210039495200430041564683LVL19990217000000.0801126s1979 paua 00010 eng a80027666 a0811707873 :c$19.95 aDLCcDLC0 aQL618.6.bP47 19790 219a574/.9 c1599d159910aPhillips, Archie.10aHow to mount fish for profit or fun /cArchie and Bubba Phillips.0 aHarrisburg, PA :bStackpole Books,cc1979. a133 p. :bill. ;c29 cm. 0aFishesxCollection and preservation. 0aTaxidermy. aLVLcNFk574 PHI bMAINp31000000019033r4.98u7326u296700896 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200180012310000240014124500570016526000520022230000290027444000280030350400640033152001520039565000230054794200280057095200440059822570LVL19990327000000.0960924s1996 njua j b 00110ceng a95038292 a0894906305 a 95038292 c1600d1600 aJNF 333.91 St10aStanley, Phyllis M.10aAmerican environmental heroes /cPhyllis M. Stanley.0 aSpringfield, N.J. :bEnslow Publishers,cc1996. a128 p. :bill. ;c24 cm. 0aCollective biographies. aIncludes bibliographical references (p. 121-126) and index. aA collective biography of ten American environmentalists, including Henry David Thoreau, Rachel Carson, Sylvia Earle, and George Washington Carver. 1aEnvironmentalists. aLVLcJNFkJNF 333.91 St bMAINp32000000067000r12.47u7327u296800767 2200229 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200180011210000270013024501010015726000550025830000340031350000200034765000710036765000320043894200230047095200440049329589LVL20020516113948.0960716r1996 dcu 00110 eng a1568021852 anpl96001302 c1601d1601 aREF 025.04 Ma10aMaxwell, Bruce,d1959-10aHow to access the federal government on the Internet 1997 :bWashington online /cBruce Maxwell.0 aWashington, DC :bCongressional Quarterly,cc1996. axxii, 455 p. ;c24 cm. ;dpa. aIncludes index. 0aGovernment informationxComputer network resources.zUnited States 0aInternet (Computer network) aLVLcNFk025.04 Ma bMAINp31000000060822r17.37u7329u296901281 2200325 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200120011210000190012424500790014326000500022230000280027250400410030052002050034160000600054665000220060665000290062865000220065794200210067995200430070095200430074395200420078695200420082895200430087095200420091336608LVL20000207000000.0960119r19961992nyu j 00011 eng a0689800150 anpl96000185 c1602d1602 aJ Lyons10aLyons, Mary E.10aLetters from a slave girl :bthe story of Harriet Jacobs /cMary E. Lyons.0 aNew York :bAlladin Paperbacks,c1996, c1992. a175 p. ;c18 cm. ;dpa. aIncludes bibliographical references. aA fictionalized version of the life of Harriet Jacobs, told in the form of letters that she might have written during her slavery in North Carolina and as she prepared for escape to the North in 1842.11aJacobs, Harriet A.d1813-1897q(Harriet Ann),xFiction. 1aSlaveryxFiction. 1aAfro-AmericansxFiction. 1aLettersxFiction. aLVLcJFkJ Lyons bMAINp32000000062311r2.29u7330u2970 bMAINp32000000062312r2.29u7331u2971 bLB1p36000000001807r2.29u7332u2972 bLB2p34000000012594r2.29u7333u2973 bMAINp31000000058110r2.29u7334u2974 bLB1p33000000024498r2.29u7335u297500352 2200133 450000100060000000300040000600500170001000800410002709000150006810000350008324500420011894200210016095200370018150646LVL19990312000000.0940610s19xx xxu 00010 eng d c1603d16031 aGogh, Vincent van,d1853-1890.10aComplete letters of Vincnet Van Gogh. aLVLcBIOkB Gogh bMAINp32000000004663u7336u297600740 2200277 450000100060000000300040000600500170001000800390002701000130006602000450007904000130012405000210013708200180015809000150017610000180019124000150020924500440022425000120026826000410028030000290032150000200035065000110037074000150038194200230039695200430041964684LVL19990217000000.0870306s1987 nyu 0 10 eng a86091705 a0345340949 (pbk.) :c$7.95 ($11.95 Can.) aDLCcDLC0 aSB433.bB12 19870 219a635.9/647 c1604d160410aBaker, Jerry.10aLawn book.10aJerry Baker's lawn book /cJerry Baker. a1st ed.0 aNew York :bBallantine Books,c1987. a191 p. :bill. ;c24 cm. aIncludes index. 0aLawns.01aLawn book. aLVLcNFk635.9 BAK bMAINp31000000024424r4.69u7337u297700605 2200217 450000100060000000300040000600500170001000800390002701000200006603500210008604000130010705000180012009000150013810000460015324500410019926000320024030000220027249000350029494200210032995200370035022571LVL20000204000000.0711216s1964 nyu 000 1 eng a64023106 //r852 a 64023106 //r852 aDLCcDLC0 aPZ3.S6737bCq c1605d16051 aSnow, C. P.d1905-1980.q(Charles Percy),10aCorridors of powerc[by] C. P. Snow. aNew York,bScribnerc[1964] ax, 403 p.c22 cm.0 aHis Strangers and brothersv9. aLVLcAFkAF Snow bMAINp32000000007661u7338u297800535 2200205 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200120012510000250013724500380016226000420020030000210024294200220026395200440028536609LVL20030425135218.0961018s1996 nyu 00011 eng d a96076489 a1575660903 a 96076489 c1606d1606 aM Allen 0aAllen, Steve,d1921-10aWake up to murder /cSteve Allen.0 aNew York :bKensington Books,cc1996. a283 p. ;c24 cm. aLVLcMYSkM Allen bMAINp32000000067415r11.77u7339u297900889 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010810000240012324500450014724600130019226000480020530000360025350000200028965000130030994200220032295200420034495200430038695200420042995200430047195200430051495200420055743628LVL20000911202323.0960523s1996 njua 00110 eng a96022993 a1564141942 a 96022993 c1607d160710aRoss, Debra,d1958-10aMaster math :balgebra /cby Debra Ross.30aAlgebra.0 aFranklin Lakes, NJ :bCareer Press,cc1996. a178 p. :bill. ;c21 cm. ;dpa. aIncludes index. 0aAlgebra. aLVLcNFk512.9 Ro bLB2p37000000004472r9.99u7342u2980 bMAINp32000000067535r9.99u7343u2981 bLB1p36000000010005r9.99u7344u2982 bMAINp35000000003658r9.99u7345u2983 bMAINp31000000062341r9.99u7346u2984 bLB1p33000000028479r9.99u7347u298500627 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000210013524500740015626000380023030000350026894200220030395200420032595200420036750647LVL20030423150826.0930129s1993 nyub 00011 eng a93020229 a0553372041 a 93020229 c1608d1608 aSF Kerr10aKerr, Katharine.10aDays of blood and fire :ba novel of the Westlands /cKatharine Kerr.0 aNew York :bBantam Books,cc1993. a402 p. :bmap ;c23 cm. ;dpa. aLVLcSCIkSF Kerr bLB2p34000000005960r7.05u7348u2986 bLB1p33000000016149r7.05u7350u298700788 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000250013824500860016326000320024930000330028150400510031460000270036565000480039270000260044094200240046695200440049029591LVL19990320000000.0950706s1995 nyua b 00110beng a95031775 a0802713114 a 95031775 c1609d1609 a796.357 St10aStout, Glenn,d1958-10aDi Maggio :ban illustrated life /cedited by Dick Johnson ; text by Glenn Stout.0 aNew York :bWalker,cc1995. axv, 272 p. :bill. ;c29 cm. aIncludes bibliographical references and index.10aDi Maggio, Joe,d1914- 0aBaseball playersxBiography.zUnited States10aJohnson, Dick,d1955- aLVLcNFk796.357 St bMAINp32000000060187r17.97u7352u298801025 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000260014024500900016626000500025630000340030644000250034050400600036552000910042565100200051665100160053665100120055270000280056494200270059295200440061995200600066336610LVL19990320000000.0941214s1995 nyuab j b 00110 eng a94045822 a0791034070 a 94045822 c1610d1610 aJNF 979.4 Ay 0aAylesworth, Thomas G.14aThe Pacific .cby Thomas G. Aylesworth, Virginia L. Aylesworth.pCalifornia, Hawaii /0 aNew York :bChelsea House Publishers,cc1995. a96 p. :bill. ; map ;c21 cm. 0aDiscovering America. aIncludes bibliographical references: p. (94) and index. aDiscusses the geographical, historical, and cultural aspects of California and Hawaii. 1aPacific States. 1aCalifornia. 1aHawaii.10aAylesworth, Virginia L. aLVLcJNFkJNF 979.4 Ay bMAINp32000000064909r18.95u7353u2989 bLB2dLB2p37000000016221r18.95u7354u2990v2004-12-1100527 2200205 450000100060000000300040000600500170001000800410002702000140006803500160008209000150009809200130011310000180012624500330014426000320017730000230020944000240023294200220025695200430027850648LVL19990312000000.0940716s1987 nyu j 00011 eng d a053175726 anpl94001204 c1611d1611 aYA Blake1 aBlake, Susan.10aCrash course /cSusan Blake. aNew York :bBantam,cc1987. a186 p. :c18 cm.;. 0aRoommates ;vbk. 2. aLVLcYAkYA Blake bMAINp31000000050201r3.00u7356u299100552 2200193 450000100060000000300040000600500170001000800410002702000150006809000150008309200160009810000220011424500460013626000400018230000260022294200250024895200420027395200430031557667LVL20000912084330.0950713s19uu 000 0 eng d a006108185X c1612d1612 aAF Macomber aMacomber, Debbie.10aIt happened one night /cDebbie Macomber. aNew York :bHarperCollins ;cc1994. a319p. ;bpa. ;c18cm. aLVLcAFkAF Macomber bLB2p37000000011352r5.99u7357u2992 bMAINp31000000029668r5.50u7358u299300865 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000200013624500420015625000210019826000990021930000290031850000200034765000240036765000340039165000250042565000150045094200220046595200440048795200440053122573LVL19990327000000.0950228s1995 enk 00110 eng a95008172 a0789401517 a 95008172 c1613d1613 a635.9 La10aLancaster, Roy.10aWhat plant where /cby Roy Lancaster. a1st American ed.0 aLondon ;aNew York :aBoston :bDorling Kindersley ;bDistributed by Houghton Mifflin,cc1995. a256 p. :bill. ;c27 cm. aIncludes index. 0aPlants, Ornamental. 0aPlants, OrnamentalxLocation. 0aLandscape gardening. 0aGardening. aLVLcNFk635.9 La bMAINp32000000060811r14.67u7359u2994 bMAINp31000000057325r14.67u7360u299500943 2200265 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200190011210000300013124500590016126000520022030000350027244000190030752001510032660000290047765000240050665000320053094200290056295200430059195200430063436611LVL19990320000000.0921026s1993 mnua j 00010beng a0822596377 anpl96001524 c1614d1614 aJNF 796.323 Re10aRekela, George R.,d1943-10aHakeem Olajuwon :btower of power /cGeorge R. Rekela.0 aMinneapolis :bLerner Publications Co.,cc1993. a64 p. :bill. ;c21 cm. ;dpa. 4aThe Achievers. aChronicles the career of the NBA center from his journey from Nigeria to the University of Houston through his success in professional basketball.11aOlajuwon, Hakeem,d1963- 1aBasketball players. 1aBlacksxBiography.zNigeria aLVLcJNFkJNF 796.323 Re bMAINp32000000066203r2.95u7361u2996 bMAINp31000000061213r2.95u7362u299700459 2200145 4500010001300000020001500013090001500028100002500043245005300068260003200121300002700153942002500180952004400205952006400249 a95026234 a0670865796 c1615d161510aMitchard, Jacquelyn.14aThe deep end of the ocean /cJacquelyn Mitchard.0 aNew York :bViking,cc1996. aviii, 434 p. ;c24 cm. aLVLcAFkAF Mitchard bMAINp32000000068793r14.13u7363u2998 bMAINdMAINp31000000115710r23.95u320476u2999v2004-11-3001007 2200289 450000100060000000300040000600500170001000800390002701000170006603500180008304000130010105000210011408200120013509000150014710000270016224500570018926000380024630000270028435000100031150000860032152001450040765000470055265000260059965000260062594200230065195200430067429593LVL20020909141702.0690421r19681966nyua j 001 0 eng a68021950 /AC a 68021950 /AC aDLCcDLC0 aQC53.bB83 1968b a530/.28 c1616d16161 aBulman, Alan Davidson.10aModels for experiments in physics,cby A. D. Bulman. aNew York,bCrowellc[1968, c1966] a202 p.billus.c22 cm. a4.95. aFirst published in 1966 under title: Experiments and models for young physicists. aDetailed instructions for building and testing such scientific apparatus as a water motor, a Tesla coil, an electroscope, and twelve others. 0aPhysical instrumentsxJuvenile literature. 1aPhysical instruments. 1aPhysicsxExperiments. aLVLcNFk530.28 Bu bMAINp32000000009395r4.95u7364u300000291 2200121 450000100060000000300040000600500170001000800410002709000150006824500270008394200160011095200430012643631LVL19990313000000.0941224s19uu 000 0 eng d c1617d161710aCOBBLESTONE JUNE 1984. aLVLcPERkJ bMAINp32000000022108r2.25u7365u300100791 2200265 450000100060000000300040000600500170001000800390002701000130006602000170007902000310009608200190012709000150014610000210016124500630018225000120024526000490025730000340030650000200034050400260036065000230038674000480040994200250045795200430048264688LVL19990217000000.0831229s1984 paua b 00110 eng a83024384 a0830606750 : a0830616756 (pbk.) :c$9.950 219a745.592 Ho c1618d161810aHodges, Lewis H.10a46 step-by-step wooden toy projects /cby Lewis H. Hodges. a1st ed.0 aBlue Ridge Summit, Pa. :bTab Books,cc1984. avii, 231 p. :bill. ;c24 cm. aIncludes index. aBibliography: p. 228. 0aWooden toy making.01aForty-six step-by-step wooden toy projects. aLVLcNFk745.592 HOD bMAINp31000000023429r9.65u7366u300200366 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000210009624500310011794200280014895200440017622575LVL19990327000000.0930423s19xx xxu 00010 eng d a89017833 c1619d16191 aJefferis, David.10aTrail bikes and motocross. aLVLcJNFkJNF 629.2 JEF bMAINp32000000028453r12.75u7367u300301574 2200445 450000100060000000300040000600500170001000700100002700800410003702000150007803500160009303700320010909000150014109200190015624501490017526000490032430000670037344000310044050000470047150000640051850600310058251100850061352100130069853800090071165000220072070000200074270000200076270000210078270000250080370000180082870000200084670000250086670000180089171000240090973000370093394200270097095200440099795200440104195200430108550651LVL20000911201818.0vf cbahom931230s1991 ilu120 g vleng d a0780007158 avid93000666 aCLO 050bPublic Media Video c1620d1620 aAVJ Clown- ing00aClowning aroundcWonderWorks ; Paul D. Barron executive producer ; directed by George Whaley ; screenplay by Tony Cavanaugh.h[videorecording] / aChicago, Ill. :bPublic Media Video,cc1991. a2 videocassette (120 min.) :bsd., col. ;c1/2 in. +e1 guide. 0aWonderWorks family movies. aClosed-captioned for the hearing impaired. aOriginally broadcast on the television program WonderWorks. aFor private home use only.1 aClayton Williamson, Ernie Dingo, Rebecca Smart, Jean-Michel Dagory, Van Johnson. aGeneral. aVHS. 0aChildren's films.11aWhaley, George.11aBarron, Paul D.11aCavanaugh, Tony.11aWilliamson, Clayton.11aDingo, Ernie.11aSmart, Rebecca.11aDagory, Jean-Michel.11aJohnson, Van.21aPublic Media Video.01aWonderWorks (Television program) aLVLcAVJkAVJ Clowning bMAINp31000000045709r22.46u7368u3004 bMAINp31000000045718r22.46u7369u3005 bMAINp32000000043734r0.60u7370u300601108 2200361 450000100060000000300040000600500170001000800390002701000230006603500160008904000200010505000170012508200080014209000150015010000160016524500690018126000300025030000260028049000240030651000320033051000520036251000140041452000790042852100340050752100090054165000220055065000190057265000190059170000270061094200220063795200430065995200440070236614LVL19990320000000.0780803s1960 nyua j 000 1 eng a60009452 /L/AC/r78 aflb00407500 aDLCcDLCdICrlF0 aPZ7.Z66bHan a[E] c1621d16211 aZion, Gene.10aHarry and the lady next door.cPictures by Margaret Bloy Graham. aNew York,bHarperc[1960] a62 p.billus.c23 cm.0 aAn I can read book.0 aChildren's Catalog (Wilson)0 aElementary School Library Collection (Bro-Dart)0 aBooklist. aHarry the dog goes to fantastic lengths to make his neighbor stop singing.0 a2.8bFollett Library Book Co.2 aK-3. 1aSingingxFiction. 1aDogsxFiction. 7aDogsxFiction.10aGraham, Margaret Bloy. aLVLcEASYkE Zion bMAINp32000000008362r7.91u7371u3007 bMAINp32000000032554r13.69u7372u300800750 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009409000150011009200210012510000280014624500420017425000170021626000490023330000210028265000500030365000380035365100310039194200300042295200440045250652LVL20011108113322.0920813r19931991nyu 00011 eng a92030924 a0380720655 anpl94000465 c1622d1622 aM Harrod- Eagles20aHarrod-Eagles, Cynthia.10aDeath watch /cCynthia Harrod-Eagles. a1st U.S. ed.0 aNew York :bCharles Scribner's Sons,cc1993. a280 p. ;c22 cm. 0aSlider, Bill (Fictitious character)xFiction. 0aPolicexFiction.zEnglandzLondon 0aLondon (England)xFiction. aLVLcMYSkM Harrod-Eagles bMAINp32000000045260r12.00u7373u300900764 2200241 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200150011210000320012724500510015926000420021030000360025244000370028865000450032565000420037094200250041295200420043795200430047922577LVL20030505142758.0951115r19921984nyua 00011 eng a0380716313 anpl95001576 c1623d1623 aSF Lawhead10aLawhead, Stephen R.,d1950-14aThe sword and the flame /cStephen R. Lawhead.0 aNew York :bAvon Books,c1992, c1984. a374 p. :bill. ;c18 cm. ;dpa. 4aThe Dragon King trilogy ;vbk 3. 0aQuentin (Fictitious character)xFiction. 0aMensandor (Imaginary place)xFiction. aLVLcSCIkSF Lawhead bLB2p34000000010958r2.94u7374u3010 bMAINp31000000057358r2.94u7375u301100362 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000220009624500300011894200250014895200430017336615LVL19990320000000.0930426s19xx xxu 00010 eng d a80007446 c1624d1624 aNancarrow, Peter.10aEarly China and the wall. aLVLcJNFkJNF 931 Na bMAINp32000000016342r5.95u7376u301201294 2200397 450000100060000000300040000600500170001000800390002701000210006602000370008703500160012404000250014005000220016508200120018709000150019910000250021424500810023925000120032026000390033230000350037151000320040651000430043851000430048152000980052452100340062252100090065665000260066565000200069165000200071165000260073165000200075765000200077770000300079794200260082795200430085343634LVL19990313000000.0870826s1988 nyua j 000 1 eng a87025129 /AC/r90 a0823406873 (lib. bdg.) :c$13.95 aflb00442816 aDLCcDLCdDLCdICrlF00aPZ7.W768bBd 198800219a[E] c1625d16251 aWinthrop, Elizabeth.10aBear and Mrs. Duck /cElizabeth Winthrop ; illustrated by Patience Brewster. a1st ed. aNew York :bHoliday House,cc1988. a[32] p. :bcol. ill. ;c25 cm.0 aChildren's Catalog (Wilson)0 aBooklist Editors' (Reviewers') Choice.0 aChild Study Children's Book Committee. aOnce he overcomes his initial fear, Bear has fun playing with his new baby sitter, Mrs. Duck.0 a2.3bFollett Library Book Co.2 aK-3. 1aBabysittersxFiction. 1aBearsxFiction. 1aDucksxFiction. 7aBabysittersxFiction. 7aBearsxFiction. 7aDucksxFiction.11aBrewster, Patience,eill. aLVLcEASYkE Winthrop bMAINp32000000026131r8.37u7377u301300709 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000270013724500440016426000430020830000310025150000200028265000150030265000270031794200230034495200440036795200440041150653LVL19990312000000.0910611s1991 nyua 00110 eng a91023273 a0806968052 a 91023273 c1626d1626 a746.46 Ma1 aMalone, Maggie,d1942-10aChristmas scrapcrafts /cMaggie Malone. aNew York :bSterling Pub. Co.,cc1991. a127 p. :bill. ;c28 cm.;. aIncludes index. 0aPatchwork. 0aChristmas decorations. aLVLcNFk746.46 Ma bMAINp32000000046161r11.62u7378u3014 bMAINp31000000047666r11.62u7379u301500711 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009405000250010808200130013309000150014609200180016110000270017924500320020625000200023826000520025830000070031065000310031770000290034894200250037795200430040257672LVL19990220000000.0870309c19871967mau d 00011 eng a87006793 a1555044026 a 870067931 aPS3519.O712bF6 19870 a813/.529 c1627d1627 aL.P. Westland10aWestland, Lynn,d1899-10aFort Fear /cLynn Westland. aLarge print ed.0 aSouth Yarmouth, MA :bJohn Curley,cc1987,1967. a-- 0aCheyenne IndiansxFiction.10aJoscelyn, Archie,d1899- aLVLcLPkLP Westland bMAINp31000000035645r8.95u7380u301600405 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000360009624500570013294200260018995200440021522578LVL19990327000000.0930426s19xx xxu 00010 eng d a91020625 c1628d16281 aRoosevelt, Elliott,d1910-1990.14aThe president's man :ba "Blackjack" Endicott novel. aLVLcMYSkM Roosevelt bMAINp32000000044600r11.18u7381u301700912 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000250013824500420016325000120020526000400021730000540025750000270031150400300033865000190036865100440038765100440043165100250047594200240050095200440052495200420056829597LVL20020905081913.0830407s1983 nyuabf b 00010 eng a83009328 a0688023711 a 83009328 c1629d1629 a955.054 Fo10aFollett, Ken,d1949-10aOn wings of eagles /cby Ken Follett. a1st ed.0 aNew York :bWilliam Morrow,cc1983. a444 p., [16] p. of plates :bill., maps ;c25 cm. aMaps on lining papers. aBibliography: p. 443-444. 0aEscapeszIran. 0aUnited StatesxForeign relationszIran. 0aIranxForeign relationszUnited States. 0aIranxHistoryy1979- aLVLcNFk955.054 Fo bMAINp32000000049419r10.00u7382u3018 bLB2p34000000002518r9.71u7383u301900575 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009409000150011009200110012510000230013624500280015926000360018730000280022394200210025195200420027295200430031422579LVL20010828111036.0900208s1991 nyu 00011 eng a90032332 a0380714469 anpl93000026 c1630d1630 aM Lutz10aLutz, John,d1939-10aBloodfire /cJohn Lutz.0 aNew York :bAvon Books,cc1991. a210 p. ;c18 cm. ;dpa. aLVLcMYSkM Lutz bLB2p34000000006365r2.39u7384u3020 bMAINp32000000039195r2.39u7385u302100926 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012324500910013426000490022530000340027444000390030850000200034765000160036765000230038365000440040671000500045071000290050094200200052995200440054995200430059350655LVL20030725101627.0930219s1993 mnua f 00100 eng a93018665 a0865733597 a 93018665 c1631d1631 a745 Cr00aCreative accessories for the home :b76 projects & ideas /cHome Decorating Institute. aMinnetonka, Minn. :bCy DeCosse Inc.cc1993. a128 p. :bcol. ill. ;c28 cm. 0aArts & crafts for home decorating. aIncludes index. 0aHandicraft. 0aHouse furnishings. 0aInterior decorationxAmateurs' manuals.20aHome Decorating Institute (Minnetonka, Minn.)20aCy DeCosse Incorporated. aLVLcNFk745 Cr bMAINp32000000047069r18.95u7386u3022 bLB1p33000000049493r18.95u7388u302300514 2200193 450000100060000000300040000600500170001000800390002701000130006603500140007909000150009309200130010810000200012124500370014126000490017830000280022794200220025595200430027757674LVL19990220000000.0730529119671923nyua 00010 eng a53009594 a 53009594 c1632d1632 a892.7 Gi10aGibran, Kahlil.14aThe prophet /cby Kahlil Gibran.0 aNew York :bAlfred A. Knopf,c[1967], c1923. a96 p. :bill. ;c22 cm. aLVLcNFk892.7 Gi bMAINp31000000039383r3.95u7389u302400519 2200145 4500020001500000090001500015245013200030260004200162300003100204650003000235650001900265700002400284942002300308952004200331 a0881849138 c1633d163304aThe lifted veil :bthe book of fantastic literature by women , 1800-World War II /cedited and introduced by A. Susan Williams.0 aNew York :bCarroll and Graf,cc1992. axv, 566 p. ;c21 cm. ; pa. 0aScience fictionxIndexes. 0aWomen authors.10aWilliams, A. Susan. aLVLcNFk808.83 Li bLB2p37000000008371r9.41u7391u302501505 2200361 450000100060000000300040000600500170001000700100002700800410003703500160007803700440009409000150013809200140015324501670016726000680033430000550040250000330045750600310049051101060052152001680062752100130079553800150080865000220082365000190084570000330086470000270089770000290092470000290095373000530098274000420103594200230107795200430110057675LVL20000911164123.0vf cbahom941104p19861974cau094 g vleng d avid93001449 a60431bRCA/Columbia Pictures Home Video c1634d1634 aAV Little00aLittle house on the prairiecNBC Productions ; produced by Winston Miller ; written and directed by Michael Landon.h[videorecording] ,pThe Lord is my shepherd / aBurbank, CA :bRCA/Columbia Pictures Home Video,cp1986, c1974. a1 videocassette (94 min.) :bsd., col. ;c1/2 in.. aOriginally telecast in 1974. aFor private home use only.1 aMichael Landon, Patricia Neal, Karen Grassle, Melissa Gilbert, Melissa Sue Anderson, Ernest Borgnine. aFeature-length episode of the pioneer family. Laura runs away in guilt when her infant brother dies, and finds comfort with a hermit who helps bring her back home. aGeneral. aVHS Hi-fi. 0aChildren's films. 0aFeature films.11aLandon, Michael,d1936-1991.11aGrassle, Karen,d1944-11aGilbert, Melissa,d1964-11aBorgnine, Ernest,d1915-01aLittle House on the Prairie (Television program)01aLord is my shepherdh[videorecording] aLVLcAVkAV Little bLB2p31000000030295r26.97u7392u302600820 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009405000230010808200120013109000150014309200150015810000160017324500650018926000460025430000330030052000860033365000110041965000160043070000280044694200250047495200430049964694LVL20020117105156.0840523s1985 njua j 00010 eng a84008644 a0816701873 a 840086440 aQE432.2.bB35 19850 219a552 c1635d1635 aJNF 552 Ba10aBains, Rae.10aRocks and minerals /cRae Bains ; illustrated by R. Maccabe.0 aMahwah, N.J. :bTroll Associates,cc1985. a30 p. :bcol. ill. ;c22 cm. aDiscusses briefly the characteristics and uses of some common rocks and minerals. 1aRocks. 1aMineralogy.11aMaccabe, Richard,eill. aLVLcJNFkJNF 552 Ba bMAINp31000000035237r9.24u7393u302701041 2200337 450000100060000000300040000600500170001000800390002701000170006602000150008302000150009803500160011304000200012905000190014908200100016809000150017810000220019324500550021526000560027030000290032651000140035552001240036952100340049352100090052765000250053665000230056165000250058465000280060994200230063795200430066029600LVL19990320000000.0790316s1979 nyua j 00011 eng a79011730 /AC a0395289696 z0816432392 aflb00910000 aDLCcDLCdICrlF0 aPZ7.H70815bPr a[Fic] c1636d163610aHolland, Barbara.10aPrisoners at the kitchen table /cBarbara Holland.0 aNew York :bHoughton Mifflin/Clarion Books,cc1979. a122 p. :bill. ;c22 cm.0 aBooklist. aTwo friends, one confident and the other timid, find their positions reversed when they must plot to escape kidnappers.0 a4.7bFollett Library Book Co.2 a5-8. 1aKidnappingxFiction. 1aIdentityxFiction. 7aKidnappingxFiction. 7aIndividualityxFiction. aLVLcJFkJ Holland bMAINp32000000013720r5.03u7394u302800764 2200289 450000100060000000300040000600500170001000800390002701000190006602000160008502000210010103500200012204000130014205000200015508200100017509000150018510000180020024500570021826000310027530000280030650000200033465000240035465000140037865000160039294200220040895200440043043638LVL19990313000000.0770509s1977 nyua 001 0 eng a77008641 //r81 a0517531046. a0517531054bpbk. a 77008641 //r81 aDLCcDLC0 aTT825.bB7 1977 a746.9 c1637d16371 aBray, Bonita.00aAfghans :btraditional and modern /cby Bonita Bray. aNew York :bCrown,cc1977. a96 p. :bill. ;c29 cm. aIncludes index. 0aAfghans (Coverlets) 0aKnitting. 0aCrocheting. aLVLcNFk746.9 Br bMAINp32000000040725r10.00u7396u302900344 2200133 450000100060000000300040000600500170001000800410002709000150006810000350008324500230011894200250014195200440016650657LVL19990312000000.0930426s19xx xxu 00010 eng d c1638d1638 aTrollope, Anthony,d1815-1882.10aBarchester Towers. aLVLcAFkAF Trollope bMAINp32000000009863r10.00u7397u303000632 2200229 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200140011410000170012824500430014525000200018826000400020830000230024865000220027194200230029395200430031695200430035922582LVL19990327000000.0930608c19871971enk d 00011 eng d a0708964176 anpl93000231 c1639d1639 aLP Floren1 aFloren, Lee.10aShoot-out at milk river /cLee Floren. aLarge print ed. aLeicester :bLinford,c1987, c1971. a276 p. ;c19 cm.;. 0aLarge type books. aLVLcLPkLP Floren bMAINp32000000039999r6.95u7400u3031 bMAINp31000000043316r6.95u7401u303200334 2200133 450000100060000000300040000600500170001000800410002702000150006809000150008324500380009894200200013695200440015636620LVL19990320000000.0930419s19xx xxu 00010 eng d a013117391X c1640d164010aCaribbean Islands handbook: 1992. aLVLcNFk910 Ca bMAINp32000000029234r10.00u7403u303300950 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009403900180011004000200012805000250014808200160017309000150018910000170020424500310022126000320025230000210028452001880030552100170049394200220051095200430053295200430057595200420061843639LVL19990313000000.0830721s1983 nyu 00011 eng a83015958 a0399128409 aflb004706100 a2b3c3d3e3 aDLCcDLCdICrlF0 aPS3552.L843bS6 19830 219a813/.54 c1641d164110aBlume, Judy.10aSmart women /cJudy Blume.0 aNew York :bPutnam,cc1983. a316 p. ;c24 cm. aMargo and B.B., two divorcees, are friends, and each has a daughter, Sara and Michelle. The story concerns the reactions of these four women when Andrew, B.B.'s ex-husband, hits town.2 aYoung Adult. aLVLcAFkAF Blume bMAINp32000000001601r9.41u7404u3034 bMAINp31000000012576r9.41u7405u3035 bLB1p33000000001833r5.00u7406u303600896 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000210013724501320015826000510029050400410034165000650038265000650044765000410051265000230055394200230057695200430059964696LVL20010905161422.0900322c19911987nyu b 00110 eng a90007149 a0135474809 a 90007149 c1642d1642 a616.99 Do10aDodd, Marylin J.10aManaging side effects of chemotherapy and radiation therapy for cancer :ba guide for patients and families /cMarylin J. Dodd.0 aNew York :bPrentice Hall Press,c1991, c1987. aIncludes bibliographical references. 0aCancerxChemotherapyxComplications and sequelaexTreatment. 0aCancerxRadiotherapyxComplications and sequelaexTreatment. 0aAntineoplastic agentsxSide effects. 0aSelf-care, Health. aLVLcNFk616.99 Do bMAINp31000000036516r7.64u7407u303701065 2200337 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010810000210012324500120014424600200015625000210017626000540019730000280025144000370027965000130031665000280032980000380035794200270039595200440042295200440046695200430051095200430055395200440059695200440064095200430068450659LVL20010927095029.0930729s1994 enka j 00110 eng a93030158 a1564584674 a 93030158 c1643d164310aBiesty, Stephen.10aCastle. 0aCross-sections. a1st American ed.0 aLondon ;aNew York :bDorling Kindersley,cc1994. a27 p. :bill. ;c36 cm. 0aStephen Biesty's cross sections. 1aCastles. 1aCivilization, Medieval.10aBiesty, Stephen.tCross-sections. aLVLcJNFkJNF 940.1 Bi bMAINp32000000059428r16.95u7408u3038 bMAINp32000000092661r16.95u7409u3039 bLB2p34000000015578r10.00u7410u3040 bLB2p34000000008317r16.95u7411u3041 bMAINp31000000070531r10.00u7412u3042 bMAINp31000000095815r16.95u7413u3043 bLB1p33000000028497r10.00u7415u304400325 2200133 450000100060000000300040000600500170001000800410002709000150006810000200008324500210010394200240012495200430014857679LVL19990220000000.0950324s19uu 000 0 eng d c1644d1644 aStanley, Chuck.10aBorder buckaroo. aLVLcWESkW Stanley bMAINp31000000030745r1.65u7417u304501004 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000180014024501130015826000390027130000390031050000680034950000200041765000270043765000470046465000240051165000140053570000230054970000640057294200220063695200440065864698LVL20010804191749.0830411s1983 nyua 00110 eng a83007104 a0668058927 a 83007104 c1645d1645 aREF 741.6 Ub1 aUbinas, Dave.10aClip-art book of cartoon-style illustrations /ccartoon illustrations, Dave Ubinas ; text, Esther Langholtz. aNew York :bArco Pub. Co.,cc1983. a315 p. :bchiefly ill. ;c28 cm.;. aRev. ed. of: Pick-up book of cartoon-style illustrations. 1979. aIncludes index. 0aCartooningxTechnique. 0aCaricatures and cartoonsxThemes, motives. 0aArtists' materials. 0aClip art.10aLangholtz, Esther.11aUbinas, Dave.tPick-up book of cartoon-style illustrations. aLVLcNFk741.6 Ub bMAINp31000000046708r14.95u7418u304600909 2200289 450000100060000000300040000600500170001000800390002701000130006602000250007903500160010403900180012004000200013805000280015808200160018609000150020210000330021724500410025025000120029126000530030330000210035651000140037752001430039152100170053494200250055195200430057622585LVL20020809123721.0820326s1982 nyu 00001 eng a82047667 a0151181713 :c$13.95 aflb011239030 a2b3c3d3e3 aDLCcDLCdICrlF0 aPS3525.A24573bC56 19820 219a813/.54 c1646d164610aMacInnes, Helen,d1907-1985.10aCloak of darkness /cHelen MacInnes. a1st ed.0 aNew York :bHarcourt, Brace, Jovanovich,cc1982. a342 p. ;c22 cm.0 aBooklist. aBob Renwick, founder of a counterterrorist agency called Interintell, learns his name is 3rd on the hit list of a terrorist support group.2 aYoung Adult. aLVLcAFkAF MacInnes bMAINp32000000017899r8.37u7419u304700705 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000270013524500480016225000200021026000460023030000210027665000220029765000230031994200210034295200440036395200440040750661LVL19990312000000.0940616r19941993meu d 00011 eng a94028132 a0786203129 a 94028132 c1647d1647 aLP Bean1 aBean, Frederic,d1944-10aGunfight at Eagle Springs /cFrederic Bean. aLarge print ed. aThorndike, Me. :bThorndike Press,c1994. a269 p. ;c23 cm. 0aLarge type books. 0aSheriffsxFiction. aLVLcLPkLP Bean bMAINp32000000054793r14.21u7421u3048 bMAINp31000000052456r14.21u7422u304901315 2200385 450000100060000000300040000600500170001000800390002701000210006602000150008703500160010204000200011805000190013808200100015709000150016710000190018224500430020126000400024430000210028451000320030551000480033751000520038552001520043752100340058952100090062365000350063265000220066765000350068965000220072465000360074665100530078270000340083594200230086995200370089222586LVL19990327000000.0761104s1977 pau j 00011 eng a76054303 /AC/r82 a0397317220 aflb00839402 aDLCcDLCdICrlF0 aPZ7.C57926bTr a[Fic] c1648d164810aCleaver, Vera.10aTrial Valley /cVera and Bill Cleaver.0 aPhiladelphia :bLippincott,cc1977. a158 p. ;c21 cm.0 aChildren's Catalog (Wilson)0 aJunior High School Library Catalog (Wilson)0 aElementary School Library Collection (Bro-Dart) aThe three Luther children, who have raised themselves since their father died, find an abandoned boy near their house in the Great Smoky Mountains.0 a6.3bFollett Library Book Co.2 a5-8. 1aBrothers and sistersxFiction. 1aOrphansxFiction. 7aBrothers and sistersxFiction. 7aOrphansxFiction. 7aGreat Smoky MountainsxFiction. 1aGreat Smoky Mountains (N.C. and Tenn.)xFiction.10aCleaver, Bill,ejoint author. aLVLcJFkJ Cleaver bMAINp31000000004476u7424u305001122 2200337 450000100060000000300040000600500170001000800390002701000190006602000250008503500160011004000250012605000240015108200220017509000150019710000180021224500410023026000460027130000550031750000200037250400320039251000480042451000230047251000140049552001450050952100170065465000230067165000230069494200230071795200440074036624LVL20021011101813.0821216s1983 mauaf b 001 0 eng a82023332 //r90 a0395282179 :c$19.95 aflb01080201 aDLCcDLCdDLCdICrlF00aQL737.P96bF67 198300219a599.88/460451 c1649d16491 aFossey, Dian.10aGorillas in the mist /cDian Fossey. aBoston, Mass. :bHoughton Mifflin,c1983. axviii, 326 p., [80] p. of plates :bill. ;c24 cm. aIncludes index. aBibliography: p. [287]-311.0 aSenior High School Library Catalog (Wilson)0 aALA Notable Books.0 aBooklist. aContains case studies over a period of fifteen years of four gorilla families living in the rain forests of the Virunga mountains of Rwanda.2 aYoung Adult. 0aGorillaxBehavior. 0aMammalsxBehavior. aLVLcNFk599.88 Fo bMAINp32000000030441r10.00u7425u305100878 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000190013624500410015526000400019630000510023649000340028750000200032150400250034165000260036694200260039295200430041895200420046195200430050395200420054643643LVL19990313000000.0860310s1986 nyuab b 00110 eng a86050273 a0531102343 a 86050273 c1650d1650 a940.3 Pi10aPimlott, John.14aThe First World War /cJohn Pimlott.0 aNew York :bFranklin Watts,cc1986. a62 p. :bill. (some col.), col. maps ;c29 cm.1 aConflict in the 20th century. aIncludes index. aBibliography: p. 62. 0aWorld War, 1914-1918. aLVLcNFkJNF 940.3 Pi bMAINp32000000032814r4.95u7426u3052 bLB2p34000000002495r4.95u7427u3053 bMAINp31000000038431r4.95u7428u3054 bLB1p33000000012005r4.95u7429u305501167 2200313 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200190011210000290013124500750016026000380023530000290027344000240030252001790032665000330050565000220053865000200056070000280058080000480060894200260065695200430068295200420072595200440076795200420081150662LVL19990312000000.0940606s1994 nyua j 00011 eng a067996665X anpl95001006 c1651d1651 aJ Beren- stain10aBerenstain, Stan,d1923-14aThe Berenstain bears and the dress code /cby Stan and Jan Berenstain.0 aNew York :bRandom House,cc1994. a103 p. :bill. ;c20 cm. 2aA big chapter book. aEven though they are not into rad fashions, Brother Bear and Sister Bear join the other cubs' protest when Mr. Grizzmeyer enforces a strict dress code at Bear Country School. 1aClothing and dressxFiction. 1aSchoolsxFiction. 1aBearsxFiction.10aBerenstain, Jan,d1923-10aBerenstain, Stan,d1923-tBig chapter book. aLVLcJFkJ Berenstain bMAINp32000000058737r9.89u7430u3056 bLB2p34000000006526r9.89u7431u3057 bMAINp31000000055157r10.95u7432u3058 bLB1p33000000023168r9.89u7433u305900676 2200241 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200160011410000230013024500400015325000200019326000410021330000210025444000270027565000220030294200250032495200420034995200430039122587LVL20030626090611.0940319c19901991enk d 00011 eng d a0862204305 anpl94000049 c1652d1652 aLP Stirling10aStirling, Jessica.14aThe wise child /cJessica Stirling. aLarge print ed.0 aBath :bChivers Press,c1991, c1990. a432 p. ;c25 cm. 4aThe Windsor selection. 0aLarge type books. aLVLcLPkLP Stirling bLB2p34000000002727r4.95u7434u3060 bMAINp31000000047254r4.95u7435u306100701 2200229 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200130011410000210012724500760014826000500022430000280027465000200030294200220032295200430034495200420038795200420042929606LVL20030401134047.0920508s1990 caua 00110 eng d a0811801683 aonv90002510 c1653d1653 a641.5 Sl10aSluiters, Karen.12aA little dutch cookbook /cKaren Sluiters; illustrated by Ditte Kummer.0 aSan Francisco, CA :bChronicle Books,cc1990. a60 p. :bill. ;c16 cm. 0aCookery, Dutch. aLVLcNFk641.5 Sl bMAINp32000000033373r4.10u7436u3062 bLB2p34000000001943r4.10u7437u3063 bLB1p33000000012568r4.10u7438u306400733 2200265 450000100060000000300040000600500170001000800390002701000190006602000150008503500200010004000130012005000210013308200150015409000150016910000270018424500220021126000520023330000390028535000120032450400270033660000350036394200250039895200440042336625LVL19990320000000.0730330s1973 nyua b 001 0beng a73005691 //r87 a0823038971 a 73005691 //r87 aDLCcDLC0 aNC975.5.P37bL82 a741/.092/4 c1654d16541 aLudwig, Coy L.,d1939-00aMaxfield Parrish. a[New York,bWatson-Guptill Publicationsc[1973] a223 p.billus. (part col.)c32 cm. a$25.00. aBibliography: p. [220]10aParrish, Maxfield,d1870-1966. aLVLcNFk741.092 LUD bMAINp32000000000501r12.95u7439u306501172 2200361 450000100060000000300040000600500170001000800390002701000170006602000250008303500180010804000180012605000210014408200180016509000150018310000210019824500610021926000430028026300100032330000110033344000210034450400510036552001170041665000430053365000430057665000360061965000220065565000150067765000220069270000230071494200290073795200440076643644LVL19990313000000.0900815s1991 nyu j b 001 0 eng a90046572 /AC a185435275X :c$13.95 a 90046572 /AC aDLCcDLCdDLC00aTD422.bL44 199100220a363.73/92 c1655d1655 aLeggett, Dennis.10aTroubled waters /cby Dennis Leggett and Jeremy Leggett. aNew York :bM. Cavendish Corp.,c1991. a9102. ap. cm. 0aOperation Earth. aIncludes bibliographical references and index. aExamines the ways in which humanity is poisoning the waters of our planet and how this pollution can be stopped. 0aMarine pollutionxJuvenile literature. 0aWaterxPollutionxJuvenile literature. 0aWaterwaysxJuvenile literature. 1aMarine pollution. 1aPollution. 1aWaterxPollution. 0aLeggett, Jeremy K. aLVLcJNFkJNF 363.73 LEG bMAINp32000000030390r13.50u7440u306600798 2200253 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200140011410000200012824500810014826000380022930000360026744000220030370000250032594200230035095200430037395200430041695200430045995200420050250663LVL20030627144311.0960130r1991 nyua j 00011 eng d a0671727109 anpl96000283 c1656d1656 aJ Coville10aCoville, Bruce.10aMy teacher fried my brains /cby Bruce Coville; illustrated by John Pierard.0 aNew York :bPocket Books,cc1991. a136 p. :bill. ;c19 cm. ;dpa. 0aMy teacher books.11aPierard, John,eill. aLVLcJFkJ Coville bMAINp32000000062578r2.39u7441u3067 bMAINp32000000137926r3.99u7442u3068 bMAINp31000000058321r2.39u7443u3069 bLB1p33000000024628r2.39u7444u307001453 2200445 450000100060000000300040000600500170001000800390002701000170006602000250008303500160010804000250012405000220014908200140017109000150018510000250020024500340022525000120025926000400027130000210031151000100033251000140034251000300035652001580038652100340054452100090057865000280058765000190061565000240063465000280065865000190068665000240070594200240072995200420075395200430079595200420083895200420088095200430092295200420096522588LVL19990604000000.0900629s1991 nyu j 000 1 eng a90042944 /AC a0525673385 :c$14.95 aflb02081701 aDLCcDLCdDLCdICrlF00aPZ7.P273bLy 199100220a[Fic] c1657d16571 aPaterson, Katherine.10aLyddie /cKatherine Paterson. a1st ed. aNew York :bLodestar Books,cc1991. a182 p. ;c22 cm. aSLJ*.0 aBooklist.0 aVoice of Youth Advocates. aImpoverished Vermont farm girl Lyddie Worthen is determined to gain her independence by becoming a factory worker in Lowell, Massachusetts, in the 1840s.0 a6.5bFollett Library Book Co.2 a5-8. 1aSelf-reliancexFiction. 1aWorkxFiction. 1aFactoriesxFiction. 7aSelf-reliancexFiction. 7aWorkxFiction. 7aFactoriesxFiction. aLVLcJFkJ Paterson bLB2p37000000002589r8.82u7445u3071 bMAINp32000000029950r8.82u7446u3072 bLB1p36000000001868r8.82u7447u3073 bLB2p34000000007403r8.82u7448u3074 bMAINp31000000034201r8.82u7449u3075 bLB1p33000000006390r8.82u7450u307600630 2200229 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200120011210000180012424500530014225000180019526000310021330000280024444000220027294200210029495200430031595200420035843645LVL20000911041034.0820401s1982 nyub 00011 eng a051754489x aonv90003276 c1658d1658 aAF Auel10aAuel, Jean M.14aThe valley of horses :ba novel /cJean M. Auel. aBook club ed.0 aNew York :bCrown,cc1982. a502 p. :bmap ;c22 cm. 0aEarth's children. aLVLcAFkAF Auel bLB1p36000000001107r10.00u7451u3077 bLB2p34000000002780r9.57u7452u307800998 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200160012310000530013924500790019225000120027126000380028330000290032165000480035065000460039865000430044465000230048765100300051094200250054095200440056595200430060995200440065250664LVL20030106133317.0940309s1995 nyua 00011 eng a94010187 a0679418229 a 94010187 c1659d1659 aAF Michener10aMichener, James A.,d1907-1997.q(James Albert),10aMiracle in Seville /cby James A. Michener ; illustrations by John Fulton. a1st ed.0 aNew York :bRandom House,cc1995. a107 p. :bill. ;c24 cm. 0aAmericansxTravelxFiction.zSpainzSeville 0aBullsxBreedingxFiction.zSpainzSeville 0aBullfightersxFiction.zSpainzSeville 0aMiraclesxFiction. 0aSeville (Spain)xFiction. aLVLcAFkAF Michener bMAINp32000000060143r13.28u7453u3079 bLB2p34000000009916r13.28u7454u3080 bMAINp31000000056758r13.28u7455u308100837 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000180013424500490015225000230020126000630022430000330028744000290032052000840034965000190043365000190045265000220047194200220049395200440051564702LVL19990217000000.0961005s1992 wiua j 00011 eng a91050554 a0836807634 a 91050554 c1660d1660 aE Dodd10aDodd, Lynley.10aHairy Maclary's showbusiness /cLynley Dodd. aNorth American ed.0 aMilwaukee, Wis. :bGareth Stevens Children's Books,c1992. a31 p. :bcol. ill. ;c18 cm. 0aGold star first readers. aFur rises and havoc ensues when Hairy Maclary the dog intrudes upon a cat show. 1aDogsxFiction. 1aCatsxFiction. 1aStories in rhyme. aLVLcEASYkE Dodd bMAINp31000000062010r12.94u7456u308201150 2200325 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000210013824500350015925000300019426000460022430000300027052001560030065000230045665000220047994200260050195200420052795200430056995200420061295200430065495200420069795200430073995200420078250665LVL20000328000000.0950509s1996 maua j 00011 eng a95019913 a156402816X a 95019913 c1661d1661 aE Vulliamy10aVulliamy, Clara.10aWide awake! /cClara Vulliamy. aBoard book.a1st U.S. ed.0 aCambridge, MA :bCandlewick Press,c1996. a[14] p. :bill. ;c17 cm. aA toddler wakes up and starts his day by rousing Mom and Dad from sleep, chatting away while getting dressed, and making a mess at the breakfast table. 1aToddlersxFiction. 1aStories in rhyme. aLVLcEASYkE Vulliamy bLB2p37000000009544r2.89u7457u3083 bMAINp32000000065279r2.89u7458u3084 bLB1p36000000004162r2.89u7459u3085 bMAINp35000000001945r2.89u7460u3086 bLB2p34000000013971r2.89u7461u3087 bMAINp31000000060474r2.89u7462u3088 bLB1p33000000026020r2.89u7463u308901161 2200397 450000100060000000300040000600500170001000800390002701000170006602000150008302000150009803500160011304000250012905000200015408200180017409000150019210000180020724500440022526000540026926300100032330000350033351000140036851000200038252000790040252100340048152100090051565000310052465000380055565000100059365000170060365000100062065000170063094200290064795200430067695200440071922590LVL19990327000000.0900510c19911990nyu j 000 0 eng a90006283 /AC a0688098797 a0688098789 aflb01977503 aDLCcDLCdDLCdICrlF00aQL76.bO76 199100220a590/.74/4 c1662d16621 aOrmerod, Jan.10aWhen we went to the zoo /cJan Ormerod. aNew York :bLothrop, Lee & Shepard,c1991, c1990. a9105. a(36) p. :bcol. ill. ;c27 cm.0 aBooklist.0 aKirkus Reviews. aTouring the zoo, two children pet, ride, and observe a variety of animals.0 a2.5bFollett Library Book Co.2 aK-3. 0aZoosxJuvenile literature. 0aZoo animalsxJuvenile literature. 1aZoos. 1aZoo animals. 7aZoos. 7aZoo animals. aLVLcJNFkJNF 590.74 ORM bMAINp32000000029993r8.23u7464u3090 bMAINp32000000030700r12.49u7466u309100728 2200229 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200150011210000310012724500640015826000410022230000280026350000320029161000540032365000530037794200250043095200430045529609LVL19990320000000.0950110r19941991nyu 00011 eng a037326156X anpl96000079 c1663d1663 aM McInerny10aMcInerny, Ralph M.,d1929-10aJudas Priest :ba Father Dowling mystery /cRalph McInerny.0 aNew York :bWorldwide,c1994, c1991. a253 p. ;c18 cm. ;dpa. a"A Father Dowling mystery."20aCatholic ChurchxClergyxFiction.zUnited States. 0aDowling, Father (Fictitious character)xFiction. aLVLcMYSkM McInerny bMAINp32000000062064r3.99u7467u309200631 2200217 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200150011410000180012924500920014726000360023930000350027565000120031070000230032294200250034595200430037050666LVL19990312000000.0960821s1983 nyua j 00010 eng d a0590435221 anpl96001669 c1664d1664 aJNF 796 We10aWeber, Bruce.10aMore weird moments in sports /cby Bruce Weber; designed and illustrated by Howie Katz.0 aNew York :bScholastic,cc1983. a91 p. :bill. ;c18 cm. ;dpa. 1aSports.11aKatz, Howie,eill. aLVLcJNFkJNF 796 We bMAINp32000000066472r2.95u7468u309300365 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000380009624500200013494200220015495200430017657685LVL19990220000000.0950324s19uu 000 0 eng d a54011467 c1665d16651 aBragg, W. F.q(William Frederick)10aStampede Jones. aLVLcAFkAF Bragg bMAINp31000000034754r5.40u7469u309401355 2200373 450000100060000000300040000600500170001000800390002701000170006602000220008302000150010503500160012004000200013605000150015608200120017109000150018310000200019824501510021826000370036930000290040649000310043551000320046651000140049851000280051252002090054052100340074952100090078365000570079265000210084965000210087070000220089194200250091395200430093864704LVL19990217000000.0800825s1981 maua j 00010 eng a80021556 /AC a0316745774 (pbk.) a0316745766 aflb00923806 aDLCcDLCdICrlF0 aQH53.bR530 219a574 c1666d166610aRights, Mollie.10aBeastly neighbors :ball about wild things in the city, or why earwigs make good mothers /cwritten by Mollie Rights ; illustrations by Kim Solga.0 aBoston :bLittle, Brown,cc1981. a125 p. :bill. ;c26 cm.0 aA Brown paper school book.0 aChildren's Catalog (Wilson)0 aBooklist.0 aSchool Library Journal. aDescribes some of the animals that live in the soil, under leaves, bricks, or boards, and around the roots of plants and suggests ways the reader may study their characteristics and behavior more closely.0 a5.5bFollett Library Book Co.2 a5-8. 0aNatural historyxOutdoor booksxJuvenile literature. 1aNatural history. 7aNatural history.11aSolga, Kim,eill. aLVLcJNFkJNF 574 Ri bMAINp35000000002168r1.50u7470u309501039 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200200012310000160014324501230015926000390028230000290032150000220035050000200037252001650039265000230055765100760058070000350065694200270069195200430071829610LVL19990320000000.0750213s1975 nyua j 00110 eng a75004894 a0395289238 a 75004894 c1667d1667 aJNF 641.5973 Pe1 aPerl, Lila.10aSlumps, grunts, and snickerdoodles :bwhat Colonial America ate and why /cby Lila Perl ; drawings by Richard Cuffari. aNew York :bClarion Books,cc1975. a125 p. :bill. ;c24 cm. a"A Clarion book." aIncludes index. aExamines the diets and culinary innovations of the American colonists and gives thirteen colonial recipes, including succotash, snickerdoodles, and spoon bread. 1aCookery, American. 1aUnited StatesxSocial life and customsyColonial period, ca. 1600-1775.11aCuffari, Richard,d1925-eill. aLVLcJNFkJNF 641.5973 bMAINp32000000035656r8.60u7471u309600299 2200121 450000100060000000300040000600500170001000800410002709000150006824500350008394200160011895200430013436629LVL19990419000000.0940910s19xx xxu 00010 eng d c1668d166810aNational Geographic 1994 Sept. aLVLcPERkA bMAINp32000000050109r2.00u7472u309700356 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000200009624500250011694200250014195200440016650667LVL19990312000000.0940516s19xx xxu 00010 eng d a81047581 c1669d16691 aMatthews, Jack.10aDubious persuasions. aLVLcAFkAF Matthews bMAINp32000000006123r10.00u7473u309800761 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000230014024500500016326000360021330000210024952001680027065000260043894200240046495200430048829611LVL19990320000000.0890214s1989 nyu j 00011 eng a89005918 a0590417266 a 89005918 c1670d1670 aJ Robin- son1 aRobinson, Nancy K.10aAngela, private citizen /cNancy K. Robinson. aNew York :bScholastic,cc1989. a146 p. ;c22 cm. aSix-year-old Angela's faith in order and fairness is frequently shaken as she tries to cope with all the mysteries of life that keep turning up in her busy family. 1aFamily lifexFiction. aLVLcJFkJ Robinson bMAINp32000000036737r6.52u7474u309900362 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000210009624500310011794200250014895200430017357687LVL19990220000000.0950324s19uu 000 0 eng d a55010010 c1671d1671 aCrockett, David.10aDavy Crockett's own story. aLVLcBIOkB Crockett bMAINp31000000021308r2.18u7476u310000820 2200265 450000100060000000300040000600500170001000800390002701000130006602000390007903900180011804000130013605000230014908200140017209000150018610000230020124501160022426000410034030000330038150000200041450400300043465000240046494200220048895200440051064706LVL20020911074348.0841030s1985 paua b 00110 eng a84024920 a0878575308 :c$19.95 ($23.95 Can.)0 a2b3c3d3e3 aDLCcDLC0 aSB453.6.bC37 19850 219a635.9 c1672d167210aCarr, Anna,d1955-10aGood neighbors :bcompanion planting for gardeners /cAnna Carr ; [illustrations by Pamela and Walter Carroll].0 aEmmaus, Pa. :bRodale Press,cc1985. aiv, 379 p. :bill. ;c22 cm. aIncludes index. aBibliography: p. 358-368. 0aCompanion planting. aLVLcNFk635.9 Ca bMAINp31000000024600r11.77u7477u310100592 2200205 450000100060000000300040000600500170001000800390002701000130006603500140007909000150009309200130010810000180012124500640013926000420020330000370024550000390028294200220032195200430034322593LVL19990327000000.0770920r19411941nyua j 00011 eng a41022370 a 41022370 c1673d1673 aJ Seredy1 aSeredy, Kate.12aA tree for Peter /cwritten and illustrated by Kate Seredy. aNew York :bThe Viking Press,cc1941. a4 p.l., 102 p. :bill. ;c25 cm. a"First published in October 1941." aLVLcJFkJ Seredy bMAINp32000000050065r4.95u7478u310200849 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007902000150009403500140010904000130012305000160013608200120015209000150016409200140017910000200019324500560021326000490026930000330031830000370035135000120038865000260040094200230042695200370044995200610048643650LVL20020903120240.0711024s1971 nyua 00010 eng a71143947 a0684163209 a0684123312 a 71143947 aDLCcDLC0 aTT825.bB54 a746.4/3 c1674d1674 a746.43 Bl1 aBlackwell, Liz.12aA treasury of crochet patterns /cby Liz Blackwell. aNew York :bCharles Scribner's Sons,cc1971. aviii, 213 p.billus.c27 cm. aviii, 213 p. :bill. ;c24 cm.;. a$12.50. 0aCrochetingxPatterns. aLVLcNFk746.43 Bl bMAINp32000000011619u7479u3103 bMAINdMAINp32000000037094r6.69u7480u3104v2003-09-0100825 2200253 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200140012510000170013924501190015626000430027530000360031850400470035465000410040170000180044294200230046095200440048395200440052722594LVL19990327000000.0950914s1993 pauab be 00110 eng d a93070594 a1561382310 a 93070594 c1675d1675 a292.03 Fl10aFlaum, Eric.14aThe encylopedia of mythology :bgods, heroes, and legends of the Greeks and Romans /cEric Flaum with David Pandy.0 aPhiladelphia :bCourage Books,cc1993. a176 p. :bill. ; maps ;c32 cm. aIncludes bibliography: p. (172) and index. 0aMythology, ClassicalxEncyclopedias.10aPandy, David. aLVLcNFk292.03 Fl bMAINp32000000059424r24.99u7481u3105 bMAINp31000000055983r24.99u7482u310600999 2200265 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200170012510000210014224501350016326000520029830000330035050501630038365000300054665000230057670000390059970000240063894200270066295200440068929613LVL19990320000000.0930312s1987 caua j 00010 eng d a86033622 a0152413529 a 86033622 c1676d1676 aJNF 398.2 Pa1 aParks, Van Dyke.10aJump again! :bmore adventures of Brer Rabbit /cby Joel Chandler Harris ; adapted by Van Dyke Parks ; illustrated by Barry Moser. aSan Diego :bHarcourt Brace Jovanovich,cc1987. avii, 39 p. :bill. ;c29 cm.0 aBrer Rabbit, he's a good fisherman -- The wonderful tar-baby story -- How Brer Weasel was caught -- Brer Rabbit and the mosquitoes -- Brer Rabbit's courtship. 1aFolklore, Afro-Americans. 1aAnimalsxFolklore.10aHarris, Joel Chandler,d1848-1908.11aMoser, Barry,eill. aLVLcJNFkJNF 398.2 Pa bMAINp32000000037865r15.26u7483u310701334 2200397 450000100060000000300040000600500170001000800390002701000220006602000260008802000160011403500160013004000200014604100110016605000180017708200100019509000150020510000220022024000520024224501600029425000120045426000340046630000290050050000570052951000140058652001230060052100340072352100090075765000240076665000190079065000240080965000190083370000190085294200230087195200420089436632LVL20000817000000.0780403s1978 nyua j 00011 eng a78006817 /AC/r872 a068832164Xblib. bdg. a0688221645. aflb00433804 aDLCcDLCdICrlF1 aengger0 aPZ7.R3255bSi a[Fic] c1677d167710aRettich, Margret.10aWirklich wahre Weihnachtsgeschichten.lEnglish.14aThe silver touch and other family Christmas stories /cMargret Rettich ; illustrated by Rolf Rettich ; translation from the Germanby Elizabeth D. Crawford. a1st ed.0 aNew York :bW. Morrow,c1978. a191 p. :bill. ;c21 cm. aTranslation of Wirklich wahre Weihnachtsgeschichten.0 aBooklist. aA collection of twenty-three stories relating humorous incidents that really can happen during the Christmas holidays.0 a5.5bFollett Library Book Co.2 a3-6. 1aChristmasxFiction. 1aShort stories. 7aChristmasxFiction. 7aShort stories.10aRettich, Rolf. aLVLcJFkJ Rettich bLB2p37000000012344r2.17u7484u310801273 2200361 450000100060000000300040000600500170001000800390002701000170006602000310008303500160011404000200013005000230015008200120017309000150018510000190020024501320021926000380035130000430038944000220043250000490045452001350050352100090063865000260064765000190067365000260069265000190071870000170073770000570075474000340081194200230084595200430086843651LVL19990313000000.0860205s1986 nyua j 000 1 eng a86080291 /AC a0448190788 (pbk.) :c$1.95 aflb00753807 aDLCcDLCdICrlF0 aPZ7.R325bEas 19860 219a[E] c1678d16781 aRetan, Walter.14aThe easy-to-read little engine that could /cby Watty Piper ; adapted for young readers by Walter Retan ; illustrated by Mateu. aNew York :bPlatt & Munk,cc1986. a[32] p. :bchiefly col. ill. ;c21 cm. 0aAll aboard books. aAdaptation of: The little engine that could. aWhen the other engines refuse, the Little Blue Engine tries to pull a stranded train full of toys and good food over the mountain.2 aK-3. 1aLocomotivesxFiction. 1aToysxFiction. 7aLocomotivesxFiction. 7aToysxFiction.01aMateu,eill.11aPiper, Watty,cpseud.tThe little engine that could.41aThe little engine that could. aLVLcEASYkE Piper bMAINp32000000025482r9.89u7485u310900339 2200133 450000100060000000300040000600500170001000800410002709000150006810000260008324500320010994200270014195200370016850670LVL20020918091931.0930419s19xx xxu 00010 eng d c1679d1679 aDe Dillmont, Therese.10aEncyclopedia of needlework. aLVLcREFkREF 746.4 De bMAINp32000000017463u7486u311000992 2200289 450000100060000000300040000600500170001000800390002701000130006602000240007903500160010304000200011905000300013908200130016909000150018210000270019724500300022426000440025430000210029850000430031951000280036252002090039052100170059965000210061694200220063795200430065922595LVL19990327000000.0770705s1977 nyu 00011 eng a76010561 a0312317808 :c$8.95 aflb00576804 aDLCcDLCdICrlF0 aPZ4.P748aPS3566.O36bGat a813/.5/4 c1680d1680 0aPohl, Frederik,d1919-10aGateway /cFrederik Pohl.0 aNew York :bSt. Martin's Press,cc1977. a313 p. ;c22 cm. aSequel: Beyond the blue event horizon.0 aSchool Library Journal. aThe inhabitants of a future world find almost a thousand abandoned starships programmed for travel to distant parts of the universe, but the destination is unknown and can lead to immense wealth or death.2 aYoung Adult. 0aScience fiction. aLVLcSCIkSF Pohl bMAINp32000000004407r6.00u7487u311100621 2200217 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200180012510000360014324500770017925000120025626000440026830000210031294200260033395200440035929614LVL20010814192801.0930616s1993 nyu 00011 eng d a93007434 a0312092679 a 93007434 c1681d1681 aM Roose- velt10aRoosevelt, Elliott,d1910-1990.10aNew deal for death :ba "Blackjack" Endicott novel /cElliott Roosevelt. a1st ed.0 aNew York :bSt. Martin's Press,cc1993. a251 p. ;c22 cm. aLVLcMYSkM Roosevelt bMAINp32000000048695r11.18u7488u311200791 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012324500480013626000630018430000450024750400640029265000600035671000240041694200220044095200440046295200430050636633LVL19990320000000.0910307s1992 nyuab b 00100 eng a91008873 a0895773929 a 91008873 c1682d1682 a270.1 Af00aAfter Jesus :bthe triumph of Christianity.0 aPlesantville, N.Y. :bReader's Digest Association,cc1992. a352 p. :bcol. ill., maps ;c22 x 26 cm. aIncludes bibliographical references (p. 333-337) and index. 0aChurch historyyPrimitive and early church, ca. 30-600.20aReader's Digest NY. aLVLcNFk270.1 Af bMAINp31000000042374r17.70u7491u3113 bLB1p33000000015102r17.70u7492u311400307 2200133 450000100060000000300040000600500170001000800410002709000150006810000150008324500140009894200240011295200370013657690LVL19990220000000.0950324s19uu 000 0 eng d c1683d1683 aMankowitz.10aWedgwood. aLVLcNFk738.37 MAN bMAINp31000000023268u7493u311501199 2200337 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000170013524500650015226000400021730000290025752001670028665000200045365000240047365000260049770000270052394200210055095200420057195200430061395200360065695200420069295200420073495200430077695200420081922596LVL20000926125144.0910827s1992 maua j 00011 eng a91031016 a0395615887 a 91031016 c1684d1684 aJ Lowry10aLowry, Lois.10aAttaboy, Sam! /cLois Lowry ; illustrated by Diane de Groat.0 aBoston :bHoughton Mifflin,cc1992. a116 p. :bill. ;c22 cm. aSam is able to help his sister Anastasia with the poem she is writing for their mother's birthday, but his own efforts to create a special perfume are disastrous. 1aGiftsxFiction. 1aBirthdaysxFiction. 1aFamily lifexFiction.11aDe Groat, Diane,eill. aLVLcJFkJ Lowry bLB2p37000000013241r3.50u7494u3116 bMAINp32000000033205r8.00u7495u3117 bLB1p36000000002415u7497u3118 bLB2p34000000007350r8.00u7498u3119 bLB2p34000000007353r2.03u7499u3120 bMAINp31000000038975r8.00u7500u3121 bLB1p33000000012409r8.00u7501u312201647 2200457 450000100060000000300040000600500170001000800390002701000220006602000260008802000160011403500160013004000200014605000190016608200160018509000150020110000200021624500790023625000120031526000470032730000350037451000520040951000280046152001200048952100340060952100090064360000650065260000560071760000320077360000340080563000490083965000560088865000240094465000330096865000310100165000190103270000250105194200270107695200430110395200430114636634LVL20020916091322.0780817s1978 nyua j 00010ceng a77090367 /AC/r864 a0688518303blib. bdg. a0688418309. aflb00796702 aDLCcDLCdICrlF0 aBS580.I67bC63 a221.9/24aB c1685d168510aCohen, Barbara.14aThe binding of Isaac /cBarbara Cohen ; illustrated by Charles Mikolaycak. a1st ed.0 aNew York :bLothrop Lee & Shepard,cc1978. a[32] p. :bcol. ill. ;c22 cm.0 aElementary School Library Collection (Bro-Dart)0 aSchool Library Journal. aAn aged Isaac recounts to his grandchildren the story of how God tested Abraham by asking him to sacrifice his son.0 a3.1bFollett Library Book Co.2 aK-3.00aIsaacc(Biblical patriarch)xSacrificexJuvenile literature.00aAbrahamc(Biblical patriarch)xJuvenile literature.01aIsaacc(Biblical patriarch)01aAbrahamc(Biblical patriarch)00aBible.pO.TxBiographyxJuvenile literature. 0aPatriarchs (Bible)xBiographyxJuvenile literature. 1aBible storiesxO.T. 7aAbraham (Biblical patriarch) 7aIsaac (Biblical patriarch) 7aBible stories.10aMikolaycak, Charles. aLVLcJNFkJNF 221.9 Co bMAINp32000000031403r2.25u7502u3123 bMAINp32000000040744r6.95u7503u312400645 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000230013824500380016126000420019930000210024150000960026294200250035895200440038322597LVL19990327000000.0910927s1992 nyu 000 1 eng a91050844 a0892964928 a 91050844 c1686d1686 aM Freeling10aFreeling, Nicolas.10aFlanders sky /cNicolas Freeling.0 aNew York :bMysterious Press,cc1992. a207 p. ;c22 cm. a"First published in Great Britain in 1992 under the title The pretty how town"--T.p. verso. aLVLcMYSkM Freeling bMAINp32000000034496r11.18u7505u312501163 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000220013724500580015926000370021730000360025444000250029050000370031550001210035252001180047365000340059170000230062594200250064895200440067395200470071795200420076495200430080629616LVL20020418142918.0930112r19931990nyua j 00011 eng a93006553 a0140365532 a 93006553 c1687d1687 aE Ziefert10aZiefert, Harriet.10aStitches /cHarriet Ziefert ; pictures by Amy Aitken.0 aNew York :bPuffin Books,c1993. a[32] p. :bill. ;c23 cm. ; pa. 0aPuffin easy-to-read. a"Reading level 1.6"--T.p. verso. a"First published in the United States of America by Viking, a division of Penguin Books USA Inc., 1990"--T.p. verso. aJon falls off of his bicycle but is less than enthusiastic about receiving treatment for the cut on his forehead. 1aWounds and injuriesxFiction.11aAitken, Amy,eill. aLVLcEASYkE Ziefert bMAINp32000000047534r12.99u7507u3126 bLB1dLB1p36000000006189r1.89u7508u3127 bLB1p33000000016021r1.89u7509u3128 bLB1p33000000019195r12.99u7510u312901144 2200337 450000100060000000300040000600500170001000800390002701000170006602000350008303500160011805000180013408200100015209000150016210000220017724500780019926000490027730000400032650000200036651000520038651000140043851000280045252000950048052100340057552100090060965000490061865000470066770000220071494200270073695200430076336635LVL19990320000000.0780329s1978 ilua j 00110 eng a78006283 /AC a0811661105blib. bdg. :c$4.74 aflb005323020 aTJ280.7.bL38 a621.4 c1688d168810aLauber, Patricia.10aTapping Earth's heat /cby Patricia Lauber ; pictures by Edward Malsberg.0 aChampaign, Ill. :bGarrard Pub. Co.,cc1978. a63 p. :bill. (some col.) ;c23 cm. aIncludes index.0 aElementary School Library Collection (Bro-Dart)0 aBooklist.0 aSchool Library Journal. aDiscusses the uses of heat and energy from volcanoes, geysers, fumaroles, and hot springs.0 a4.6bFollett Library Book Co.2 a3-6. 0aGeothermal engineeringxJuvenile literature. 0aGeothermal resourcesxJuvenile literature.10aMalsberg, Edward. aLVLcJNFkJNF 621.4 La bMAINp32000000028221r2.98u7511u313000979 2200289 450000100060000000300040000600500170001000800390002701000130006602000250007903500160010404000200012005000260014008200170016609000150018310000250019824500430022325000210026626000420028730000210032951000290035051000140037952002190039352100110061294200220062395200440064543654LVL20010824154827.0860423r1987 nyu 00011 eng a86011820 a0684186853 :c$13.95 aflb00696606 aDLCcDLCdICrlF0 aPR6052.R4296bN5 19870 219a823/.914 c1689d168910aBrett, Simon,d1945-12aA nice class of corpse /cSimon Brett. a1st American ed.0 aNew York :bScribner,c[1987], c1986. a221 p. ;c22 cm.0 aFiction Catalog (Wilson)0 aBooklist. aMelita Pargeter's late husband of dubious occupation has left her with money, jewels, his skeleton keys, a revolver, and a curiosity which leads her to investigate a suspicious death at a seaside home for retirees.2 aAdult. aLVLcMYSkM Brett bMAINp32000000030251r10.00u7514u313100417 2200157 450000100060000000300040000600500170001000800410002702000150006809000150008310000340009824500360013225000250016894200220019395200440021564711LVL19990217000000.0930419s19xx xxu 00010 eng d a0854561250 c1690d16901 aHeyer, Georgette,d1902-1974.10aDevil's cub /cGeorgette Heyer. aLarge print edition. aLVLcLPkLP Heyer bMAINp31000000010717r12.00u7515u313200829 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000230013624500580015925000120021726000490022930000330027850000200031165000220033165000260035374000510037974000550043094200220048595200440050729617LVL19990320000000.0840620s1984 paua 00110 eng a84008788 a0830602283 a 84008788 c1691d1691 a684.1 Ro1 aRoberts, Nadine H.10a101 children's furniture projects /cby N.H. Roberts. a1st ed. aBlue Ridge Summit, Pa. :bTab Books,cc1984. aix, 181 p. :bill. ;c25 cm. aIncludes index. 0aFurniture making. 0aChildren's furniture.01aOne hundred one children's furniture projects.01aOne hundred and one children's furniture projects. aLVLcNFk684.1 Ro bMAINp32000000042145r15.00u7516u313300633 2200217 450000100060000000300040000600500170001000800390002703500160006609000150008209200140009710000190011124500790013026000510020930000280026050000200028865000130030870000240032194200270034595200430037264712LVL19990217000000.0910509s1987 enka j 00110 eng aonv90000607 c1692d1692 aj551.5 Ga10aGaneri, Anita.10aUsborne book of weather facts /cAnita Ganeri; illustrated by Tony Gibson. aLondon, England :bUsborne Publishing,cc1987. a48 p. :bill. ;c22 cm. aIncludes index. 0aWeather.11aGibson, Tony,eill. aLVLcJNFkJNF 551.5 Ga bMAINp31000000009059r9.89u7517u313400760 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000210013424500420015525000120019726000500020930000290025950000200028850400260030865000430033465000530037794200200043095200440045022599LVL19990327000000.0861024s1987 nyua b 00110 eng a86023158 a0941434966 a 86023158 c1693d1693 a728 La1 aLangdon, Philip.10aAmerican houses /cby Philip Langdon. a1st ed. aNew York :bStewart, Tabori & Change,cc1987. a255 p. :bill. ;c26 cm. aIncludes index. aBibliography: p. 248. 0aArchitecture, DomesticzUnited States. 0aDwellingsxHistoryy20th century.zUnited States aLVLcNFk728 La bMAINp32000000036580r10.00u7518u313501787 2200433 450000100060000000300040000600500170001000700100002700800410003702000150007803500160009309000150010909200120012424501680013626000550030430000540035950000470041350000650046050600310052550800600055652001230061652100130073953800150075265000220076770000160078970000210080570000650082671000150089171000290090674000680093574000630100374000530106694200220111995200420114195200420118395200430122595200430126895200420131129618LVL20021105144024.0vf cbahom931028s1979 nyu030 g vaeng d a0679830790 avid93000510 c1694d1694 aAVJ Dr.00aDr. Seuss's Pontoffel Pock, where are you?cDFE Films ; produced by Ted Geisel ; directed by Gerard Baldwin ; teleplay and lyrics by Dr. Seuss.h[videorecording] /0 aNew York :bRandom House Home Video,c1990, c1979. a1 videocassette (30 min.) :bsd., col. ;c1/2 in. aClosed-captioned for the hearing impaired. aTitle on container: Dr. Seuss Pontoffel Pock, where are you? aFor private home use only. aMusic, Joe Raposo ; animator, Don Williams [and others] aA young man who feels like a complete failure is given a magic piano that takes him anywhere at the touch of a button. aGeneral. aVHS Hi-fi. 0aChildren's films.11aSeuss,cDr.11aBaldwin, Gerard.11aSeuss,cDr.hVideorecording.tPontoffel Pock, where are you?21aDFE Films.21aRandom House Home Video.01aDoctor Seuss's Pontoffel Pock, where are you?h[videorecording]01aDr. Seuss Pontoffel Pock, where are you?h[videorecording]01aPontoffel Pock, where are you?h[videorecording] aLVLcAVJkAVJ Dr. bLB1p36000000005799r7.99u7519u3136 bLB2p34000000011979r9.88u7520u3137 bMAINp31000000039011r7.99u7521u3138 bMAINp32000000033292r0.08u7522u3139 bLB1p33000000012491r7.99u7523u314001282 2200397 450000100060000000300040000600500170001000800390002701000220006602000240008803500160011204000200012805000170014808200120016509000150017710000210019224500620021326000340027530000350030951000140034451000240035851000490038252001130043152100340054452100090057865000220058765000310060965000230064065000300066365000220069365000310071565000230074665000300076994200230079995200620082236637LVL19990320000000.0800709s1980 nyua j 000 1 eng a80019527 /AC/r862 a0684166402 :c$9.95 aflb00587406 aDLCcDLCdICrlF0 aPZ7.A194bGr0 219a[E] c1695d16951 aAdams, Adrienne.14aThe great Valentine's Day balloon race /cAdrienne Adams. aNew York :bScribner,cc1980. a[32] p. :bcol. ill. ;c26 cm.0 aBooklist.0 aHorn Book Magazine.0 aBulletin Of The Center For Children's Books. aBonnie and Orson, two young rabbits, build a hot air balloon to enter in a St. Valentine's Day balloon race.0 a3.2bFollett Library Book Co.2 aK-3. 1aRabbitsxFiction. 1aHot air balloonsxFiction. 1aBalloonsxFiction. 1aValentine's DayxFiction. 7aRabbitsxFiction. 7aHot air balloonsxFiction. 7aBalloonsxFiction. 7aValentine's DayxFiction. aLVLcEASYkE Adams bMAINdMAINp32000000005270r10.36u7524u3141v2003-09-0100568 2200181 4500020001500000090001500015100002000030245005800050260004800108300005000156500001400206511002100220650001900241700001700260942002500277952004200302952004200344 a1564311368 c1696d16961 aPronzini, Bill.10aBlue lonesomecby Bill Pronzini.h[sound recording] /0 aSanta Fe, NM :bSunset Productions,cp1995. a2 sound cassettes (180 min.) :banalog. mono. aAbridged.0 aRead Paul Ukena. 0aTalking Books.11aUkena, Paul. aLVLcACkAC Pronzini bLB2p37000000015967r8.77u7526u3142 bLB1p33000000024191r8.77u7527u314300809 2200265 450000100060000000300040000600500170001000800390002701000130006602000210007902000160010004000130011605000170012908200120014609000150015824501170017326000410029030000350033150000200036650400300038665000430041670000190045994200220047895200430050057694LVL19990220000000.0751110s1976 paua b 00100 eng a75038886 a0878571140bpbk. a0878571167. aDLCcDLC0 aTH4815.bL68 a690.8/1 c1697d169700aLow-cost, energy-efficient shelter for the owner and builder /cedited by Eugene Eccli ; ill. by Erick Ingraham.0 aEmmaus, Pa. :bRodale Press,cc1976. aviii, 408 p. :bill. ;c24 cm. aIncludes index. aBibliography: p. 374-381. 0aHouse constructionxAmateurs' manuals.10aEccli, Eugene. aLVLcNFk690.8 Ec bMAINp31000000068002r8.64u7528u314400808 2200265 450000100060000000300040000600500170001000800390002701000180006602000150008403500190009909000150011809200140013324500410014725500190018826000370020730000540024450000200029852001000031865000130041865000150043174000280044694200250047495200430049929619LVL19990320000000.0910405s1991 iluab j 00100 eng a91675024 /MAP a052883455X a 91675024 /MAP c1698d1698 aJR 912 Ra00aRand McNally children's world atlas. aScales differ.0 aChicago :bRand McNally,cc1991. a1 atlas (93 p.) :bcol. ill., col. maps ;c29 cm. aIncludes index. aPresents maps showing the world's terrain, climate, major economic activities, and populations. 1aAtlases. 1aGeography.01aChildren's world atlas. aLVLcJNFkJNF 912 Ra bLB1p33000000017278r11.40u7530u314500571 2200205 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200160011410000280013024500390015826000290019730000280022694200260025495200420028095200430032236638LVL20030423150820.0930921s1983 nyu 00011 eng d a0812539672 anpl93001155 c1699d1699 aSF Harrison10aHarrison, Harry,d1925-12aA rebel in time /cHarry Harrison.0 aNew York :bTOR,cc1983. a315 p. ;c18 cm. ;dpa. aLVLcSCIkSF Harrison bLB2p34000000005950r3.95u7532u3146 bMAINp31000000073809r6.99u7533u314701566 2200373 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000270013524501420016226000430030430000390034744000310038652002030041765000260062065100800064665100330072670000260075994200210078595200420080695200430084895200430089195200440093495200430097895200430102195200430106495200430110795200420115043657LVL20000911151926.0910819s1992 wiu j 00011 eng a91033527 a1562470310 a 91033527 c1700d1700 aJ Tripp10aTripp, Valerie,d1951-10aHappy birthday, Felicity! :ba springtime story /cby Valerie Tripp ; illustrations Dan Andreasen ; vignettes Luann Roberts, Keith Skeen.0 aMiddleton, WI :bPleasant Co.,cc1992. a69 p. :bcol. illus.c22 cm. ; pa. 0aAmerican girls collection. aAs her tenth birthday approaches, Felicity is excited by her grandfather's visit, but she is also concerned about the growing tensions between the colonists and the British governor in Williamsburg. 1aFamily lifexFiction. 1aVirginiaxSocial life and customsxFiction.yColonial period, ca. 1600-1775 1aWilliamsburg (Va.)xFiction.11aAndreasen, Dan,eill. aLVLcJFkJ Tripp bLB2p37000000003705r5.95u7534u3148 bMAINp32000000034030r3.49u7535u3149 bMAINp32000000034337r3.49u7536u3150 bMAINp32000000037195r12.95u7537u3151 bMAINp32000000052109r5.95u7538u3152 bMAINp32000000062154r5.95u7539u3153 bMAINp31000000039812r3.49u7540u3154 bMAINp31000000040089r3.49u7541u3155 bLB1p33000000013193r3.49u7542u315600652 2200217 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200150011424500680012926000480019765000260024571000300027174000240030194200240032595200430034995200420039264714LVL19990217000000.0910812s1991 nyua 00000 eng d a1563050730 aonv90001062 c1701d1701 a796.332 Of04aThe Official 1991 National Football League record & fact book.. aNew York :bWorkman Publishing Co.,cc1991. 0aFootballxStatistics.2 aNational Football League.0 aRecord & fact book. aLVLcNFk796.332 Of bMAINp31000000036517r8.82u7543u3157 bLB1p33000000008383r8.82u7544u315800890 2200229 450000100060000000300040000600500170001000800410002703500160006809000150008409200170009924500600011624600390017625000130021526000450022830000280027352002150030165000360051665100360055294200270058895200450061522601LVL19990327000000.0960911s1996 miu 00000 eng d anpl96001763 c1702d1702 aREF 332.1 Po00aPolk cross-reference directory for Athens County, Ohio.10aDirectory for Athens County, Ohio. a1996 ed.0 aDetroit, Mi :bR. L. Polk & Co.,cc1996. a46, 55, 10 p. ;c34 cm. aIncludes the following communities: Albany, Amesville, Athens, Buchtel, Chauncey, Coolville, Glouster, Guysville, Hockingport, Millfield, Nelsonville, New Marshfield, Shade, Stewart, The Plains, Torch, Trimble. 0aCounty directoryzOhiozAthens. 0aOhioxDirectory.zAthens County aLVLcREFkREF 332.1 Po bMAINp31000000061659r110.00u7545u315900919 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200180012324500860014125000120022726000380023930000200027750000320029750000220032965000230035170000190037470000270039394200280042095200430044895200420049195200420053395200420057529620LVL19990320000000.0870218s1987 nyu j 00100 eng a87000264 a006024013X a 87000264 c1703d1703 aJNF 808.81 Th00aThese small stones :bpoems /cselected by Norma Farber and Myra Cohn Livingston. a1st ed.0 aNew York :bHarper & Row,cc1987. a84 p. ;c22 cm. a"A Charlotte Zolotow book." aIncludes indexes. 0aChildren's poetry.10aFarber, Norma.10aLivingston, Myra Cohn. aLVLcJNFkJNF 808.81 Th bMAINp32000000044869r2.98u7546u3160 bLB1p36000000002943r2.98u7547u3161 bLB2p34000000009143r2.98u7548u3162 bLB1p33000000017750r2.98u7549u316300686 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000270013524500320016225000200019426000460021430000210026065000220028165100200030394200210032395200440034495200440038836639LVL19990320000000.0931020r19941992meu d 00011 eng a93030999 a1560547189 a 93030999 c1704d1704 aLP Bean1 aBean, Frederic,d1944-10aHard luck /cFrederic Bean. aLarge print ed. aThorndike, Me. :bThorndike Press,c1994. a253 p. ;c22 cm. 0aLarge type books. 0aTexasxFiction. aLVLcLPkLP Bean bMAINp32000000045937r12.72u7550u3164 bMAINp31000000047535r12.72u7551u316500485 2200193 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200110011410000160012524500280014126000360016930000230020594200200022895200430024843658LVL19990313000000.0930811s1992 nyu j 00011 eng d a0590456407 anpl93000829 c1705d1705 aYA Hoh1 aHoh, Diane.14aThe train /cDiane Hoh. aNew York :bScholastic,cc1992. a164 p. ;c18 cm.;. aLVLcYAkYA Hoh bMAINp31000000056477r3.61u7552u316601025 2200301 450000100060000000300040000600500170001000800390002701000190006602000250008503500200011004000250013005000220015508200190017709000150019610000220021124501460023325000120037926000380039130000260042950000200045550400300047565000570050565000460056271000470060894200240065595200440067950677LVL19990313000000.0880927s1989 nyu b 001 0 eng a88045569 //r90 a0060158875 :c$17.95 a 88045569 //r90 aDLCcDLCdDLCdOCoLC00aRC523.bC375 198900219a618.97/683 c1706d17061 aCarroll, David L.10aWhen your loved one has alzheimer's :ba caregiver's guide /cDavid L. Carroll ; based on methods developed by the Brookdale Center on Aging. a1st ed. aNew York :bHarper & Row,cc1989. axii, 242 p. ;c24 cm. aIncludes index. aBibliography: p. 232-234. 0aAlzheimer's diseasexPatientsxFamily relationships. 0aAlzheimer's diseasexPatientsxHome care.20aBrookdale Center on Aging (Hunter College) aLVLcNFk618.97 CAR bMAINp32000000024408r10.30u7553u316700714 2200253 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200120012510000260013724500360016325000120019926000320021130000210024394200220026495200440028695200430033095200440037395200430041722602LVL19990327000000.0930717s1993 nyu 00011 eng d a92050568 a0446515485 a 92050568 c1707d1707 aM Clark10aClark, Carol Higgins.10aSnagged /cCarol Higgins Clark. a1st ed.0 aNew York :bWarner,cc1993. a227 p. ;c24 cm. aLVLcMYSkM Clark bMAINp32000000040914r10.89u7555u3168 bLB2p34000000017480r18.95u7556u3169 bMAINp31000000043813r10.89u7557u3170 bLB1p33000000015955r10.89u7558u317100918 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200190012324500330014226000350017530000330021044000290024350000530027250000200032552001170034565000190046294200290048195200440051095200430055495200430059743659LVL19990313000000.0870723s1988 wiua j 00110 eng a87020684 a0817231161 a 87020684 c1708d1708 aJNF 591.909 An00aAnimals in cities and parks.0 aMilwaukee :bRaintree,cc1988. a48 p. :bcol. ill. ;c26 cm. 0aAnimals and their homes. aTranslation of: Animaux des villes et des parcs. aIncludes index. aDescribes squirrels, bees, birds, butterflies, and other animals that often share their environment with people. 1aUrban animals. aLVLcJNFkJNF 591.909 An bMAINp32000000044335r14.96u7559u3172 bLB2p34000000008461r14.96u7560u3173 bLB1p33000000015759r14.65u7561u317400952 2200277 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200170012524501640014226000650030630000350037150000560040665000200046270000180048270000170050070000190051770000240053694200270056095200430058795200440063064716LVL19990217000000.0920924s1992 paua j 00100 eng d a91077616 a1878093525 a 91077616 c1709d1709 aJNF 398.8 Ja00aJane Yolen's Mother Goose Songbook /cselected, edited, and introduced by Jane Yolen; musical arrangements by Adam Stemple; illustrations by Rosekrans Hoffman.0 aHonesdale, PA :bCaroline House/Boyds Mills Press,cc1992. . a95 p. :bill. ;c24 x 26 cm. . aSummary: Music accompanies familiar nursery rhymes. 1aNursery rhymes.00aMother Goose.10aYolen, Jane.10aStemple, Adam.11aHoffman, Rosekrans. aLVLcJNFkJNF 398.8 Ja bLB2p34000000008096r10.00u7562u3175 bMAINp31000000040674r10.00u7563u317600731 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000280013624500650016426000380022930000210026765000510028865000400033994200230037995200440040295200430044629622LVL20011025171739.0950801s1996 nyu 00011 eng a95037779 a0553099647 a 95037779 c1710d1710 aM Fraser10aFraser, Antonia,d1932-10aPolitical death :ba Jemima Shore mystery /cAntonia Fraser.0 aNew York :bBantam Books,cc1996. a208 p. ;c24 cm. 0aShore, Jemima (Fictitious character)xFiction. 0aWomen detectivesxFiction.zEngland aLVLcMYSkM Fraser bMAINp32000000063802r12.95u7564u3177 bLB1p33000000025308r12.95u7565u317800542 2200193 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200150011210000320012724500420015926000390020194200240024095200420026495200420030643660LVL20020807120936.0920127s1992 nyu 00011 eng a0449221970 anpl93001164 c1711d1711 aAF Whitney10aWhitney, Phyllis A.,d1903-14aThe ebony swan /cPhyllis A. Whitney.0 aNew York :bFawcett Crest,cc1992. aLVLcAFkAF Whitney bLB2p37000000004102r5.99u7566u3179 bLB1p36000000004872r3.47u7567u318000562 2200157 4500010001300000020001700013082001200030090001500042100003700057245004400094260003900138300002100177520014000198942002300338952004300361 a85021944 a0395404258 :0 a813/.54 c1712d171210aAtwood, Margaret Eleanor,d1939-14aThe handmaid's tale /cMargaret Atwood.0 aBoston :bHoughton Mifflin,c1986. a311 p. ;c24 cm. aSet in the near future, America has become a puritanical theocracy and Offred tells her story as a Handmaid under the new social order. aLVLcAFkAF Atwood bMAINp31000000035006r9.71u7569u318100879 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000300013624501190016626000380028530000480032360000520037160000260042365000280044970000260047794200220050395200440052595200440056922604LVL19990327000000.0921118s1993 nyuaf 00010 eng a92041733 a0525934529 a 92041733 c1713d1713 a364.1 Na1 aNaifeh, Steven W.,d1952-10aFinal justice :bthe true story of the richest man ever tried for murder /cStevan Naifeh and Gregory White Smith. aNew York, N.Y. :bDutton,cc1993. aix, 466, [8] p. of plates :bill. ;c24 cm.10aDavis, Cullen,d1933-xTrials, litigation, etc.10aDavis, Cullen,d1933- 0aTrials (Murder)zTexas.10aSmith, Gregory White. aLVLcNFk364.1 Na bMAINp32000000042051r14.16u7570u3182 bMAINp31000000044527r14.16u7571u318301316 2200361 450000100060000000300040000600500170001000700090002700800410003603500160007703700350009309000150012809200150014324501250015826000540028330000540033750000430039151100790043452001380051352100170065153800160066865000180068465000180070270000210072070000240074170000200076570000160078570000190080170000220082094200240084295200440086695200440091029623LVL19990320000000.0vf cbaho940627s1993 cau096 g f vleng d avid93001162 aVHS1695bAcademy Entertainment c1714d1714 aAV Morning10aMorning glorycAcademy Entertainment, produced by Michael Viner ; directed by Steven Hilliard Stern.h[videorecording] / aStudio City, CA :bAcademy Entertainment,cp1993. a1 Videocassette (96 min.) :bsd., col. ;c1/2 in. aBased on the novel by LaVyrle Spencer.0 aChristopher Reeve, Deborah Raffin, Lloyd Bochner, Nina Foch, Helen Shaver. aThe story of a man and woman drawn together by fortune in a sleepy southern town, the unlikely winners at a rich, surprising passion. aRated PG-13. aVHS Format. 0aLove stories. 0aFeature film.10aRaffin, Deborah.10aReeve, Christopher.10aBochner, Lloyd.10aFoch, Nina.10aShaver, Helen.10aSpencer, LaVyrle. aLVLcAVkAV Spencer bMAINp32000000048173r69.71u7572u3184 bMAINp31000000048798r69.71u7573u318501025 2200313 450000100060000000300040000600500170001000800390002701000130006602000250007902000220010403500140012604000130014005000220015308200230017509000150019810000240021324500600023726000370029730000290033450000860036350000200044950000880046965000170055770000210057470000480059594200250064395200430066836642LVL19990320000000.0871104s1988 nyua 001 0 eng a87040583 a0812917294 :c$14.95 a0812917286 (pbk.) a 87040583 aDLCcDLC0 aGV971.bW367 19880 220a796.352/02/022 c1715d17151 aWatson, Tom,d1949-14aThe rules of golf /cby Tom Watson with Frank Hannigan. aNew York :bTimes Books,cc1988. a184 p. :bill. ;c24 cm. a"An official publication of the United States Golf Association"--P. opposite t.p. aIncludes index. aRev. ed. of: The new rules of golf / Tom Watson with Frank Hannigan. 1st ed. c1984. 0aGolfxRules.10aHannigan, Frank.11aWatson, Tom,d1949-tThe new rules of golf. aLVLcNFk796.352 WAT bMAINp32000000022308r5.87u7574u318600384 2200133 450000100060000000300040000600500170001000800410002709000150006810000360008324500620011994200250018195200440020643661LVL19990313000000.0930420s19xx xxu 00010 eng d c1716d17161 aFranklin, Benjamin,d1706-1790.14aThe autobiography of Benjamin Franklinh[sound recording] aLVLcACkAC Franklin bMAINp32000000023603r30.35u7575u318700240 2200085 4500090001500000100002600015245004700041942002300088952004300111 c1717d171710aDailey, Janet,d1944-10aFor Mike's sake /bHarlequin Presents 313. aLVLcAFkPB Dailey bMAINp32000000051573r1.50u7576u318800629 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000240013424500730015826000500023130000210028194200210030295200440032395200440036743662LVL20010827131816.0930415s1993 nyu 00011 eng a93017742 a0374266441 a 93017742 c1718d1718 aM Hoeg10aHoeg, Peter,d1957-10aSmilla's sense of snow /cPeter Hoeg ; translated by Tiina Nunnally.0 aNew York :bFarrar Straus and Giroux,cc1993. a453 p. ;c24 cm. aLVLcMYSkM Hoeg bMAINp32000000043348r12.39u7578u3189 bMAINp31000000045369r12.39u7579u319001406 2200421 450000100060000000300040000600500170001000800390002701000220006602000150008803500160010304000200011904300120013905000190015108200230017009000150019310000260020824501090023425000120034326000540035530000330040949000160044252000920045852100340055052100090058460000550059360000340064860000340068265000630071665000340077965000160081365000130082965000130084265000420085570000200089794200240091795200430094157700LVL19990220000000.0770819s1977 caua j 00010beng a77012455 /AC/r842 a0916392147 aflb00353603 aDLCcDLCdICrlF an-us---0 aE457.905.bJ63 a973.7/092/4aBa92 c1719d171910aJohnson, Ann Donegan.14aThe value of respect :bthe story of Abraham Lincoln /cby Ann Donegan Johnson ; illustrated by Pileggi. a1st ed.0 aLa Jolla, Calif. :bValue Communications,cc1977. a63 p. :bcol. ill. ;c29 cm.0 aValueTales. aA brief biography of Abraham Lincoln emphasizing the importance of respect of his life.0 a4.9bFollett Library Book Co.2 a3-6.10aLincoln, Abraham,d1809-1865xJuvenile literature.11aLincoln, Abraham,d1809-1865.17aLincoln, Abraham,d1809-1865. 0aPresidentsxBiographyxJuvenile literature.zUnited States 0aRespectxJuvenile literature. 1aPresidents. 1aRespect. 7aRespect. 7aPresidentsxBiography.zUnited States10aPileggi, Steve. aLVLcJBkJB Lincoln bMAINp31000000009592r7.95u7580u319100693 2200229 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200150011410000260012924500780015526000390023330000290027250000200030165000300032194200240035195200440037595200440041929625LVL19990320000000.0941116s1980 nyua 00110 eng d a0831757248 anpl94002421 c1720d1720 a387.503 Ma1 aMahan, Alfred Thayer.14aThe influence of sea power upon history 1660-1805 /cAlfred Thayer Mahan. aNew York :bGallery Books,cc1980. a256 p. :bill. ;c31 cm. aIncludes index. 0aNaval historyd1660-1805. aLVLcNFk387.503 Ma bMAINp32000000053922r12.95u7581u3192 bMAINp31000000052193r12.95u7582u319300976 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000340013824500840017226000400025630000350029652001680033165000410049965000590054070000360059994200260063595200610066136644LVL19990320000000.0880829s1989 nyua j 00011 eng a88028809 a0670820393 a 88028809 c1721d1721 aE Hennessy1 aHennessy, B. G.q(Barbara G.)14aThe missing tarts /cby B.G. Hennessy ; illustrated by Tracey Campbell Pearson. aNew York :bViking Kestrel,cc1989. a[26] p. :bill. ;c21 x 26 cm. aWhen the Queen of Hearts discovers that her strawberry tarts have been stolen, she enlists the help of many popular nursery rhyme characters in order to find them. 1aKings, queens, rulers, etcxFiction. 1aCharacters and characteristics in literaturexFiction.11aPearson, Tracey Campbell,eill. aLVLcEASYkE Hennessy bMAINdMAINp32000000035820r6.95u7583u3194v2003-09-0100616 2200205 450000100060000000300040000600500170001000800390002703500160006609000150008209200130009710000240011024500760013426000570021030000290026765100190029670000290031594200220034495200440036657701LVL19990220000000.0880923s1976 ohua 00110 eng aonv90002666 c1722d1722 a977.1 Ro10aRoseboom, Eugene H.12aA history of Ohio /cby Eugene H. Roseboom and Francis P. Weisenburger. aColumbus :bOhio Historical Society,c[1976], c1953. a443 p. :bill. ;c29 cm. 0aOhioxHistory.10aWeisenburger, Francis P. aLVLcNFk977.1 Ro bMAINp31000000039384r10.00u7584u319500324 2200133 450000100060000000300040000600500170001000800410002709000150006810000280008324500210011194200210013295200370015364720LVL19990217000000.0950324s19uu 000 0 eng d c1723d17231 aGrey, Zane,d1872-1939.10aTo the last man. aLVLcAFkAF Grey bMAINp31000000029226u7585u319600916 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000240013424501480015825000120030626000370031830000210035550000200037665000130039665000170040965000220042670000150044894200200046395200440048395200440052795200430057122607LVL19990327000000.0940203s1994 maua 00110 eng a93020584 a0316852724 a 93020584 c1724d1724 a697 Tr10aTrethewey, Richard.10aThis old house heating, ventilation, and air conditioning :ba guide to the invisible comforts of your home /cRichard Trethewey with Don Best. a1st ed.0 aBoston :bLittle, Brown,cc1994. a255 p. :c26 cm. aIncludes index. 0aHeating. 0aVentilation. 0aAir conditioning.10aBest, Don. aLVLcNFk697 Tr bMAINp32000000044776r14.43u7586u3197 bMAINp31000000046456r14.43u7587u3198 bLB1p33000000017703r14.43u7588u319900602 2200217 450000100060000000300040000600500170001000800390002701000130006603500140007909000150009309200110010810000270011924500530014625000120019926000410021130000420025265000260029494200200032095200440034029626LVL19990320000000.0730116s1962 ohua 00110 eng a62015713 a 62015713 c1725d1725 a292 Gr aGrant, Michael,d1914-10aMyths of the Greeks and Romans /cMichael Grant. a1st ed. aCleveland :bWorld Pub. Co.,cc1962. axxiii, 487, [64] p. :bill. ;c22 cm. 0aMythology, Classical. aLVLcNFk292 Gr bMAINp32000000054382r10.00u7589u320000793 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000200013724500500015726000340020730000280024150000200026965000140028965000200030394200230032395200430034695200420038995200420043195200420047343664LVL19990313000000.0950420s1995 nyu 00110 eng a95017631 a0684802465 a 95017631 c1726d1726 a306.81 Pe10aPesmen, Curtis.10aYour first year of marriage /cCurtis Pesmen.0 aNew York :bFireside,cc1995. a249 p. ;c22 cm. ;dpa. aIncludes index. 0aMarriage. 0aMarried people. aLVLcNFk306.81 Pe bMAINp32000000059680r6.49u7590u3201 bLB1p36000000000092r6.49u7591u3202 bLB2p34000000009058r6.49u7592u3203 bLB1p33000000023608r6.49u7593u320401061 2200289 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200130011210000290012524500990015426000440025330000280029750000700032550000670039574000330046294200220049595200420051795200430055995200420060295200420064495200430068695200420072929627LVL19991016000000.0950131c19941949nyu 00010 eng a055356983X anpl95000234 c1727d1727 a839.3 Fr 0aFrank, Anne,d1929-1945.10aAnne Frank's Tales from the secret annex /cwith translations by Ralph Manheim and Michel Mok.0 aNew York :bBantam Books,c1994, c1949. a150 p. ;c18 cm. ;dpa. aTranslation of: Verhaaltjes en gebeurtenissen uit het Achterhuis. aPreviously published in part as "Tales from the house behind".01aTales from the secret annex. aLVLcNFk839.3 Fr bLB2p37000000004452r2.07u7594u3205 bMAINp32000000055616r2.07u7595u3206 bLB1p36000000002085r2.07u7596u3207 bLB2p34000000006850r2.07u7597u3208 bMAINp31000000053200r2.07u7598u3209 bLB1p33000000021727r2.07u7599u321001321 2200349 450000100060000000300040000600500170001000700090002700800410003602000150007703500160009203700270010809000150013509200120015024500780016226000410024030000440028144000290032550501260035452100140048053800160049465000220051070000460053270000670057870000490064570000640069494200220075895200430078095200440082395200610086795200430092836646LVL20000911201533.0vd cbaho940606s1990 ctu b vaeng d a1555920225 avid93000072 aVHS0022bCC Home Video c1728d1728 aAVJ Owl00aOwl moon and other stories /c[compiled by] CC Studios.h[videorecording]0 aWeston, CT :bCC Home Video,cc1990. a1 videocassette ;bsd., col. ;c1/2 in. 0aChildren's Circle ;v22.0 aOwl moon / J. Yolen -- Caterpillar and the polliwog / J. Kent -- Hot Hippo / M. Hadithi -- Time of wonder / R. Mccloskey. aAges 4-9. aVHS Format. 0aChildren's films.11aYolen, Jane.hVideorecording.tOwl moon . 1aKent, JackhVideorecording.tThe caterpillar and the polliwog.11aHadithi, MwenyehVideorecording.tHot Hippo.11aMcCloskey, Robert,d1914-hVideorecording.tTime of wonder. aLVLcAVJkAVJ Owl bLB2p34000000012035r14.95u7600u3211 bMAINp31000000045316r14.95u7601u3212 bMAINdMAINp32000000038606r0.15u7602u3213v2003-09-01 bLB1p33000000018935r14.95u7603u321400865 2200265 450000100060000000300040000600500170001000800390002701000170006603500180008304000130010105000180011408200100013209000150014210000270015724500890018426000340027330000260030752001430033365000220047665000190049865100290051770000270054694200260057350684LVL19990313000000.0700413s1970 nyua j 000 1 eng a70099786 /AC a 70099786 /AC aDLCcDLC0 aPZ7.C6924bGr a[Fic] c1729d17291 aCoatsworth, Elizabeth.10aGrandmother cat and the hermitc[by] Elizabeth Coatsworth. Pictures by Irving Boker. a[New York]bMacmillanc[1970] a87 p.billus.c22 cm. aOn an exploring trip up an arroyo, a young boy and his cat discover the well-hidden home of a hermit who is the friend of all the animals. 1aHermitsxFiction. 1aCatsxFiction. 1aSouthwest, NewxFiction.11aBoker, Irving,eillus. aLVLcJFkJ Coatsworth00949 2200277 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200140011210000210012624500640014726000390021130000300025050000330028052001100031365000190042370000300044294200250047295200440049795200430054195200440058495200430062822609LVL19990327000000.0920630s1993 nyua j 00011 eng a0531086151 anpl94001007 c1730d1730 aE Johnson10aJohnson, Angela.10aJulius /cstory by Angela Johnson ; pictures by Dav Pilkey.0 aNew York :bOrchard Books,cc1993. a[32] p. :bill. ;c29 cm. a"A Richard Jackson book"--P. aMaya's grandfather brings her a pig from Alaska and the two of them learn about fun and sharing together. 1aPigsxFiction.11aPilkey, Dav,d1966-eill. aLVLcEASYkE Johnson bMAINp32000000048252r13.49u7605u3215 bLB2p34000000010498r13.49u7606u3216 bMAINp31000000049143r13.49u7607u3217 bLB1p33000000019559r13.49u7608u321800643 2200205 4500010001300000020001500013090001500028100002300043245003100066250002100097260005400118300002800172650001200200650002700212942002900239952004200268952004200310952004300352952004200395 a94038034 a1564585166 c1731d173110aLlewellyn, Claire.10aTruck /cClaire Llewellyn. a1st American ed.0 aNew York :aLondon ;bDorling Kindersley,cc1995. a21 p. :bill. ;c29 cm. 1aTrucks. 1aEarthmoving machinery. aLVLcJNFkJNF 629.224 Li bLB2p37000000001243r9.95u7609u3219 bLB1p36000000012354r9.95u7610u3220 bMAINp35000000006462r9.95u7611u3221 bLB2p34000000004925r5.72u7612u322200936 2200313 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200190012510000210014424500500016525000120021526000420022730000280026950000220029750500500031974000200036974000180038974000180040794200270042595200430045295200420049595200430053795200420058036647LVL19990320000000.0960208s1996 nyu 00011 eng d a95090940 a0345402928 a 95090940 c1732d1732 aSF McCaff- rey10aMcCaffrey, Anne.14aThe crystal singer trilogy /cAnne McCaffrey. a1st ed.0 aNew York :bBallantine Books,cc1996. a660 p. ;c24 cm. ;dpa. a"A Del Rey Book". aCrystal singer / Killashandra / Crystal line.01aCrystal singer.01aKillashandra.01aCrystal line. aLVLcSCIkSF McCaffrey bMAINp32000000062702r9.44u7615u3223 bLB2p34000000012765r9.44u7616u3224 bMAINp31000000058421r9.44u7617u3225 bLB1p33000000024723r9.44u7618u322600609 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000150013724500510015225000200020326000470022330000210027065000220029194200230031395200430033643666LVL20021011143820.0931018s1994 meu d 00011 eng a93040835 a0786201002 a 93040835 c1733d1733 aLP Traven1 aTraven, B.14aThe treasure of the Sierra Madre /cB. Traven. aLarge print ed. aThorndike, Me. :bThorndike Press,cc1994. a533 p. ;c22 cm. 0aLarge type books. aLVLcLPkLP Traven bLB2p37000000017798r16.46u7619u322700637 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000200013624500380015626000490019430000360024365000210027994200220030095200430032295200420036550685LVL20030521134721.0950515s1995 inua 00010 eng a95000299 a1570280347 a 95000299 c1734d1734 a613.7 Ro10aRoberts, Scott.10aFitness walking /cScott Roberts.0 aIndianapolis, Ind. :bMasters Press,cc1995. a137 p. :bill. ;c26 cm. ;dpa. 0aFitness walking. aLVLcNFk613.7 Ro bMAINp32000000058570r8.82u7620u3228 bLB1p33000000023092r8.82u7621u322900749 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009405000270010808200130013509000150014809200140016310000280017724500470020526000520025226300100030450000830031474000340039794200210043195200430045257704LVL19990220000000.0880210c19881960mau d 00011 eng a88004989 a1555046509 a 880049891 aPS3513.R6545bR35 19880 a813/.529 c1735d1735 aL.P. Grey10aGrey, Zane,d1872-1939.10aAvalanche, and other stories /cZane Grey.0 aSouth Yarmouth, MA :bJohn Curley,cc1988,1960. a8808. aOriginally published: The ranger, and other stories. New York : Harper, c1960.44aThe ranger and other stories. aLVLcLPkLP Grey bMAINp31000000035646r8.95u7622u323000432 2200169 450000100060000000300040000600500170001000800410002702000150006809000150008310000190009824500140011791000470013191000190017894200220019795200430021964723LVL19990217000000.0950324s19uu 000 0 eng d a0674179145 c1736d1736 aMercer, Ian F.10aCrystals. a1997 September --bNPL --gcrystallography a1997 September aLVLcNFk548.5 Me bMAINp31000000049396r5.77u7623u323100315 2200133 450000100060000000300040000600500170001000800410002709000150006810000190008324500220010294200200012495200370014422610LVL19990327000000.0941224s19uu 000 0 eng d c1737d1737 aBakeless, Kat.10aGlory, Halleluja. aLVLcNFk784 Ba bMAINp32000000011826u7624u323200861 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000260013524500500016126000730021130000420028444000290032650000300035552001300038565000260051594200230054195200430056429629LVL19990320000000.0850724s1986 nyua j 00011 eng a85051546 a0307119459 a 85051546 c1738d1738 aE Mayer10aMayer, Mercer,d1943-10aJust me and my babysitter /cby Mercer Mayer.0 aNew York :aRacine, Wis. :bGolden Book ;bWestern Pub. Co.,cc1986. a[24] p. :bcol. ill. ;c21 cm. ;dpa. 2aA Golden look-look book. a"A Paperwing Press book." aLittle Critter does his enthusiastic best to help his babysitter, although his efforts frequently make a bad situation worse. 1aBabysittersxFiction. aLVLcEASYkE Mayer bMAINp32000000058195r1.50u7625u323300897 2200265 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009710000210011224500320013326000360016530000280020152001230022965000190035265000440037165100220041594200240043795200420046195200430050395200430054695200420058936648LVL20011123115855.0890126s1989 nyu j 00011 eng a0590427717 anpl93001778 c1739d173910aWestall, Robert.10aBlitzcat /cRobert Westall.0 aNew York :bScholastic,cc1989. a230 p. ;c18 cm. ;dpa. aDuring World War II a black cat journeys all across war-ravaged England in an effort to track down her beloved master. 1aCatsxFiction. 1aWorld War, 1939-1945xFiction.zEngland 1aEnglandxFiction. aLVLcYAkYA Westall bLB2p37000000006138r1.89u7626u3234 bMAINp32000000071315r3.25u7627u3235 bMAINp31000000065542r3.25u7628u3236 bLB1p33000000017346r1.89u7629u323700853 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000190013624501130015526000420026830000290031050400660033961000340040565000460043965000180048570000180050394200220052195200440054357705LVL19990220000000.0910403s1991 nyua b 00110 eng a91013974 a0671690248 a 91013974 c1740d1740 a338.7 He10aHernon, Peter.10aUnder the influence :bthe unauthorized story of the Anheuser-Busch dynasty /cPeter Hernon and Terry Ganey.0 aNew York :bSimon & Schuster,cc1991. a461 p. :bill. ;c24 cm. aIncludes bibliographical references (p. [411]-450) and index.20aAnheuser-Busch, incxHistory. 0aBrewing industryxHistory.zUnited States 0aBusch family.10aGaney, Terry. aLVLcNFk338.7 He bMAINp31000000037241r14.67u7630u323800519 2200205 450000100060000000300040000600500170001000800390002701000130006602000150007909000150009409200140010910000200012324500370014325000200018026000470020030000210024765000220026894200230029064724LVL19990217000000.0840727s1984 meu d 00011 eng a84016444 a0896215725 c1741d1741 aLP Grimes10aGrimes, Martha.14aThe dirty duck /cMartha Grimes. aLarge print ed.0 aThorndike, Me. :bThorndike Press,cc1984. a336 p. ;c22 cm. 0aLarge type books. aLVLcMYSkM Grimes00745 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000310013424500840016526000340024930000290028350400650031265000190037794200200039695200440041695200430046029630LVL20030304134743.0950427s1995 nyua b 00110 eng a95018899 a0684803615 a 95018899 c1742d1742 a909 Fe20aFernandez-Armesto, Felipe.10aMillennium :ba history of the last thousand years /cFelipe Fernandez-Armesto.0 aNew York :bScribner,cc1995. a816 p. :bill. ;c25 cm. aIncludes bibliographical references: p. (738-775) and index. 0aWorld history. aLVLcNFk909 Fe bMAINp32000000059634r20.70u7633u3239 bLB2p34000000009918r20.70u7634u324000966 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000190014024501130015925000120027226000450028430000400032952001150036965000140048470000330049894200270053195200440055895200430060295200430064543668LVL19990313000000.0920521s1993 nyua j 00010 eng a92017909 a0060236183 a 92017909 c1743d1743 aJNF 296.4 Ku10aKuskin, Karla.12aA great miracle happened there :ba Chanukah story /cby Karla Kuskin ; illustrated by Robert Andrew Parker. a1st ed.0 aNew York :bWilla Perlman Books,cc1993. a[32] p. :bcol. ill. ;c23 x 26 cm. aOn the first night of Hanukkah, a mother tells her family and a young guest the story of the holiday's origin. 1aHanukkah.11aParker, Robert Andrew,eill. aLVLcJNFkJNF 296.4 Ku bMAINp32000000047771r12.66u7635u3241 bMAINp32000000047772r8.63u7636u3242 bLB1p33000000019279r13.40u7638u324301076 2200325 450000100060000000300040000600500170001000800390002701000170006602000270008303500160011004000200012605000160014608200110016209000150017310000180018824500470020626000570025330000260031049000250033652001960036152100340055752100090059165000180060065000170061865000160063570000270065194200290067895200430070750687LVL20000911194404.0731002c19731974mnua j 000 0 eng a72013343 /AC a0822508583 (lib. bdg.) aflb00290701 aDLCcDLCdICrlF0 aTT871.bR85 a745.54 c1744d17441 aRumpf, Betty.10aPapier-mache.cPictures by George Overlie. aMinneapolis,bLerner Publications Co.c[1973, c1974] a32 p.billus.c20 cm.0 aAn Early craft book. aInstructions for making plaques, tables and chairs, dishes, a piÄnata, and other objects from old newspapers and paste. Includes suggestions for painting and decorating the finished articles.0 a4.0bFollett Library Book Co.2 a3-6. 0aPapier-mache. 0aPaper-mache. 1aHandicraft.11aOverlie, George,eill. aLVLcJNFkJNF 745.54 RUM bMAINp32000000015821r4.95u7639u324400889 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000320013724500930016926000350026230000330029744000450033050400510037565000430042665000460046994200230051595200430053895200420058136650LVL20030524131049.0930615s1994 nyu b 00110 eng a93026447 a0440506336 a 93026447 c1745d1745 a618.92 Sh10aShapiro, Patricia Gottlieb.12aA parent's guide to childhood and adolescent depression /cby Patricia Gottlieb Shapiro.0 aNew York :bDell Pub.,cc1994. axix, 172 p. ;c21 cm. ;dpa. 4aThe Children's hospital of Philadelphia. aIncludes bibliographical references and index. 0aDepression in childrenxPopular works. 0aDepression in adolescencexPopular works. aLVLcNFk618.92 Sh bMAINp32000000045067r7.64u7640u3245 bLB2p34000000001738r7.64u7641u324600858 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012324500630013825000120020126000390021330000330025250000300028550400650031565000290038065000290040971000290043894200250046795200440049295200440053643669LVL19990313000000.0930901s1994 nyua b 00100 eng a93033255 a0062700642 a 93033255 c1746d1746 aREF 808 Ne00aNew York Public Library writer's guide to style and usage. a1st ed. aNew York :bHarperCollins,cc1994. aix, 838 p. :bill. ;c25 cm. a"A Stonesong Press book." aIncludes bibliographical references: p. (795-811) and index. 0aEnglish languagexStyle. 0aEnglish languagexUsage.20aNew York Public Library. aLVLcREFkREF 808 Ne bMAINp32000000048546r20.65u7642u3247 bMAINp31000000050069r20.65u7643u324800955 2200313 450000100060000000300040000600500170001000700100002700800410003703500160007809000150009409200140010924501030012326000420022630000540026850600310032251100160035352000690036952100130043853800090045153800100046065000230047065000180049370000230051170000170053471000230055194200230057495200440059757707LVL19990220000000.0vfucbahom941104s1988 wyu060 g vleng d avid93001452 c1747d1747 aAV 799 Ca00aCare of game animalscGrunko Films ; produced and written by Bill Grunkemeyer.h[videorecording] / aSheridan, WY :bGrunko Films,cc1988. a1 videocassette (60 min.) :bsd., col. ;c1/2 in. aFor private home use only.1 aNate Vance. aThe video graphically shows the field dressing of a game animal. aGeneral. aVHS. aNTSC. 0aWhite-tailed deer. 0aAnimal films.1 aGrunkemeyer, Bill.1 aVance, Nate.2 aGrunko Films, Inc. aLVLcAVkAV 799 Ca bMAINp31000000030440r25.95u7644u324901021 2200325 450000100060000000300040000600500170001000800390002701000130006602000250007902000480010404000130015204100110016505000230017608200190019909000150021810000240023324000380025724501000029526000520039530000340044750000440048150000200052565000110054565000220055674000410057874000110061994200220063095200430065264726LVL20020916091119.0861106c19871986nyua 00110 eng a86029689 a0671639552 :c$22.95 a0671639579 (Fireside book : pbk.) :c$11.95 aDLCcDLC1 aengita0 aSB411.bC7213 19870 219a635.9/3372 c1748d174810aCoggiatti, Stelvio.10aRose di ieri e di oggi.lEnglish.10aSimon & Schuster's guide to roses /cStelvio Coggiatti ; [English translation by John Gilbert].0 aNew York :bSimon and Schuster,c[1987], c1986. a256 p. :bcol. ill. ;c20 cm. aTranslation of: Rose di ieri e di oggi. aIncludes index. 0aRoses. 0aRosesxVarieties.01aSimon and Schuster's guide to roses.01aRoses. aLVLcNFk635.9 Co bMAINp31000000027299r7.05u7645u325001198 2200313 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200130011210000200012524500350014526000520018030000360023250000220026852002480029052100320053865000290057065000290059965100200062894200220064895200430067095200430071395200430075695200420079995200430084129632LVL19990320000000.0920827s1993 caub j 00011 eng a0152958762 anpl96000973 c1749d1749 aYA Meyer10aMeyer, Carolyn.10aWhite lilacs /cCarolyn Meyer.0 aSan Diego :bHarcourt Brace Jovanovich,cc1993. a242 p. :bmap. ;c18 cm. ;dpa. a"Gulliver books." aIn 1921 in Dillon, Texas, twelve-year-old Rose Lee sees trouble threatening her black community when the whites decide to take the land there for a park and forcibly relocate the black families to an ugly stretch of territory outside the town. a"Ages 10-14"--Cover p. [4]. 1aRace relationsxFiction. 1aAfro-AmericansxFiction. 1aTexasxFiction. aLVLcYAkYA Meyer bMAINp32000000064779r2.95u7646u3251 bMAINp32000000064780r2.95u7647u3252 bMAINp35000000001129r2.95u7648u3253 bLB2p34000000013813r2.95u7649u3254 bMAINp31000000060069r2.95u7650u325500988 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200200012310000270014324500700017026000480024030000350028844000420032352001510036565000350051665000230055165000220057494200290059695200430062595200420066836651LVL20000406000000.0940604s1987 nyua j 00011 eng a87003591 a0819311499 a 87003591 c1750d1750 aE Quacken- bush10aQuackenbush, Robert M.10aSherlock Chick and the peekaboo mystery /cby Robert Quackenbush.0 aNew York :bParents Magazine Press,cc1987. a[42] p. :bcol. ill. ;c23 cm. 0aParents magazine read aloud original. aThinking that a lost mouse might hide in a hole, Sherlock Chick interviews many animals living in holes as he searches for the missing baby mouse. 1aMystery and detective stories. 1aChickensxFiction. 1aAnimalsxFiction. aLVLcEASYkE Quackenbush bMAINp32000000047603r9.99u7652u3256 bLB2p34000000010797r9.99u7653u325701118 2200301 450000100060000000300040000600500170001000700150002700800410004202800260008303500160010909000150012509200140014010000220015424500600017626000590023630000490029550000160034451100170036052002340037765000360061165000210064765000190066865100440068770000180073194200230074995200440077243670LVL19990313000000.0ss lmnjlc ce940910p19911988mdunnn f eng d02a91323bRecorded Books avid93001253 c1751d1751 aAC Conley aConley, Robert J.10aKilling timecby Robert J. Conley.h[sound recording] / aPrince Frederick, MD :bRecorded Books,cp1991, c1988. a5 sound cassettes (6.5 hr.) :banalog, mono. aUnabridged.3 aHerb Duncan. aMarshall Bluff Luton knew revenge was lonely before he left Riddle and turned toward Wichita Falls, Texas, and vengeance. The Jessup boys had hired a professional gunslinger as insurance against Luton getting near Wichita County. 0aPeace officersxFiction.zTexas 0aWestern stories. 0aTalking Books. 0aWichita Falls (Tex.)xHistoryxFiction.10aDuncan, Herb. aLVLcACkAC Conley bMAINp32000000050488r40.00u7654u325801134 2200337 450000100060000000300040000600500170001000800390002701000240006603500160009004000200010605000190012608200100014509000150015510000160017024500520018626000360023830000280027451000320030251000140033451000490034852001900039752100340058752100090062165000240063065000130065465000230066765000220069094200230071295200610073550689LVL19990313000000.0850807s1957 nyua j 000 1 eng a57007526 /L/AC/r875 aflb00352600 aDLCcDLCdICrlF0 aPZ8.3.G276bHq a[Fic] c1752d17521 aSeuss,cDr.10aHow the Grinch stole Christmas ,cby Dr. Seuss. aNew York,bRandom Housec[1957] a[58] p.billus.c29 cm.0 aChildren's Catalog (Wilson)0 aBooklist.0 aBulletin Of The Center For Children's Books. aThe Grinch tries to stop Christmas from arriving by stealing all the presents and food from the village, but much to his surprise it comes anyway. Could Christmas be more than presents?0 a3.6bFollett Library Book Co.2 aK-3. 1aChristmasxFiction. 1aFantasy. 7aChristmasxPoetry. 7aStories in rhyme. aLVLcEASYkE Seuss bMAINdMAINp32000000014321r5.59u7655u3259v2003-09-0100359 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000300009624500280012694200220015495200370017657708LVL19990220000000.0930421s19xx xxu 00010 eng d a25023228 c1753d17531 aJoyce, James,d1882-1941.10aDublinerscJames Joyce. aLVLcAFkAF Joyce bMAINp31000000026828u7656u326000741 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200190012310000290014224500680017126000380023930000370027744000250031452000610033970000280040094200280042895200430045622614LVL19990327000000.0940730s1981 nyua j 00011 eng a81050043 a0394848357 a 81500435 c1754d1754 aE Beren- stain1 aBerenstain, Stan,d1923-14aThe Berenstain Bears go to the doctor /cStan & Jan Berenstain. aNew York :bRandom House,cc1981. a[29] p. :bcol. ill. ;c21 cm.;. 2aA first time reader. aDr. Grizzly gives the Berenstain cubs a regular checkup.10aBerenstain, Jan,d1923- aLVLcEASYkE Berenstain bMAINp32000000049177r5.00u7657u326100837 2200265 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200120011410000440012624500370017026000360020730000280024344000220027150000260029394200210031995200600034095200430040095200430044395200430048695200420052929633LVL20030707141626.0960802s1993 nyu j 00011 eng d a0590494465 anpl96001453 c1755d1755 aJ Stine10aStine, R. L.d1943-q(Robert Lawrence),14aThe haunted mask /cR. L. Stine.0 aNew York :bScholastic,cc1993. a121 p. ;c20 cm. ;dpa. 0aGoosebumps ;v11. a"An Apple Paperback." aLVLcJFkJ Stine bLB2dMAINp37000000021313r3.99u7658u3262v2003-09-01 bMAINp32000000065953r2.95u7659u3263 bMAINp32000000137733r2.95u7660u3264 bMAINp31000000079143r2.95u7661u3265 bLB1p33000000033103r2.95u7662u326600358 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000230009624500290011994200210014895200430016943671LVL19990313000000.0940929s19xx xxu 00010 eng d a58009843 c1756d17561 aPei, Mario,d1901-10aNew Italian self taught. aLVLcNFk450 PEI bMAINp32000000009190r7.95u7663u326701092 2200349 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009404000200011005000230013008200160015309000150016910000220018424500350020625000120024126000320025330000290028552001660031452100110048060000320049160000430052365000360056665000130060265000130061565000300062874000160065894200240067495200440069864728LVL19990217000000.0881114s1989 nyua 00110 eng a88033692 a0688077625 aflb01745303 aDLCcDLCdICrlF0 aG440.N48bN48 19890 219a910.4/1 c1757d175710aNewman, Steven M.10aWorldwalk /cSteven M. Newman. a1st ed.0 aNew York :bMorrow,cc1989. a527 p. :bill. ;c25 cm. aAn account of the walking journey of Steve Newman. It took four years to complete and covered over five continents, twenty countries, and fifteen thousand miles.2 aAdult.10aNewman, Steven MxJourneys.17aNewman, Steven MxVoyages and travels. 0aVoyages around the worldy1981- 0aWalking. 7aWalking. 7aVoyages around the world.01aWorld walk. aLVLcNFk910.41 NEW bMAINp31000000007423r11.48u7664u326800719 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000220013724500750015925000430023426000660027730000210034365000590036494200230042395200430044629634LVL19990323000000.0961008s1996 scu 00011 eng a96002224 a1570031142 a 96002224 c1758d1758 aAF Settle10aSettle, Mary Lee.10aPrisons /cby Mary Lee Settle ; with a new introduction by the author. aUniversity of South Carolina Press ed.0 aColumbia, S.C. :bUniversity of South Carolina Press,cc1996. a256 p. ;c21 cm. 0aGreat BritainxHistoryxFiction.yCivil War, 1642-1649 aLVLcAFkAF Settle bMAINp32000000067180r7.77u7665u326900808 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000170013824500270015526000620018230000210024450000250026552001520029065000220044265000220046494200240048695200440051036653LVL19990320000000.0940808r19881974cau jd 00011 eng a87030719 a1557360251 a 87030719 c1759d1759 aLP J Blume1 aBlume, Judy.10aBlubber /cJudy Blume. aSanta Barbara, Calif. :bCornerstone Books,c1988, c1974. a207 p. ;c24 cm. a"Cornerstone books." aJill goes along with the rest of the fifth-grade class in tormenting a classmate and then finds out what it's like when she, too, becomes a target. 1aSchoolsxFiction. 1aLarge type books. aLVLcJFkJ LP Blume bMAINp32000000049481r10.00u7666u327000600 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000370013724500340017426000370020830000280024594200230027395200430029695200430033943672LVL19990313000000.0950725r19961972nyu 00011 eng a95036575 a0553377809 a 95036575 c1760d1760 aAF Atwood10aAtwood, Margaret Eleanor,d1939-10aSurfacing /cMargaret Atwood.0 aNew York :bBantam Books,c1996. a199 p. ;c21 cm. ;dpa. aLVLcAFkAF Atwood bMAINp32000000062428r6.57u7667u3271 bMAINp31000000058151r6.57u7668u327200526 2200205 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000190013724500310015626000440018730000210023194200240025295200440027650691LVL19990313000000.0810918s1982 nyu 00011 eng a81015814 a0399127070 a 81015814 c1761d1761 aM Francis1 aFrancis, Dick.10aTwice shy /cDick Francis. aNew York :bG.P. Putnam's Sons,cc1982. a307 p. ;c24 cm. aLVLcMYSkM Francis bMAINp32000000032702r10.00u7669u327300781 2200253 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200150011210000310012724500370015826000520019530000280024750000320027561000540030765000530036165000220041465100230043694200250045995200430048422616LVL20030117154813.0950123c19941992onc 00011 eng a0373261586 anpl95000147 c1762d1762 aM McInerny10aMcInerny, Ralph M.,d1929-10aDesert sinner /cRalph McInerny.0 aToronto ;aNew York :bWorldwide,c1994, c1992. a250 p. ;c17 cm. ;dpa. a"A Father Dowling mystery."20aCatholic ChurchxClergyxFiction.zUnited States. 0aDowling, Father (Fictitious character)xFiction. 0aPriestsxFiction. 0aIllinoisxFiction. aLVLcMYSkM McInerny bMAINp32000000055474r2.35u7670u327400836 2200289 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200180012510000200014324500440016326000520020730000330025944000210029250000200031365000160033365000160034965000290036580000380039494200280043295200430046095200430050336654LVL19990320000000.0941216s1994 enka j 00110 eng d a95106827 a0715302485 a 95106827 c1763d1763 aJNF 746.44 Gr10aGreenoff, Jane.10aCross stitch farmyard /cJane Greenoff.0 aNewton Abbot, Devon :bDavid & Charles,cc1994. a32 p. :bcol. ill. ;c27 cm. 0aCrafts for kids. aIncludes index. 1aEmbroidery. 1aHandicraft. 1aDomestic animals in art.10aGreenoff, Jane.tCrafts for kids. aLVLcJNFkJNF 746.44 Gr bMAINp32000000064073r8.96u7672u3275 bMAINp31000000059496r8.96u7673u327601299 2200349 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000320013624501340016825000120030226000470031430000280036144000450038952001270043465000290056165000300059070000260062070000270064694200220067395200420069595200430073795200420078095200420082295200430086495200420090743673LVL20000910211110.0931119s1993 wiua j 00011 eng a93044184 a1562470825 a 93044184 c1764d1764 aJ Porter10aPorter, Connie Rose,d1959-10aHappy birthday, Addy! :ba springtime story /cby Connie Porter ; illustrations, Bradford Brown ; vignettes, Luann Roberts Smith. a1st ed.0 aMiddleton, WI :bPleasant Company,cc1993. a60 p. :bill. ;c23 cm. 4aThe American girls collection ;vbook 4. aTrying to shape a new life of freedom in Philadelphia after having been a slave, Addy finds inspiration from a new friend. 1aAfro-AmericansxFiction. 1aFugitive slavesxFiction.10aSmith, Luann Roberts.11aBrown, Bradford,eill. aLVLcJFkJ Porter bLB2p37000000002568r7.51u7674u3277 bMAINp32000000052081r7.51u7675u3278 bLB1p36000000001919r7.51u7676u3279 bLB2p34000000009535r7.51u7677u3280 bMAINp31000000051415r7.51u7678u3281 bLB1p33000000020575r7.51u7679u328200327 2200133 450000100060000000300040000600500170001000800410002709000150006810000200008324500270010394200260013095200370015657711LVL19990220000000.0950324s19uu 000 0 eng d c1765d1765 aSchreiber, W.G.10aMassacre at Fort Caid. aLVLcAFkAF Schreiber bMAINp31000000030746u7680u328301041 2200325 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000190013724500890015625000120024526000480025730000410030565000320034665000190037865000130039765000220041094200230043295200430045595200440049895200430054295200430058595200440062895200430067222617LVL20000203000000.0940217s1995 nyua 00010 eng a94008647 a051788142X a 94008647 c1766d1766 a746.46 De10aDenner, Linda.10aCreative quilting for home decor /cby Linda Denner ; photographs by Leonard Denner. a1st ed.0 aNew York :bCrown Trade Paperbacks,cc1995. axii, 115 p. :bill. ;c28 cm. ;dpa. 0aMachine quiltingxPatterns. 0aQuilted goods. 0aDrapery. 0aHousehold linens. aLVLcNFk746.46 De bLB2p37000000006035r10.03u7681u3284 bMAINp32000000056886r10.03u7682u3285 bLB1p36000000000811r10.03u7683u3286 bLB2p34000000001132r10.03u7684u3287 bMAINp31000000054076r10.03u7685u3288 bLB1p33000000022143r10.03u7686u328900353 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000180009824500240011694200240014095200430016429636LVL20021009094550.0930126s19xx xxu 00010 eng d a0600360466 c1767d1767 aFisher, Joan.14aThe art of Macrame. aLVLcNFk746.422 Fi bMAINp32000000012268r5.00u7687u329000811 2200205 4500020001500000090001500015100001700030245004700047260003800094300003200132520013200164650002500296942002300321952004200344952004300386952004300429952004200472952004200514952004900556 a0140544844 c1768d176810aSmith, Lane.10aGlasses (who needs 'em?) /cby Lane Smith.0 aNew York :bPuffin Books,cc1991. a[32] p. :bill. ;c23 cm. ; aA boy is unhappy about having to wear glasses, until his doctor provides an imaginative list of well-adjusted eyeglass wearers. 1aEyeglassesxFiction. aLVLcEASYkE Smith bLB2p37000000005831r3.52u7689u3291 bMAINp32000000056062r3.52u7690u3292 bMAINp32000000056063r3.52u7691u3293 bLB2p34000000011062r3.52u7693u3294 bLB1p33000000021855r3.52u7695u3295 bLB1dLB1p36000000012293r3.52u320698u329600698 2200253 450000100060000000300040000600500170001000800390002701000130006602000310007903900180011004000130012805000250014108200160016609000150018209200130019710000300021024500380024025000300027826000490030830000210035794200230037895200430040164731LVL19990217000000.0831129c19841975nyu 00011 eng a83048393 a0060806818 (pbk.) :c$3.500 a2b3c3d3e3 aDLCcDLC1 aPS3570.H58bM59 19840 219a813/.54 c1769d1769 aM Thomas10aThomas, Ross,d1926-1995.14aThe money harvest /cRoss Thomas. a1st Perennial Library ed.0 aNew York :bPerennial Library,c1984, c1975. a314 p. :c18 cm. aLVLcMYSkM Thomas bMAINp31000000026474r1.99u7696u329700679 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000170013524500380015225000120019026000340020230000210023665000390025765000370029665100270033394200220036095200430038222618LVL20030628095749.0930723s1993 nyu 00011 eng a93027133 a0871317451 a 93027133 c1770d1770 aW Henry10aHenry, L. D.10aTerror at Hellhole /cL.D. Henry. a1st ed.0 aNew York :bM. Evans,cc1993. a160 p. ;c22 cm. 0aPrisonersxFiction.zArizonazYuma 0aPrisonsxFiction.zArizonazYuma 0aYuma (Ariz.)xFiction. aLVLcWESkW Henry bMAINp31000000054860r4.98u7697u329800377 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000210009624500260011794200270014395200610017029637LVL20020918123500.0941224s19uu 000 0 eng d a73009020 c1771d17711 aDeyrup, Astrith.10aTie dyeing and batik. aLVLcJNFkJNF 746.6 De bMAINdMAINp32000000015836r1.89u7699u3299v2003-09-0100846 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000490013824500400018725000200022726000480024730000280029565000470032365000350037065000220040565100310042794200240045895200430048295200430052536656LVL20020130170355.0930326r19931977nhu d 00011 eng a93019363 a0792716515 a 93019363 c1772d1772 aLP Forster10aForster, E. M.d1879-1970.q(Edward Morgan),12aA room with a view /cE.M. Forster. aLarge print ed.0 aHampton, N.H. :bCurley Large Print,c1993. a338 p. ;c22 cm. ;dpa. 0aBritishxTravelxFiction.zItalyzFlorence 0aYoung womenxFiction.zEngland 0aLarge type books. 0aFlorence (Italy)xFiction. aLVLcLPkLP Forster bMAINp32000000064039r3.95u7700u3300 bMAINp31000000059464r3.95u7701u330101037 2200301 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200160011410000300013024501070016025000170026726000510028430000310033565000450036665100620041191000500047394200250052395200370054895200370058595200200062295200370064295200200067995200360069943675LVL20021009144457.0950509r19951995nyua 00011 eng d a0060176776 anpl95000701 c1773d1773 aAF Cornwell10aCornwell, Bernard,d1944-10aSharpe's battle :bRichard Sharpe and the Battle of Fuentes de OÄnoro, May 1811 /cBernard Cornwell. . a1st U.S. ed. aNew York :bHarperCollinsPublishers,cc1995. . a304 p. :bill. ;c22 cm. . 0aFuentes de Onoro, Battle of, May 1811. . 0aGreat BritainxHistory, MilitaryxFiction..y19th century a1997 July --bGPL --gextraterrestrial worlds aLVLcAFkAF Cornwell bMAINp32000000057326u7702u3302 bMAINp32000000059240u7703u3303 bLB2u7704u3304 bMAINp31000000054371u7704u3305 bLB1u7705u3306 bLB1p33000000022371u7705u330701740 2200421 450000100060000000300040000600500170001000700100002700800410003702000150007803500160009303700360010909000150014509200130016024501910017326000610036430000550042550000470048050000480052750600310057550800790060651100500068552001720073552100210090752100130092853800100094153800580095165000190100970000260102870000200105470000180107470000230109270000510111594200220116695200440118895200440123295200420127622619LVL19991013000000.0vfucbahoq940920s1989 cau106 g vleng d a0783215703 avid93001276 a82536bMCA Universal Home Video c1774d1774 aAV Field00aField of dreamscGordon Company ; Universal City Studios ; producers, Lawrence Gordon and Charles Gordon ; written for the screen and directed by Phil Alden Robinson.h[videorecording] /0 aUniversal City, CA :bMCA Universal Home Video ;cc1989. a1 videocassette (106 min.) :bsd., col. ;c1/2 in. aClosed-captioned for the hearing impaired. aBased on: Shoeless Joe / by W. P. Kinsella. aFor private home use only. aDirector of photography, John Lindley ; production design, Dennis Gassner.1 aKevin Costner, Amy Madigan, James Earl Jones. aAn Iowa farmer is inspired by a voice he cannot ignore to pursue a dream and turns his cornfield into a baseball field so that some baseball legends can come and play.8 aMPAA rating: PG. aGeneral. aNTSC. aVHS Hi-fi stereo. Dolby surround. Digitally recorded. 0aFeature films.11aRobinson, Phil Alden.11aCostner, Kevin.11aMadigan, Amy.11aJones, James Earl.11aKinsella, W. PhVideorecording.tShoeless Joe. aLVLcAVkAV Field bMAINp32000000083606r10.00u7706u3308 bMAINp31000000031289r67.20u7707u3309 bLB1p33000000023212r9.99u7708u331000569 2200205 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200140011410000200012824500430014826000360019130000280022794200230025595200420027895200430032029638LVL20030703105838.0951031s1995 nyu 00011 eng d a0515117498 anpl95001441 c1775d1775 aAF Nelson10aNelson, Judith.14aThe accidental match /cJudith Nelson.0 aNew York :bJove Books,cc1995. a229 p. ;c17 cm. ;dpa. aLVLcAFkAF Nelson bLB2p37000000013754r4.99u7709u3311 bMAINp32000000060394r2.94u7710u331200675 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012324500690013826000620020730000290026950000200029865100260031871000330034494200240037795200440040136657LVL19990320000000.0940921s1995 nyua 00100 eng a94036959 a0895776820 a 94036959 c1776d1776 a917.304 Se00aSee the USA the easy way :b136 loop tours to 1200 great places.0 aPleasantville, NY :bReader's Digest Association,cc1995. a352 p. :bill. ;c29 cm. aIncludes index. 0aUnited StatesxTours.20aReader's Digest Association. aLVLcNFk917.304 Se bMAINp31000000054268r19.47u7712u331300923 2200277 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200110011210000270012324501150015026000500026530000340031550400510034965000270040065000230042765000240045070000230047494200200049795200430051795200430056095200420060343676LVL19990313000000.0950727c19921991nyu b 00110deng a0553352660 anpl95001033 c1777d1777 a291 An10aAnderson, Sherry Ruth.14aThe feminine face of God :bthe unfolding of the sacred in women /cSherry Ruth Anderson and Patricia Hopkins.0 aNew York, N.Y. :bBantam Books,c1992, c1991. axiii, 253 p. ;c21 cm. ;dpa. aIncludes bibliographical references and index. 0aWomenxReligious life. 0aFemininity of God. 0aWomen and religion.10aHopkins, Patricia. aLVLcNFk291 An bMAINp32000000058550r8.03u7713u3314 bMAINp31000000055213r8.03u7714u3315 bLB1p33000000023083r8.03u7715u331600532 2200205 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009409000150011009200140012510000240013924500430016326000300020630000230023694200240025995200430028350695LVL19990313000000.0920921s1981 nyu 00011 eng a80002750 a0380598574 aonv90003370 c1778d1778 aM MacLeod1 aMacLeod, Charlotte.14aThe palace guard /cCharlotte MacLeod. aNew York :bAvon,cc1981. a176 p. ;c18 cm.;. aLVLcMYSkM MacLeod bMAINp32000000035034r2.95u7716u331700572 2200205 450000100060000000300040000600500170001000800390002703500160006609000150008209200150009710000200011224500380013226000420017030000210021244000420023350000220027594200250029795200440032222620LVL19990327000000.0830316s1983 nyu 00011 eng anpl96000012 c1779d1779 aSF Anthony10aAnthony, Piers.10aOn a pale horse /cPiers Anthony.0 aNew York :bBallantine Books,cc1983. a249 p. ;c22 cm. 0aIncarnations of immortality ;vbk. 1. a"A Del Rey book." aLVLcSCIkSF Anthony bMAINp32000000061956r10.00u7717u331801047 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000230013524500960015826000450025430000350029952001570033465000230049165000230051470000270053794200230056495200430058795200420063095200430067295200420071536658LVL20020903115416.0930722s1994 ilua j 00011 eng a93029594 a0807506028 a 93029594 c1780d1780 aE Kroll10aKroll, Virginia L.10aBeginnings :bhow families come to be /cVirginia L. Kroll ; illustrated by Stacey Schuett.0 aMorton Grove, Ill. :bA Whitman,cc1994. a[32] p. :bcol. ill. ;c23 cm. aParents and children discuss how their families came to be, covering birth families, adoptive families, two-parent families, and single-parent families. 1aFamiliesxFiction. 1aAdoptionxFiction.11aSchuett, Stacey,eill. aLVLcEASYkE Kroll bMAINp32000000058322r8.13u7718u3319 bLB2p34000000006419r8.13u7719u3320 bMAINp31000000055052r8.13u7720u3321 bLB1p33000000022956r8.13u7721u332200764 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000220013724500520015926000320021130000350024352001250027865000280040365000220043194200250045395200440047843677LVL19990313000000.0941021s1995 nyua j 00011 eng a94039232 a067085722X a 94039232 c1781d1781 aE Carlson10aCarlson, Nancy L.10aArnie and the skateboard gang /cNancy Carlson.0 aNew York :bViking,cc1995. a[32] p. :bcol. ill. ;c24 cm. aWhen Arnie is challenged to skateboard down a dangerous hill, he has to decide how far he is willing to go to be "cool." 1aSkateboardingxFiction. 1aCouragexFiction. aLVLcEASYkE Carlson bMAINp32000000059994r13.99u7722u332300880 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000200013724500690015726000520022630000300027850000210030852000990032965000250042865000270045365100190048070000350049994200250053495200430055950696LVL19990313000000.0910613r19911943caua j 00011 eng a91024069 a0152518738 a 91024069 c1782d1782 aE Thurber1 aThurber, James.10aMany moons /cby James Thurber ; illustrated by Louis Slobodkin. aSan Diego :bHarcourt Brace Jovanovich,cc1991. a[47] p. :bill. ;c26 cm. a"Voyager books." aThough many try, only the court jester is able to fulfill Princess Lenore's wish for the moon. 1aPrincessesxFiction. 7aCaldecott Medal books. 1aMoonxFiction.11aSlobodkin, Louis,d1903-eill. aLVLcEASYkE Thurber bMAINp32000000036101r9.27u7723u332400941 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009405000230010808200150013109000150014609200150016110000230017624500620019926000460026130000330030752002030034065000130054365000150055670000240057194200250059595200430062064734LVL20020117104818.0840405s1985 njua j 00010 eng a84002597 a0816701415 a 840025970 aQC757.5.bS26 19850 219a538/.2 c1783d1783 aJNF 538 Sa10aSantrey, Laurence.10aMagnets /cLaurence Santrey ; illustrated by Joseph Veno.0 aMahwah, N.J. :bTroll Associates,cc1985. a30 p. :bcol. ill. ;c22 cm. aDiscusses the qualities of magnets, which attract certain metals and have been used as compasses and as components of many modern inventions, including the telephone, television, and electric motor. 1aMagnets. 1aMagnetism.11aVeno, Joseph,eill. aLVLcJNFkJNF 538 Sa bMAINp31000000035239r9.24u7724u332500793 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000190013724501050015626000510026130000410031250000200035350400320037365000400040565000270044594200230047295200440049522621LVL19990327000000.0840514s1985 njua b 00110 eng a84011435 a0136235964 a 84011435 c1784d1784 a709.02 Sn10aSnyder, James.10aNorthern Renaissance art :bpainting, sculpture, the graphic arts from 1350 to 1575 /cJames Snyder.0 aEnglewood Cliffs, NJ :bPrentice-Hall,cc1985. a559 p. :bill. (some col.) ;c30 cm. aIncludes index. aBibliography: p. [534]-537. 0aArt, RenaissancezEurope, Northern. 0aArtzEurope, Northern. aLVLcNFk709.02 Sn bMAINp32000000065865r20.00u7725u332600737 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000310013824500600016926000530022930000290028250400200031165000530033194200240038495200430040895200440045136659LVL19990320000000.0950203s1995 wiua 00110 eng a95005976 a0760300305 a 95005976 c1785d1785 a629.225 Le10aLeffingwell, Randy,d1948-10aFarm tractors :ba living history /cRandy Leffingwell.0 aOsceola, WI :bMotorbooks International,cc1995. a240 p. :bill. ;c32 cm. aIncludes index. 0aFarm tractorsxDesign and constructionxHistory. aLVLcNFk629.225 Le bLB2p31000000056401r14.99u7726u3327 bMAINp32000000059835r14.99u7727u332801150 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000240013424501210015825000120027926000410029130000280033249000350036052002320039565000260062765000400065365100240069370000250071794200200074295200440076295200420080650697LVL19990313000000.0880128s1988 wiua j 00011 eng a88002523 a0937295388 a 88002523 c1786d1786 aJ Shaw10aShaw, Janet Beeler.10aKirsten saves the day :ba summer story /cby Janet Shaw ; illustrations by RenÂee Graef ; vignettes by Keith Skeen. a1st ed.0 aMadison, WI :bPleasant Co.,cc1988. a67 p. :bill. ;c23 cm. 4aThe American girls collection. aTen-year-old Kirsten is proud and excited when she finds a bee tree full of honey, one of the natural treasures of her Minnesota frontier world, but she exposes herself to great danger by trying to harvest the honey by herself. 1aBee huntingxFiction. 1aFrontier and pioneer lifexFiction. 1aMinnesotaxFiction.11aGraef, RenÂee,eill. aLVLcJFkJ Shaw bMAINp32000000037199r12.95u7728u3329 bLB1p33000000008441r6.00u7729u333000342 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000160009624500170011294200240012995200430015357716LVL19990220000000.0950324s19uu 000 0 eng d a69015194 c1787d1787 aPollock, J.14aThe apostle. aLVLcNFk225.92 POL bMAINp31000000019181r3.30u7730u333101297 2200325 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200130011210000330012524500740015826000440023230000280027650400520030452002290035665000230058565000200060865000290062865100380065794200220069595200420071795200430075995200430080295200420084595200420088795200420092936660LVL20000910181629.0960119r19951994nyu j b 00011 eng a006447111X anpl96000186 c1788d1788 aJ Wright10aWright, Richard,d1908-1960.10aRite of passage /cby Richard Wright ; afterword by Arnold Rampersad.0 aNew York :bHarperTrophy,c1995, c1994. a151 p. ;c18 cm. ;dpa. aIncludes bibliographical references (p. [145]). aWhen fifteen-year-old Johnny Gibbs is told that he is really a foster child, he runs off into the streets of Harlem and meets up with a gang that wants him to participate in a mugging. Includes criticism of Wright's fiction. 1aRunawaysxFiction. 1aGangsxFiction. 1aAfro-AmericansxFiction. 1aHarlem (New York, N.Y.)xFiction. aLVLcJFkJ Wright bLB2p37000000002605r2.61u7731u3332 bMAINp32000000062313r2.61u7732u3333 bMAINp32000000062314r2.61u7733u3334 bLB1p36000000002165r2.61u7734u3335 bLB2p34000000012595r2.61u7735u3336 bLB1p33000000024499r2.61u7736u333700954 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010810000240012324500630014724600310021026000480024130000360028950000200032565000140034565000180035994200200037795200430039795200420044095200430048295200420052595200430056795200420061043679LVL19990313000000.0960523s1996 njua 00110 eng a96022994 a1564142183 a 96022994 c1789d178910aRoss, Debra,d1958-10aMaster math :bpre-calculus and geometry /cby Debra Ross.30aPre-calculus and geometry.0 aFranklin Lakes, NJ :bCareer Press,cc1996. a181 p. :bill. ;c21 cm. ;dpa. aIncludes index. 0aGeometry. 0aTrigonometry. aLVLcNFk515 Ro bMAINp32000000067536r9.99u7737u3338 bLB1p36000000010020r9.99u7738u3339 bMAINp35000000003781r9.99u7739u3340 bLB2p34000000015598r9.99u7740u3341 bMAINp31000000062342r9.99u7741u3342 bLB1p33000000000954r9.99u7742u334300673 2200253 450000100060000000300040000600500170001000800390002701000200006602000150008604000130010105000160011408200160013009000150014610000290016124500240019026000530021430000270026735000110029465000190030565000280032494200240035295200430037657717LVL20020918140008.0710517s1970 ilua 00000 eng a75123283 //r822 a0842306307 aDLCcDLC0 aHQ769.bD580 219a649/.64 c1790d179010aDobson, James C.,d1936-10aDare to discipline.0 aWheaton, Ill.,bTyndale House Publishersc[1970] a228 p.billus.c22 cm. a$3.95. 0aChild rearing. 0aDiscipline of children. aLVLcNFk301.427 Do bMAINp31000000020565r2.64u7744u334400878 2200289 450000100060000000300040000600500170001000800390002701000190006602000250008502000340011003500160014404000200016005000250018008200130020509000150021810000240023324500350025726000440029230000210033651000140035752001080037152100170047965100260049694200230052295200430054522623LVL20020912163507.0771101s1978 nyu 00011 eng a77016731 //r89 a0312087195 :c$7.95. a0312087209bl. print :c$9.95 aflb00248002 aDLCcDLCdICrlF1 aPS3566.A34bB55 1978 a813/.5/4 c1791d179110aKelley, Ray,d1916-10aBlue rock range /cRay Kelley.0 aNew York :bSt. Martin's Press,cc1978. a156 p. ;c19 cm.0 aBooklist. aBill Nash's discovery of an abandoned Indian baby precipitates a desperate shootout with angry Apaches.2 aYoung Adult. 0aWest (U.S.)xFiction. aLVLcLPkLP Kelley bMAINp31000000010838r1.95u7746u334500463 2200157 4500010001300000020001500013090001500028100002700043245004300070250002000113260005000133300003100183650002200214942002500236952004400261 a96042426 a0679774130 c1792d1792 aLe Carre, John,d1931- aThe tailor of Panama /cJohn Le Carre. aLarge print ed. aNew York :bRandom House Large Print,cc1996. a578 p. :bill. ;c24 cm. ; aLarge type books. aLVLcLPkLP Le Carre bMAINp31000000062218r15.00u7747u334600647 2200217 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200140011424500880012826000290021630000280024570000240027370000310029770000340032894200240036295200430038650699LVL20011004171218.0930524s1991 ntu 00001 eng d a0812554442 anpl93000140 c1793d1793 aSF Beyond00aBeyond the gate of worlds /cRobert Silverberg, John Brunner, Chelsea Quinn Yarbro.0 aNew York :bTor,cc1991. a280 p. ;c17 cm. ;dpa.10aSilverberg, Robert. 0aBrunner, John,d1934-1995.10aYarbro, Chelsea Quinn,d1942- aLVLcSCIkSF Beyond bMAINp32000000039703r2.29u7748u334700337 2200133 450000100060000000300040000600500170001000800410002709000150006810000300008324500300011394200230014395200370016657718LVL19990220000000.0950324s19uu 000 0 eng d c1794d17941 aHudson, Rock,d1925-1985.10aRock Hudson :bhis story. aLVLcBIOkB Hudson bMAINp31000000021311u7749u334800861 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000260014024500930016626000390025930000340029844000250033265100130035765100120037065100100038265100200039270000280041294200270044095200440046795200600051136662LVL19990320000000.0941108s1995 nyuab j 00110 eng a94042008 a0791034089 a 94042008 c1795d1795 aJNF 917.9 Ay 0aAylesworth, Thomas G.14aThe West :bArizona, Nevada, Utah /cby Thomas G. Aylesworth and Virginia L. Aylesworth.0 aNew York :bChelsea House,cc1995. a96 p. :bill. ; map ;c21 cm. 0aDiscovering America. 1aArizona. 1aNevada. 1aUtah. 1aSouthwest, New.10aAylesworth, Virginia L. aLVLcJNFkJNF 917.9 Ay bMAINp32000000064910r18.95u7751u3349 bLB2dLB2p37000000015551r18.95u7752u3350v2004-12-1100704 2200241 450000100060000000300040000600500170001000800390002701000130006603500140007909000150009309200120010810000230012024500420014325000180018526000440020330000210024794200210026895200430028995200430033295200440037595200430041943681LVL19990806000000.0790618s1979 nyu 00011 eng a79016680 a 79016680 c1796d1796 aAF Rice10aRice, Anne,d1941-14aThe Feast of All Saints /cAnne Rice. aBook Club ed.0 aNew York :bSimon and Schuster,cc1979. a635 p. ;c22 cm. aLVLcAFkAF Rice bMAINp32000000016821r7.00u7753u3351 bLB2p34000000003925r10.00u7754u3352 bMAINp31000000016950r16.95u7755u3353 bLB1p33000000009119r10.00u7756u335400372 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000250009824500330012394200270015695200430018322625LVL19990327000000.0930512s19xx xxu 00010 eng d a0811666050 c1797d1797 aWilkie, Katharine E.10aPocahontas, Indian princess. aLVLcJBkJB Pocahontas bMAINp32000000020720r6.29u7757u335500802 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012324500540013725000120019126000480020330000400025150000480029165000140033974000310035394200240038495200440040895200420045295200420049429644LVL20030624102142.0860721s1987 iaua 00000 eng a86062168 a0696016117 a 86062168 c1798d1798 a684.08 Be00aBetter Homes and Gardens quick & easy woodcrafts. a1st ed.0 aDes Moines, Iowa :bMeredith Corp.,cc1987. a80 p. :bill. (some col.) ;c28 cm. aAt head of title: Better homes and gardens. 0aWoodwork.01aQuick and easy woodcrafts. aLVLcNFk684.08 C.2 bMAINp32000000054746r10.00u7758u3356 bLB2p34000000002140r4.04u7759u3357 bLB1p33000000017634r4.04u7760u335800709 2200229 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200190011410000260013324500450015926000360020430000510024060000230029165000500031494200290036495200430039395200430043636663LVL19990320000000.0960810s1994 nyuaf j 00010beng d a0590477854 anpl96001525 c1799d1799 aJNF 796.323 Wh10aWhite, Ellen Emerson.10aShaquille O'Neal /cEllen Emerson White.0 aNew York :bScholastic,cc1994. a114, [8] p. of plates :bill. ;c20 cm. ;dpa.10aO'Neal, Shaquille. 1aBasketball playersxBiography.zUnited States aLVLcJNFkJNF 797.323 Wh bMAINp32000000066204r2.95u7761u3359 bMAINp31000000061214r2.95u7762u336000291 2200121 450000100060000000300040000600500170001000800410002709000150006824500270008394200160011095200430012643682LVL19990313000000.0941224s19uu 000 0 eng d c1800d180010aCOBBLESTONE JULY 1984. aLVLcPERkJ bMAINp32000000022109r2.25u7763u336100850 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000190013524500860015426000610024030000300030144000180033165000110034970000180036094200230037895200430040195200430044495200430048795200420053050701LVL20020410090946.0921113s1992 ilua j 00011 eng a92238845 a1561734829 a 92238845 c1801d1801 aE Siede10aSiede, George.10aColors /cphotography, George Siede and Donna Preis ; consultant, Istar Schwager.0 aLincolnwood, Ill. :bPublications International,cc1992. a[18] p. :bill. ;c21 cm. 0aActive minds. 1aColor.10aPreis, Donna. aLVLcEASYkE Siede bMAINp32000000040386r5.99u7764u3362 bMAINp32000000125362r5.99u7765u3363 bMAINp31000000083481r5.99u7766u3364 bLB1p33000000015832r5.99u7767u336500569 2200193 4500010001300000020001500013082001100028090001500039100001900054245008500073250001400158260003000172300003200202500002200234650002500256650003900281650003400320942002100354 a72094705 a0876901062 a643/.7 c1802d180210aTreves, Ralph.14aThe homeowner's complete guide.cIllustrated with photos., drawings, and diagrs. a[1st ed.]0 aNew York,bDutton,c1974. avii, 275 p.billus.c27 cm. a"A Sunrise book." 0aDo-it-yourself work. 0aDwellingsxMaintenance and repair. 0aRepairingxAmateurs' manuals. aLVLcNFk643 TRE00823 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200180012310000250014124501080016626000430027430000280031750000200034565000160036565000160038174000450039794200280044295200440047095200430051464739LVL19990217000000.0920430s1992 nyua j 00110 eng a92014944 a1895569087 a 92014944 c1803d1803 aJNF 745.54 Wa10aWalter, F. Virginia.10aFun with paper bags & cardboard tubes /cby F. Virginia Walter ; [illustrations by Teddy Cameron Long].0 aNew York :bSterling Pub. Co.,cc1992. a80 p. :bill. ;c26 cm. aIncludes index. 0aPaper work. 0aPaper bags.01aFun with paper bags and cardboard tubes. aLVLcJNFkJNF 745.54 Wa bMAINp31000000041792r13.96u7769u3366 bLB1p33000000014592r13.96u7770u336700322 2200133 450000100060000000300040000600500170001000800410002709000150006810000230008324500140010694200240012095200440014422626LVL19990327000000.0940430s19xx xxu 00010 eng d c1804d1804 aDurrell, Lawrence.10aMonsieur. aLVLcAFkAF Durrell bMAINp32000000000974r10.00u7771u336800906 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000190013424500650015326000540021830000300027252000980030265000210040065000310042170000260045294200220047895200430050095200430054395200420058650702LVL19990313000000.0920728s1993 nyua j 00011 eng a92028965 a0803712863 a 92028965 c1805d1805 aE Moss10aMoss, Thylias.10aI want to be /cby Thylias Moss ; pictures by Jerry Pinkney.0 aNew York :bDial Books for Young Readers,cc1993. a[32] p. :bill. ;c31 cm. aAfter some thought a young girl describes in poetic terms the kind of person she wants to be. 1aGrowthxFiction. 1aSelf-realizationxFiction.11aPinkney, Jerry,eill. aLVLcEASYkE Moss bMAINp32000000041598r8.84u7772u3369 bMAINp31000000044263r8.84u7773u3370 bLB1p33000000016150r8.84u7774u337100705 2200229 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200130011210000280012524500520015326000490020530000530025460000220030765000360032965000450036594200220041095200430043264740LVL19990217000000.0791005s1980 nyuaf 00010beng a0312902328 anpl94000036 c1806d1806 a364.1 Li1 aLinedecker, Clifford L.14aThe man who killed boys /cClifford Linedecker. aNew York :bSt. Martin's Paperbacks,cc1980. a250 p., [8] leaves of plates :bill. ;c17 cm.;.10aGacy, John Wayne. 0aMurderersxBiography.zIllinois 0aMurderxCase studies.zIllinoiszChicago aLVLcNFk364.1 Li bMAINp31000000046709r2.33u7775u337200368 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000230009624500410011994200250016095200370018522627LVL19990327000000.0930520s19xx xxu 00010 eng d a84012910 c1807d18071 aEstleman, Loren D.10aSugartown :ban Amos Walker mystery. aLVLcMYSkM Estleman bMAINp32000000024570u7776u337300339 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000200009624500130011694200210012995200430015043684LVL19990316000000.0930421s19xx xxu 00010 eng d a91055514 c1808d1808 aHarbin, Robert.10aOrigami. aLVLcNFk736 HAR bMAINp32000000032390r4.64u7777u337401112 2200313 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200130011210000190012524500740014426000440021830000400026252001010030265000270040365000220043070000230045294200240047595200430049995200430054295200430058595200420062895200430067095200430071395200420075650703LVL20030619092119.0960628r19961981nyua j 00011 eng a0380727951 anpl96001206 c1809d1809 aE Parish10aParish, Peggy.10aAmelia Bedelia and the baby /cPeggy Parish ; pictures by Lynn Sweat.0 aNew York :bAvon Camelot,c1996, c1981. a63 p. :bcol. ill. ;c22 cm. ;dpa. aAmelia Bedelia follows to the letter the list of instructions for looking after the Lanes' baby. 1aBaby sittersxFiction. 1aHumorous stories.11aSweat, Lynn,eill. aLVLcEASYkE Parish bMAINp32000000065412r2.27u7778u3375 bMAINp32000000000196r2.27u7779u3376 bMAINp35000000001735r2.27u7780u3377 bLB2p34000000014032r2.27u7781u3378 bMAINp31000000060633r2.27u7782u3379 bMAINp31000000060634r2.27u7783u3380 bLB1p33000000026113r2.27u7784u338100892 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000290013724501110016625000120027726000410028930000330033050000220036365000450038565000340043094200230046495200420048795200430052995200420057264741LVL20010824143707.0950322s1994 nyu 00110 eng a93044807 a0060950617 a 93044807 c1810d1810 a015.73 Pe10aPearlman, Mickey,d1938-10aWhat to read :bthe essential guide for reading group members and other book lovers /cby Mickey Pearlman. a1st ed.0 aNew York :bHarperPerennial,cc1994. axii, 229 p. ;c21 cm. ;dpa. aIncludes indexes. 0aBibliographyxBest books.zUnited States 0aGroup readingzUnited States. aLVLcNFk015.73 Pe bLB2p34000000001206r5.22u7785u3382 bMAINp31000000048736r5.22u7786u3383 bLB1p33000000019240r5.22u7787u338400344 2200133 450000100060000000300040000600500170001000800410002709000150006810000340008324500250011794200250014295200430016736666LVL19990320000000.0921214s19xx xxu 00010 eng d c1811d18111 aChristie, Agatha,d1890-1976.10aMurder with mirrors. aLVLcMYSkM Christie bMAINp32000000001649r5.00u7788u338501157 2200361 450000100060000000300040000600500170001000800390002701000170006602000250008303500160010804000200012405000220014408200120016609000150017810000210019324500770021425000120029126000470030330000400035051000320039051000190042251000140044152001160045552100090057165000240058065000250060465000250062970000290065494200250068395200430070895200440075143685LVL19990316000000.0891003s1988 nyua j 000 1 eng a88081293 /AC a0374309515 :c$13.95 aflb01570803 aDLCcDLCdICrlF0 aPZ7.Y819bBr 19880 220a[E] c1812d18121 aYorinks, Arthur.10aBravo, Minski /cstory by Arthur Yorinks ; pictures by Richard Egielski. a1st ed. aNew York :bFarrar, Straus, Giroux,c1988. a[32] p. :bcol. ill. ;c23 x 28 cm.0 aChildren's Catalog (Wilson)0 aSLJ Best Book.0 aBooklist. aMinski travels across Europe inventing wonderful things, till at last he accomplishes his proudest achievement.2 aK-3. 1aInventorsxFiction. 7aScientistsxFiction. 7aInventionsxFiction.11aEgielski, Richard,eill. aLVLcEASYkE Yorinks bMAINp32000000026135r8.37u7789u3386 bMAINp32000000062693r13.95u7790u338700555 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200160012310000260013924500320016525000120019726000380020930000210024794200250026895200440029350704LVL20020205132624.0920107s1992 nyu 00011 eng a92003991 a0679412611 a 92003991 c1813d1813 aAF Horowitz1 aHorowitz, Eve,d1963-10aPlain Jane /cEve Horowitz. a1st ed. aNew York :bRandom House,cc1992. a261 p. ;c24 cm. aLVLcAFkAF Horowitz bMAINp32000000045261r11.70u7791u338800204 2200085 4500090001500000100001600015245002100031942002300052952004300075 c1814d1814 aKerfoot, J.10aAmerican pewter. aLVLcNFk739.23 Ke bMAINp31000000023269r2.98u7792u338900375 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000310009824500340012994200230016395200430018636667LVL19990320000000.0930330s19xx xxu 00010 eng d a0553451146 c1815d181510aAsimov, Isaac,d1920-1992.10aFoundationh[sound recording] aLVLcACkAC Asimov bMAINp32000000032051r8.07u7794u339000685 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009404000130010805000250012108200170014609000150016309200140017810000270019224500410021925000260026026000350028626300100032130000210033194200240035295200430037643686LVL20010824162333.0900507r1989 nyu 00011 eng a90003544 a038526514X a 90003544 aDLCcDLC00aPR6003.R458bS6 198900220a823/.912 c1816d1816 aM Ferrars10aFerrars, E. X.,d1907-10aSmoke without fire /cE. X. Ferrars. a1st ed. in the U.S.A.0 aNew York :bDoubleday,cc1989. a9101. a182 p. ;c22 cm. aLVLcMYSkM Ferrars bMAINp32000000029630r8.82u7795u339101451 2200385 450000100060000000300040000600500170001000700100002700800410003703500160007803700300009409000150012409200200013924501240015926000490028330000660033244000300039850000640042850600310049251100640052352001480058752100130073553800090074865000230075770000190078070000200079970000200081970000200083971000240085971000320088373000370091594200270095295200440097995200420102350705LVL20021214105107.0vf cbahom931230s1988 ilu058 gr vleng d avid93000668 aHIR01bPublic Media Video c1817d1817 aAVJ Hiro- shima00aHiroshima maidencAn Arnold Shapiro Production ; Jean O'Neill, producer ; directed by Joan Darling.h[videorecording] / aChicago, Ill. :bPublic Media Video,cc1988. a1 videocassette (58 min.) :bsd., col. ;c1/2 in. +e1 guide. 0aWonderWorks family movie. aOriginally broadcast on the television program WonderWorks. aFor private home use only.1 aSusan Blakely, Tamlyn Tomita, Richard Masur, Stephen Dorff. aWhen a young Japanese woman, injured in the bombing at Hiroshima, comes to live with an American family, the older son finds it hard to accept. aGeneral. aVHS. 0aYoung adult films.11aDarling, Joan.11aBlakely, Susan.11aTomita, Tamlyn.11aMasur, Richard.21aPublic Media Video.21aArnold Shapiro Productions.01aWonderWorks (Television program) aLVLcAVkAVJ Hiroshima bMAINp31000000045719r22.46u7796u3392 bLB2p37000000023709r0.22u7797u339300774 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009404000200011005000320013008200130016209000150017510000370019024500360022726000440026330000210030752001100032852100170043894200230045595200420047857724LVL20000910174429.0760423s1976 nyu 00011 eng a76015612 a0671223399 aflb00636206 aDLCcDLCdICrlF0 aPZ4.A889aPR9199.3.A8bLad3 a813/.5/4 c1818d181810aAtwood, Margaret Eleanor,d1939-10aLady Oracle /cMargaret Atwood.0 aNew York :bSimon and Schuster,cc1976. a345 p. ;c22 cm. aWhen all the secrets of her life are about to be exposed, a young woman plans her own "accidental death."2 aYoung Adult. aLVLcAFkAF Atwood bLB2p37000000009158r3.45u7798u339400325 2200133 450000100060000000300040000600500170001000800410002709000150006810000280008324500220011194200210013395200370015464743LVL19990217000000.0950324s19uu 000 0 eng d c1819d18191 aGrey, Zane,d1872-1939.14aThe trail driver. aLVLcAFkAF Grey bMAINp31000000029227u7799u339500708 2200241 450000100060000000300040000600500170001000800390002701000170006602000150008303500180009809000150011609200180013110000160014924500320016526000400019730000280023752001050026565100120037074000120038294200290039495200430042322630LVL19990327000000.0890803s1990 nyu j 00110 eng a89038985 /AC a0531140288 a 89038985 /AC c1820d1820 aJNF 956.94 Ja10aJames, Ian.10aInside Israel /cIan James.0 aNew York :bFranklin Watts,cc1990. a32 p. :bill. ;c27 cm. aIntroduces the people, history, land, towns, family life, food, sports, and other aspects of Israel. 1aIsrael.01aIsrael. aLVLcJNFkJNF 956.94 JAM bLB2p34000000009322r10.88u7801u339601269 2200349 450000100060000000300040000600500170001000800390002701000130006602000310007903500160011003900180012604000200014405000270016408200160019109000150020710000250022224500390024726000490028630000210033550000360035652002070039252100340059952100100063394200200064395200430066395200430070695200420074995200430079195200430083495200420087729649LVL20020918131433.0830725s1983 mnu 00011 eng a83015503 a0871234017 (pbk.) :c$4.95 aflb009274100 a2b3c3d3e3 aDLCcDLCdICrlF0 aPR9199.3.O38bL57 19830 219a813/.54 c1821d182110aOke, Janette,d1935-10aLove's abiding joy /cJanette Oke.0 aMinneapolis, Minn. :bBethany House,cc1983. a217 p. ;c21 cm. aSequel to: Love's long journey. aSequel to: Love's long journey. Clark and Marty visit their daughter, Missie and her husband Willie in the far West and meet their two little grandsons. Then the visit is shattered by a tragic accident.0 a7.0bFollett Library Book Co.2 a7-10. aLVLcAFkAF Oke bMAINp32000000026400r3.51u7802u3397 bMAINp32000000028989r2.45u7803u3398 bLB1p36000000004583r2.45u7804u3399 bMAINp31000000014366r3.51u7805u3400 bMAINp31000000033255r2.45u7806u3401 bLB1p33000000003047r2.45u7807u340201169 2200349 450000100060000000300040000600500170001000800390002701000130006602000380007903500160011704000250013305000220015808200190018009000150019924500780021426000470029230000400033952001210037952100170050065000240051765000260054165000240056765000240059165000260061565000240064170000240066571000210068994200230071095200430073395200430077643688LVL19990316000000.0890616s1989 moua 00000 eng a89036293 a0836218604 :c$8.95 ($12.95 Can.) aflb01522904 aDLCcDLCdDLCdICrlF00aTT825.bC645 198900220a746.9/7041 c1822d182202aA Collection of afghans /cTrexler Designs ; edited by Carolyn Sheffield.0 aKansas City :bAndrews and McMeel,cc1989. a80 p. :bill. (some col.) ;c26 cm. aEasy-to-follow instructions and diagrams with illustrations to create more than twenty knitted or crocheted designs.2 aYoung Adult. 0aAfghans (Coverlets) 0aCrochetingxPatterns. 0aKnittingxPatterns. 7aAfghans (Coverlets) 7aCrochetingxPatterns. 7aKnittingxPatterns.10aSheffield, Carolyn.20aTrexler Designs. aLVLcNFk746.9 COL bMAINp32000000026195r6.08u7811u3403 bMAINp31000000014137r6.08u7812u340400485 2200181 450000100060000000300040000600500170001000800410002702000150006809000150008309200140009810000400011224500300015230000130018294200230019595200420021895200430026064745LVL20010315124340.0910813s19xx xxu 00010 eng d a0425121259 c1823d1823 aAF Koontz1 aKoontz, Dean R.d1945-q(Dean Ray),14aThe servants of twilight. a[300] p. aLVLcAFkAF Koontz bLB2p37000000015616r5.99u7814u3405 bMAINp31000000049397r5.50u7815u340600870 2200301 450000100060000000300040000600500170001000800390002701000130006602000220007903500140010104000130011505000240012808200190015209000150017110000210018624500840020725000120029126000450030330000270034850000200037550000200039550400320041565000360044765000190048394200230050295200430052522632LVL19990327000000.0860612s1987 nyu b 001 0 eng a86016507 a0385295251 (pbk.) a 86016507 aDLCcDLC0 aBF723.S75bK82 19870 219a649/.1/019 c1824d18241 aKuczen, Barbara.10aChildhood stress :bhow to raise a healthier, happier, child /cBarbara Kuczen. aNew ed. aNew York, N.Y. :bDell Pub. Co.,cc1987. axiii, 394 p. ;c21 cm. aIncludes index. a"A Delta book." aBibliography: p. [381]-383. 0aStress in childrenxPrevention. 0aChild rearing. aLVLcNFk649.1 KUC bMAINp32000000010962r6.46u7816u340700363 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000370009824500140013594200250014995200430017429651LVL19990323000000.0921222s19xx xxu 00010 eng d a0553117866 c1825d1825 aBuchheim, Lothar-Gunther,d1918-14aThe boat. aLVLcAFkAF Buchheim bMAINp32000000001312r2.50u7817u340800854 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009403900180011004000200012805000250014808200160017309000150018910000160020424500320022025000120025226000330026430000430029751000140034052001280035452100170048294200210049995200440052036670LVL19990320000000.0840504s1984 nyubf 000 1 eng a84045051 a0689114788 aflb002298100 a2b3c3d3e3 aDLCcDLCdICrlF0 aPS3554.O415bE5 19840 219a813/.54 c1826d18261 aDoig, Ivan.10aEnglish creek /cIvan Doig. a1st ed. aNew York :bAtheneum,c1984. a339, [2] p. of plates :bmap ;c25 cm.0 aBooklist. aThe portrait of a time and a place -Montana in the 1930's -- is depicted through the McCaskill family's personal struggles.2 aYoung Adult. aLVLcAFkAF Doig bMAINp32000000025709r10.00u7818u340900929 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012324501010013826000580023930000340029744000390033150000200037065000270039071000500041771000290046794200240049695200440052095200430056495200440060750708LVL20000910174348.0920221s1992 mnua 00100 eng a92005358 a0865733538 a 92005358 c1827d1827 a745.594 De00aDecorating for Christmas :b136 ideas to make the holidays special /cHome Decorating Institute. aMinnetonka, Minn. :bCy DeCosse Incorporated,cc1992. a128 p. :bcol. ill. ;c29 cm. 0aArts & crafts for home decorating. aIncludes index. 0aChristmas decorations.20aHome Decorating Institute (Minnetonka, Minn.)20aCy DeCosse Incorporated. aLVLcNFk745.594 De bMAINp32000000047070r18.95u7820u3410 bLB1p36000000015147r18.95u7821u3411 bMAINp31000000048300r18.95u7822u341200925 2200241 4500010001300000020001500013082001800028090001500046100003600061245009100097250001400188260004900202300003100251500003500282500005300317500005900370600003600429600005200465600004500517650005200562942002600614952004300640 a72088792 a0151421765 aBa818/.5/209 c1828d182810aLindbergh, Anne (Morrow)d1906-10aHour of gold, hour of lead ;bdiaries and letters of Anne Morrow Lindbergh, 1929-1932. a[1st ed.]0 aNew York,bHarcourt Brace Jovanovichc[1973] axi, 340 p.billus.c22 cm. a"A Helen and Kurt Wolff book." aContinuation of the author's Bring me a Unicorn. aContinued by the author's Locked rooms and open doors.10aLindbergh, Anne (Morrow)d1906-10aLindbergh, Anne Morrow,d1906-xCorrespondence.10aLindbergh, Anne Morrow,d1906-xDiaries. 0aAir pilotsxCorrespondence, reminiscences, etc. aLVLcBIOkB Lindbergh bMAINp31000000021425r2.75u7823u341300898 2200241 450000100060000000300040000600500170001000800390002702000150006603500200008109000150010109200140011610000180013024500460014826000470019430000230024152002370026465000250050165000210052694200230054795200430057095200430061350709LVL19990313000000.0940716r19891988nyu j 00011 eng a0440204798 anpl94001205 /AC c1829d1829 aYA Hinton1 aHinton, S. E.10aTaming the star runner /cby S.E. Hinton. aNew York :bDelacorte Press,c1989, c1988. a181 p. :c17 cm.;. aSent to live with his uncle after a violent confrontation with his stepfather, sixteen-year-old Travis, an aspiring writer, finds life in a small Oklahoma town confining until he meets an eighteen-year-old horse trainer named Casey. 1aAuthorshipxFiction. 1aHorsesxFiction. aLVLcYAkYA Hinton bMAINp32000000048733r3.99u7824u3414 bMAINp31000000050202r3.99u7825u341500843 2200265 450000100060000000300040000600500170001000800390002701000130006602000220007902000290010103500160013009000150014609200130016110000190017424500810019326000460027430000350032052000820035565000220043765000210045970000300048094200240051095200430053457728LVL19990220000000.0840523s1985 njua j 00011 eng a84008634 a0816704376 (pbk.) a0816703574 (lib. bdg.) : aflb00584411 c1830d1830 aE Feczko10aFeczko, Kathy.14aThe great bunny race /cwritten by Kathy Feczko ; illustrated by John Jones.0 aMahwah, N.J. :bTroll Associates,cc1985. a[30] p. :bcol. ill. ;c24 cm. aCan slow Toby outrun champion racer, Boomer Bunny, at the Annual Rabbit Race? 1aRabbitsxFiction. 1aRacingxFiction.11aJones, John,d1935-eill. aLVLcEASYkE Feczko bMAINp31000000002701r8.76u7826u341601493 2200421 450000100060000000300040000600500170001000800390002701000170006602000250008303500160010803900180012404000200014204100110016205000260017308200160019909000150021510000200023024000340025024501050028426000850038930000400047450000440051451000140055851000280057251000240060052001670062452100340079152100090082565000500083465000550088465000190093965000110095865000190096965000110098894200280099995200440102729653LVL20000912045250.0851210s1986 maua j 000 0 eng a85030986 /AC a0887080197 :c$12.95 aflb005661110 a2b3c3d3e3 aDLCcDLCdICrlF1 aengger0 aQL696.A52bK3513 19860 219a598.4/1 c1831d18311 aKalas, Sybille.10aGÈanse-Kinder-Buch.lEnglish.14aThe goose family book /cSybille Kalas ; preface by Konrad Lorenz ; translated by Patricia Crampton. aNatick, MA. :bPicture Book Studio USA :bDistributed by Alphabet Press,cc1986. a[53] p. :bcol. ill. ;c23 x 25 cm. aTranslation of: Das GÈanse-Kinder-Buch.0 aBooklist.0 aSchool Library Journal.0 aHorn Book Magazine. aText and photographs describe the physical characteristics and behavior of a family of goslings from the moment they hatch from eggs until they grow to adulthood.0 a4.6bFollett Library Book Co.2 aK-3. 0aGreylag goosexBehaviorxJuvenile literature. 0aFamilial behavior in animalsxJuvenile literature. 1aGreylag goose. 1aGeese. 7aGreylag goose. 7aGeese. aLVLcJNFkJNF 598.4 KAL bMAINp32000000024773r11.96u7827u341700733 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000200013824500400015826000410019830000450023944000440028450000200032865000180034894200250036695200440039195200440043550710LVL19990313000000.0931213s1994 nyuab j 00110 eng a93047541 a0791016625 a 93047541 c1832d1832 aJNF 973 Se1 aSears, Bryan P.14aThe Hopi Indians /cBryan P. Sears. aNew York :bChelsea Juniors,cc1994. a79 p. :bill. (some col.), map ;c25 cm. 4aThe Junior library of American Indians. aIncludes index. 1aHopi Indians. aLVLcJNFkJNF 973 Se bMAINp32000000050691r14.95u7828u3418 bMAINp31000000051251r14.95u7829u341900958 2200313 450000100060000000300040000600500170001000800390002701000130006602000250007903500160010404000200012005000280014008200160016809000150018410000250019924500530022426000500027730000210032752000870034852100110043565000190044665000190046565100300048465100300051474000360054494200210058095200430060122635LVL19990327000000.0890210s1987 gau 000 1 eng a87080971 a0934601267 :c$14.95 aflb01702805 aDLCcDLCdICrlF0 aPS3569.A46656bW54 19870 219a813/.54 c1833d18331 aSams, Ferrol,d1922-14aThe widow's mite & other stories /cFerrol Sams. aAtlanta, Ga. :bPeachtree Publishers,cc1987. a218 p. ;c24 cm. aCollection of eight short stories dealing with life in the Southern United States.2 aAdult. 7aShort stories. 0aShort stories. 7aSouthern StatesxFiction. 0aSouthern StatesxFiction.01aWidow's mite and other stories. aLVLcAFkAF Sams bMAINp32000000021387r8.82u7830u342001303 2200385 450000100060000000300040000600500170001000800390002701000200006602000150008603500160010104000250011705000230014208200260016509000150019110000190020624501040022526000420032930000650037150000320043650000200046851000480048851000190053651000140055552001280056952100170069760000180071460000180073265000130075065000460076365000140080965000270082394200240085095200430087436673LVL19990320000000.0870623s1987 nyuaf 001 0beng a87040166 //r902 a0446513601 aflb01031808 aDLCcDLCdDLCdICrlF00aQL31.F65bM69 198700219a599.88/46/0924aB c1834d1834 aMowat, Farley.10aWoman in the mists :bthe story of Dian Fossey and the mountain gorillas of Africa /cFarley Mowat. aNew York, NY :bWarner Books,cc1987. axiv, 380 p., [17] p. of plates :bill. (some col.) ;c24 cm. aIll., map on lining papers. aIncludes index.0 aSenior High School Library Catalog (Wilson)0 aSLJ Best Book.0 aBooklist. aPortrays the experiences of the American woman zoologist who came to Central Africa in 1966 to study the mountain gorillas.2 aYoung Adult.10aFossey, Dian.17aFossey, Dian. 0aGorilla. 0aPrimatologistsxBiography.zUnited States 7aGorillas. 7aZoologistsxBiography. aLVLcNFk599.88 MOW bMAINp32000000027806r8.76u7831u342100615 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009404000130010805000370012108200140015809000150017210000230018724500420021026000440025230000210029694200250031795200430034243692LVL19990316000000.0771130s1977 nyu 000 1 eng a77015325 a0312182570 a 77015325 aDLCcDLC0 aPZ4.S8597aPR6069.T497bDar 1977 a823/.9/14 c1835d18351 aStirling, Jessica.14aThe dark pasture /cJessica Stirling. aNew York :bSt. Martin's Press,cc1977. a384 p. ;c22 cm. aLVLcAFkAF Stirling bMAINp32000000007733r5.37u7832u342200676 2200205 4500010001300000020001500013090001500028100003800043245008000081250002100161260001400182300002900196650001900225710003200244740003800276942002500314952004400339952004400383952004300427 a94004856 a1564582442 c1836d183620aSomerset Fry, Plantagenet,d1931-14aThe Dorling Kindersley history of the world /cby Plantagenet Somerset Fry. a1st American ed.0 aLondon ;. a384 p. :bill. ;c29 cm. 1aWorld History.20aDorling Kindersley Limited.01aIllustrated history of the world. aLVLcJNFkJNF 909 So bMAINp32000000052302r22.98u7833u3423 bMAINp31000000051531r22.98u7834u3424 bLB1p33000000020595r22.98u7835u342500560 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007904000130009405000200010708200140012709000150014110000210015624500200017726000470019730000270024465000180027165000160028994200250030564749LVL19990217000000.0700611s1969 maua 00000 eng a69019643 a0713515260 aDLCcDLC0 aTT715.bJ6 1970 a745.59/22 c1837d183710aJohnson, Audrey.10aDressing dolls.0 aNewton, Mass.,bC. T. Branford Co.c[1969] a191 p.billus.c28 cm. 0aDoll clothes. 0aDollmaking. aLVLcNFk745.592 JOH01410 2200397 450000100060000000300040000600500170001000800390002701000210006603500160008704000200010305000190012308200100014209000150015210000190016724500850018625000140027126000550028530000270034035000100036751000320037751000480040951000520045752001290050952100340063852100090067265000350068165000350071665000360075165100530078770000340084070000290087494200230090395200440092695200420097022636LVL19990327000000.0700409c19701969paua j 00011 eng a75082402 /AC/r82 aflb00417312 aDLCcDLCdICrlF0 aPZ7.C57926bWh a[Fic] c1838d183810aCleaver, Vera.10aWhere the lilies bloomc[by] Vera & Bill Cleaver. Illustrated by Jim Spanfeller. a[1st ed.]0 aPhiladelphia,bJ. B. Lippincott Co.c[1970, c1969] a174 p.billus.c22 cm. a3.95.0 aChildren's Catalog (Wilson)0 aJunior High School Library Catalog (Wilson)0 aElementary School Library Collection (Bro-Dart) aIn the Great Smoky Mountains region, a fourteen-year-old girl struggles to keep her family together after their father dies.0 a5.5bFollett Library Book Co.2 a5-8. 1aBrothers and sistersxFiction. 7aBrothers and sistersxFiction. 7aGreat Smoky MountainsxFiction. 1aGreat Smoky Mountains (N.C. and Tenn.)xFiction.10aCleaver, Bill,ejoint author.11aSpanfeller, James,eill. aLVLcJFkJ Cleaver bMAINp32000000013369r12.25u7837u3426 bLB1p33000000030168r6.95u7838u342701354 2200373 450000100060000000300040000600500170001000800410002702000150006803500160008304000270009908200200012609000150014610000310016124500640019226000360025630000280029244000260032051000430034652001230038952100340051252100090054660000590055560000380061460000380065265000660069065000520075665000190080865000310082765000230085865000300088194200260091195200430093729655LVL19990323000000.0900419s1968 nyua j 00010beng d a0590422189 aflb01836402 aICrlFcICrlFdIMchF-DB04aBa92a326/.092 c1839d183910aDavidson, Margaret,d1936-10aFrederick Douglass fights for freedom /cMargaret Davidson.0 aNew York :bScholastic,cc1968. a79 p. :bill. ;c20 cm. 0aScholastic biography.0 aChild Study Children's Book Committee. aThe biography of the former slave who escaped to the North and helped other slaves escape on the Underground Railroad.0 a4.4bFollett Library Book Co.2 a3-6.10aDouglass, Frederick,d1817?-1895xJuvenile literature.11aDouglass, Frederick,d1817?-1895.17aDouglass, Frederick,d1817?-1895. 0aAbolitionistsxBiographyxJuvenile literature.zUnited States 0aAfro-AmericansxBiographyxJuvenile literature. 1aAbolitionists. 1aAfro-AmericansxBiography. 7aBlacksxBiography. 7aAbolitionistsxBiography. aLVLcJNFkJB Douglass bMAINp32000000023720r1.45u7839u342800532 2200205 450000100060000000300040000600500170001000800390002701000130006603500140007904000130009305000190010609000150012510000210014024500440016126000360020530000190024194200230026095200430028336674LVL19990320000000.0680301s1968 nyu 000 1 eng a68016075 a 68016075 aDLCcDLC0 aPZ4.B3657bLas c1840d18401 aBeagle, Peter S.14aThe last unicornc[by] Peter S. Beagle. aNew York,bViking Pressc[1968] a218 p.c22 cm. aLVLcAFkAF Beagle bMAINp32000000001175r2.25u7840u342900847 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000340013624500530017026000440022330000480026750000200031560000340033561000510036965000550042065000230047594200220049895200610052057731LVL20020327102806.0901220s1991 iluaf 00110aeng a90072126 a0842346155 a 90072126 c1841d1841 a285.7 Pe 0aPeale, Norman Vincent,d1898-10aThis incredible century /cNorman Vincent Peale.0 aWheaton, Ill. :bTyndale House,cc1991. a246 p. [16] p. of plates :billl. ;c24 cm. aIncludes index.10aPeale, Norman Vincent,d1898-20aReformed Church in AmericaxClergyxBiography. 0aReformed ChurchxClergyxBiography.zUnited States 0aTwentieth century. aLVLcNFk285.7 Pe bMAINdMAINp31000000037242r8.97u7841u3430v2003-09-0101289 2200373 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009403900180011004000200012804300120014805000220016008200220018209000150020410000170021924501010023625000120033726000590034930000530040850000200046150400300048151000140051152001180052552100110064360000680065460000340072265000460075694200250080295200440082795200440087136675LVL19990320000000.0850320c19861985nyuaf b 00110 eng a85007571 a0030040590 aflb009891040 a2b3c3d3e3 aDLCcDLCdICrlF an-us---0 aE842.9.bH84 19860 219a973.922/092/4 c1842d184210aHurt, Henry.10aReasonable doubt :ban investigation into the assassination of John F. Kennedy /cby Henry Hurt. a1st ed.0 aNew York :bHolt, Rinehart, and Winston,c1986, c1985. axiv, 555 p., [32] p. of plates :bill. ;c24 cm. aIncludes index. aBibliography: p. 524-531.0 aBooklist. aPresents a thorough examination into the unanswered questions surrounding the assassination of President Kennedy.2 aAdult.10aKennedy, John F.d1917-1963q(John Fitzgerald),xAssassination.17aKennedy, John F.,d1917-1963. 7aPresidentsxAssassination.zUnited States aLVLcNFk973.922 HUR bMAINp32000000012857r11.48u7842u3431 bMAINp31000000020394r11.48u7843u343200922 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000210013724501280015826000420028630000380032850400510036665000240041765000230044165000280046465000290049270000220052170000220054394200230056595200440058850713LVL20011130134614.0940830s1994 maua b 00110 eng a94024539 a1558504443 a 94024539 c1843d1843 a395.52 Mo1 aMorrison, Terri.10aKiss bow, or shake hands :bhow to do business in sixty countries /cTerri Morrison, Wayne A. Conaway and George A. Borden. aHolbrook, Mass. :bBob Adams,cc1994. axiii, 438 p. :bill. ;c26 cm. ;. aIncludes bibliographical references and index. 0aBusiness etiquette. 0aCorporate culture. 0aBusiness communication. 0aNegotiation in business.10aConaway, Wayne A.10aBorden, George A. aLVLcNFk395.52 Mo bMAINp32000000054794r10.54u7844u343300624 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000260013624500440016225000220020626000320022830000270026094200220028795200430030995200420035257732LVL19990220000000.0930324s1989 nyu 00011 eng a88031450 a055356045X a 88031450 c1844d1844 aAF Brown10aBrown, Sandra,d1948-10aTemperatures rising /cby Sandra Brown. a1st hardcover ed.0 aNew York :bBantam,cc1989. a246 p. ;c18 cm. ; pa. aLVLcAFkAF Brown bMAINp31000000053126r3.53u7845u3434 bLB1p33000000021663r3.53u7846u343501153 2200349 450000100060000000300040000600500170001000800390002701000170006602000250008302000350010803500160014304000200015905000170017908200100019609000150020610000250022124500510024625000120029726000330030930000210034251000320036351000480039551000520044352001360049552100340063152100090066565000310067465000310070594200240073695200430076022638LVL19990327000000.0771216s1978 nyu j 00011 eng a77027075 /AC a0690038372 :c$6.95. a0690038380blib. bdg. :c$6.79 aflb00112003 aDLCcDLCdICrlF0 aPZ7.P273bGr a[Fic] c1845d184510aPaterson, Katherine.14aThe great Gilly Hopkins /cKatherine Paterson. a1st ed.0 aNew York :bCrowell,cc1978. a148 p. ;c24 cm.0 aChildren's Catalog (Wilson)0 aJunior High School Library Catalog (Wilson)0 aElementary School Library Collection (Bro-Dart) aAn eleven-year-old foster child tries to cope with her longings and fears as she schemes against everyone who tries to be friendly.0 a5.3bFollett Library Book Co.2 a5-8. 1aFoster home carexFiction. 7aFoster home carexFiction. aLVLcJFkJ Paterson bMAINp32000000014124r6.77u7847u343600904 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009409000150011009200130012510000180013824500840015626000380024030000350027852001090031365000220042265000210044465000190046570000320048494200240051695200430054095200430058329657LVL19990323000000.0870914s1988 ilua j 00011 eng a87027908 a0807588199 aflb00156310 c1846d1846 aE Levine10aLevine, Abby.10aWhat did mommy do before you? /cAbby Levine ; pictures by DyAnne DiSalvo-Ryan.0 aNiles, Ill. :bA. Whitman,c1988. a[32] p. :bcol. ill. ;c24 cm. aIllustrates how mommy was once small and dependent until she grew bigger and eventually became an adult. 1aMothersxFiction. 1aGrowthxFiction. 1aSizexFiction.21aDiSalvo-Ryan, DyAnne,eill. aLVLcEASYkE Levine bMAINp32000000025008r8.89u7849u3437 bMAINp35000000002662r8.89u7850u343801097 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000270013724501510016425000120031526000470032730000280037444000220040252001490042465000250057365000220059870000240062094200230064495200430066795200430071095200420075350714LVL20000911174423.0950914s1995 meua j 00011 eng a95041989 a1575130149 a 95041989 c1847d1847 aJ Sinykin10aSinykin, Sheri Cooper.10aHeather, belle of the ball /cby Sheri Cooper Sinykin ; cover by Richard Lauter ; illustrations by Ed Tadiello ; spot illustrations by Rich Grote. a1st ed.0 aPortland, ME :bMagic Attic Press,cc1995. a67 p. :bill. ;c23 cm. 0aMagic Attic Club. aA visit to the magic attic transports Heather to another time and place where she learns to value her loyal friends who like her for who she is. 1aFriendshipxFiction. 1aLoyaltyxFiction.11aTadiello, Ed,eill. aLVLcJFkJ Sinykin bMAINp32000000063180r7.77u7851u3439 bLB2p37000000012341r12.95u7852u3440 bLB1p33000000024958r7.77u7853u344100820 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000270014024500910016726000620025830000290032044000260034952000630037565000220043870000350046094200270049595200440052257733LVL19990220000000.0771221s1976 enka j 00011 eng a77027872 a0722651309 a 77027872 c1848d1848 aJNF 398.2 Ri aRiordan, James,d1936-10aTales from Central Russia /cretold by James Riordan : illustrated by Krystyna Turska. aHarmondsworth, Eng. ;aNew York :bKestrel Books,cc1976. a285 p. :bill. ;c22 cm. 0aRussian tales ; bk 1. aA collection of forty-seven folktales from Central Russia. 1aFolklorezRussia.11aTurska, Krystyna,d1933-eill. aLVLcJNFkJNF 398.2 Ri bMAINp31000000051087r12.50u7854u344200956 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000170013724500350015426000430018930000410023250000320027350000200030565000140032565000200033994200230035995200430038295200440042595200430046995200430051295200440055595200430059950715LVL19991211000000.0940607s1994 nyua 00110 eng a94025633 a0806908777 a 94025633 c1849d1849 a745.58 Be10aBenson, Ann.10aBeadwork basics /cAnn Benson.0 aNew York :bSterling Pub. Co.,cc1994. a128 p. :bill. (some col.) ;c29 cm. a"A Sterling/Chapelle book." aIncludes index. 0aBeadwork. 0aJewelry making. aLVLcNFk745.58 Be bLB2p37000000006763r17.96u7855u3443 bMAINp32000000060147r11.77u7856u3444 bLB1p36000000000780r17.96u7857u3445 bLB2p34000000009917r11.77u7858u3446 bMAINp31000000056760r11.77u7859u3447 bLB1p33000000023832r11.77u7860u344801473 2200385 450000100060000000300040000600500170001000700100002700800410003703500160007809000150009409200210010924501260013026000520025630000540030850000470036250000710040950500940048050600310057451100670060552000970067252100130076953800100078253800090079265000250080165000210082670000230084770000330087070000240090370000280092770000210095573000380097694200290101495200440104357734LVL19990220000000.0vfubbahom930316s1985 ilu055 g vleng d avid93001453 c1850d1850 aAV Honey mooners04aThe Honeymooners hidden episodescproduced by Jack Hurdle ; directed by Frank Satenstein.h[videorecording] .nVolume 7 / a[Oak Forest, IL] :bMaljack Productions,c1985. a1 videocassette (55 min.) :bsd., b&w ;c1/2 in.. aClosed-captioned for the hearing impaired. aSegments of television programs originally aired in 1952 and 1954.0 aLittle man who wasn't there (aired 2/12/55) -- Goodnight sweet prince (aired 11/10/56). . aFor private home use only.1 aJackie Gleason, Art Carney, Audrey Meadows and Joyce Randolph. aSeveral episodes of the Honeymooners which haven't been seen since their original air dates. aGeneral. aNTSC. aVHS. 0aTelevision programs. 0aComedy programs.11aSatenstein, Frank.11aGleason, Jackie,d1916-1987.11aCarney, Art,d1918-11aMeadows, Audrey,d1924-11aRandolph, Joyce.01aHoneymooners (Television program) aLVLcAVkAV Honeymooners bMAINp31000000030060r12.47u7861u344900390 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000400009624500400013694200250017695200430020164753LVL19990217000000.0920319s19xx xxu 00010 eng d a84027909 c1851d18511 aFarmer, Fannie Merritt,d1857-1915.10aFannie Farmer large print cookbook. aLVLcNFkLP 641.5 Fa bMAINp31000000012084r6.57u7862u345000559 2200205 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200150011410000200012924500550014926000360020430000230024070000220026394200250028595200430031029659LVL19990323000000.0940629c19921989nyu 00011 eng d a0671721135 anpl94001066 c1852d1852 aSF Anthony1 aAnthony, Piers.10aThrough the ice /cPiers Anthony, Robert Kornwise. aNew York :bBaen,c1992, c1989. a290 p. ;c18 cm.;.10aKornwise, Robert. aLVLcSCIkSF Anthony bMAINp31000000049845r5.99u7864u345101356 2200397 450000100060000000300040000600500170001000800390002701000210006602000330008703500160012004000200013604300120015605000230016808200210019109000150021210000160022724500490024325000120029226000330030430000300033751000520036751000280041951000240044752001760047152100340064752100090068160000510069060000300074163000490077165000240082065000290084465000190087394200290089295200370092136678LVL19990320000000.0790927s1980 nyua j 000 0beng a79022543 /AC/r85 a0689307616 lib. bdg. :c8.95 aflb00278906 aDLCcDLCdICrlF aa-ir---0 aBS580.E8bW44 1980 a221/.92/4aBa92 c1853d18531 aWeil, Lisl.10aEsther /ctold and illustrated by Lisl Weil. a1st ed. aNew York :bAtheneum,c1980. a[45] p. :bill. ;c24 cm.0 aElementary School Library Collection (Bro-Dart)0 aSchool Library Journal.0 aHorn Book Magazine. aA retelling of the Old Testament story of the young Jewish girl who became Queen of Persia and used her influence to stop the murder of the Jews living in exile in Persia.0 a3.9bFollett Library Book Co.2 aK-3.00aEsther,cQueen of PersiaxJuvenile literature.01aEsther,cQueen of Persia.00aBible.pO.TxBiographyxJuvenile literature. 1aBible storiesxO.T. 7aEsther, Queen of Persia. 7aBible stories. aLVLcJNFkJNF 221.92 WEI bMAINp32000000014899u7865u345201355 2200409 450000100060000000300040000600500170001000800390002701000170006602000390008303500160012204000250013805000260016308200180018909000150020710000250022224500400024725000120028726000370029930000380033650000200037451000100039451000140040451000240041852001330044252100340057552100090060965000410061865000570065965000200071665000360073665000200077265000360079294200290082895200440085795200440090143697LVL19990316000000.0891127s1990 nyua j 001 0 eng a89082204 /AC a1559700122 :c$14.95 ($18.95 Can.) aflb02140301 aDLCcDLCdDLCdICrlF00aQC981.8.G56bP75 199000220a363.73/87 c1854d18541 aPringle, Laurence P.10aGlobal warming /cLaurence Pringle. a1st ed. aNew York :bArcade Pub.,cc1990. a46 p. :bcol. ill. ;c24 x 27 cm. aIncludes index. aSLJ*.0 aBooklist.0 aHorn Book Magazine. aExamines the greenhouse effect, focusing on its complex causes and and potential impact on global weather, ecology, and economy.0 a5.5bFollett Library Book Co.2 a3-6. 0aGlobal warmingxJuvenile literature. 0aGreenhouse effect, AtmosphericxJuvenile literature. 1aGlobal warming. 1aGreenhouse effect, Atmospheric. 7aGlobal warming. 7aGreenhouse effect, Atmospheric. aLVLcJNFkJNF 363.73 PRI bMAINp32000000030932r14.45u7866u3453 bMAINp32000000030933r14.45u7867u345401055 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000320013724500450016926000360021430000300025044000280028052001510030865000260045965000240048594200250050995200440053495200440057895200440062295200440066695200430071050716LVL19990313000000.0930929s1994 nyua j 00011 eng a93039653 a0590481401 a 93039653 c1855d1855 aE Kessler 0aKessler, Leonard P.,d1920-10aThat's not Santa! /cby Leonard Kessler.0 aNew York :bScholastic,cc1994. a[32] p. :bill. ;c23 cm. 0aHello reader!nLevel 1. aWhen Santa cannot find his red suit, he tries on a cowboy suit, a baseball uniform, and other clothes, but none seems right for his yearly rounds. 1aSanta ClausxFiction. 1aChristmasxFiction. aLVLcEASYkE Kessler bMAINp32000000058740r11.89u7868u3455 bMAINp32000000059793r11.95u7869u3456 bMAINp31000000055362r11.89u7870u3457 bMAINp31000000056354r11.95u7871u3458 bLB1p33000000023656r11.95u7872u345901250 2200349 450000100060000000300040000600500170001000800390002701000210006602000150008703500160010204000250011804300120014305000230015508200170017809000150019510000470021024500700025726000400032730000460036744000340041350400250044752001860047252100340065852100100069265100390070265100390074165100200078070000260080094200300082695200440085622641LVL19990327000000.0871002c19871986nyuab j b 00010 eng a86062903 /AC/r90 a0531103226 aflb01503602 aDLCcDLCdDLCdICrlF aas-----00aDS526.7.bB43 198600219a959/.053 c1856d185610aBeckett, I. F. W.q(Ian Frederick William)10aSoutheast Asia from 1945 /cIan Beckett ; edited by John Pimlott.0 aNew York :bF. Watts,c1987, c1986. a62 p. :bill. (some col.), maps ;c30 cm. 0aConflict in the 20th century. aBibliography: p. 62. aDiscusses, in text and illustrations, the events in the various countries of Southeast Asia from 1945 to the present including the causes, events, and outcome of the war in Vietnam.0 a8.2bFollett Library Book Co.2 a7-10. 0aAsia, SoutheasternxHistoryy1945- 1aAsia, SoutheasternxHistoryy1945- 7aSoutheast Asia.10aPimlott, John,d1948- aLVLcJNFkJNF 959.053 BEC bMAINp32000000016385r12.90u7873u346000780 2200253 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200140011410000200012824500830014826000380023130000360026944000220030550000230032770000250035094200230037595200430039895200430044195200420048450717LVL19990313000000.0960130s1991 nyua j 00011 eng d a0671727095 anpl96000284 c1857d1857 aJ Coville10aCoville, Bruce.10aMy teacher glows in the dark /cby Bruce Coville; illustrated by John Pierard.0 aNew York :bPocket Books,cc1991. a137 p. :bill. ;c19 cm. ;dpa. 0aMy teacher books. a"A Minstrel Book".11aPierard, John,eill. aLVLcJFkJ Coville bMAINp32000000062579r2.39u7875u3461 bMAINp31000000058322r2.39u7876u3462 bLB1p33000000024629r2.39u7877u346300326 2200133 450000100060000000300040000600500170001000800410002709000150006810000300008324500130011394200220012695200440014857736LVL19990220000000.0950324s19uu 000 0 eng d c1858d18581 aJoyce, James,d1882-1941.10aUlysses. aLVLcAFkAF Joyce bMAINp31000000026829r15.00u7878u346400970 2200289 450000100060000000300040000600500170001000800390002701000130006602000250007903500160010404000200012005000270014008200160016709000150018310000200019824500510021825000120026926000370028130000280031851000290034652001930037552100110056865000350057994200230061495200430063764755LVL19990217000000.0870610s1987 maub 00011 eng a87003148 a0316328898 :c$15.95 aflb00624410 aDLCcDLCdICrlF0 aPS3557.R48998bF5 19870 219a813/.54 c1859d185910aGrimes, Martha.14aThe five bells and bladebone /cMartha Grimes. a1st ed.0 aBoston :bLittle, Brown,cc1987. a299 p. :bmap ;c22 cm.0 aFiction Catalog (Wilson) aScotland Yard's Superintendent Richard Jury discovers the truth of two unusual killings between the country estate of Watermeadows and a pub in the Limehouse district in London's East End.2 aAdult. 7aMystery and detective stories. aLVLcMYSkM Grimes bMAINp31000000026120r9.12u7879u346500791 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000210013624501240015726000380028130000290031950000200034865000100036865000200037865000180039894200220041695200440043895200430048222642LVL20030614153515.0910213s1991 nyua 00110 eng a91052680 a0394587685 a 91052680 c1860d1860 a636.7 Mc10aMcGinnis, Terri.14aThe well dog book :bthe classic, comprehensive handbook of dog care /cby Terri McGinnis ; illustrated by Pat Stewart.0 aNew York :bRandom House,cc1991. a287 p. :bill. ;c24 cm. aIncludes index. 0aDogs. 0aDogsxDiseases. 0aDogsxHealth. aLVLcNFk636.7 Mc bMAINp32000000033206r13.28u7880u3466 bLB1p33000000012410r13.28u7881u346701327 2200385 450000100060000000300040000600500170001000800390002701000170006602000370008303500160012004000250013605000230016108200150018409000150019910000260021424500760024026000450031630000330036150000370039451000140043151000280044551000240047352001690049752100340066652100090070065000490070965000320075865000280079065000110081865000280082965000110085794200290086895200440089736680LVL19990320000000.0880229s1989 mnua j 001 0 eng a88006147 /AC a0876143001 (lib. bdg.) :c$12.95 aflb00638211 aDLCcDLCdDLCdICrlF00aTJ280.7.bJ23 198900219a621.44 c1861d18611 aJacobs, Linda,d1943-10aLetting off steam :bthe story of geothermal energy /cby Linda Jacobs. aMinneapolis :bCarolrhoda Books,cc1989. a47 p. :bcol. ill. ;c24 cm. a"A Carolrhoda earth watch book."0 aBooklist.0 aSchool Library Journal.0 aHorn Book Magazine. aExamines how geothermal energy, the force underlying hot springs, geysers, and mudpots, is being used as an alternative energy source in various parts of the world.0 a5.3bFollett Library Book Co.2 a3-6. 0aGeothermal engineeringxJuvenile literature. 0aSteamxJuvenile literature. 1aGeothermal engineering. 1aSteam. 7aGeothermal engineering. 7aSteam. aLVLcJNFkJNF 621.44 JAC bMAINp32000000027091r12.95u7882u346801138 2200361 450000100060000000300040000600500170001000800390002701000170006602000350008302000150011803500160013304000200014905000180016908200150018709000150020210000200021724500780023726000310031530000280034652001060037452100340048052100090051465000390052365000340056265000440059665000180064065000130065865000220067170000190069394200270071295200370073943699LVL20020911124122.0760623s1976 nyua j 000 0 eng a76022673 /AC a0688220843blib. bdg. :c5.95. a0688320848 aflb00663701 aDLCcDLCdICrlF0 aSB401.C6bM48 a641.3/4/61 c1862d18621 aMeyer, Carolyn.10aCoconut, the tree of life /cCarolyn Meyer ; illustrated by Lynne Cherry. aNew York :bMorrow,c1976. a96 p. :bill. ;c24 cm. aDiscusses the growth, cultivation, processing, and uses of coconuts. Includes thirty coconut recipes.0 a6.4bFollett Library Book Co.2 a3-6. 0aCoconut palmxJuvenile literature. 0aCoconutxJuvenile literature. 0aCookery (Coconut)xJuvenile literature. 1aCoconut palm. 1aCoconut. 1aCookeryxCoconut.10aCherry, Lynne. aLVLcJNFkJNF 641.3 Me bMAINp32000000015701u7883u346901110 2200337 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000210013824500400015925000300019926000470022930000300027650000200030652001010032665000220042765000210044965000220047094200260049295200420051895200430056095200420060395200420064595200430068795200420073050718LVL20020807175041.0950706s1996 maua j 00011 eng a95034250 a1564028178 a 95034250 c1863d1863 aE Vulliamy10aVulliamy, Clara.10aGood night, baby /cClara Vulliamy. aBoard book.a1st U.S. ed.0 aCambridge, MA :bCandlewick Press,cc1996. a[14] p. :bill. ;c17 cm. aOn board pages. aA baby goes through a bedtime routine that includes a bath, story, lullaby, and being tucked in. 1aBedtimexFiction. 1aBabiesxFiction. 1aStories in rhyme. aLVLcEASYkE Vulliamy bLB2p37000000006097r2.89u7884u3470 bMAINp32000000065280r2.89u7885u3471 bLB1p36000000003958r2.89u7886u3472 bLB2p34000000013972r2.89u7887u3473 bMAINp31000000060475r2.89u7888u3474 bLB1p33000000026021r2.89u7889u347500950 2200325 450000100060000000300040000600500170001000800390002701000170006602000170008302000290010003500160012909000150014509200130016010000190017324500620019225000120025426000440026630000350031052000690034565000140041465000190042865000140044765000100046170000280047174000150049994200240051495200430053895200430058122643LVL19990327000000.0830207s1983 nyua j 00011 eng a82048840 /AC a0060228474 : a0060228482 (lib. bdg.) : aflb00185310 c1864d1864 aE Jewell10aJewell, Nancy.10aABC cat /cby Nancy Jewell ; pictures by Ann Schweninger. a1st ed.0 aNew York, N.Y. :bHarper & Row,cc1983. a[32] p. :bcol. ill. ;c24 cm. aA cat's antics throughout the day take him through the alphabet. 1aAlphabet. 0aCatsxFiction. 7aAlphabet. 7aCats.11aSchweninger, Ann,eill.21aA B C cat. aLVLcEASYkE Jewell bMAINp32000000025508r3.95u7890u3476 bMAINp31000000002572r4.59u7891u347700876 2200253 450000100060000000300040000600500170001000800390002703500160006609000150008209200180009710000290011524500400014426000490018430000380023349000290027152001050030065000210040594200270042695200420045395200420049595200430053795200420058043700LVL20020418143749.0760730c19861977nyua j 00011 eng aonv90002285 c1865d1865 aE Steven- son10aStevenson, James,d1929-10aCould be worse! /cJames Stevenson.0 aNew York :bGreenwillow Books,c1986, c1977. a64 p. ;bcol. ill. ;c29 x 23 cm.0 aReading Rainbow Library. aEverything is always the same at Grandpa's house, even the things he says-until one unusual morning. 1aDreamsxFiction. aLVLcEASYkE Stevenson bLB2p37000000005734r3.95u7892u3478 bLB2p34000000011586r3.95u7894u3479 bMAINp31000000038434r3.95u7895u3480 bLB1p33000000012008r3.95u7896u348100751 2200229 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200180011410000210013224501330015326000380028630000400032465000190036465000250038394200280040895200430043695200420047950719LVL20010710153655.0960821s1992 nyua j 00010 eng d a0380763036 anpl96001670 c1866d1866 aJNF 808.87 Ph10aPhillips, Louis.10aAlligator wrestling and you :ban impractical guide to an impossible sport /cLouis Phillips; illustrated by Valerie Costantino.0 aNew York :bAvon Camelot,cc1992. axii, 79 p. :bill. ;c19 cm. ;dpa. 1aWit and humor. 1aAlligator wrestling. aLVLcJNFkJNF 808.87 Ph bMAINp32000000066473r2.95u7897u3482 bLB1p33000000026444r2.95u7898u348300919 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000150013424500710014926000430022030000330026352001490029665000220044570000330046794200220050095200440052295200440056695200430061022644LVL19990327000000.0870611s1989 nyua j 00011 eng a87015640 a0688072429 a 87015640 c1867d1867 aE Rice10aRice, Eve.10aPeter's pockets /cby Eve Rice ; pictures by Nancy Winslow Parker.0 aNew York :bGreenwillow Books,cc1989. a32 p. :bill. ;c26 x 21 cm. aPeter's new pants don't have any pockets, so Uncle Nick lets Peter use his until Peter's mother solves the problem in a clever and colorful way. 1aPocketsxFiction.11aParker, Nancy Winslow,eill. aLVLcEASYkE Rice bMAINp32000000033835r11.59u7900u3484 bMAINp31000000039602r11.59u7902u3485 bLB1p33000000012916r11.59u7903u348600670 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000190014024500340015925000120019326000380020530000350024352000590027865000230033794200240036095200440038429663LVL19990323000000.0821207s1983 nyua j 00010 eng a82045917 a0690043430 a 82045917 c1868d1868 aJNF 625.7 Gi1 aGibbons, Gail.10aNew road! /cby Gail Gibbons. a1st ed. aNew York :bT.Y. Crowell,cc1983. a[32] p. :bcol. ill. ;c19 cm. aDescribes the planning and construction of a new road. 1aRoad construction. aLVLcJNFkJNF 625.7 bMAINp32000000035657r13.40u7904u348700876 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009404000200011005000260013008200160015609000150017210000300018724500630021726000590028030000210033952001790036052100170053994200230055695200430057936682LVL19990320000000.0851203s1986 nyu 00011 eng a85029297 a0385294611 aflb01400904 aDLCcDLCdICrlF0 aPS3566.A686bT35 19860 219a813/.54 c1869d186910aParker, Robert B.,d1932-10aTaming a sea-horse :ba Spenser novel /cRobert B. Parker.0 aNew York, N.Y. :bDelacorte Press/S. Lawrence,cc1986. a250 p. ;c25 cm. aSpenser searches for a prostitute who has disappeared while working for the man she loves, and finds himself in the world of high-class prostitutes and their wealthy clients.2 aYoung Adult. aLVLcMYSkM Parker bMAINp32000000002806r9.41u7905u348801118 2200337 450000100060000000300040000600500170001000800390002701000220006602000150008803500160010304000200011905000250013908200120016409000150017610000200019124501240021126000400033530000330037544000390040852000980044752100340054552100090057965000220058865000220061065000220063265000220065470000350067694200260071195200430073743701LVL19990316000000.0821014s1983 ilua j 000 1 eng a82019862 /AC/r892 a0516015834 aflb00315508 aDLCcDLCdICrlF0 aPZ8.3.B5983bPu 19830 219a[E] c1870d18701 aBlocksma, Mary.14aThe pup went up /cby Mary Blocksma ; illustrated by Sandra Cox Kalthoff ; developed by the Hampton-Brown Company, Inc. aChicago :bChildrens Press,cc1983. a24 p. :bcol. ill. ;c21 cm. 2aA Just one more book just for you. aA pup on an elevator adds various animals along the way as he ascends to the very last floor.0 a1.4bFollett Library Book Co.2 aK-3. 1aStories in rhyme. 1aAnimalsxFiction. 7aStories in rhyme. 7aAnimalsxFiction.11aMartin, Sandra Kalthoff,eill. aLVLcEASYkE Blocksma bMAINp32000000013064r7.25u7906u348900836 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000210013524500870015626000440024330000210028770000230030894200220033195200440035395200430039795200430044095200440048395200430052722645LVL19990327000000.0920214s1992 nyu 00011 eng a92007257 a0553077287 a 92007257 c1871d1871 aM Brown10aBrown, Rita Mae.10aRest in pieces /cRita Mae Brown & Sneaky Pie Brown ; illustrations by Wendy Wray.0 aNew York, N.Y. :bBantam Books,cc1992. a292 p. ;c24 cm.10aBrown, Sneaky Pie. aLVLcMYSkM Brown bMAINp32000000034497r11.80u7907u3490 bMAINp32000000040266r3.19u7908u3491 bLB2p34000000006143r11.80u7909u3492 bMAINp31000000040220r11.80u7910u3493 bLB1p33000000013374r11.80u7911u349400363 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000260009624500240012294200280014695200430017429664LVL20020916094228.0940804s19xx xxu 00010 eng d a66010249 c1872d18721 aCole, William,d1919-10aOh, what nonsense!. aLVLcJNFkJNF 808.81 Co bMAINp32000000016125r2.24u7912u349500869 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000300013724500370016725000120020426000520021630000290026852002000029765000230049765100290052094200230054995200430057229665LVL19990323000000.0860902c19861977nyua j 00011 eng a86021059 a0689500831 a 86021059 c1873d1873 aJ Houston1 aHouston, James A.,d1921-10aFrozen fire /cby James Houston. a1st ed. aNew York :bM.K. McElderry Books,c1986, c1977. a149 p. :bill. ;c22 cm. aDetermined to find his father who has been lost in a storm, a young boy and his Eskimo friend brave wind storms, starvation, wild animals, and wild men during their search in the Canadian Arctic. 1aSurvivalxFiction. 1aArctic regionsxFiction. aLVLcJFkJ Houston bMAINp32000000036738r8.30u7913u349600286 2200121 450000100060000000300040000600500170001000800410002709000150006824500220008394200160010595200430012143703LVL19990316000000.0941219s19xx xxu 00010 eng d c1874d187410aLadybug 1995 Jan. aLVLcPERkJ bMAINp32000000054946r2.50u7915u349700450 2200157 450000100060000000300040000600500170001000800410002709000150006824500830008326000230016630000110018965000240020094200240022495200440024850722LVL19990313000000.0920824s19xx xxu 00010 eng d c1875d187510aAircraft in profile ;bprofile nos. 25-48.cGeneral Editor, Martin C. Windrow.0 bDoubleday,cc1965. billus. 7aAirplanesxHistory. aLVLcNFk629.133 Ai bMAINp32000000009885r12.95u7916u349800348 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000220009824500170012094200220013795200430015957741LVL19990220000000.0950323s19uu 000 0 eng d a0553156659 c1876d18761 aPascal, Francine.10aSecond best. aLVLcJFkJ Pascal bMAINp31000000009403r1.62u7917u349900818 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009405000230010808200120013109000150014309200150015810000180017324500540019126000460024530000330029152001160032465000120044070000320045294200250048495200430050964760LVL20020117110038.0840409s1985 njua j 00010 eng a84002624 a0816701792 a 840026240 aQL617.2.bS23 19850 219a597 c1877d1877 aJNF 597 Sa10aSabin, Louis.10aFish /cLouis Sabin ; illustrated by Jean Helmer.0 aMahwah, N.J. :bTroll Associates,cc1985. a30 p. :bcol. ill. ;c22 cm. aDescribes many kinds of fish, from the tiny pygmy goby to the gigantic whale shark, and explains how they live. 1aFishes.11aHelmer, Jean Cassels,eill. aLVLcJNFkJNF 597 Sa bMAINp31000000035240r9.24u7918u350000795 2200265 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200150012510000210014024500510016125000260021226000390023830000420027749000110031952000810033065000190041180000300043094200260046095200430048629666LVL20000316000000.0930315s1988 nyua j 00011 eng d a87037432 a0689712545 a 87037432 c1878d1878 aE Oxenbury1 aOxenbury, Helen.10aTom and Pippo go for a walk /cHelen Oxenbury. a1st Aladdin Books ed. aNew York :bAladdin Books,cc1988. a[12] p. :bill. (some col.) ;c26 cm.10aPippo. aTom and his toy monkey, Pippo, go out for a walk and fall into a mud puddle. 1aToysxFiction.1 aOxenbury, Helen..tPippo. aLVLcEASYkE Oxenbury bMAINp32000000037867r3.54u7919u350100287 2200121 450000100060000000300040000600500170001000800410002709000150006824500220008394200170010595200430012236685LVL19990320000000.0950925c19uu r p 0 a0eng d c1879d187900aLadybug 1995 Oct. aLVLcJPERkJ bMAINp32000000029071r3.95u7920u350200700 2200229 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200130011410000310012724500390015826000500019730000300024794200230027795200420030095200430034295200420038595200430042743704LVL20011123161121.0921125c19921981nyu 00011 eng d a0446403016 aonv90003667 c1880d1880 aM Peters10aPeters, Ellis,d1913-1995.10aSt. Peter's fair /cEllis Peters..0 aNew York :bMysterious Press,c1992, c1981. . a217 p. ;c17 cm. ;dpa. . aLVLcMYSkM Peters bLB2p37000000001625r2.89u7921u3503 bMAINp32000000035946r2.89u7922u3504 bLB2p34000000006623r2.89u7923u3505 bMAINp31000000041339r2.89u7924u350600325 2200133 450000100060000000300040000600500170001000800410002709000150006810000190008324500230010294200230012595200430014857742LVL19990220000000.0950324s19uu 000 0 eng d c1881d18811 aWesley, James.10aDawson gold fever. aLVLcAFkAF Wesley bMAINp31000000030747r6.95u7925u350700763 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000310014024500370017126000440020830000210025244000300027365000530030365000400035694200250039695200440042195200440046522649LVL19990327000000.0930216s1993 nyu 00011 eng a93000556 a0312093810 a 93000556 c1882d1882 aM Mc- Inerny10aMcInerny, Ralph M.,d1929-10aSeed of doubt /cRalph McInerny.0 aNew York :bSt. Martin's Press,cc1993. a346 p. ;c24 cm. 2aA Father Dowling mystery. 0aDowling, Father (Fictitious character)xFiction. 0aDetectivesxFiction.zUnited States aLVLcMYSkM McInerny bMAINp32000000039196r11.77u7926u3508 bMAINp31000000042801r11.77u7927u350900836 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000200013624500950015625000120025126000390026330000210030250000200032365000150034365000190035865000140037765000110039165000230040294200220042595200440044795200430049129668LVL20030514142727.0930223s1993 nyu 00110 eng a93016766 a0517592576 a 93016766 c1883d1883 a612.6 Ch10aChopra, Deepak.10aAgeless body, timeless mind :bthe quantum alternative to growing old /cby Deepak Chopra. a1st ed.0 aNew York :bHarmony Books,cc1993. a342 p. ;c24 cm. aIncludes index. 0aLongevity. 0aMind and body. 0aVitality. 0aAging. 0aHolistic medicine. aLVLcNFk612.6 Ch bMAINp32000000042069r12.98u7929u3510 bLB1p33000000015721r12.98u7931u351101553 2200361 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000270013524501170016226000430027930000330032244000350035552002500039065000400064065100800068070000260076094200210078695200420080795200430084995200430089295200430093595200420097895200430102095200430106395200420110695200430114843706LVL20000910181741.0911205s1992 wiu j 000 1 eng a91044293 a1562470345 a 91044293 c1884d1884 aJ Tripp10aTripp, Valerie,d1951-10aFelicity saves the day /cby Valerie Tripp ; illustrations Dan Andreasen ; vignettes Luann Roberts, Keith Skeen. aMiddleton, WI :bPleasant Co.,cc1992. a67 p. :bcol. illus.c22 cm. 4aThe American girls collection. aDuring a visit to her grandfather's plantation in Virginia during the summer of 1775, Felicity's loyalty is torn between her father and Ben, her father's apprentice who needs her help as he runs away to join George Washington's army of Patriots. 1aPlantation lifexFiction.zVirginia 1aVirginiaxSocial life and customsxFiction.yColonial period, ca. 1600-177511aAndreasen, Dan,eill. aLVLcJFkJ Tripp bLB2p37000000003701r5.95u7932u3512 bMAINp32000000034031r3.49u7933u3513 bMAINp32000000034338r3.49u7934u3514 bMAINp32000000052108r5.95u7935u3515 bLB1p36000000002037r5.49u7936u3516 bMAINp31000000039813r3.49u7937u3517 bMAINp31000000040090r3.49u7938u3518 bLB1p33000000013194r3.49u7939u3519 bLB1p33000000014328r11.05u7940u352001063 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000220013724500680015926000370022730000370026444000250030150000370032650000960036352000510045965000200051070000250053094200250055595200420058095200420062295200430066495200420070729669LVL20000911181853.0930111r19931987nyua j 00011 eng a93002723 a0140365362 a 93002723 c1885d1885 aE Ziefert10aZiefert, Harriet.10aJason's bus ride /cHarriet Ziefert ; pictures by Simms Taback.0 aNew York :bPuffin Books,c1993. a[31] p. :bill. ;c23 cm. ;dpa. 0aPuffin easy-to-read. a"Reading level 1.6"--T.p. verso. a"First published in the United States of America by Viking Penguin Inc., 1987"--T.p. verso. aJason becomes a hero when he takes a bus ride. 1aBusesxFiction.11aTaback, Simms,eill. aLVLcEASYkE Ziefert bLB1p36000000004140r1.89u7942u3521 bLB2p34000000011456r1.89u7943u3522 bMAINp31000000043927r1.89u7944u3523 bLB1p33000000016022r1.89u7945u352400885 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000220014024500670016226000390022930000280026850000200029652001660031660000260048265000140050870000270052294200270054995200430057636688LVL19990320000000.0870820s1988 nyua j 00110beng a87024908 a0899194966 a 87024908 c1886d1886 aJNF 793.8 Ar1 aArnold, Caroline.10aJuggler /cby Caroline Arnold ; photographs by Richard Hewett. aNew York :bClarion Books,cc1988. a48 p. :bill. ;c26 cm. aIncludes index. aText and photographs follow Jahnathon Whitfield, a professional juggler, as he entertains audiences, teaches juggling skills, and attends a jugglers' convention.11aWhitfield, Jahnathon. 1aJugglers.11aHewett, Richard,eill. aLVLcJNFkJNF 793.8 Ar bMAINp32000000035821r6.95u7946u352500368 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000320009824500250013094200240015595200430017950726LVL19990313000000.0940606s19xx xxu 00010 eng d a0553128302 c1887d18871 aL'Amour, Louis,d1908-1988.10aRide the dark trail. aLVLcWESkW L'Amour bMAINp32000000002337r4.10u7947u352600638 2200229 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200140011410000220012824500440015025000200019426000400021430000230025465000220027794200230029995200430032295200430036522651LVL19990327000000.0930608c19871984enk d 00011 eng d a0708964133 anpl93000232 c1888d1888 aLP Grover1 aGrover, Marshall.10aKincaid's last ride /cMarshall Grover. aLarge print ed. aLeicester :bLinford,c1987, c1984. a215 p. ;c19 cm.;. 0aLarge type books. aLVLcLPkLP Grover bMAINp32000000040000r6.95u7948u3527 bMAINp31000000043317r6.95u7949u352800900 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000310013724500740016826000390024230000280028150000410030952001820035065000190053270000280055194200230057995200440060236689LVL19990320000000.0880517s1988 nyua j 00011 eng a88017902 a0531084035 a 88017902 c1889d1889 aJ Le Guin1 aLe Guin, Ursula K.,d1929-10aCatwings return /cUrsula K. Le Guin ; illustrated by S.D. Schindler. aNew York :bOrchard Books,cc1988. a48 p. :bill. ;c19 cm. a"A Richard Jackson book."--Half t.p. aWishing to visit their mother, two winged cats leave their new country home to return to the city, where they discover a winged kitten in a building imminently to be demolished. 1aCatsxFiction.11aSchindler, S. D.,eill. aLVLcJFkJ Le Guin bMAINp32000000036905r10.79u7950u352900975 2200289 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200130012510000430013824501000018126000480028130000290032944000250035870000250038394200220040895200430043095200430047395200420051695200420055895200430060095200420064343708LVL20000911182824.0920127s1991 ilua j 00011 eng d a91024509 a0807503681 a 91024509 c1890d1890 aJ Warner10aWarner, Gertrude Chandler,d1890-1979.14aThe animal shelter mystery /ccreated by Gertrude Chandler Warner; illustrated by Charles Tang.0 aMorton Grove, IL :bAlbert Whitman,cc1991. a121 p. :bill. ;c21 cm. 4aThe Boxcar children.11aTang, Charles,eill. aLVLcJFkJ Warner bMAINp32000000032389r5.77u7951u3530 bMAINp32000000037131r9.95u7952u3531 bLB1p36000000002068r5.77u7953u3532 bLB2p34000000007708r5.77u7954u3533 bMAINp31000000037898r5.77u7955u3534 bLB1p33000000011577r5.77u7956u353500327 2200133 450000100060000000300040000600500170001000800410002709000150006810000170008324500270010094200230012795200430015057746LVL19990220000000.0950324s19uu 000 0 eng d c1891d1891 aBishop, Lew.10aBullets on the brazos. aLVLcAFkAF Bishop bMAINp31000000034756r5.40u7957u353600364 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000200009824500310011894200250014995200440017422652LVL19990327000000.0940531s19xx xxu 00010 eng d a0385302606 c1892d18921 aParetsky, Sara.10aIndemnity only :ba novel. aLVLcMYSkM Paretsky bMAINp32000000039455r11.55u7959u353700555 2200205 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200100011410000180012424500340014226000420017630000220021894200220024095200440026295200430030643709LVL20010802092413.0911107s1991 nyu 00011 eng d a0671649618 aonv90001572 c1893d1893 aQuinn10aQuinn, Sally.10aHappy endings /cSally Quinn.0 aNew York :bSimon & Schuster,cc1991. a566 p. ;c24 cm.. aLVLcAFkAF Quinn bMAINp32000000039438r12.69u7960u3538 bLB1p33000000009492r12.69u7961u353900367 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000210009824500330011994200260015295200430017836691LVL19990320000000.0921014s19xx xxu 00010 eng d a0152817859 c1894d18941 aDe Paola, Tomie.10aStrega Nona's magic lessons. aLVLcEASYkE De Paola bMAINp32000000008375r7.17u7962u354000501 2200193 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200150011410000210012924500340015026000330018430000230021794200240024095200430026443710LVL19990316000000.0930811s1992 nyu j 00011 eng d a0671754173 anpl93000830 c1895d1895 aYA Harrell1 aHarrell, Janice.10aFlashpoint /cJanice Harrell. aNew York :bArchway,cc1992. a155 p. ;c18 cm.;. aLVLcYAkYA Harrell bMAINp31000000044159r2.31u7963u354101379 2200361 450000100060000000300040000600500170001000700100002700800410003702000150007802400170009303500160011003700320012609000150015809200140017324502350018726000530042230000540047544000160052950000470054550800470059252001240063952100130076353800150077665000090079165000470080070000210084770000190086871000340088771000310092194200230095295200420097564767LVL19990217000000.0vf cbahom970107s1996 nyu035 g vleng d a0789407140 a790778071431 anav97000012 a5-71658bDorling Kindersley c1896d1896 aAV 599 Ap00aApeca Cafe Production for BBC Worldwide Americas and Dorling Kindersley Vision in association with Oregon Public Broadcasting ; producer, Richard Thomson ; directed by Ludo Graham ; written by, David Stafford.h[videorecording] /0 a[New York] :bDorling Kindersley Vision,cc1996. a1 videocassette (35 min.) :bsd., col. ;c1/2 in. 0aEyewitness. aClosed-captioned for the hearing impaired. aNarrator, Martin Sheen ; music, Guy Dagul. aApe takes you on an Eyewitness tour of the whole primate family - from the tiny tarsier to the mighty mountain gorilla. aGeneral. aVHS Hi-fi. 0aApe. 0aVideo recordings for the hearing impaired.1 aStafford, David.1 aSheen, Martin.2 aBBC Worldwide Americas (Firm)2 aDorling Kindersley Vision. aLVLcAVkAV 599 Ap bLB2p31000000063274r9.65u7965u354201681 2200469 450000100060000000300040000600500170001000700090002700800410003602000150007703500160009203700270010809000150013509200130015024500750016326000410023830000540027944000290033350501240036252100140048653800160050065000220051674000370053874000420057574000360061774000380065374000310069174000310072274000540075391000300080791000300083791000300086791000300089791000300092791000140095794200230097195200440099495200430103895200430108195200440112495200430116836692LVL19990320000000.0vd cbaho940608s1992 ctu045 j vaeng d a1555920306 avid93000073 aVHS0030bCC Home Video c1897d1897 aAVJ Ezra00aEzra Jack Keats Library /c[compiled by] CC Studios.h[videorecording]0 aWeston, CT :bCC Home Video,cp1992. a1 videocassette (41 min.) :bsd., col. ;c1/2 in. 0aChildren's Circle ;v30. 0aSnowy day / Whistle for Willie / Peter's chair / Letter to Amy / Pet show / The trip / Getting to know Ezra Jack Keats. aAll ages. aVHS Format. 0aChildren's films.42aThe snowy day .hVideorecording.02aWhistle for Willie .hVideorecording.02aPeter's chair.hVideorecording.02aA letter to Amy.hVideorecording.02aPet show.hVideorecording.42aThe trip.hVideorecording.02aGetting to know Ezra Jack Keats.hVideorecording. a1997 July --bAPL --g000 a1998 July --bCOV --g000 a1997 July --bGPL --g000 a1997 July --bNPL --g000 a1997 July --bPPL --g000 a1997 July aLVLcAVJkAVJ Ezra bMAINp32000000038614r14.95u7967u3543 bLB1p36000000005525r14.95u7968u3544 bLB2p34000000012028r14.95u7969u3545 bMAINp31000000045315r14.95u7970u3546 bLB1p33000000018942r14.95u7971u354701076 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200190012324500330014226000460017530000330022144000290025450000800028350000200036352001460038365000220052965000200055194200290057195200440060095200430064495200440068795200430073143711LVL19990316000000.0870723s1988 mnua j 00100 eng a87020687 a0817231153 a 87020687 c1898d1898 aJNF 591.909 An00aAnimals at the water's edge.0 aMilwaukee :bRaintree Publishers,cc1988. a48 p. :bcol. ill. ;c26 cm. 0aAnimals and their homes. aAdaptation of: Animaux du bord de mer / Bernadette Bornancin, GisÁele Puig. aIncludes index. aDiscusses fish, seabirds, lobsters and crabs, seahorses, and other interesting forms of animal life that make their homes in or near the sea. 1aSeashore biology. 1aMarine animals. aLVLcJNFkJNF 591.909 An bMAINp32000000040221r14.65u7972u3548 bLB2p34000000008450r14.65u7973u3549 bMAINp31000000043567r14.65u7974u3550 bLB1p33000000015760r14.65u7975u355100738 2200265 450000100060000000300040000600500170001000800390002701000190006602000150008503500200010004000130012005000320013308200140016509000150017910000180019424000230021224500290023525000230026426000400028730000190032750000600034694200230040695200430042950730LVL19990313000000.0740822r19751967nyu 000 1 eng a74018254 //r83 a0025575503 a 74018254 //r83 aDLCcDLC0 aPZ4.H944aPR6015.U565bGhr3 a823/.9/14 c1899d18991 aHunter, Alan.10aGently north-west.10aGently in the Highlands. a[1st American ed.] aNew York,bMacmillanc[1975, c1967] a173 p.c21 cm. aFirst published in 1967 under title: Gently north-west. aLVLcMYSkM Hunter bMAINp32000000001923r2.49u7976u355200818 2200277 450000100060000000300040000600500170001000800390002701000130006602000240007904000130010304300120011605000180012808200140014609000150016010000290017524500880020426000380029230000290033050400410035965000280040065000240042865000210045294200240047395200430049757749LVL20020918135956.0800930s1980 txua b 00010 eng a80051595 a0849902606 :c$8.95 aDLCcDLC an-us---0 aHQ1090.3.bD60 219a305.3 c1900d190010aDobson, James C.,d1936-10aStraight talk to men and their wives /cJames C. Dobson ; [ill. by Dennis Bellile].0 aWaco, Tex. :bWord Books,cc1980. a222 p. :bill. ;c23 cm. aIncludes bibliographical references. 0aFatherszUnited States. 0aMenzUnited States. 0aMenxPsychology. aLVLcNFk301.427 Do bMAINp31000000020715r5.37u7977u355300810 2200253 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200130011410000230012724500640015025000170021426000440023130000330027550400510030860000530035965000330041294200230044595200440046895200440051222655LVL19990327000000.0930908s1993 nyua b 00110beng d a0312097875 anpl93001044 c1901d1901 aB Sayers1 aReynolds, Barbara.10aDorothy L. Sayers :bher life and soul /cBarbara Reynolds. a1st U.S. ed. aNew York :bSt. Martin's Press,cc1993. aix, 398 p. :bill. ;c24 cm. aIncludes bibliographical references and index.10aSayers, Dorothy L.d1893-1957.q(Dorothy Leigh), 0aAuthors, EnglishxBiography. aLVLcBIOkB Sayers bMAINp32000000042052r15.31u7978u3554 bMAINp31000000044528r15.31u7979u355500751 2200253 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200170011424500510013126000410018230000280022365000140025165000180026565000130028394200270029695200440032395200430036795200440041095200430045429674LVL20011221115538.0900821s1990 ilua j 00100 eng d a0528834088 anpl93001702 c1902d1902 aJNF 523.1 Ra00aRand McNally children's atlas of the universe.0 aChicago, IL :bRand McNally,cc1990. a93 p. :bill. ;c28 cm. 1aUniverse. 1aSolar system. 1aAtlases. aLVLcJNFkJNF 523.1 Ra bMAINp32000000044068r11.40u7980u3556 bMAINp35000000000913r8.67u7981u3557 bMAINp31000000046003r11.40u7982u3558 bLB1p33000000017279r11.40u7983u355900758 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000390013724500650017626000480024130000310028965000500032065000370037094200240040795200420043195200430047343712LVL20010827123631.0930927r19931953nyu 00011 eng a53005336 a0345378717 a 53005336 c1903d1903 aM Gardner10aGardner, Erle Stanley,d1889-1970.14aThe case of the hesitant hostess /cby Erle Stanley Gardner.0 aNew York :bBallantine Books,c1993, c1953. ax, 244 p. ;c18 cm. ;dpa. 0aMason, Perry (Fictitious character)xFiction. 0aLawyersxFiction.zUnited States aLVLcMYSkM Gardner bLB2p34000000006259r2.61u7984u3560 bMAINp31000000044783r2.61u7985u356102141 2200337 450000100060000000300040000600500170001000800390002701000210006602000220008703500160010904000200012505000210014508200120016609000150017824500260019326000490021930000400026850512080030851000480151651000140156452100340157852100090161265000370162165000270165865000130168565000150169865000210171394200250173495200440175957750LVL19990220000000.0840201m19841986nyua j e 00100 eng a84001654 /AC/r87 a0871969890 (v. 1) aflb00260605 aDLCcDLCdICrlF0 aQ121.bW675 19840 219a500 c1904d190404aThe world of science.0 aNew York, N.Y. :bFacts On File,c1984-1986. a25 v. :bill. (some col.) ;c31 cm.1 a[1] Your body / Irene Fekete & Peter Dorrington Ward -- [2] Mathematics / Irene Fekete & Jasmine Denyer -- [3] How everyday things work / Chris Cooper & Tony Osman -- [4] Weather and its work / David Lambert & Ralph Hardy -- [5] Insects and their relatives / Maurice Burton -- [6] Astronomy / Peter Lancaster Brown -- [7] Seas and oceans / David Lambert & Anita McConnell -- [8] Great discoveries and inventions / David Lambert & Jane Insley -- [9] Disease and medicine / Irene Fekete & Peter Dorrington Ward -- [10] Computers / Roger Ford & Oliver -Strimpel -- [11] Birds / Maurice Burton -- [12] Warm-blooded animals / Maurice Burton -- [13] Cold-blooded animals / Maurice Burton -- [14] The world before man / David Lambert -- [15] How does it work? / Chris Cooper & Jane Insley -- [16] Plants / David Black & Anthony Huxley -- [17] The world beneath us / Anita McConnell -- [18] The invisible work / Ron Taylor -- [19] The world today / Keith Lye -- [20] Communications and transport / Mark Lambert & Jane Insley -- [21] Through the microscope / Ron Taylor -- [22] Projects / Ron Taylor -- [23] Working with computers / Keith Wicks -- [24] Beginnings of life / Robert & Maurice Burton -- [25] Index.0 aJunior High School Library Catalog (Wilson)0 aBooklist.0 a7.0bFollett Library Book Co.2 a5-8. 0aSciencexDictionaries, Juvenile. 1aSciencexDictionaries. 7aFossils. 7aDinosaurs. 7aMammals, Fossil. aLVLcJNFkJNF 500 Ta bMAINp31000000006775r10.36u7986u356200323 2200133 450000100060000000300040000600500170001000800410002709000150006810000280008324500200011194200210013195200370015264769LVL19990217000000.0950324s19uu 000 0 eng d c1905d19051 aGrey, Zane,d1872-1939.10aTwin sombreros. aLVLcAFkAF Grey bMAINp31000000029228u7987u356300979 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200190012310000510014224500400019325000210023326000460025430000210030052001950032160000560051665100300057294200260060295200430062895200420067129675LVL20010804224953.0950321s1983 nyu j 00011 eng a82012556 a0698205693 a 82012556 c1906d1906 aJ Alme- dingen10aAlmedingen, E. M.d1898-1971.q(Edith Martha),14aThe crimson oak /cE.M. Almedingen. a1st American ed.0 aNew York :bCoward, McCann,c1983, c1981. a112 p. ;c22 cm. aPeter, a Russian peasant boy, twelve years old in the year 1739 and full of dreams, chances to cross paths with the exiled Princess Elizabeth and comes to realize his fate is linked to hers.01aElizabeth,cEmpress of Russia,d1709-1762xFiction. 1aRussiaxHistoryxFiction. aLVLcJFkJ Almedingen bMAINp32000000044870r1.89u7988u3564 bLB2p37000000013211r1.89u7989u356501316 2200397 450000100060000000300040000600500170001000800390002701000210006602000150008703500160010203900180011804000200013605000220015608200140017809000150019210000170020724500480022426000460027230000330031850000200035151000280037151000150039951000570041452001600047152100340063152100090066565000480067465000380072265000270076065000170078765000270080465000170083194200270084895200430087557751LVL19990220000000.0840905s1985 nyua j 00110 eng a84021050 /AC/r86 a0816000395 aflb000941060 a2b3c3d3e3 aDLCcDLCdICrlF0 aTK1191.bB64 19850 219a621.3 c1907d190710aBoltz, C. L.10aHow electricity is made /ctext C.L. Boltz.0 aNew York, N.Y. :bFacts on File,c[c1985] a32 p. :bcol. ill. ;c31 cm. aIncludes index.0 aSchool Library Journal.0 aAppraisal.0 aAmerican Association For The Advancement Of Science. aDescribes the various sources of electricity; how it is harnessed, controlled, and generated; and how it is distributed to provide us with power and light.0 a6.0bFollett Library Book Co.2 a5-8. 0aElectric power-plantsxJuvenile literature. 0aElectricityxJuvenile literature. 1aElectric power plants. 1aElectricity. 7aElectric power plants. 7aElectricity. aLVLcJNFkJNF 621.3 Bo bMAINp31000000007989r8.76u7991u356600513 2200181 450000100060000000300040000600500170001000800410002702000150006809000150008310000320009824500380013026000380016830000210020694200240022795200430025195200370029464770LVL20010807143538.0930421s19xx xxu 00010 eng d a0553261886 c1908d19081 aL'Amour, Louis,d1908-1988.10aDutchman's flat /cLouis L'amour.0 aNew York :bBantam Books,cc1986. a241 p. ;c18 cm. aLVLcWESkW L'Amour bMAINp31000000094816r1.71u7992u3567 bMAINp31000000094808u7993u356800877 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000190013524500320015426000400018630000520022650000280027850000590030660000400036565000480040565100370045394200220049095200440051295200430055629676LVL19990323000000.0931021r19941993mauabc 00010aeng a93023702 a0395689279 a 93023702 c1909d1909 aB Mowat 0aMowat, Farley.10aBorn naked /cFarley Mowat.0 aBoston :bHoughton Mifflin,cc1994. a256 p. :bmap on lining pages; ports. ;c22 cm. a"A Peter Davison book." aPreviously published: Canada : Key Porter Books, 1993.10aMowat, FarleyxChildhood and youth. 0aAuthors, CanadianxBiography.y20th century 0aCanadaxSocial life and customs. aLVLcBIOkB Mowat bMAINp31000000047387r12.66u7995u3569 bLB1p33000000021480r12.87u7996u357000849 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000210013624501610015726000320031830000350035050400620038565000270044765000390047465000170051394200220053095200430055236695LVL19990320000000.0920207s1992 nyua b 00110 eng a92007720 a0802773818 a 92007720 c1910d1910 a692.8 Le1 aLevinson, Ellis.10aHiring contractors without going through hell :bhow to find, hire, supervise, and pay professional help for home renovations and repairs /cEllis Levinson. aNew York :bWalker,cc1992. axv, 174 p. :bill. ;c23 cm.;. aIncludes bibliographical references (p. [167]) and index. 0aDwellingsxRemodeling. 0aDwellingsxMaintenance and repair. 0aContractors. aLVLcNFk692.8 Le bMAINp32000000042296r8.97u7997u357100797 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000280013724500460016526000370021130000210024865000280026965000570029765100230035494200230037795200430040095200440044395200440048743714LVL19990316000000.0920309s1993 nyu 00011 eng a92010377 a0393034372 a 92010377 c1911d1911 aAF Baxter10aBaxter, Charles,d1947-10aShadow play :ba novel /cCharles Baxter.0 aNew York :bW.W. Norton,cc1993. a399 p. ;c25 cm. 0aGood and evilxFiction. 0aReal estate developmentxCorrupt practicesxFiction. 0aMichiganxFiction. aLVLcAFkAF Baxter bLB2p34000000002808r12.93u7998u3572 bMAINp32000000043349r12.93u7999u3573 bMAINp32000000065332r12.93u8000u357400656 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500200009409000150011409200110012910000220014024500690016226000440023130000290027550400320030465000270033694200200036395200430038350733LVL19990313000000.0720410c19721971nyua b 00110 eng a77185954 a0812814495 a 77185954 //r85 c1912d1912 a358 Ma1 aMacksey, Kenneth.10aTank warfare :ba history of tanks in battle /cKenneth Macksey. aNew York :bStein and Dayc1972, c1971. a284 p. :bill. ;c22 cm. aBibliography: p. [275]-276. 0aTank warfarexHistory. aLVLcNFk358 Ma bMAINp32000000032704r7.95u8001u357500847 2200277 450000100060000000300040000600500170001000800390002701000130006602000250007902000310010404000130013505000170014808200170016509000150018224500960019726000370029330000290033050000200035950400260037965000350040565000430044070000200048394200230050395200430052657752LVL19990220000000.0800808s1980 ilua b 00100 eng a80020932 a052881107X :c$14.95 a0528880349 (pbk.) :c$7.95 aDLCcDLC0 aTH7414.bH380 219a690/.869 c1913d191304aThe Hawkweed passive solar house book /cby the Hawkweed Group, Rodney Wright ... [et al.].0 aChicago :bRand McNally,cc1980. a192 p. :bill. ;c26 cm. aIncludes index. aBibliography: p. 187. 0aSolar energyxPassive systems. 0aSolar housesxDesign and construction.10aWright, Rodney. aLVLcNFk690.8 HAW bMAINp31000000024099r4.77u8002u357600889 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000220013824500610016025000210022126000490024230000280029150000200031952000790033965100370041894200250045595200440048095200440052495200430056822658LVL19990327000000.0910715s1992 nyua j 00110 eng a91025175 a0872263533 a 91025175 c1914d1914 aJNF 932 De10aDefrates, Joanna.10aWhat do we know about the Egyptians? /cJoanna Defrates. a1st American ed.0 aNew York, NY :bPeter Bedrick Books,cc1992. a45 p. :bill. ;c29 cm. aIncludes index. aAn illustrated survey of ancient Egypt's history, religion, and sociology. 1aEgyptxCivilizationyTo 332 B.C. aLVLcJNFkJNF 932 De bMAINp32000000043920r16.95u8003u3577 bMAINp31000000045858r16.95u8004u3578 bLB1p33000000017195r16.95u8005u357901180 2200301 450000100060000000300040000600500170001000700100002700800410003702000150007803500160009303700240010909000150013309200140014824501030016226000660026530000540033150600310038552002030041652100130061953800090063265000590064165000600070071000220076074000290078294200230081195200440083429677LVL19990323000000.0vf cbahom940628s1985 nyu060 g vleng d a0517555549 avid93001163 a555549bCrown Video c1915d1915 aAV 448 Li00aLiving language FrenchcCrown Publishers ; produced and directed by Lee Kraft.h[videorecording] / aNew York :bCrown Video,bDist. by Random House Video,c1985. a1 videocassette (60 min.) :bsd., col. ;c1/2 in. aFor private home use only. aA French language course for English-speakers, presented in five sections: Scenes at the airport; Scenes at the Hotel; Scenes on the street; Scenes at the restaurant; Scenes at the department store. aGeneral. aVHS. 0aFrench languagexStudy and teachingxEnglish speakers. 0aFrench languagexStudy and teachingxAudio-visual aids.21aCrown Publishers.01aFrenchh[videorecording] aLVLcAVkAV 448 Li bMAINp31000000048796r14.96u8006u358000650 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000180013424500530015225000120020526000610021730000270027850400510030594200200035695200440037643715LVL19990316000000.0910214s1991 nyu b 00110 eng a91052738 a0679404147 a 91052738 c1916d1916 a814 Up10aUpdike, John.10aOdd jobs :bessays and criticism /cJohn Updike. a1st ed.0 aNew York :bKnopf :bDistributed by Random House,c1991. axxii, 919 p. ;c25 cm. aIncludes bibliographical references and index. aLVLcNFk814 Up bMAINp32000000059811r19.95u8007u358101013 2200277 450000100060000000300040000600500170001000800390002701000130006602000250007903500160010404000200012005000230014008200150016309000150017810000340019324501440022725000210037126000400039230000330043251000280046552001810049352100170067470000200069194200240071150734LVL19990313000000.0801103r1980 nyua 00011 eng a80008850 a0394519183 :c$12.95 aflb00924108 aDLCcDLCdICrlF0 aPR4564.A2bG3 19800 219a823/.8 c1917d191710aDickens, Charles,d1812-1870.14aThe mystery of Edwin Drood /cCharles Dickens ; concluded by Leon Garfield ; introduced by Edward Blishen ; illustrated by Antony Maitland. a1st American ed.0 aNew York :bPantheon Books,c[1980] axv, 327 p. :bill. ;c24 cm.0 aSchool Library Journal. aMoving from a sedate cathedral town to London's sordid opium dens, the mystery of who killed the vanished Edwin Drood, or if he was actually killed at all, is finally resolved.2 aYoung Adult.10aGarfield, Leon. aLVLcAFkAF Dickens00915 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000190013624500720015525000120022726000380023930000210027750400510029860000340034961000490038365000350043265000400046765100510050794200230055895200440058122659LVL19990327000000.0940203s1994 nyu b 00110beng a92045118 a0679401067 a 92045118 c1918d1918 aB Arnold1 aBrandt, Clare.14aThe man in the mirror :ba life of Benedict Arnold /cClare Brandt. a1st ed. aNew York :bRandom House,cc1994. a360 p. ;c24 cm. aIncludes bibliographical references and index.10aArnold, Benedict,d1741-1801.10aUnited States.bContinental ArmyxBiography. 0aAmerican loyalistsxBiography. 0aGeneralsxBiography.zUnited States 0aUnited StatesxHistoryyRevolution, 1775-1783. aLVLcBIOkB Arnold bMAINp32000000044777r14.70u8010u358200679 2200229 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200150011410000200012924500350014926000380018430000280022244000300025094200250028095200430030595200420034895200590039036697LVL20011115172617.0931228s1993 nyu 00011 eng d a0553563769 anpl93001779 c1919d1919 aW Killdeer10aKilldeer, John.10aPassage West /cJohn Killdeer.0 aNew York :bBantam Books,cc1993. a249 p. ;c18 cm. ;dpa. 0aMountain majesty ;vbk 5. aLVLcWESkW Killdeer bMAINp32000000044158r2.89u8011u3583 bLB2p34000000004613r2.89u8012u3584 bLB1dLB1p33000000017347r2.89u8014u3585v2003-09-0100598 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000210013824500340015926000380019330000210023165000610025294200240031395200430033743716LVL20020830124053.0921023s1993 nyu 00011 eng a92039568 a0553093711 a 92039568 c1920d1920 aAF Gifford10aGifford, Thomas.10aPraetorian /cThomas Gifford.0 aNew York :bBantam Books,cc1993. a495 p. ;c25 cm. 0aWorld War, 1939-1945xCampaignsxFiction.zAfrica, North aLVLcAFkAF Gifford bMAINp32000000063659r2.00u8015u358600885 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009403900180011004000200012805000240014808200170017209000150018910000260020424500470023025000120027726000370028930000210032650000240034752001450037152100110051694200250052795200430055250735LVL19990313000000.0830608c19841983nyu 00011 eng a83048104 a0394534077 aflb002413160 a2b3c3d3e3 aDLCcDLCdICrlF0 aPR6054.E37bB4 19840 219a823/.914 c1921d192110aDeighton, Len,d1929-10aBerlin game :ba novel /cby Len Deighton. a1st ed.0 aNew York :bKnopf,c1984, c1983. a345 p. ;c22 cm. aSequel: Mexico set. aBernard Samson must safely deliver from behind the Iron Curtain the agent known as Brahms Four, who rescued him nearly twenty years earlier.2 aAdult. aLVLcAFkAF Deighton bMAINp32000000004684r9.16u8016u358701310 2200349 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000280013624501290016425000120029326000540030530000520035950000200041150000550043165000400048665000420052665000450056865000470061365000440066065000460070465000530075065000550080374000360085894200220089495200440091622660LVL19990327000000.0930830s1994 nmuabc 00110 eng a93032359 a1562611437 a 93032359 c1922d1922 a796.5 Ki10aKilgore, Eugene,d1953-10aRanch vacations :bthe complete guide to guest and resort, fly-fishing, and cross-country skiing ranches /cby Gene Kilgore. a3rd ed.0 aSante Fe, N.M. :bJohn Muir Publications,cc1994. axv, 509 p. :bill.; map ; ports. ;c26 cm.; pa. aIncludes index. aOn t.p. and cover, Gene Kilgore's ranch vacations. 0aResortsxGuidebooks.zUnited States 0aResortsxGuidebooks.zCanada, Western 0aDude ranchesxGuidebooks.zUnited States 0aDude ranchesxGuidebooks.zCanada, Western 0aFly fishingxGuidebooks.zUnited States 0aFly fishingxGuidebooks.zCanada, Western 0aCross-country skiingxGuidebooks.zUnited States 0aCross-country skiingxGuidebooks.zCanada, Western01aGene Kilgore's ranch vacations. aLVLcNFk796.5 Ki bMAINp31000000047269r11.77u8018u358800381 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000230009824500480012194200230016995200430019236698LVL19990320000000.0941121s19xx xxu 00010 eng d a037310992X c1923d192310aGeorge, Catherine.14aThe marriage bed /bHarlequin Presents 992. aLVLcAFkPB George bMAINp32000000053174r2.25u8019u358900243 2200097 4500010001300000090001500013100002500028245002700053942002200080952004300102 a58008919 c1924d1924 aMilella, Nicholas J.10aItalian in a nutshell. aLVLcNFk458.1 Mi bMAINp32000000009191r5.00u8020u359000530 2200193 450000100060000000300040000600500170001000800410002702000150006809000150008309200150009810000200011324500380013326000430017130000270021444000280024194200240026995200430029357755LVL20030508162937.0951218s19uu 000 0 eng d a0373059302 c1925d1925 aAF Jamison10aJamison, Kelly.10aForsaken father /cKelly Jamison. aNew York :bSilhouette Books ;cc1995. a187 p. ;c18 cm. ; pa. 0aSilhouette Desirev930. aLVLcPBkPB Jamison bMAINp35000000007992r3.25u8021u359100681 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000270013424500320016125000130019326000490020630000380025544000250029350400300031865000160034894200200036495200430038422661LVL19990327000000.0730419s1973 nyuab b 00110 eng a72090414 a0195199170 a 72090414 c1926d1926 a709 Bo1 aBoardman, John,d1927-10aGreek art /cJohn Boardman. aRev. ed. aNew York :bOxford University Press,cc1973. a252 p. :bill. ; map ;c21 cm. ;. 0aWorld of art series. aBibliography: p. 238-241. 0aArt, Greek. aLVLcNFk709 Bo bMAINp32000000050066r4.95u8022u359200818 2200229 450000100060000000300040000600500170001000800390002701000130006603500140007909000150009309200190010824501690012725000180029626000740031430000360038850000200042465000500044471000210049494200290051595200440054429680LVL19990323000000.0930810s1992 ohua 00000 eng a93621699 a 93621699 c1927d1927 aREF 353.977 Po00aPolicymaking opportunities in state government :ba directory of state boards, commissions, and advisory bodies of the state of Ohio /ccompiled by Ohio Women, Inc. a3rd ed., Rev. aColumbus, Ohio (65 S. 4th St., Columbus 43215) :bOhio Women,cc1992. axi, 139 p. :bill. ;c28 cm. ;. aIncludes index. 0aExecutive advisory bodiesxDirectories.zOhio20aOhio Women, Inc. aLVLcREFkREF 353.977 Po bMAINp32000000053923r15.00u8023u359300914 2200277 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200140012510000200013924500700015926000490022930000330027865000500031165000410036194200230040295200420042595200430046795200420051095200420055295200420059436699LVL20020525114507.0940216c19941993nyu 00010 eng d a93090454 a044990878X a 93090454 c1928d1928 a616.85 En10aEngel, Beverly.10aEncouragements for the emotionally abused woman /cBeverly Engle.0 aNew York :bFawcett Columbine,c1994, c1993. axiv, 222 p. ;c21 cm. ;dpa. 0aPsychologically abused womenxRehabilitation. 0aAbused womenxPsychological aspects. aLVLcNFk616.85 En bLB2p37000000004177r5.22u8024u3594 bMAINp32000000045069r5.22u8025u3595 bLB1p36000000000400r5.22u8026u3596 bLB2p34000000001698r5.22u8027u3597 bLB1p33000000017824r5.22u8028u359800742 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200160012310000340013924500390017325000200021226000460023230000210027865000460029965000220034565100530036794200250042095200430044543718LVL20030612164103.0931117r19941921meu d 00011 eng a93040527 a0786201576 a 93040527 c1929d1929 aLP Sabatini1 aSabatini, Rafael,d1875-1950.10aScaramouche /cby Rafael Sabatini. aLarge print ed. aThorndike, Me. :bThorndike Press,c1994. a610 p. ;c22 cm. 0aMan-woman relationshipsxFiction.zFrance 0aLarge type books. 0aFrancexHistoryxFiction.yRevolution, 1789-1799 aLVLcLPkLP Sabatini bLB2p37000000017638r15.72u8029u359900978 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010810000300012324500830015326000390023630000400027552000510031565000220036665000210038865000190040965000220042870000300045094200220048095200430050295200440054595200430058995200440063250737LVL19990313000000.0931215s1994 nyua j 00011 eng a93049398 a0531068536 a 93049398 c1930d193010aLyon, George Ella,d1949-10aMama is a miner /cstory by George Ella Lyon ; paintings by Peter Catalanotto.0 aNew York :bOrchard Books,cc1994. a[30] p. :bcol. ill. ;c23 x 27 cm. aA mother describes her job working as a miner. 1aMothersxFiction. 1aMinersxFiction. 1aWorkxFiction. 1aStories in rhyme.11aCatalanotto, Peter,eill. aLVLcEASYkE Lyon bMAINp32000000063073r9.17u8030u3600 bMAINp32000000081387r15.95u8031u3601 bMAINp31000000058664r9.17u8032u3602 bMAINp31000000071964r15.95u8033u360301331 2200361 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200130012510000210013824500300015925000170018926000500020630000350025652001590029165000250045065000200047594200240049595200430051995200440056295200440060695200440065095200440069495200600073895200420079895200430084095200440088395200420092722662LVL19991006000000.0930510s1993 maua j 00011 eng d a92053002 a1564021297 a 92053002 c1931d1931 aE Hughes10aHughes, Shirley.10aGiving /cShirley Hughes. a1st U.S. ed.0 aCambridge, Mass. :bCandlewick Press,cc1993. a[20] p. :bcol. ill. ;c26 cm. aA little girl and her baby brother experience the various aspects of giving, finding that it is nice whether you are giving a present, a smile, or a kiss. 1aGenerosityxFiction. 1aGiftsxFiction. aLVLcEASYkE Hughes bLB2p37000000004319r12.89u8034u3604 bMAINp32000000039325r11.66u8035u3605 bMAINp32000000046250r11.66u8036u3606 bMAINp32000000048254r11.01u8037u3607 bMAINp32000000065428r12.89u8038u3608 bLB1dLB1p36000000003508r10.89u8039u3609v2003-09-01 bLB2p34000000010453r7.64u8040u3610 bMAINp31000000049672r7.64u8041u3611 bMAINp31000000060700r12.89u8042u3612 bLB1p33000000019561r7.64u8043u361301215 2200301 4500020001500000090001500015100002400030245005400054260004600108300004100154500002000195520013900215650001000354650002200364700001700386942002400403952004200427952004200469952004300511952004900554952004200603952004900645952004200694952004200736952004200778952004200820952005100862 a0688136133 c1932d193210aMorris, Ann,d1930-10aLoving /cAnn Morris ; photographs by Ken Heyman.0 aNew York :bMulberry Books,c1994, c1990. a29 p. :bill. ; map ;c21 x 25 cm. ; aIncludes index. aProvides examples of the different ways in which love can be expressed, with an emphasis on the relationship between parent and child. 1aLove. 1aParent and child.11aHeyman, Ken, aLVLcEASYkE Morris bLB2p37000000012461r2.95u8044u3614 bLB2p37000000022442r4.95u8045u3615 bMAINp32000000055617r2.82u8046u3616 bMAINdMAINp32000000128427r4.95u8047u3617 bLB1p36000000018887r4.95u8048u3618 bMAINdMAINp32000000012695r4.95u8050u3619 bLB2p34000000010707r2.82u8051u3620 bLB2p34000000028395r4.95u8052u3621 bLB1p33000000021728r2.82u8054u3622 bLB1p33000000051955r4.95u8055u3623 bMAINdMAINp32000000001130r4.95u327669u362400768 2200253 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200130011410000190012724500590014626000420020530000290024750400470027665000160032374000220033994200220036195200440038395200440042795200430047143719LVL19990316000000.0940510s1993 enka b 00110 eng d a0706370767 anpl94000600 c1933d1933 a635.9 Bi10aBird, Richard.14aThe complete book of hardy perennials /cRichard Bird.0 aLondon, England :bWard Lock,cc1993. a256 p. :bill. ;c26 cm. aIncludes bibliography: p. (252) and index. 0aPerennials.01aHardy Perennials. aLVLcNFk635.9 Bi bMAINp32000000046990r17.67u8056u3625 bMAINp31000000048181r17.67u8057u3626 bLB1p33000000018882r17.67u8058u362701225 2200373 450000100060000000300040000600500170001000800390002701000210006602000310008702000250011803500160014304000200015905000230017908200240020209000150022610000270024124500780026826000370034630000350038351000520041851000140047052001370048452100340062152100090065565000170066465000230068165000220070465000170072665000230074365000210076694200270078795200370081450738LVL20020911095816.0830331s1983 nyua j 000 0 eng a83004596 /AC/r89 a0399209026 (pbk.) :c$5.95 a0399209018 :c$10.95 aflb00164010 aDLCcDLCdICrlF0 aPZ8.C285bJak 19830 219a398.2/1/0941aE c1934d19341 aCauley, Lorinda Bryan.10aJack and the beanstalk /cretold and illustrated by Lorinda Bryan Cauley. aNew York :bG.P. Putnam,cc1983. a[32] p. :bcol. ill. ;c28 cm.0 aElementary School Library Collection (Bro-Dart)0 aBooklist. aA boy climbs to the top of a giant beanstalk where he uses his quick wits to outsmart a giant and make his and his mother's fortune.0 a5.7bFollett Library Book Co.2 aK-3. 1aFairy tales. 1aFolklorezEngland. 1aGiantsxFolklore. 7aFairy tales. 7aFolklorezEngland. 7aGiantsxFiction. aLVLcJNFkJNF 398.2 Ca bMAINp32000000016559u8059u362800642 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009405000260010808200160013409000150015009200160016510000210018124500430020225000200024526000380026550000310030394200230033495200430035757757LVL19990220000000.0860624c19871953enk d 00011 eng a86016637 a1555041663 a 860166371 aPS3515.O6526bB8 19870 219a813/.54 c1935d1935 aL.P. Hopson10aHopson, William.10aBullet-brand empire /cWilliam Hopson. aLarge print ed.0 aBath, England :bChivers Press ;. a"Atlantic western"--Cover. aLVLcLPkLP Hopson bMAINp31000000035648r8.95u8060u362901108 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000160013524500670015126000460021830000350026450000290029952001400032865000260046865000220049494200230051695200420053995200430058195200430062495200420066795200430070995200420075229682LVL20000910173948.0881128c19891937nyua j 00011 eng a88038411 a0394844947 a 88038411 c1936d1936 aE Seuss10aSeuss,cDr.10aAnd to think that I saw it on Mulberry Street /cby Dr. Seuss.0 aNew York :bRandom House,c[1989], c1937. a[38] p. :bcol. ill. ;c28 cm. a"A Vanguard Press book." aA boy imagines a series of incredible sights on his way home from school so that he will have an interesting report to give his father. 1aImaginationxFiction. 1aStories in rhyme. aLVLcEASYkE Seuss bLB2p37000000008481r2.17u8061u3630 bMAINp32000000063091r8.05u8062u3631 bMAINp32000000063092r8.05u8063u3632 bLB2p34000000013282r8.05u8064u3633 bMAINp31000000058682r8.05u8065u3634 bLB1p33000000024926r8.05u8066u363500675 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000320013724500370016925000200020626000530022630000210027965000220030094200230032295200440034595200440038936701LVL19990320000000.0931130r19941943meu d 00011 eng a93044663 a1560547022 a 93044663 c1937d1937 aLP Haycox1 aHaycox, Ernest,d1899-1950.14aThe wild bunch /cErnest Haycox. aLarge print ed. aThorndike, Me. :bThorndike Press,c1994, c1943. a362 p. ;c22 cm. 0aLarge type books. aLVLcLPkLP Haycox bMAINp32000000045938r12.72u8067u3636 bMAINp31000000047536r12.72u8068u363700953 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000200013824500720015826000390023030000300026950000400029952001400033965000250047965000340050470000260053894200260056495200430059095200420063343720LVL19990316000000.0921203s1993 nyua j 00011 eng a92044588 a0531054942 a 92044588 c1938d1938 aE Levinson10aLevinson, Riki.10aSoon, Annala /cstory by Riki Levinson ; pictures by Julie Downing.0 aNew York :bOrchard Books,cc1993. a[31] p. :bill. ;c29 cm. a"A Richard Jackson book"--Half t.p. aWhile eagerly awaiting the arrival of her two younger brothers from the old country, Anna tries to speak more English and less Yiddish. 1aImmigrantsxFiction. 1aJewsxFiction.zUnited States11aDowning, Julie,eill. aLVLcEASYkE Levinson bMAINp32000000019079r8.82u8069u3638 bLB1p36000000009908r8.82u8071u363900530 2200205 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200160011410000220013024500400015225000200019226000440021230000210025665000220027794200250029950739LVL20030129140851.0920720c19881986enk d 00011 eng d a0708918352 aonv90002857 c1939d1939 aLP Hardwick1 aHardwick, Mollie.10aMalice domestic /cMollie Hardwick. aLarge print ed. aLeicester :bUlverscroft,c1988, c1986. a390 p. ;c22 cm. 0aLarge type books. aLVLcLPkLP Hardwick00732 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000150013824500530015326000380020630000250024450400560026965000210032565000360034665000290038294200240041195200430043557758LVL19990220000000.0900928s1991 nyu b 00010 eng a90019474 a0553071882 a 90019474 c1940d1940 a305.323 Ke10aKeen, Sam.10aFire in the belly :bon being a man /cSam Keen.0 aNew York :bBantam Books,cc1991. axv, 272 p. ;c25 cm. aIncludes bibliographical references (p. [269]-272). 0aMenxPsychology. 0aMenxPsychology.zUnited States 0aMasculinity (Psychology) aLVLcNFk305.323 Ke bMAINp31000000037243r9.97u8073u364000671 2200229 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200120011410000440012624500520017026000360022230000280025844000220028650000260030894200210033495200430035595200430039829683LVL20030630120701.0960802s1993 nyu j 00011 eng d a0590494473 anpl96001454 c1941d1941 aJ Stine10aStine, R. L.d1943-q(Robert Lawrence),10aBe careful what you wish for... /cR. L. Stine.0 aNew York :bScholastic,cc1993. a121 p. ;c20 cm. ;dpa. 0aGoosebumps ;v12. a"An Apple Paperback." aLVLcJFkJ Stine bMAINp32000000137928r2.95u8074u3641 bMAINp31000000079142r2.95u8075u364200853 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000200013824500680015825000170022626000500024330000350029344000210032852000820034965000100043170000250044194200250046695200420049195200420053343721LVL20010926103740.0920421s1993 maua j 00010 eng a92053131 a1564021807 a 92053131 c1942d1942 aJNF 597 Wa10aWallace, Karen.10aThink of an eel /cKaren Wallace ; illustrated by Mike Bostock. a1st U.S. ed.0 aCambridge, Mass. :bCandlewick Press,cc1993. a[26] p. :bcol. ill. ;c26 cm. 0aRead and wonder. aText and illustrations discuss the characteristics and life cycle of the eel. 1aEels.11aBostock, Mike,eill. aLVLcJNFkJNF 597 Wa bLB2p34000000008469r8.82u8076u3643 bLB1p33000000019720r8.82u8077u364400291 2200121 450000100060000000300040000600500170001000800410002709000150006824500270008394200160011095200430012650740LVL19990313000000.0931009s19xx xxu 00010 eng d c1943d194310aCobblestone 1987 June. aLVLcPERkJ bMAINp32000000022923r1.50u8078u364500744 2200229 450000100060000000300040000600500170001000800390002701000130006603500140007909000150009309200120010810000240012024500710014426000490021530000290026452001210029365000130041470000240042794200210045195200420047257759LVL20000911174612.0691219c19691968nyua j 00011 eng a74089139 a 74089139 c1944d1944 aJ Aiken10aAiken, Joan,d1924-14aThe whispering mountain /cJoan Aiken; illustrated by Frank Bozzo.0 aGarden City, N.Y. :bDoubledayc1969, c1968. a237 p. :bill. ;c22 cm. aWith the help of some unusual friends, a young boy tries to restore the Golden Harp of Teirtu to its rightful owner. 1aFantasy.11aBozzo, Frank,eill. aLVLcJFkJ Aiken bLB2p37000000012426r4.50u8079u364601147 2200325 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000210013824500690015926000950022830000350032344000230035850000520038150000410043350000280047452001030050265000220060565000280062770000220065571000360067773000390071394200260075295200430077829684LVL19990323000000.0870619s1988 nyua j 00011 eng a87081762 a0307120252 a 87081762 c1945d1945 aE Thompson10aThompson, Emily.10aJust like Ernie /cby Emily Thompson ; illustrated by Tom Cooke.0 a[New York] :bWestern Pub. Co. in conjunction with Children's Television Workshop,cc1988. a[24] p. :bcol. ill. ;c22 cm. 2aA Growing-up book. a"Featuring Jim Henson's Sesame Street Muppets." a"A Sesame Street/Golden Press book." a"A Golden book"--Cover. aFriends Ernie and Bert, two very different personalities, learn to appreciate their individuality. 1aPuppetsxFiction. 1aIndividualityxFiction.11aCooke, Tom,eill.20aChildren's Television Workshop.01aSesame Street (Television program) aLVLcEASYkE Thompson bMAINp32000000058196r3.95u8081u364700660 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000240013624500370016026000580019730000210025544000410027650000200031765000160033794200220035395200430037536703LVL20010806092233.0961001s1996 nyu 00110 eng a95040545 a0812093119 a 95040545 c1946d1946 a519.5 St10aSternstein, Martin.10aStatistics /cMartin Sternstein.0 aHauppauge, NY :bBarron's Educational Series,cc1996. a308 p. ;c24 cm. 0aCollege review series.pMathematics. aIncludes index. 0aStatistics. aLVLcNFk519.5 St bMAINp32000000067085r8.37u8082u364800713 2200193 450002800260000009000150002610000280004124500590006926000590012830000440018750000160023151100260024752001140027365000210038765000190040870000260042794200220045395200440047502a92348bRecorded Books c1947d19471 aBrand, Max,d1892-1944.10aDestry rides againcby Max Brand.h[sound recording] / aPrince Frederick, MD :bRecorded Books,cp1992, c1930. a6 sound cassettes (8.75 hr.) :banalog. aUnabridged.3 aJohn Randolph-Jones.. aA classic myth of the Old West, about the young and restless but not criminal Destry, sentenced to be hanged. 0aWestern stories. 0aTalking Books.20aRandolph-Jones, John. aLVLcACkAC Brand bMAINp32000000050487r44.00u8083u364900540 2200205 450000100060000000300040000600500170001000800410002701000120006802000150008003500160009509000150011109200140012610000300014024500360017026000360020630000260024294200230026895200430029157760LVL20021031165638.0930324s1993 nyu 00011 eng d a9290536 a0380769530 aonv90004194 c1948d1948 aAF Lowell10aLowell, Elizabeth,d1944- 0aUntamed /cby Elizabeth Lowell.0 bAvon Books,cNew York :cc1993. a408 p. ;c18 cm.dpa. aLVLcAFkAF Lowell bMAINp31000000042413r2.89u8084u365001614 2200445 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200170012510000210014224500820016326000380024530000370028350000340032065000140035465000220036870000260039094200270041695200420044395200420048595200430052795200430057095200430061395200440065695200420070095200420074295200430078495200420082795200420086995200430091195200430095495200440099795200420104195200420108395200430112529685LVL19990323000000.0950926s1995 nyua j 00010 eng d a94069556 a0679852921 a 94069556 c1949d1949 aJNF 394.2 Ro10aRoss, Katharine.14aThe story of the pilgrims /cby Katharine Ross; illustrated by Carolyn Croll.0 aNew York :bRandom House,cc1995. a[24] p. :bill. ;c21 cm. ;dpa. a"A Random House Pictureback". 1aPilgrims. 1aThanksgiving Day.11aCroll, Carolyn,eill. aLVLcJNFkJNF 394.2 Ro bLB2p37000000001636r1.89u8085u3651 bLB2p37000000001640r1.89u8086u3652 bMAINp32000000059635r1.89u8087u3653 bMAINp32000000059636r1.89u8088u3654 bMAINp32000000059637r1.89u8089u3655 bMAINp32000000065746r11.89u8090u3656 bLB1p36000000002552r5.00u8091u3657 bLB1p36000000002553r5.00u8092u3658 bMAINp35000000002922r1.89u8093u3659 bLB2p34000000009048r1.89u8094u3660 bLB2p34000000009049r1.89u8095u3661 bMAINp31000000056242r1.89u8096u3662 bMAINp31000000056243r1.89u8097u3663 bMAINp31000000060942r11.89u8098u3664 bLB1p33000000023592r1.89u8099u3665 bLB1p33000000023593r1.89u8100u3666 bLB1p33000000026259r11.89u8101u366701009 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009409000150011009200150012510000230014024500350016326000370019830000270023550000820026250000420034452001540038665000200054065000210056065000240058194200260060595200440063195200440067536704LVL19990320000000.0940604s1994 wiua j 00011 eng a93040659 a0836810945 anpl94000825 c1950d1950 aE Corderoy1 aCorderoy, William.10aLeaves /cby William Corderoy. aMilwaukee :bG. Stevens,cc1994. a28 p. :bill.,c18 cm. a"First published in Denmark ... in 1992 under the title Lovfald"--T.p. verso. a"North American edition"--T.p. verso. aA curious little bear tries to stay awake through the winter to see how the leaves that have fallen off the trees miraculously reappear every spring. 1aBearsxFiction. 1aLeavesxFiction. 1aCuriosityxFiction. aLVLcEASYkE Corderoy bMAINp32000000047604r13.99u8102u3668 bMAINp31000000048710r13.99u8103u366900814 2200253 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200140012510000200013924500850015926000440024430000450028870000340033394200250036795200420039295200420043495200420047695200420051843723LVL20030115100444.0940928s1994 nyua j 00011 eng d a93086837 a0399226281 a 93086837 c1951d1951 aE Pandell10aPandell, Karen.10aI love you, Sun I love you, Moon /cby Karen Pandell; pictures by Tomie dePaola.0 aNew York :bG.P. Putnam's Sons,cc1994. a[18] p. :bill. ;c13 cm. ;dboard book.11aDePaola, Tomie,d1934-,eill. aLVLcEASYkE Pandell bLB2p37000000024113r6.99u8104u3670 bLB2p34000000011371r3.51u8106u3671 bLB2p34000000029221r6.99u8107u3672 bLB1p33000000020576r3.51u8108u367300536 2200193 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200120011210000210012424500610014526000440020630000270025094200220027795200430029957761LVL19990220000000.0950125c19911990nyu 00011 eng a0553287532 anpl95000190 c1952d1952 aM Brown10aBrown, Rita Mae.10aWish you were here /cRita Mae Brown & Sneaky Pie Brown.0 aNew York :bBantam Books,c1991, c1990. a284 p. ;c18 cm. ; pa. aLVLcMYSkM Brown bMAINp31000000053129r3.30u8109u367400732 2200205 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200150011424500850012926000380021430000280025250501370028094200240041795200430044195200420048422667LVL20030703151836.0941114s1994 nyu 00001 eng d a0671502522 anpl94002386 c1953d1953 aAF Holiday02aA holiday of love /cJudith McNaught, Jude Deveraux, Arnette Lamb, Jill Barnett.0 aNew York :bPocket Books,cc1994. a355 p. ;c17 cm. ;dpa. aChange of heart, Jude Deveraux -- Miracles, Judith McNaught -- Daniel and the angel, Jill Barnett -- Hark! the herald, Arnette Lamb. aLVLcAFkAF Holiday bMAINp32000000053775r3.59u8110u3675 bLB1p36000000004341r3.59u8111u367600987 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000200013624500830015626000560023930000460029550001380034150400510047965000110053065000280054165000280056965000180059765000170061594200220063295200430065429686LVL19990323000000.0920305r19921991cauab b s00110 eng a92010461 a0520080807 a 92010461 c1954d1954 a631.4 Hi10aHillel, Daniel.10aOut of the earth :bcivilization and the life of the soil /cDaniel J. Hillel.0 aBerkeley :bUniversity of California Press,cc1992. ax, 321 p. :bill. ; maps ;c23 cm. ;dpa. aOriginally published: New York : Free Press ; Toronto : Collier Macmillan Canada ; New York : Maxwell Macmillan International, c1991. aIncludes bibliographical references and index. 0aSoils. 0aSoils and civilization. 0aWater and civilization. 0aWater-supply. 0aAgriculture. aLVLcNFk631.4 Hi bMAINp32000000062197r9.95u8112u367700933 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000170013524500880015226000480024030000300028852001300031865000220044865000200047065000220049070000360051294200210054895200430056995200430061236705LVL19990320000000.0940706r19891987nyua j 00011 eng a88030556 a0140327231 a 88030556 c1955d1955 aJ Kline1 aKline, Suzy.10aHerbie Jones and the class gift /cby Suzy Kline ; illustrated by Richard Williams. aNew York, NY :bPuffin Books,c1989, c1987. a94 p. :bill. :c20 cm.;. aDisaster strikes when Annabelle trusts Herbie Jones and Raymond with the job of picking up the class's gift to their teacher. 1aSchoolsxFiction. 1aGiftsxFiction. 1aHumorous stories.11aWilliams, Richard,d1950-eill. aLVLcJFkJ Kline bMAINp32000000048456r3.99u8113u3678 bMAINp31000000049942r3.99u8114u367900913 2200277 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200130011210000230012524500890014825000130023726000400025030000330029065000390032365000440036265000370040694200220044395200430046595200420050895200430055095200420059343724LVL19990316000000.0950323s1989 nyu 00010 eng a0805210334 anpl95000343 c1956d1956 a296.3 Ku 0aKushner, Harold S.10aWhen children ask about God /cHarold S. Kushner ; with a new preface by the author. aRev. ed.0 aNew York :bSchocken Books,cc1989. axxv, 176 p. ;c21 cm. ;dpa. 0aGod (Judaism)xStudy and teaching. 0aJewish religious education of children. 0aJewish childrenxReligious life. aLVLcNFk296.3 Ku bMAINp32000000056064r7.08u8115u3680 bLB2p34000000001347r7.08u8116u3681 bMAINp31000000053473r7.08u8117u3682 bLB1p33000000021856r7.08u8118u368301334 2200409 450000100060000000300040000600500170001000800390002701000130006602000270007902000150010603500160012104000200013705000240015708200120018109000150019310000190020824500700022726000340029730000350033151000320036651000140039851000280041252001180044052100340055852100090059265000190060165000310062065000190065165000310067070000210070194200250072295200430074795200430079095200490083395200420088250743LVL19990313000000.0801028s1981 nyua j 00011 eng a80026189 a0688005020 (lib. bdg.) a0688005012 aflb00248106 aDLCcDLCdICrlF0 aPZ7.C1278bHrm 19810 219a[E] c1957d195710aCalhoun, Mary.10aHot-air Henry /cby Mary Calhoun ; illustrated by Erick Ingraham.0 aNew York :bW. Morrow,c1981. a[40] p. :bcol. ill. ;c26 cm.0 aChildren's Catalog (Wilson)0 aBooklist.0 aSchool Library Journal. aA sassy Siamese cat stows away on a hot air balloon and ends up taking a fur-raising flight across the mountains.0 a4.3bFollett Library Book Co.2 aK-3. 1aCatsxFiction. 1aHot air balloonsxFiction. 7aCatsxFiction. 7aHot air balloonsxFiction.10aIngraham, Erick. aLVLcEASYkE Calhoun bMAINp32000000005602r4.69u8119u3684 bMAINp32000000006589r9.69u8120u3685 bMAINdMAINp32000000006560r4.69u8122u3686 bLB1p33000000030152r6.95u8124u368701483 2200361 450000100060000000300040000600500170001000700100002700800410003703500160007803700190009409000150011309200130012824502180014126000410035930000540040050000960045450600310055051100780058152001150065952100130077453800090078765000330079665000480082970000170087770000260089470000260092070000280094670000390097474000420101394200220105595200440107757762LVL20000323000000.0vf cbahom941107p19891985nyu095 g vleng d avid93001454 aFH29002bForum c1958d1958 aAV Perry00aPerry Mason returnsbthe defense never rests /cViacom Productions in association with Intermedia Entertainment ; executive producers: Fred Silverman and Dean Hargrove ; directed by Ron Satlof.h[videorecording] : aNew York :bForum Home Video,c1989. a1 videocassette (95 min.) :bsd., col. ;c1/2 in. aTelevision movie based on characters by Erle Stanley Gardner, originally broadcast in 1984. aFor private home use only.1 aRaymond Burr, Barbara Hale, Al Freeman Jr., William Katt, Patrick O'Neal. aPerry Mason defends his old time friend Della Street who stands accused of the murder of her millionaire boss. aGeneral. aVHS. 0aDetective and mystery films. 0aMason, Perry (Fictitious character)xDrama.11aSatlof, Ron.11aBurr, Raymond,d1917-11aHale, Barbara,d1922-11aO'Neal, Patrick,d1927-11aGardner, Erle Stanley,d1889-1970.01aDefense never restsh[videorecording] aLVLcAVkAV Perry bMAINp31000000030432r21.61u8125u368800756 2200253 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200140011410000190012824500360014726000380018330000280022144000170024994200240026695200420029095200430033295200420037595200430041795200420046022668LVL20020921091137.0950123s1994 nyu 00011 eng d a0553299255 anpl95000148 c1959d1959 aW Sherman10aSherman, Jory.14aThe Rio Grande /cJory Sherman.0 aNew York :bBantam Books,cc1994. a290 p. ;c18 cm. ;dpa. 0aRivers West. aLVLcWESkW Sherman bLB2p37000000021136r4.99u8126u3689 bMAINp32000000055475r2.94u8127u3690 bLB2p34000000004822r2.94u8128u3691 bMAINp31000000053073r2.94u8129u3692 bLB1p33000000021613r2.94u8130u369300816 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000250013624500700016125000120023126000430024330000210028665000510030765000500035865100320040894200220044095200440046295200440050629687LVL19990323000000.0961008s1996 nyu 00011 eng a95052460 a0449909379 a 95052460 c1960d1960 aAF Smith10aSmith, Julie,d1944-14aThe kindness of strangers :ba Skip Langdon novel /cJulie Smith. a1st ed.0 aNew York :bFawcett Columbine,cc1996. a338 p. ;c25 cm. 0aLangdon, Skip (Fictitious character)xFiction. 0aPolicewomenxFiction.zLouisianazNew Orleans 0aNew Orleans (La.)xFiction. aLVLcAFkAF Smith bMAINp32000000067181r12.30u8131u3694 bMAINp31000000062023r12.30u8132u369500525 2200205 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000270013424500470016126000320020830000210024094200210026195200370028243725LVL20030116183224.0950103s1995 nyu 00011 eng a95002975 a0670861286 a 95002975 c1961d1961 aM Gash10aGash, Jonathan,d1933-14aThe grace in older women /cJonathan Gash.0 aNew York :bViking,cc1995. a279 p. ;c22 cm. aLVLcMYSkM Gash bMAINp32000000057327u8134u369601446 2200397 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000380013524500800017325000120025326000530026530000350031852001150035365000210046865000190048965000290050865000210053770000340055894200230059295200430061595200440065895200440070295200430074695200440078995200430083395200430087695200430091995200430096295200430100557763LVL20020806102945.0940224s1995 nyua j 00011 eng a94008470 a0786800399 a 94008470 c1962d1962 aE Brown10aBrown, Margaret Wise,d1910-1952.10aAnimals in the snow /cMargaret Wise Brown ; illustrated by Carol Schwartz. a1st ed.0 aNew York :bHyperion Books for Children,cc1995. a[32] p. :bcol. ill. ;c26 cm. aWhen snow falls, the animals stay home; when it stops, they come out to play; and when it melts, it is spring! 1aWinterxFiction. 1aSnowxFiction. 1aForest animalsxFiction. 1aSpringxFiction.11aSchwartz, Carol,d1954-eill. aLVLcEASYkE Brown bLB2p37000000022255r14.95u8135u3697 bMAINp32000000128383r14.95u8136u3698 bMAINp32000000128831r14.95u8137u3699 bLB1p36000000018849r14.95u8138u3700 bMAINp35000000010222r14.95u8139u3701 bLB2p34000000028361r14.95u8140u3702 bMAINp31000000063695r8.24u8141u3703 bMAINp31000000063697r8.24u8142u3704 bMAINp31000000063698r8.24u8143u3705 bLB1p33000000051913r14.95u8144u370600950 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000350013824500410017326000440021430000210025865000520027965000570033165100320038894200240042095200430044495200440048795200430053195200430057495200430061722669LVL20030517104311.0940812s1995 nyu 00011 eng a94033943 a0399140069 a 94033943 c1963d1963 aAF Sanders10aSanders, Lawrence,d1920-1998.10aMcNally's trial /cLawrence Sanders.0 aNew York :bG.P. Putnam's Sons,cc1995. a309 p. ;c24 cm. 0aMcNally, Archy (Fictitious character)xFiction. 0aPrivate investigatorsxFiction.zFloridazPalm Beach 0aPalm Beach (Fla.)xFiction. aLVLcAFkAF Sanders bLB2p37000000015200r14.13u8145u3707 bMAINp32000000056887r14.13u8146u3708 bLB1p36000000015563r23.95u8147u3709 bLB2p34000000001133r14.13u8148u3710 bLB1p33000000022144r14.13u8149u371100965 2200265 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200120011210000170012424500380014126000470017930000280022652002360025465000220049065000360051265100250054865100200057394200210059395200420061495200430065629688LVL20030520143100.0960528r19941993nyu j 00011 eng a0449704335 anpl96000974 c1964d1964 aYA Mori10aMori, Kyoko.10aShizuko's daughter /cKyoko Mori.0 aNew York :bFawcett Juniper,c1994, c1993. a214 p. ;c18 cm. ;dpa. aAfter her mother's suicide when she is twelve years old, Yuki spends years living with her distant father and his resentful new wife, cut off from her mother's family, and relying on her own inner strength to cope with the tragedy. 1aSuicidexFiction. 1aMothers and daughtersxFiction. 1aRemarriagexFiction. 1aJapanxFiction. aLVLcYAkYA Mori bLB2p37000000018244r2.66u8150u3712 bMAINp32000000064782r2.66u8151u371300853 2200217 4500020001500000090001500015100002300030245005900053260004200112300002300154650002300177942002100200952004200221952005900263952004200322952004200364952004200406952006300448952006300511952006100574 a0345337662 c1965d196510aRice, Anne,d1941-10aInterview with the vampire :ba novel /cby Anne Rice.0 aNew York :bBallantine Books,cc1976. a346 p. ;c18 cm. ; 0aVampiresxFiction. aLVLcAFkAF Rice bLB2p37000000023712r5.95u8154u3714 bLB2dLB2p34000000011760r5.95u8155u3715v2003-09-01 bLB2p34000000006500r4.19u8156u3716 bLB1p33000000023084r4.19u8157u3717 bLB1p33000000036340r5.99u8158u3718 bMAINdMAINp31000000119942r6.99u320418u3719v2004-11-29 bMAINdMAINp32000000156696r6.99u320419u3720v2004-11-29 bLB1dLB1p33000000066454r6.99u325864u3721v2005-02-1001144 2200361 450000100060000000300040000600500170001000800390002701000170006602000240008302000360010703500160014303900180015904000200017705000240019708200140022109000150023510000160025024500400026626000380030630000380034451000520038251000280043452001070046252100340056952100090060365000220061265000300063465000220066465000300068694200230071695200430073950745LVL19990313000000.0820512s1982 nyua j 000 1 eng a82050629 /AC a0394855027 :c$5.95 a0394955021 (lib. bdg.) :c$6.99 aflb011489020 a2b3c3d3e3 aDLCcDLCdICrlF0 aPZ8.3.G276bHu 19820 219a[Fic] c1966d19661 aSeuss,cDr.10aHunches in bunches /cby Dr. Seuss. aNew York :bRandom House,cc1982. a[44] p. :bchiefly ill. ;c26 cm.0 aElementary School Library Collection (Bro-Dart)0 aSchool Library Journal. aA boy has a difficult time making decisions even though there is a vocal bunch of Hunches to help him.0 a2.9bFollett Library Book Co.2 aK-3. 1aStories in rhyme. 1aDecision makingxFiction. 7aStories in rhyme. 7aDecision makingxFiction. aLVLcEASYkE Seuss bMAINp32000000012959r6.39u8159u372200932 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000250013424500400015926000600019930000280025965000360028765000400032394200200036395200430038395200440042695200430047095200430051395200430055695200430059957764LVL20011009093020.0940215s1994 mnu 00011 eng a94007586 a155661456X a 94007586 c1967d1967 aAF Oke10aOke, Janette,d1935-10aToo long a stranger /cJanette Oke.0 aMinneapolis, Minn. :bBethany House Publishers,cc1994. a303 p. ;c21 cm. ;dpa. 0aMothers and daughtersxFiction. 0aFrontier and pioneer lifexFiction. aLVLcAFkAF Oke bLB2p37000000012721r10.00u8160u3723 bMAINp32000000119435r10.99u8161u3724 bLB1p36000000017367r10.99u8162u3725 bLB2p34000000026863r10.99u8163u3726 bMAINp31000000057943r7.99u8164u3727 bLB1p33000000047370r10.99u8165u372800598 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200160012310000310013924500380017026000370020830000280024565000400027394200250031395200420033822670LVL20020212092435.0930311s1993 nyub 00011 eng a93015242 a0553095080 a 93015242 c1968d1968 aAF Johnston10aJohnston, Terry C.,d1947-10aWinter rain /cTerry C. Johnston. aNew York :bBantam Books,c1993. a419 p. :bmap ;c24 cm. 0aFrontier and pioneer lifexFiction. aLVLcAFkAF Johnston bLB1p33000000022688r5.98u8167u372901124 2200337 450000100060000000300040000600500170001000800390002701000210006602000340008703500160012103900180013704000200015504300120017505000230018708200150021009000150022510000160024024500730025626000440032930000330037350000200040652001450042652100340057152100090060565100630061465100110067770000290068894200260071795200430074329689LVL19990323000000.0831025s1982 enka j 001 0 eng a82050306 /AC/r85 a0531043479 (U.S. : lib. bdg.) aflb001700100 a2b3c3d3e3 aDLCcDLCdICrlF aa-ii---0 aDS414.2.bL93 19820 219a954.05 c1969d19691 aLye, Keith.10aTake a trip to India /cKeith Lye ; general editor, Henry Pluckrose. aLondon ;aNew York :bF. Watts,cc1982. a30 p. :bcol. ill. ;c22 cm. aIncludes index. aVarious faces of India are presented in text and photographs, from its teeming cities to its agricultural, industrial, and cultural aspects.0 a3.6bFollett Library Book Co.2 a3-6. 0aIndiaxDescription and travelxJuvenile literature.y1981- 1aIndia.10aPluckrose, Henry Arthur. aLVLcJNFkJNF 954 LYE bMAINp32000000000547r8.40u8168u373000716 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000320014024501030017226000410027530000280031650000200034465000510036494200270041595200440044243727LVL19990316000000.0941222s1995 txu 00110 eng a94048632 a1877639206 a 94048632 c1970d1970 aREF 362.8 Jo10aJohnson, Richard S.,d1933-10aFind anyone fast :blocate people quickly by mail, phone, fax, and computer /cRichard S. Johnson.0 aSan Antonio, TX :bMIE Pub.,cc1995. a167 p. ;c22 cm. ;dpa. aIncludes index. 0aMissing personsxInvestigation.zUnited States aLVLcREFkREF 362.8 Jo bMAINp32000000059995r14.95u8169u373100829 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000180013424501110015225000120026326000460027530000210032150000430034270000280038594200200041395200430043395200440047695200430052050746LVL20010821183723.0950223s1995 nyu 00011 eng a95007594 a0151001510 a 95007594 c1971d1971 aAF Eco10aEco, Umberto.14aThe island of the day before :ba novel /cby Umberto Eco ; translated from the Italian by William Weaver. a1st ed.0 aNew York :bHarcourt Brace & Co.,cc1995. a515 p. ;c24 cm. aTranslation of Isola del giorno prima.10aWeaver, William,d1923- aLVLcAFkAF Eco bLB2p37000000013367r25.00u8170u3732 bMAINp32000000060206r14.75u8171u3733 bLB1p33000000023854r14.75u8172u373402029 2200469 450000100060000000300040000600500170001000700100002700800410003702000150007803500160009303700210010909000150013009200130014524502280015826000550038630000550044150000470049650001110054350000380065450000530069250801310074551100630087652001620093952100210110152100130112253800100113553800380114565000150118365000240119865000210122265000190124365000470126270000200130970000270132970000190135670000180137570000690139371000320146294200220149495200430151622671LVL20010203151329.0vfucbahoq950918s1994 cau141 g vleng d a0792133153 anav95000186 a32463bParamount c1972d1972 aAV Clear00aClear and present dangercParamount Pictures ; produced by Mace Neufeld, Robert Rehme, and Ralph S. Singleton ; directed by Phillip Noyce ; screenplay by Donald Stewart, Steven Zaillian, and John Milius.h[videorecording] /0 aHollywood, Calif. :bParamount Home Video,cc1994. a1 videocassette (141 min.) :bsd., col. ;c1/2 in. aClosed-captioned for the hearing impaired. a"This film has been modified from its original version. It has been formatted to fit your TV."--container. aBased on the novel by Tom Clancy. aOriginally released as a motion picture in 1994. aDirector of photography, Donald M. McAlpine ; production designer, Terence Marsh ; editor, Neil Travis ; music, James Horner..1 aHarrison Ford, Willem Dafoe, Ann Archer, James Earl Jones. aCentral America is about to explode: the U.S. ambassador to Colombia was murdered by drug lords, enemy agents are in the jungles-- and the FBI is on the job.8 aMPAA rating: PG. aGeneral. aNTSC. aVHS Hi-fi stereo, Dolby surround. 0aSpy films. 0aTerrorismxFiction. 0aAdventure films. 0aFeature films. 0aVideo recordings for the hearing impaired.1 aNoyce, Phillip.1 aFord, Harrison,d1942-1 aDafoe, Willem.1 aArcher, Anne.1 aClancy, Tom,d1947-hVideorecording.tClear and present danger .2 aParamount Home Video (Firm) aLVLcAVkAV Clear bMAINp31000000055861r9.99u8173u373501101 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000190013624500810015525000120023626000520024830000530030050000220035350000250037552001740040065000480057465000270062265000220064965000200067165000290069194200240072095200430074450747LVL19990313000000.0890315s1990 cauaf j 00011 eng a89002208 a015200520X a 89002208 c1973d1973 aE Cherry1 aCherry, Lynne.14aThe great kapok tree :ba tale of the Amazon rain forest /cby Lynne Cherry. a1st ed. aSan Diego :bHarcourt Brace Jovanovich,cc1990. a[36] p. of plates :bchiefly col. ill. ;c29 cm. a"Gulliver books." aA col. map inserted. aThe many different animals that live in a great kapok tree in the Brazilian rainforest try to convince a man with an ax of the importance of not cutting down their home. 1aConservation of natural resourcesxFiction. 1aRain forestsxFiction. 1aEcologyxFiction. 1aKapokxFiction. 1aJungle animalsxFiction. aLVLcEASYkE Cherry bMAINp32000000036102r9.25u8174u373600577 2200205 450000100060000000300040000600500170001000800390002703500160006609000150008209200150009710000200011224500430013226000420017530000210021744000420023850000220028094200250030295200440032722672LVL19990327000000.0850318s1985 nyu 00011 eng anpl96000013 c1974d1974 aSF Anthony10aAnthony, Piers.10aWith a tangled skein /cPiers Anthony.0 aNew York :bBallantine Books,cc1985. a280 p. ;c22 cm. 0aIncarnations of immortality ;vbk. 3. a"A Del Rey book." aLVLcSCIkSF Anthony bMAINp32000000061957r10.00u8175u373700715 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000240013624501210016026000420028130000210032350000200034465000280036465000150039294200220040795200440042936710LVL20030618165323.0950103s1995 nyu 00110 eng a95000019 a0684803992 a 95000019 c1975d1975 a641.5 Bu10aBurros, Marian Fox.10aEating well is the best revenge /beveryday strategies for delicious, healthful food in 30 minutes /cMarian Burros.0 aNew York :bSimon & Schuster,cc1995. a366 p. ;c24 cm. aIncludes index. 0aQuick and easy cookery. 0aNutrition. aLVLcNFk641.5 Bu bMAINp32000000057197r14.70u8176u373801056 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000240013424501180015825000120027626000410028830000280032949000350035752001350039265000240052765000320055165000400058370000250062394200200064895200440066895200420071250748LVL19990313000000.0860630s1986 wiua j 00011 eng a86060623 a0937295183 a 86060623 c1976d1976 aJ Shaw10aShaw, Janet Beeler.10aKirsten's surprise :ba Christmas story /cby Janet Shaw ; illustrations, RenÂee Graef ; vignettes, Paul Lackner. a1st ed.0 aMadison, WI :bPleasant Co.,cc1986. a62 p. :bill. ;c23 cm. 4aThe American girls collection. aKirsten and her family celebrate their first Christmas in their new home on Uncle Olav's farm in mid-nineteenth-century Minnesota. 1aChristmasxFiction. 1aSwedish AmericansxFiction. 1aFrontier and pioneer lifexFiction.11aGraef, RenÂee,eill. aLVLcJFkJ Shaw bMAINp32000000037200r12.95u8178u3739 bLB1p33000000008450r6.00u8179u374000726 2200229 450000100060000000300040000600500170001000800390002702000150006603500140008109000150009509200150011010000270012524500730015226000420022530000420026752000750030965000220038470000210040694200260042795200430045322673LVL19990327000000.0770907s1978 nyua j 00011 eng a0399207279 a 77013027 c1977d1977 aE Johnston10aJohnston, Tony,d1942-10aFour scary stories /cby Tony Johnston ; pictures by Tomie de Paola.0 aNew York :bTroll Associates,cc1978. a[32] p. :bcol. ill. ;c26 cm. ;dpa. aAn imp, a goblin, a scalawag, and a boy tell each other scary stories. 1aFairiesxFiction.10aDe Paola, Tomie. aLVLcEASYkE Johnston bMAINp32000000065866r5.95u8180u374101015 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000290013524501050016426000410026930000280031052001460033865000350048470000270051994200210054695200430056795200420061095200430065295200420069536711LVL19990320000000.0930604s1994 nyua j 00011 eng a93014350 a0385320361 a 93014350 c1978d1978 aJ Sobol10aSobol, Donald J.,d1924-10aEncyclopedia Brown and the case of the two spies /cDonald J. Sobol ; illustrated by Eric Velasquez.0 aNew York :bDelacorte Press,cc1994. a73 p. :bill. ;c22 cm. aAmerica's Sherlock Holmes in sneakers continues his war on crime in ten more cases, the solutions to which are found in the back of the book. 1aMystery and detective stories.11aVelasquez, Eric,eill. aLVLcJFkJ Sobol bMAINp32000000058323r8.23u8181u3742 bLB2p34000000006420r8.23u8182u3743 bMAINp31000000055053r8.23u8183u3744 bLB1p33000000022957r8.23u8184u374500887 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010810000240012324500640014726000480021130000360025950000200029565000170031594200220033295200420035495200430039695200420043995200430048195200430052495200420056743730LVL20000911034527.0960523s1996 njua 00110 eng a96022992 a1564142140 a 96022992 c1979d197910aRoss, Debra,d1958-10aMaster math :bbasic math and pre-algebra /cby Debra Ross.0 aFranklin Lakes, NJ :bCareer Press,cc1996. a178 p. :bill. ;c21 cm. ;dpa. aIncludes index. 0aMathematics. aLVLcNFk513.2 Ro bLB2p37000000006735r9.99u8185u3746 bMAINp32000000067537r9.99u8186u3747 bLB1p36000000010064r9.99u8187u3748 bMAINp35000000003802r9.99u8188u3749 bMAINp31000000062343r9.99u8189u3750 bLB1p33000000000900r9.99u8190u375100877 2200253 450000100060000000300040000600500170001000800390002701000130006603500140007909000150009309200180010810000280012624500620015426000490021630000530026544000350031850000230035350400640037660000590044065100550049994200260055495200430058050749LVL19990313000000.0930405s1956 nyuaf b 00110beng a56007920 a 56007920 c1980d1980 aB Roose- velt1 aBurns, James MacGregor.10aRoosevelt, the lion and the fox /cJames MacGregor Burns. aNew York :bHarcourt, Brace and Co.,cc1956. axvi, 553 p., [16] p. of plates :bill. ;c22 cm. 4aThe Library of the presidents. a"Volume I"--Spine. aIncludes bibliographical references (p. 490-538) and index.10aRoosevelt, Franklin D.d1882-1945.q(Franklin Delano), 0aUnited StatesxPolitics and governmenty1933-1945. aLVLcBIOkB Roosevelt bMAINp32000000038366r6.75u8191u375200668 2200229 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200150011210000250012724500480015226000360020030000360023660000250027265000480029770000250034594200240037095200440039436712LVL19990320000000.0950605s1995 gaua 00110aeng a1570362408 anpl95001282 c1981d1981 a796.332 Mo10aMontana, Joe,d1956-10aMontana /cby Joe Montana with Dick Schaap.0 aAtlanta :bTurner Pub.,cc1995. a143 p. :bill. ;c32 cm. ;dpa.10aMontana, Joe,d1956- 0aFootball playersxBiography.zUnited States10aSchaap, Dick,d1934- aLVLcNFk796.332 Mo bMAINp31000000056402r15.00u8194u375300983 2200289 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200240011410000280013824500770016626000380024330000360028144000380031750000290035570000230038494200310040795200420043895200430048095200430052395200420056695200430060895200420065150750LVL20020308151600.0930524s1993 nyua j 00011 eng d a055356000X anpl93000141 c1982d1982 aJ Von Mosch- zisker10aVon Moschzisker, Felix.10aPlayoff champion /cby Felix von Moschzisker; illustrated by Hal Frenck.0 aNew York :bBantam Books,cc1993. a114 p. :bill. ;c18 cm. ;dpa. 0aChoose your own adventure ;v135. aAn R.A. Montgomery book.11aFrenck, Hal,eill. aLVLcJFkJ Von Moschzisker bLB2p37000000002597r1.89u8195u3754 bMAINp32000000039704r1.89u8196u3755 bMAINp32000000039705r1.89u8197u3756 bLB2p34000000007858r1.89u8198u3757 bMAINp31000000043099r1.89u8199u3758 bLB1p33000000015475r1.89u8200u375900982 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000280013424501370016226000420029930000360034150000230037750000200040065000190042065000250043965000240046465000330048870000210052170000200054294200200056295200430058295200430062536713LVL19990320000000.0950804s1996 nyua 00110 eng a95025029 a0684807815 a 95025029 c1983d1983 a793 Ho10aHopson, Darlene Powell.10aJuba this and Juba that :b100 African-American games for children /cby Darlene Powell Hopson & Derek S. Hopson with Thomas Clavin.0 aNew York :bSimon & Schuster,cc1996. a160 p. :bill. ;c22 cm. ;dpa. a"A Fireside book." aIncludes index. 0aGameszAfrica. 0aBoard gameszAfrica. 0aHandicraftzAfrica. 0aMusical recreationszAfrica.10aHopson, Derek S.10aClavin, Thomas. aLVLcNFk793 Ho bMAINp32000000062315r7.64u8202u3760 bMAINp31000000058112r7.64u8203u376101347 2200397 450000100060000000300040000600500170001000800390002701000170006602000250008303500160010804000200012405000240014408200140016809000150018210000190019724500440021625000210026026000420028130000350032351000320035851000140039051000490040452001470045352100340060052100090063465000460064365000500068965000290073965000250076865000250079365000170081894200280083595200430086395200430090622676LVL19990327000000.0860321r1987 nyua j 00010 eng a86007602 /AC a0027372502 :c$12.95 aflb00342513 aDLCcDLCdICrlF0 aQC995.43.bG53 19870 219a551.6 c1984d198410aGibbons, Gail.10aWeather forecasting /cby Gail Gibbons. a1st American ed.0 aNew York :bFour Winds Press,cc1987. a[32] p. :bcol. ill. ;c26 cm.0 aChildren's Catalog (Wilson)0 aBooklist.0 aBulletin Of The Center For Children's Books. aDescribes forecasters at work in a weather station as they use sophisticated equipment to track and gauge the constant changes in the weather.0 a3.5bFollett Library Book Co.2 aK-3. 0aWeather forecastingxJuvenile literature. 0aMeteorological stationsxJuvenile literature. 1aMeteorological stations. 1aWeather forecasting. 7aWeather forecasting. 7aMeteorology. aLVLcJNFkJNF 551.6 GIB bMAINp32000000015248r7.64u8205u3762 bMAINp31000000018988r7.64u8206u376300980 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000260013824501160016426000390028030000340031944000250035350400600037865100170043865100140045565100100046965100150047965100150049470000280050994200250053795200440056295200600060636714LVL19990320000000.0941006s1996 nyuab j b 00110 eng a94040425 a0791032426 a 94040425 c1985d1985 aJNF 977 Ay 0aAylesworth, Thomas G.10aWestern Great Lakes :bIllinois, Iowa, Minnesota, Wisconsin /cby Thomas G. Aylesworth, Virginia L. Aylesworth.0 aNew York :bChelsea House,cc1996. a96 p. :bill. ; map ;c21 cm. 0aDiscovering America. aIncludes bibliographical references: p. (94) and index. 1aLake States. 1aIllinois. 1aIowa. 1aMinnesota. 1aWisconsin.10aAylesworth, Virginia L. aLVLcJNFkJNF 977 Ay bMAINp32000000064911r18.95u8207u3764 bLB2dLB2p37000000025612r18.95u8208u3765v2004-12-1100293 2200121 450000100060000000300040000600500170001000800410002709000150006824500290008394200160011295200430012843733LVL19990316000000.0921112s19xx xxu 00010 eng d c1986d198610aCOBBLESTONE 1984 AUGUST. aLVLcPERkJ bMAINp32000000022110r2.25u8209u376600799 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000190013524500870015426000610024130000300030244000180033265000140035070000180036494200230038295200430040595200430044895200420049150752LVL20000810000000.0920923s1992 ilua j 00011 eng a92219654 a1561734837 a 92219654 c1987d1987 aE Siede10aSiede, George.10aNumbers /cphotography, George Siede and Donna Preis ; consultant, Istar Schwager.0 aLincolnwood, Ill. :bPublications International,cc1992. a[18] p. :bill. ;c21 cm. 0aActive minds. 1aCounting.10aPreis, Donna. aLVLcEASYkE Siede bMAINp32000000040388r5.99u8210u3767 bMAINp31000000087795r5.99u8211u3768 bLB1p33000000015835r5.99u8212u376900644 2200181 4500010001300000020001500013090001500028100002400043245008200067260005400149300003700203650006300240650002300303700002400326942002400350952004400374952004400418 a95010554 a0870696645 c1988d198810aLindquist, David P.10aVictorian furniture with prices /cDavid P. Lindquist and Caroline C. Warren.0 aRadnor, Pa. :bWallace-Homestead Bk. Co.,cc1995. aviii, 200 p. :bill. ;c26 cm. ; 0aFurniture, VictorianxCatalogs.xCollectors and collecting 0aFurniturexStyles.10aWarren, Caroline C. aLVLcNFk749.213 Li bMAINp32000000060627r19.95u8213u3770 bMAINp31000000057133r19.95u8214u377100796 2200253 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200190011210000180013124500350014925000250018426000420020930000590025160000300031061000370034065000500037794200290042795200430045695200430049936715LVL19990320000000.0960810r19951993nyuaf j 00010beng a0590651749 anpl96001526 c1989d1989 aJNF 796.323 Lo10aLovitt, Chip.10aMichael Jordan /cChip Lovitt. aRevised and updated.0 aNew York :bScholastic,c1995, c1993. a185 p., [8] p. of plates :bcol. ill. ;c20 cm. ;dpa.11aJordan, Michael,d1963- .20aChicago Bulls (Basketball team). 1aBasketball playersxBiography.zUnited States aLVLcJNFkJNF 796.323 Lo bMAINp32000000066205r2.95u8215u3772 bMAINp31000000061215r2.95u8216u377300805 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000220013824500560016025000170021626000440023330000400027750000200031765000200033770000190035794200240037695200430040095200420044395200420048536716LVL20030607113754.0911003s1992 nyua 00110 eng a91037993 a0312069847 a 91037993 c1990d1990 a796.352 Wh10aWhitworth, Kathy.10aGolf for women /cKathy Whitworth and Rhonda Glenn. a1st pbk. ed.0 aNew York :bSt. Martin's Press,cc1992. axi, 176 p. :bill. ;c26 cm. ;dpa. aIncludes index. 0aGolf for women.10aGlenn, Rhonda. aLVLcNFk796.352 Wh bMAINp32000000067417r8.37u8217u3774 bLB2p34000000014515r8.37u8218u3775 bLB1p33000000026893r8.37u8219u377601112 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000230014024502020016326000390036530000290040452001790043365000170061265000220062970000250065194200270067695200440070395200440074795200430079150754LVL19990313000000.0920513s1993 nyua j b 00010 eng a92017781 a0395570026 a 92017781 c1991d1991 aJNF 398.2 Pe10aPerrault, Charles.14aThe complete fairy tales of Charles Perrault /cillustrated by Sally Holmes ; newly translated by Neil Philip and Nicoletta Simborowski ; with an introduction and notes on the story by Neil Philip.0 aNew York :bClarion Books,cc1993. a156 p. :bill. ;c26 cm. aAn illustrated collection of eleven tales including such familiar titles as "Cinderella" and "Sleeping Beauty" and less familiar ones such as "Tufty Ricky" and "The Fairies." 1aFairy tales. 1aFolklorezFrance.11aHolmes, Sally,eill. aLVLcJNFkJNF 398.2 Pe bMAINp32000000041599r10.89u8221u3777 bMAINp31000000044264r10.89u8222u3778 bLB1p33000000016151r10.89u8223u377900302 2200133 450000100060000000300040000600500170001000800410002701000130006809000150008110000300009624500200012694200220014657773LVL19990220000000.0950324s19uu 000 0 eng d a59000354 c1992d19921 aJoyce, James,d1882-1941.10aFinnegans wake. aLVLcAFkAF Joyce00828 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009404000130010805000200012108200180014109000150015910000340017424500670020825000120027526000310028730000340031844000320035250000200038450400250040465000410042994200250047095200430049529698LVL19990323000000.0860501s1986 nyua bp 001 0 eng a86011114 a0471850853 a 86011114 aDLCcDLC0 aQC523.bR9 19860 219a537/.07/7 c1993d19931 aRyan, Charles William,d1929-10aBasic electricity :ba self-teaching guide /cCharles W. Ryan. a2nd ed. aNew York :bWiley,cc1986. avii, 291 p. :bill. ;c26 cm. 0aWiley self-teaching guides. aIncludes index. aBibliography: p. vi. 0aElectricityxProgrammed instruction. aLVLcNFk537.077 RYA bMAINp32000000019769r7.64u8225u378000961 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012324501140013826000510025230000520030344000240035550000200037960000340039965000410043365000530047465000690052770000180059694200250061495200440063950755LVL19990313000000.0951030s1995 njuab j 00100beng a94012853 a0811482804 a 94012853 c1994d1994 aJNF 978 Fr00aFrancis Parkman and the Plains Indians /cedited with an introduction and additional material by Jane Shuter.0 aAustin, Tex. :bRaintree Steck-Vaughn,cc1995. a48 p. :bill. (some col.) ; col. maps ;c25 cm. 0aHistory eyewitness. aIncludes index.11aParkman, Francis,d1823-1893. 1aIndianistsxBiography.zGreat Plains 1aIndians of North AmericaxHistory.zGreat Plains 1aIndians of North AmericaxSocial life and customs.zGreat Plains10aShuter, Jane. aLVLcJNFkJNF 978 Fr bMAINp32000000060368r15.18u8226u378100380 2200157 450000100060000000300040000600500170001000800410002701000130006809000150008110000180009624500250011460000180013994200220015795200430017957774LVL19990220000000.0950324s19uu 000 0 eng d a84040538 c1995d1995 aPawel, Ernst.10aNightmare of reason.10aKafka, Franz. aLVLcBIOkB Kafka bMAINp31000000021316r4.69u8228u378200412 2200157 450000100060000000300040000600500170001000800410002702000150006809000150008310000320009824500180013094200200014895200430016895200430021122680LVL19990327000000.0940620s19xx xxu 00010 eng d a0440403081 c1996d19961 aPeck, Robert Newton,d1928-10aSoup's uncle. aLVLcJFkJ Peck bMAINp32000000028457r2.29u8229u3783 bMAINp32000000040708r2.29u8230u378401093 2200337 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009403900180011004000200012804300120014805000170016008200160017709000150019310000230020824500410023126000380027230000210031051000280033152001680035952100170052760000230054465000550056765000370062265000360065994200230069595200370071829699LVL20020903103118.0810506s1981 nyu 000 0beng a81065273 a0670656399 aflb011138010 a2b3c3d3e3 aDLCcDLCdICrlF an-us---0 aHV6598.bB580 219a362.8/2 c1997d19971 aBlack, Bonnie Lee.10aSomewhere child /cBonnie Lee Black. aNew York :bViking Press,cc1981. a293 p. ;c24 cm.0 aSchool Library Journal. aA memoir of how a mother lived through the kidnapping of her daughter by her ex-husband, her search for her child, and how she found strength to continue her life.2 aYoung Adult.10aBlack, Bonnie Lee. 0aKidnapping, ParentalxCase studies.zUnited States 0aWomenxBiography.zUnited States 0aMother and childxCase studies. aLVLcNFk362.82 Bl bMAINp32000000008885u8231u378500385 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000310009824500430012994200240017295200430019636718LVL19990320000000.0940813s19xx xxu 00010 eng d a0886461340 c1998d19981 aForsyth, Frederick,d1938-14aThe fourth protocolh[sound recording] aLVLcACkAC Forsyth bMAINp32000000021868r8.07u8232u378600674 2200217 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200190011410000240013324500640015726000290022130000350025094200270028595200430031295200590035595200420041450756LVL19990313000000.0940407s1994 nyub 00011 eng d a0812524888 anpl94000378 c1999d1999 aSF Carpen- ter10aCarpenter, Leonard.10aConan, scourge of the bloody coast /cby Leonard Carpenter.0 aNew York :bTOR,cc1994. a244 p. :bmap ;c18 cm. ;dpa. aLVLcSCIkSF Carpenter bMAINp32000000046163r2.94u8233u3787 bLB2dLB2p34000000004892r2.94u8234u3788v2003-09-01 bLB1p33000000018517r2.94u8235u378900316 2200133 450000100060000000300040000600500170001000800410002709000150006810000200008324500170010394200250012095200370014522681LVL19990327000000.0940601s19xx xxu 00010 eng d c2000d20001 aPronzini, Bill.10aNightshades. aLVLcMYSkM Pronzini bMAINp32000000026528u8236u379000239 2200097 4500010001300000090001500013100002500028245002000053942002400073952004400097 a91020577 c2001d20011 aFarmer, Philip Jose.10aRed Orc's rage. aLVLcSCIkSF Farmer bMAINp32000000031415r11.18u8237u379101108 2200337 450000100060000000300040000600500170001000800390002701000130006602000250007903500160010403900180012004000200013805000170015808200160017509000150019110000190020624501190022526000320034430000410037650000200041751000480043751000140048552001140049952100170061365000140063065000140064494200240065895200440068295200440072629701LVL19990323000000.0810721s1980 nyua 00110 eng a80081148 a0399125507 :c$25.00 aflb007552060 a2b3c3d3e3 aDLCcDLCdICrlF0 aTT180.bS3950 219a684/.08 c2002d200210aScott, Ernest.10aWorking in wood :bthe illustrated manual of tools, methods, materials, and classic constructions /cErnest Scott.0 aNew York :bPutnam,cc1980. a272 p. :bill. (some col.) ;c29 cm. aIncludes index.0 aSenior High School Library Catalog (Wilson)0 aBooklist. aIntroduces fine woodworking skills including design principles, fundamental techniques, tools, and materials.2 aYoung Adult. 0aWoodwork. 7aWoodwork. aLVLcNFk684.08 SCO bMAINp32000000012132r15.00u8238u3792 bMAINp31000000023213r15.00u8239u379301403 2200409 450000100060000000300040000600500170001000800390002701000170006602000150008303500160009803900180011404000200013204300120015205000220016408200120018609000150019810000450021324500840025825000180034226000330036030000520039349000180044550000200046350000570048350400250054051000320056552001370059752100340073452100090076865100540077765100330083165100380086470000220090294200260092495200430095036720LVL19990320000000.0830921s1984 nyuabf j b 001 0 eng a83021572 /AC a053104727X aflb004715070 a2b3c3d3e3 aDLCcDLCdICrlF ae-gr---0 aDF215.bR634 19840 219a938 c2003d20031 aRobinson, Charles Alexander,d1900-1965.10aAncient Greece /cCharles Alexander Robinson, Jr. ; revised by Lorna Greenberg. aRev., 2nd ed. aNew York :bF. Watts,c1984. a64 p., [1] p. of plates :bill., maps ;c23 cm.0 aA First book. aIncludes index. aRev. ed. of: The first book of ancient Greece. 1960. aBibliography: p. 60.0 aChildren's Catalog (Wilson) aProvides a history of ancient Greece, describing the people, their myths, art, architecture, literature, philosophy, and daily life.0 a6.2bFollett Library Book Co.2 a3-6. 0aGreecexHistoryxJuvenile literature.yTo 146 B.C 1aGreecexHistoryyTo 146 B.C. 1aGreecexCivilizationyTo 146 B.C.10aGreenberg, Lorna. aLVLcJNFkJNF 938 ROB bMAINp32000000016350r8.90u8240u379401194 2200337 450000100060000000300040000600500170001000700100002700800410003702000150007803500160009303700200010904300120012909000150014124500590015626000380021530000540025350000400030752001790034752100130052653800090053953800100054865100390055865100550059765100380065271000190069071000340070994200250074395200440076895200440081243739LVL19990316000000.0vfucbahom961011s1993 ilu060 g vleng d a0927992701 anav96000560 aQV2322bQuestar au-at--- c2004d200400aTouring AustraliacFilm Australia.h[videorecording] /0 aChicago :bQuestar Video,cc1993. a1 videocassette (60 min.) :bsd., col. ;c1/2 in. aLacks personal productions credits. aA colorful visit to Australia includes the cities of Sydney, Melbourne and Brisbane, the scenery of the Gold Coast, the Great Barrier Reef and the island state of Tasmania. . aGeneral. aVHS. aNTSC. 0aAustraliaxDescription and travel. 0aGreat Barrier Reef (Qld.)xDescription and travel. 0aTasmaniaxDescription and travel.2 aQuestar Video.2 aFilm Australia (Organization) aLVLcAVkAV 919.4 To bMAINp32000000070356r22.46u8241u3795 bMAINp31000000064423r22.46u8242u379601224 2200289 4500020001500000090001500015245011400030260004700144300006700191440003000258500004700288511004800335520017600383538000900559650002200568700002400590700002600614700002000640700002700660700002200687710002400709710004800733942002300781952004400804952004300848952004300891 a0780002294 c2005d200500aWords by heartcWQED Pittsburgh ; produced by Martin Tahse ; directed by Robert Thompson.h[videorecording] /0 aChicago, IL :bPublic Media Video,cc1984. a1 videocassette (116 min.) :bsd., col. ;c1/2 in. +e1 Guide. 0aWonderWorks family movie. aClosed-captioned for the hearing impaired.1 aRobert Hooks, Charlotte Rae, Alfre Woodard. aLena, a 12-year old black girl & her family move to a small town where they are the only blacks. It takes some time & changes before this situation is accepted all around. aVHS. 0aChildren's films.11aThompson, Robert C.11aHooks, Robert,d1937-11aRae, Charlotte.11aWoodard, Alfre,d1953-11aSobestyen, Ouida.21aPublic Media Video.21aWQED (Television station : Pittsburgh, Pa.) aLVLcAVkAVJ Words bMAINp31000000045720r22.46u8243u3797 bMAINp32000000043748r0.22u8244u3798 bLB1p33000000019529r26.00u8245u379900521 2200193 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200120011410000210012624500480014726000390019530000280023494200220026295200430028422683LVL20030430130730.0920617s1992 nyu 00011 eng d a042513265X aonv90002746 c2006d2006 aM Crane10aCrane, Hamilton.10aMiss Seeton by moonlight /cHamilton Crane.0 aNew York :bBerkley Books,cc1992. a201 p. ;bpa. ;c18 cm. aLVLcMYSkM Crane bMAINp32000000033836r2.31u8246u380001018 2200289 450000100060000000300040000600500170001000800390002701000190006602000310008503500160011604000200013205000270015208200160017909000150019510000250021024500440023526000600027930000210033950000330036052001860039352100340057952100100061394200200062395200430064395200420068629702LVL20011026094808.0800917s1980 mnu 000 1 eng a80022993 //r88 a0871233452 (pbk.) :c$3.50 aflb01374202 aDLCcDLCdICrlF0 aPR9199.3.O38bL58 19800 219a813/.54 c2007d20071 aOke, Janette,d1935-10aLove's enduring promise /cJanette Oke. aMinneapolis, Minn. :bBethany Fellowship, inc.,cc1980. a206 p. ;c21 cm. aSequel to Love comes softly. aSequel to Love comes softly. Continues the pioneer adventures of Clark and Marty as they face the joys and trials of life on a homesteader's farm and the marriage of their daughter.0 a8.0bFollett Library Book Co.2 a7-10. aLVLcAFkAF Oke bMAINp32000000028985r2.88u8247u3801 bLB1p36000000004584r2.88u8248u380200558 2200205 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200120011410000230012624500450014926000440019430000230023844000270026194200210028895200430030950759LVL19990313000000.0940716s1992 nyu j 00011 eng d a0671745069 anpl94001206 c2008d2008 aYA Pike aPike, Christopher.14aThe ancient evil /cby Christopher Pike. aNew York :bArchway Paperbacks,cc1992. a196 p. :c18 cm.;. 0aChain letter ;vbk. 2. aLVLcYAkYA Pike bMAINp31000000050203r3.99u8249u380301057 2200313 450000100060000000300040000600500170001000800390002701000190006602000250008503500160011004000200012604300120014605000220015808200160018009000150019610000260021124500420023726000390027930000510031850000200036951000140038952001680040352100170057165100480058865100420063694200230067895200420070129703LVL19990730000000.0841217s1985 maubf 00110 eng a84028944 //r87 a0395377226 :c$15.95 aflb00360612 aDLCcDLCdICrlF aaw-----0 aDS63.1.bC37 19850 219a956/.04 c2009d200910aCarter, Jimmy,d1924-14aThe blood of Abraham /cJimmy Carter.0 aBoston :bHoughton Mifflin,c1985. axx, 257 p., [6] p. of plates :bmaps ;c24 cm. aIncludes index.0 aBooklist. aProvides an overview of the political, religious, and ethnic conflicts that have fragmented the Middle East, presenting each country's perspective and involvement.2 aYoung Adult. 0aMiddle EastxPolitics and governmenty1945- 7aMiddle EastxPolitics and government. aLVLcNFk956.04 Ca bLB1p33000000003262r5.00u8251u380400750 2200241 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200130011210000310012524500330015626000480018930000360023794200230027395200420029695200430033895200420038195200430042395200420046643741LVL20011123161040.0921125c19921980nyua 00011 eng a0446403008 aonv90003668 c2010d2010 aM Peters10aPeters, Ellis,d1913-1995.10aMonk's-hood /cEllis Peters.0 aNew York :bMysterious Press,c1992, c1980. a210 p. :bill. ;c17 cm. ;dpa. aLVLcMYSkM Peters bLB2p37000000001633r2.89u8253u3805 bMAINp32000000035947r2.89u8254u3806 bLB2p34000000006614r2.89u8255u3807 bMAINp31000000041340r2.89u8256u3808 bLB1p33000000014301r2.89u8257u380900718 2200241 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200130011410000210012724500780014826000470022630000340027365000190030765000210032670000190034794200220036695200440038895200440043250760LVL19990313000000.0940513s1993 nyua 00010ceng d a0792458524 anpl94000640 c2011d2011 a784.5 Mc1 aMcCall, Michael.10aCountry music superstars /cMichael McCall; introduction by Loretta Lynn. aNew York :bBDD Illustrated Books,cc1993. a111 p. :bcol. ill. ;c33 cm. 0aCountry music. 0aCountry singers.11aLynn, Loretta. aLVLcNFk784.5 Mc bMAINp32000000047071r19.95u8258u3810 bMAINp31000000048301r19.95u8259u381100390 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000180009624500640011494200230017895200430020157779LVL19990220000000.0930419s19xx xxu 00010 eng d a53005247 c2012d20121 aKovel, Ralph.10aDictionary of marks - pottery and percelain /cRalph Kovel. aLVLcNFk738.88 Ko bMAINp31000000023276r2.98u8260u381200629 2200241 450000100060000000300040000600500170001000800390002701000130006602000240007903500140010304000130011705000290013008200140015909000150017310000190018824500410020725000120024826000400026030000210030094200230032195200430034429704LVL19990323000000.0750723s1975 nyu 000 1 eng a75009348 a0060108746 :c$6.95 a 75009348 aDLCcDLC0 aPZ4.C334aPR6053.A75bOd a823/.9/14 c2013d20131 aCarvic, Heron.10aOdds on Miss Seeton /cHeron Carvic. a1st ed. aNew York :bHarper and Row,cc1975. a150 p. ;c21 cm. aLVLcMYSkM Carvic bMAINp32000000001624r2.49u8261u381300377 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000270009624500410012394200230016495200440018736723LVL19990320000000.0940526s19xx xxu 00010 eng d a89040648 c2014d20141 aHansen, Joseph,d1923-14aThe boy who was buried this morning. aLVLcMYSkM Hansen bMAINp32000000032080r16.95u8262u381400865 2200277 450000100060000000300040000600500170001000800390002701000130006602000250007903500160010403900180012004000200013805000260015808200160018409000150020010000370021524500510025225000120030326000430031530000210035852001220037952100170050194200250051895200440054343742LVL20030617131724.0820913s1983 nyu 00011 eng a81047863 a0385153236 :c$17.95 aflb001988080 a2b3c3d3e3 aDLCcDLCdICrlF0 aPS3552.R2147bV6 19830 219a813/.54 c2015d201510aBradford, Barbara Taylor,d1933-10aVoice of the heart /cBarbara Taylor Bradford. a1st ed.0 aGarden City, N.Y. :bDoubleday,c1983. a732 p. ;c24 cm. aTwo strong, beautiful, successful women meet in their early twenties and find that their lives intertwine thereafter.2 aYoung Adult. aLVLcAFkAF Bradford bMAINp31000000012601r10.59u8263u381500648 2200241 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200120012510000180013724500460015526000490020130000350025044000250028550000170031065000130032794200230034095200430036357780LVL20000916033747.0960808s1990 nyua j 00011 eng d a89061381 a0679801391 a 89061381 c2016d2016 aE Smath10aSmath, Jerry.10aPeek-a-bug /cillustrated by Jerry Smath.0 aNew York ;aToronto :bRandom House,cc1990. a[14] p. :bcol. ill. ;c23 cm. 2aA peek-a-board book. aCover title. 0aInsects. aLVLcEASYkE Smath bMAINp31000000061196r3.00u8265u381601010 2200337 450000100060000000300040000600500170001000800410002701000130006802000150008103500160009604000200011205000210013208200150015309000150016810000220018324501130020526000330031826300100035130000260036150400210038752001150040852100110052365000130053465000150054765000130056265000150057570000170059094200220060795200430062922686LVL20010709081924.0881115s1989 nyu b 00010 eng b a88040414 a067082805X aflb01844402 aDLCcDLCdICrlF0 aHQ756.bL46 19890 219a649/.1 c2017d201710aLevant, Ronald F.10aBetween father and child :bhow to become the kind of father you want to be /cRonald Levant and John Kelly.0 a[New York] :bViking,c1989. a8906. axii, 236 p. ;c24 cm. aBibliography: p. aA program to train fathers how to understand and communicate with their children and how to resolve conflicts.2 aAdult. 0aFathers. 0aParenting. 7aFathers. 7aParenting. 0aKelly, John. aLVLcNFk649.1 Le bLB1p33000000010548r11.18u8266u381700863 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000300014024500720017026000340024230000280027650000200030452000980032465100180042294200270044095200430046795200440051095200430055450762LVL20010814153648.0930325s1993 nyua j 00110 eng a93017313 a0806986727 a 93017313 c2018d2018 aJNF 523.2 Ba20aBarnes-Svarney, Patricia.10aTraveler's guide to the solar system /cby Patricia Barnes-Svarney.0 aNew York :bSterling,cc1993. a80 p. :bill. ;c22 cm. aIncludes index. aTakes the reader on a tour of the solar system, describing asteroids and each of the planets. 1aSolar system. aLVLcJNFkJNF 523.2 Ba bLB2p34000000008166r14.95u8267u3818 bMAINp31000000048925r14.95u8268u3819 bLB1p33000000019333r14.95u8269u382001051 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000180013724500330015525000120018826000430020030000210024352002220026465000230048665000300050965000350053965100240057494200230059895200430062195200430066495200420070729706LVL19990323000000.0940831s1995 nyu 00011 eng a94032673 a0060235888 a 94032673 c2019d2019 aYA Weaver10aWeaver, Will.10aFarm team /cby Will Weaver. a1st ed.0 aNew York, NY :bHarperCollins,cc1995. a283 p. ;c21 cm. aWith his father in jail and his mother working full-time, fourteen-year-old Billy Baggs finds himself in charge of running the family farm in northern Minnesota and having to give up the thing he loves most--baseball. 1aBaseballxFiction. 1aFamily problemsxFiction. 1aFarm lifexFiction.zMinnesota 1aMinnesotaxFiction. aLVLcYAkYA Weaver bMAINp32000000063550r8.97u8270u3821 bMAINp31000000059063r8.97u8271u3822 bLB1p33000000025205r8.97u8272u382300923 2200301 450000100060000000300040000600500170001000800390002701000130006602000250007904000130010405000220011708200130013909000150015210000320016724501200019925000120031926000330033130000320036450000200039650400260041665000230044265000250046570000360049073000290052694200230055595200430057857782LVL19990220000000.0771012s1978 nyua b 00110 eng a77020157 a0690014554 :c$14.95 aDLCcDLC0 aTH4961.bH48 1978 a690/.8/9 c2020d202010aHeyn, Ernest Victor,d1904-10aDo-it-yourself projects for your own backyard :badapted from Popular science /cErnest V. Heyn and Alfred W. Lees. a1st ed.0 aNew York :bCrowell,cc1978. ax, 324 p. :bill. ;c29 cm. aIncludes index. aBibliography: p. 322. 0aGarden structures. 0aDo-it-yourself work.10aLees, Alfred W.,ejoint author.01aPopular science monthly. aLVLcNFk690.8 HEY bMAINp31000000023927r6.98u8274u382400763 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000160013824500600015426000400021430000580025450400300031260000680034294200250041095200440043595200420047936726LVL20030506145028.0890512s1989 nyuaf b 00010 eng a89030468 a0881846481 a 89030468 c2021d2021 a973.922 Ma10aMarrs, Jim.10aCrossfire :bthe plot that killed Kennedy /cJim Marrs.0 aNew York :bCarroll & Graf,cc1989. axi, 595 p. [16] p. of plates :bill. ;c24 cm. ;dpa. aBibliography: p. 591-595.10aKennedy, John F.d1917-1963q(John Fitzgerald),xAssassination. aLVLcNFk973.922 MAR bMAINp32000000026366r15.05u8275u3825 bLB2p34000000002573r8.23u8276u382600784 2200253 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200110011210000180012324500900014126000510023130000500028250000320033250000200036450400250038465000160040994200200042595200430044595200420048843745LVL20010813105846.0920310r19891978njuac b 00110 eng a1555214169 aonv90002286 c2022d2022 a599 La10aLarsen, Thor.14aThe world of the polar bear /c[by] Thor Larsen ; with a foreword by Sir Peter Scott.0 aSecaucus, NJ :bChartwell Books,c1989, c1978. a96 p. :bill. (chiefly col.), port. ;c33 cm. aCol. ill. on lining papers. aIncludes index. aBibliography: p. 93. 0aPolar bear. aLVLcNFk599 La bMAINp32000000032818r7.98u8278u3827 bLB1p33000000012009r7.98u8279u382801411 2200433 450000100060000000300040000600500170001000800390002701000170006602000150008303500160009803900180011404000200013205000210015208200140017309000150018710000220020224500510022426000330027530000200030849000180032850000200034650400250036651000480039151000140043951000280045352001170048152100340059852100090063265000600064165000510070165000390075265000300079165000170082165000390083865000300087794200270090795200430093457783LVL19990220000000.0851015s1986 nyu j b 00110 eng a85026369 /AC a0531101274 aflb011267040 a2b3c3d3e3 aDLCcDLCdICrlF0 aTK148.bG88 19860 219a621.3 c2023d202310aGutnik, Martin J.10aSimple electrical devices /cMartin J. Gutnik.0 aNew York :bF. Watts,c1986. a66 p. ;c23 cm.0 aA First book. aIncludes index. aBibliography: p. 64.0 aJunior High School Library Catalog (Wilson)0 aBooklist.0 aSchool Library Journal. aDescriptions and experiments introduce and explain electric cells, batteries, and other simple electric devices.0 a8.0bFollett Library Book Co.2 a5-8. 0aElectric apparatus and appliancesxJuvenile literature. 0aElectricityxExperimentsxJuvenile literature. 1aElectric apparatus and appliances. 1aElectricityxExperiments. 1aExperiments. 7aElectric apparatus and appliances. 7aElectricityxExperiments. aLVLcJNFkJNF 621.3 Gu bMAINp31000000007990r9.90u8280u382901171 2200361 450000100060000000300040000600500170001000800390002701000220006602000160008802000260010403500160013004000200014605000210016608200100018709000150019710000290021224500430024126000310028430000210031551000320033651000520036851000140042052001660043452100340060052100090063465100250064365100260066865100260069465100250072094200220074595200420076743746LVL20030327114003.0790215s1979 nyu j 00011 eng a79009813 /AC/r872 a0688221831. a0688321836blib. bdg. aflb00672206 aDLCcDLCdICrlF0 aPZ7.B380544bLac a[Fic] c2024d202410aBeatty, Patricia,d1922-10aLacy makes a match /cPatricia Beatty.0 aNew York :bMorrow,c1979. a222 p. ;c22 cm.0 aChildren's Catalog (Wilson)0 aElementary School Library Collection (Bro-Dart)0 aBooklist. aA 13-year-old living in a turn-of-the-century California mining town determines to marry off her adoptive brothers and discover the identity of her real parents.0 a6.3bFollett Library Book Co.2 a5-8. 1aCaliforniaxFiction. 1aWest (U.S.)xFiction. 7aWest (U.S.)xFiction. 7aCaliforniaxFiction. aLVLcJFkJ Beatty bLB2p37000000012020r3.50u8281u383000916 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200180012324500810014125000120022226000510023430000260028550000200031150000500033165000370038165000390041871000300045774000240048794200280051195200440053995200430058350765LVL19990313000000.0931206s1994 nyu 00100 eng a93045902 a0812923618 a 93045902 c2025d2025 aREF 349.73 Am04aThe American Bar Association family legal guide /cAmerican Bar Association. a2nd ed.0 aNew York :bTimes Books, Random House,cc1994. axiv, 732 p. ;c26 cm. aIncludes index. aRevised and updated ed. of "You and the law". 0aLawxMiscellanea.zUnited States 0aLawxPopular works.zUnited States20aAmerican Bar Association.01aFamily legal guide. aLVLcREFkREF 349.73 Am bMAINp31000000051532r20.36u8283u3831 bLB1p33000000020596r20.36u8284u383200853 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009404000200011005000220013008200120015209000150016410000330017924500410021225000120025326000510026530000210031651000140033752001450035152100170049694200250051395200370053822690LVL19990327000000.0800613s1980 nyu 00011 eng a80007953 a0151401985 aflb00737606 aDLCcDLCdICrlF0 aPS3525.A24573bH5 a813/.54 c2026d202610aMacInnes, Helen,d1907-1985.14aThe hidden target /cHelen MacInnes. a1st ed.0 aNew York :bHarcourt Brace Jovanovich,cc1980. a405 p. ;c22 cm.0 aBooklist. aA young woman is innocently caught up in a terrorist organization that is under surveillance by an army major she once loved at age fifteen.2 aYoung Adult. aLVLcAFkAF MacInnes bMAINp32000000006044u8285u383301160 2200349 450000100060000000300040000600500170001000800390002701000170006602000350008302000250011803500160014304000200015905000180017908200100019709000150020710000160022224501020023826000370034030000280037751000320040551000140043751000210045152001580047252100340063052100090066465000350067365000190070870000190072794200210074695200430076729709LVL19990323000000.0750430s1976 nyua j 000 1 eng a75010827 /AC a0070649006blib. bdg. :c$4.72 a0070648980 :c$4.95. aflb00551601 aDLCcDLCdICrlF0 aPZ7.T543bBat a[Fic] c2027d20271 aTitus, Eve.10aBasil in Mexico :ba Basil of Baker Street mystery /cby Eve Titus ; illustrated by Paul Galdone. aNew York :bMcGraw-Hill,cc1976. a95 p. :bill. ;c21 cm.0 aChildren's Catalog (Wilson)0 aBooklist.0 aLibrary Journal. aBasil, mouse and master detective seeking for the truth behind the theft of the Mousa Lisa, must also solve the mystery of his companion's disappearance.0 a4.7bFollett Library Book Co.2 a3-6. 1aMystery and detective stories. 1aMicexFiction.10aGaldone, Paul. aLVLcJFkJ Titus bMAINp32000000014561r2.95u8286u383400601 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000390013724500380017626000430021430000250025765000360028294200230031895200420034143747LVL20030529141435.0850430s1984 ilu 00011 eng a85149596 a0915463075 a 85149596 c2028d2028 aAF Wright10aWright, Donald K.q(Donald Kenton)14aThe woodsman /cDonald K. Wright.0 aOttawa, Ill. :bJameson Books,cc1984. axi, 406 p. ;c24 cm. 0aFrench and Indian WarxFiction. aLVLcAFkAF Wright bLB2p34000000005392r8.23u8288u383500580 2200217 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200120012510000210013724500440015826000390020230000240024144000320026594200220029795200430031950766LVL20000204000000.0940316s1994 nyu 00011 eng d a94131800 a042514044X a 94131800 c2029d2029 aM Crane1 aCrane, Hamilton.10aStarring Miss Seeton /cHamilton Crane. aNew York :bBerkley Books,cc1994. a245 p. ;c18 cm. ;. 0aHeron Carvic's Miss Seeton. aLVLcMYSkM Crane bMAINp32000000053423r4.50u8289u383600681 2200241 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200160011210000210012824500410014925000200019026000530021030000280026344000210029165000220031274000370033494200250037195200430039629710LVL20030626091211.0960417r19931991enk d 00011 eng a074515610X anpl96000777 c2030d2030 aLP Thompson10aThompson, David.10aSavage rendezvous /cDavid Thompson. aLarge print ed.0 aBath :bChivers Press ;bLansdown,c1993, c1991. a222 p. ;c22 cm. ;dpa. 0aWilderness ;v3. 0aLarge type books.01aWilderness :bSavage rendezvous. aLVLcLPkLP Thompson bMAINp31000000059430r3.95u8291u383701121 2200349 450000100060000000300040000600500170001000800390002701000170006602000270008303500160011004000250012605000230015108200180017409000150019210000230020724500510023026000400028130000330032149000210035450000200037552000910039552100340048652100090052065000570052965000360058665000200062265000360064265000200067894200290069895200440072743748LVL19990316000000.0900514s1990 ilua j 001 0 eng a90002147 /AC a0516011065 (lib. bdg.) aflb00367205 aDLCcDLCdDLCdICrlF00aQC912.3.bS75 199000220a363.73/87 c2031d20311 aStille, Darlene R.14aThe greenhouse effect /cby Darlene R. Stille. aChicago :bChildrens Press,cc1990. a45 p. :bcol. ill. ;c22 cm.0 aA New true book. aIncludes index. aDescribes the causes and effects of the greenhouse effect and how it might be stopped.0 a3.7bFollett Library Book Co.2 aK-3. 0aGreenhouse effect, AtmosphericxJuvenile literature. 1aGreenhouse effect, Atmospheric. 1aGlobal warming. 7aGreenhouse effect, Atmospheric. 7aGlobal warming. aLVLcJNFkJNF 363.73 STI bMAINp32000000030862r11.95u8293u383801772 2200469 450000100060000000300040000600500170001000800390002701000170006602000150008303500160009804000200011404100110013404300120014505000270015708200170018409000150020110000270021624000350024324500950027826000540037330000400042750000330046750000450050051000140054551000280055951000240058752002500061152100340086152100090089565000590090465000690096365000470103265000570107965000230113665000140115965000230117365000140119670000200121094200280123095200440125829711LVL19990323000000.0871120s1988 maua j 000 0 eng a87032830 /AC a088708057X aflb00051910 aDLCcDLCdICrlF1 aengger als-----0 aQL696.S473bS5913 19880 219a598.4/41 c2032d20321 aSomme, Lauritz,d1931-10aPinguin-Kinder-Buch.lEnglish.14aThe penguin family book /cLauritz Somme, Sybille Kalas ; translated by Patricia Crampton. aSaxonville, Mass. :bPicture Book Studio,cc1988. a[49] p. :bcol. ill. ;c22 x 24 cm. a"A Michael Neugebauer book." aTranslation of: Das Pinguin-Kinder-Buch.0 aBooklist.0 aSchool Library Journal.0 aHorn Book Magazine. aText and photographs portray a colony of chinstrap penguins on Bouvet Island in the Antarctic Ocean, from spring when they lay their eggs, through summer when the chicks hatch, to autumn when they leave the island until their return next spring.0 a5.1bFollett Library Book Co.2 a3-6. 0aChinstrap penguinxJuvenile literature.zBouvet Island 0aChinstrap penguinxBehaviorxJuvenile literature.zBouvet Island 0aBirdsxJuvenile literature.zBouvet Island 0aBirdsxBehaviorxJuvenile literature.zBouvet Island 1aChinstrap penguin. 1aPenguins. 7aChinstrap penguin. 7aPenguins.10aKalas, Sybille. aLVLcJNFkJNF 598.4 SOM bMAINp32000000024785r11.96u8295u383900753 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000240013824500400016225000120020226000360021430000210025049000260027165000520029765000400034965100290038994200250041895200440044343749LVL20000204000000.0930519s1994 nyu 00011 eng a93022910 a0805025758 a 93022910 c2033d2033 aM Kaminsky10aKaminsky, Stuart M.10aLieberman's day /cStuart Kaminsky. a1st ed.0 aNew York :bHenry Holt,cc1994. a260 p. ;c22 cm. 2aA Henry Holt mystery. 0aLieberman, Abe (Fictitious character)xFiction. 0aPolicexFiction.zillinoiszChicago 0aChicago (Ill.)xFiction. aLVLcMYSkM Kaminsky bMAINp32000000068106r19.95u8296u384000729 2200229 450000100060000000300040000600500170001000800390002701000130006603500140007909000150009309200110010810000370011924501320015625000140028826000360030230000290033865000430036765100260041094200200043695200430045650768LVL19990313000000.0730102s1960 nyua 00010 eng a60013432 a 60013432 c2034d2034 a978 Re10aRemington, Frederic,d1861-1909.10aFrederic Remington's own West /cwritten and illustrated by Frederic Remington; edited and with an introd. by Harold McCracken. a[1st ed.]0 aNew York :bDial Press,cc1960. a254 p. :bill. ;c26 cm. 0aFrontier and pioneer lifezWest (U.S.) 0aWest (U.S.)xHistory. aLVLcNFk978 Re bMAINp32000000058743r3.05u8297u384101139 2200337 450000100060000000300040000600500170001000800390002701000130006603500160007904000240009505000170011908200110013609000150014710000230016224500730018526000460025830000310030449000220033551000520035751000140040951000280042352001180045152100340056952100090060360000590061265000230067165000390069494200250073395200430075829712LVL20021130103723.0751125s1965 ilua j 00000beng a65010154 aflb00252200 aDLCcWadDLCdICrlF00aE449.bD768500a92 (j) c2035d203510aPatterson, Lillie.00aFrederick Douglass :bfreedom fighter .cIllustrated by Gray Morrow.0 aChampaign, Ill.bGarrard Pub. Co.c[1965] a80 p.bcol. illus.c23 cm.0 aA Discovery book.0 aElementary School Library Collection (Bro-Dart)0 aBooklist.0 aSchool Library Journal. aA biography of a Negro slave who educated himself, ran away from slavery and became a great leader of his people.0 a2.9bFollett Library Book Co.2 a3-6.10aDouglass, Frederick,d1817?-1895xJuvenile literature. 7aBlacksxBiography. 7aSlaveryxBiography.zUnited States aLVLcJBkJB Douglass bMAINp32000000028169r1.98u8298u384200939 2200313 450000100060000000300040000600500170001000800390002701000130006602000310007903500160011003900180012604000200014405000250016408200160018909000150020510000180022024500460023825000260028426000450031030000300035549000280038551000320041352000570044552100110050294200240051395200440053795200440058136731LVL20000126000000.0860502c19861985nyuc 00011 eng a85040866 a0394744187 (pbk.) :c$5.95 aflb013777050 a2b3c3d3e3 aDLCcDLCdICrlF1 aPS3552.E177bL6 19860 219a813/.54 c2036d203610aBeattie, Ann.10aLove always :ba novel /cby Ann Beattie. a1st Vintage Books ed.0 aNew York :bVintage Books,c1986, c1985. a247 p. :bport. ;c21 cm.0 aVintage contemporaries.0 aNew York Times Book Review. aA satiric novel about life and love in 1984 Vermont.2 aAdult. aLVLcAFkAF Beattie bMAINp32000000100228r12.00u8299u3843 bMAINp32000000100229r12.00u8300u384401217 2200373 450000100060000000300040000600500170001000800390002701000170006602000250008302000350010803500160014304000200015905000190017908200080019809000150020610000160022124500950023725000120033226000380034430000330038249000270041551000320044251000520047451000280052652000880055452100340064252100090067665000350068565000350072070000220075594200230077795200430080043750LVL19990316000000.0770401s1977 nyua j 000 1 eng a76058727 /AC a0060247568 :c$4.95. a0060247576blib. bdg. :c$4.79 aflb00525003 aDLCcDLCdICrlF0 aPZ7.P7125bBj3 a[E] c2037d20371 aPlatt, Kin.10aBig Max in the mystery of the missing moose /cby Kin Platt ; pictures by Robert Lopshire. a1st ed. aNew York :bHarper & Row,cc1977. a64 p. :bcol. ill. ;c23 cm.0 aAn I can read mystery.0 aChildren's Catalog (Wilson)0 aElementary School Library Collection (Bro-Dart)0 aSchool Library Journal. aBig Max, the world's greatest detective, helps the zoo keeper find a missing moose.0 a2.7bFollett Library Book Co.2 aK-3. 1aMystery and detective stories. 7aMystery and detective stories.10aLopshire, Robert. aLVLcEASYkE Platt bMAINp32000000005499r7.91u8301u384500765 2200241 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200140011210000270012624500870015326000410024030000280028144000240030950400450033365000350037894200230041395200440043695200430048050769LVL20030328072428.0951019r19951955nyu b 00011 eng a0679437223 anpl95001392 c2038d2038 aAF Heller10aHeller, Joseph,d1940-10aCatch-22 :ba novel /cby Joseph Heller; with an introduction by Malcolm Bradbury.0 aNew York :bAlfred A. Knopf,cc1995. axxxix, 568 p. ;c21 cm. 0aEveryman's library. aIncludes bibliography: p. (xxviii-xxix). 0aWorld War, 1939-1945xFiction. aLVLcAFkAF Heller bMAINp31000000056761r11.70u8303u3846 bLB1p33000000023833r11.70u8304u384701672 2200481 450000100060000000300040000600500170001000800390002701000170006602000370008302000250012003500160014504000200016104300120018105000270019308200210022009000150024110000200025624500940027625000120037026000330038230000330041550000200044850400260046851000320049451000480052651000240057452001780059852100340077652100090081061000580081961000360087761000360091365000380094965000380098765000170102565000170104265000170105965000170107670000250109394200280111895200440114622694LVL20020916103343.0870928s1988 nyua j b 001 0 eng a87047697 /AC a0690047126 (lib. bdg.) :c$11.89 a069004710X :c$11.95 aflb00396012 aDLCcDLCdICrlF an-us-dc0 aQL76.5.U62bW3755 19880 219a590/.74/4753 c2039d20391 aThomson, Peggy.10aKeepers and creatures at the national zoo /cPeggy Thomson ; photographs by Paul Conklin. a1st ed. aNew York :bCrowell,cc1988. aix, 198 p. :bill. ;c24 cm. aIncludes index. aBibliography: p. 194.0 aChildren's Catalog (Wilson)0 aJunior High School Library Catalog (Wilson)0 aHorn Book Magazine. aDescribes, in text and illustrations, the many different tasks performed by keepers at the National Zoo and the interrelationship between them and the animals they care for.0 a6.8bFollett Library Book Co.2 a3-6.20aNational Zoological Park (U.S.)xJuvenile literature.21aNational Zoological Park (U.S.)27aNational Zoological Park (U.S.) 0aZoo animalsxJuvenile literature. 0aZoo keepersxJuvenile literature. 1aZoo animals. 1aZoo keepers. 7aZoo animals. 7aZoo keepers.11aConklin, Paul,eill. aLVLcJNFkJNF 590.74 Th bMAINp32000000027072r11.60u8305u384800971 2200265 450000100060000000300040000600500170001000800390002701000220006604000130008805000190010108200210012009000150014110000240015624500930018026000470027330000350032044000310035552001460038660000500053260000290058270000300061194200210064195200430066257789LVL19990220000000.0851001s1968 iluac j 00010beng a68011353 /AC/r862 aDLCcDLC0 aML3930.L55bM9 a784/.0924aBa92 c2040d204010aMyers, Elisabeth P.10aJenny Lind :bsongbird from Sweden,cby Elisabeth P. Myers. Illustrated by Frank Vaughn.0 aChampaign, Ill.,bGarrard Pub. Co.c[1968] a143 p.billus., ports.c22 cm. 0aCreative arts biographies. aThe biography of the nineteenth-century Swedish singer whose vocal range and tone quality made her one of the leading opera stars of her day.10aLind, Jenny,d1820-1887xJuvenile literature.11aLind, Jenny,d1820-1887.11aVaughn, Frank E.,eillus. aLVLcJBkJB Lind bMAINp31000000009593r2.59u8308u384900936 2200301 450000100060000000300040000600500170001000800390002701000170006602000250008303500180010804000180012604300120014405000230015608200140017909000150019310000260020824500270023426000370026130000440029844000270034250400600036952000910042965100320052065100110055294200270056395200440059022695LVL20020909074702.0891109s1990 nyua j b 001 0 eng a89025463 /AC a1854352997 :c$19.95 a 89025463 /AC aDLCcDLCdDLC aa-br---00aDS527.4.bY56 199000220a959.1 c2041d20411 aYin, Saw Myat,d1946-10aBurma /cSaw Myat Yin. aNew York :bM. Cavendish,c1990. a128 p. :bill. (chiefly col.) ;c25 cm. 0aCultures of the world. aIncludes bibliographical references (p. 127) and index. aIntroduces the geography, history, religious beliefs, government, and people of Burma. 0aBurmaxJuvenile literature. 1aBurma. aLVLcJNFkJNF 959.1 Yi bMAINp32000000028464r19.95u8309u385001475 2200445 450000100060000000300040000600500170001000800390002701000170006602000220008302000220010502000150012702000270014202000250016903500160019404000200021005000220023008200220025209000150027410000210028924500610031025000120037126000430038330000400042651000450046652000950051152100340060652100090064060000510064960000300070063000490073065000410077965000240082065000290084465000190087373000260089294200250091895200430094395200430098636733LVL20020918093906.0860821s1986 caua j 00010beng a86022831 /AC z0866837027 (pbk.) a0062555405 (pbk.) z0866838228 a0062556177 (lib. bdg.) a0062555391 :c$12.95 aflb00922511 aDLCcDLCdICrlF0 aBS580.E8bD4 19860 219a222/.90924aB c2042d204210aDe Paola, Tomie.10aQueen Esther /cretold and illustrated by Tomie dePaola. a1st ed.0 aSan Francisco :bHarper & Row,cc1986. a[30] p. :bcol. ill. ;c22 x 21 cm.0 aNational Council For The Social Studies. aRetells how Queen Esther risked her life to prevent the killing of all the Jews in Persia.0 a3.0bFollett Library Book Co.2 aK-3.00aEsther,cQueen of PersiaxJuvenile literature.01aEsther,cQueen of Persia.00aBible.pO.TxBiographyxJuvenile literature. 0aBible stories, EnglishxO.T. Esther. 1aBible storiesxO.T. 7aEsther, Queen of Persia. 7aBible stories.01aBible.pO.T.pEsther. aLVLcJNFkJNF 222 De bMAINp32000000014900r7.35u8310u3851 bMAINp32000000082110r7.35u8311u385200952 2200289 450000100060000000300040000600500170001000800390002701000130006602000390007903500160011804000250013405000260015908200160018509000150020110000210021624500910023726000370032830000290036551000280039452000790042252100170050165000350051894200220055395200440057595200430061943752LVL19990316000000.0900625s1990 nyua 000 1 eng a90001071 a0553058819 :c$18.95 ($23.95 Can.) aflb00413602 aDLCcDLCdDLCdICrlF00aPS3552.R698bW57 199000220a813/.54 c2043d20431 aBrown, Rita Mae.10aWish you were here /cRita Mae Brown & Sneaky Pie Brown ; illustrations by Wendy Wray. aNew York :bBantam Books,c1990. a242 p. :bill. ;c24 cm.0 aSchool Library Journal. aCrozet, Virginia, is a typical small town, but its secrets lead to murder.2 aYoung Adult. 7aMystery and detective stories. aLVLcMYSkM Brown bMAINp32000000029492r10.09u8312u3853 bLB1p36000000011325r10.09u8313u385401032 2200277 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200130011210000210012524500330014626000500017930000370022952001670026694200240043395200420045795200430049995200420054295200430058495200420062795200430066995200420071250771LVL19991120000000.0931130s1994 maua j 00011 eng a1564028453 anpl96001123 c2044d2044 aE Hughes10aHughes, Shirley.10aHiding /cby Shirley Hughes.0 aCambridge, Mass. :bCandlewick Press,cc1994. a[18] p. :bill. ;c22 cm. ;dpa. aA young girl describes many examples of hiding: children at play, parents reading, the moon behind clouds, flowers underground in winter, and the dog at bathtime. aLVLcEASYkE Hughes bLB2p37000000006533r3.99u8314u3855 bMAINp32000000065281r2.31u8315u3856 bLB1p36000000003509r2.31u8316u3857 bMAINp35000000001703r2.31u8317u3858 bLB2p34000000013973r2.31u8318u3859 bMAINp31000000060476r2.31u8319u3860 bLB1p33000000026022r2.31u8320u386101125 2200325 450000100060000000300040000600500170001000800390002701000130006602000150007902000270009403500160012109000150013709200150015210000280016724500870019525000120028226000380029430000330033244000240036552001590038965000350054865000320058365000240061565000350063970000260067474000300070094200260073095200430075629715LVL20000911163313.0860924s1988 nyua j 00011 eng a86045773 a0060238372 a0060238380 (lib. bdg.) aflb01637701 c2045d2045 aE Levinson10aLevinson, Nancy Smiler.10aClara and the bookwagon /cNancy Smiler Levinson ; illustrations by Carolyn Croll. a1st ed.0 aNew York :bHarper & Row,cc1988. a64 p. :bcol. ill. ;c23 cm. 3aAn I can read book. aClara's dream of enriching her rough life on the family farm is fulfilled when a horse-drawn book wagon visits with the country's first traveling library. 1aLibraries, TravelingxFiction. 1aBooks and readingxFiction. 1aFarm lifexFiction. 7aLibraries, TravelingxFiction.11aCroll, Carolyn,eill.01aClara and the book wagon. aLVLcEASYkE Levinson bMAINp32000000026094r9.80u8321u386200339 2200133 450000100060000000300040000600500170001000800410002709000150006810000300008324500270011394200220014095200430016236734LVL19990320000000.0940510s19xx xxu 00010 eng d c2046d20461 aJones, James,d1921-1977.10aFrom here to eternity. aLVLcAFkAF Jones bMAINp32000000005198r3.00u8322u386300923 2200277 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200110012510000220013624500740015826000520023230000350028450400490031965000480036865000380041665000430045494200200049795200430051795200430056095200420060343753LVL19990316000000.0920713s1992 ctua b 00110 eng d a92014213 a1564400190 a 92014213 c2047d2047 a694 Wi10aWilbur, C. Keith.10aHome building and woodworking in Colonial America /cC. Keith Wilbur.0 aOld Saybrook, CT :bGlobe Pequot Press,cc1992. a121 p. :bill. ; pa. ;c28 cm. aIncludes bibliography: p. 115-116 and index. 0aHouse constructionxHistory.zUnited States 0aWoodworkxHistory.zUnited States 0aArchitecture, ColonialzUnited States. aLVLcNFk694 Wi bMAINp32000000034034r7.64u8323u3864 bMAINp31000000039816r7.64u8324u3865 bLB1p33000000013196r7.64u8325u386601056 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000180014024500730015825000260023126000450025730000370030252001340033965000210047365000130049465000100050770000280051794200270054595200430057295200420061595200430065795200420070050772LVL19990313000000.0900618r19911973nyua j 00010 eng a90042011 a0688101984 a 90042011 c2048d2048 aJNF 636.7 Co10aCole, Joanna.10aMy puppy is born /cby Joanna Cole ; photographs by Margaret Miller. aRev. and expanded ed.0 aNew York :bMorrow Junior Books,cc1991. a[48] p. :bill. ;c25 cm. ;dpa. aText and photographs follow a Norfolk terrier puppy from birth to eight weeks later when she goes home with her joyous new owner. 1aNorfolk terrier. 1aPuppies. 1aDogs.11aMiller, Margaret,eill. aLVLcJNFkJNF 636.7 Co bMAINp32000000066474r2.95u8326u3867 bLB2p34000000008709r2.92u8327u3868 bMAINp31000000035734r2.92u8328u3869 bLB1p33000000006939r2.92u8329u387000634 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009405000260010808200160013409000150015009200160016510000210018124500380020225000200024026000380026050000280029894200230032695200430034957791LVL20020128114626.0851107c19861952enk d 00011 eng a85027583 a0893402761 a 850275831 aPS3515.O6526bH3 19860 219a813/.54 c2049d2049 aL.P. Hopson10aHopson, William.10aHangtree range /cWilliam Hopson. aLarge print ed.0 aBath, England :bChivers Press ;. a"Atlantic large print." aLVLcLPkLP Hopson bMAINp31000000035649r8.95u8330u387100805 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000250014024500650016525000120023026000350024230000280027752001240030561000250042965000260045494200270048095200440050729717LVL19990323000000.0880104s1988 nyua j 00010 eng a87038331 a0027478211 a 87038331 c2050d2050 aJNF 637.4 Ja1 aJaspersohn, William.10aIce cream /cwritten and photographed by William Jaspersohn. a1st ed. aNew York :bMacmillan,cc1988. a44 p. :bill. ;c22 cm. aTakes the reader on a tour of Ben and Jerry's ice cream plant to explain where ice cream comes from and how it is made.21aBen & Jerry's (Firm) 1aIce cream, ices, etc. aLVLcJNFkJNF 637.4 Ja bMAINp32000000035658r13.46u8331u387201374 2200409 450000100060000000300040000600500170001000800390002701000210006602000240008703500160011104000200012705000160014708200150016309000150017810000190019324501090021226000420032130000340036350000200039750400300041751000480044751000520049551000140054752001060056152100340066752100090070165000450071065000460075565000150080165000160081665000240083265000250085670000180088194200280089995200370092736736LVL20020918120431.0751218s1976 nyua j b 001 0 eng a75045002 /AC/r77 a0590074148 :c$7.95 aflb00680102 aDLCcDLCdICrlF0 aTJ823.bD39 a621.4/5/09 c2051d20511 aDennis, Landt.10aCatch the wind :ba book of windmills and windpower /cwritten by Landt Dennis ; photos. by Lisl Dennis. aNew York :bFour Winds Press,cc1976. a114 p. :bill. ;c18 x 26 cm. aIncludes index. aBibliography: p. 107-108.0 aJunior High School Library Catalog (Wilson)0 aElementary School Library Collection (Bro-Dart)0 aBooklist. aTraces the history of wind power throughout the world and discusses recent research and developments.0 a7.0bFollett Library Book Co.2 a5-8. 0aWindmillsxHistoryxJuvenile literature. 0aWind powerxHistoryxJuvenile literature. 1aWindmills. 1aWind power. 7aWindmillsxHistory. 7aWind powerxHistory.10aDennis, Lisl. aLVLcJNFkJNF 621.45 De bMAINp32000000015523u8332u387300978 2200277 450000100060000000300040000600500170001000800410002701000130006803500140008109000150009509200140011024500650012425000200018926001500020930000350035944000360039450000320043050000180046250400510048065000410053171000370057274000260060994200230063595200420065822699LVL19990327000000.0860415s1985 mdua b f00100 eng d a86601128 a 86601128 c2052d2052 a616.99 Ch00aChemotherapy & you :ba guide to self-help during treatment. aRev. Aug. 1985.0 aBethesda, Md. :bU.S. Dept. of Health and Human Services, Public Health Service, National Institutes of Health, National Cancer Institute,c1985. a66 p. :bill. ;c23 cm. ;dpa. 0aNIH publication ;vno. 85-1136. aShipping list no.: 86-38-P. aItem 507-G-6. aIncludes bibliographical references and index. 0aCancerxChemotherapyxPopular works.20aNational Cancer Institute (U.S.)01aChemotherapy and you. aLVLcNFk616.99 Ch bLB2p34000000001711r5.95u8334u387400706 2200229 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200130011410000230012724500680015026000380021830000280025694200230028495200420030795200430034995200420039295200420043436737LVL20000911182645.0931228c19621960nyu 00011 eng d a0451158415 anpl93001780 c2053d2053 aM McBain10aMcBain, Ed,d1926-10aLady, lady, I did it! :ban 87th Precinct mystery /cEd McBain.0 aNew York :bSignet,c1962, c1960. a253 p. ;c18 cm. ;dpa. aLVLcMYSkM McBain bLB2p37000000001817r2.60u8335u3875 bMAINp32000000044159r2.61u8336u3876 bLB2p34000000006369r2.60u8337u3877 bLB1p33000000017348r2.60u8338u387800616 2200205 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200120011210000210012424501060014524600140025126000440026530000360030994200220034595200430036722700LVL19990327000000.0961105r19951994nyua 00011 eng a0553572350 anpl96001986 c2054d2054 aM Brown10aBrown, Rita Mae.10aMurder at Monticello, or, Old sins /cSneaky Pie Brown, Rita Mae Brown ; illustrations by Wendy Wray.3 aOld sins.0 aNew York :bBantam Books,c1995, c1994. a284 p. :bill. ;c18 cm. ;dpa. aLVLcMYSkM Brown bMAINp32000000067743r5.99u8339u387900991 2200301 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200150012510000210014024500490016125000260021026000390023630000420027549000110031752001260032865000310045465000190048580000300050494200260053495200430056095200430060395200430064629719LVL20000316000000.0930315s1988 nyua j 00011 eng d a87037437 a0689712537 a 87037437 c2055d2055 aE Oxenbury1 aOxenbury, Helen.10aTom and Pippo make a mess /cHelen Oxenbury. a1st Aladdin Books ed. aNew York :bAladdin Books,cc1988. a[12] p. :bill. (some col.) ;c26 cm.10aPippo. aTom is not very successful when he tries to help his father paint a room, and blames his toy monkey, Pippo, for the mess. 1aFather and childxFiction. 1aToysxFiction.1 aOxenbury, Helen..tPippo. aLVLcEASYkE Oxenbury bMAINp32000000037868r3.54u8340u3880 bMAINp32000000039480r3.54u8341u3881 bMAINp32000000042885r3.54u8342u388201332 2200385 450000100060000000300040000600500170001000800390002701000210006602000360008702000240012303500160014704000250016305000230018808200120021109000150022310000200023824500810025825000120033926000380035130000330038951000320042251000520045451000140050652002130052052100340073352100090076765000220077665000130079865000220081165000130083370000340084694200230088095200430090336738LVL19990320000000.0820723s1983 nyua j 000 1 eng a82045574 /AC/r90 a0690041977 (lib. bdg.) :c$9.89 a0690041969 :c$9.95 aflb00797708 aDLCcDLCdDLCdICrlF00aPZ7.A2615bBu 198300219a[E] c2056d20561 aAdler, David A.10aBunny rabbit rebus /cby David A. Adler ; pictures by Madelaine Gill Linden. a1st ed. aNew York :bT.Y. Crowell,cc1983. a38 p. :bcol. ill. ;c18 cm.0 aChildren's Catalog (Wilson)0 aElementary School Library Collection (Bro-Dart)0 aBooklist. aAfter hungry Little Rabbit eats all the food in the house, Mother Rabbit trades favors to friends for lettuce and carrots. Pictures are substituted for words or parts of words in a rebus version of the story.0 a2.5bFollett Library Book Co.2 aK-3. 1aRabbitsxFiction. 1aRebuses. 7aRabbitsxFiction. 7aRiddles.11aLinden, Madelaine Gill,eill. aLVLcEASYkE Adler bMAINp32000000020341r7.11u8343u388301127 2200349 450000100060000000300040000600500170001000800390002701000130006602000270007902000260010603500140013204000130014605000220015908200140018109000150019509200130021010000430022324501010026626000500036726300100041730000110042730000290043844000250046752000880049265000350058065000300061570000250064594200220067095200430069295200420073543757LVL20000911202327.0910930s1992 ilua j 00011 eng a91005161 a0807503193 (paperback) a0807503207 (hardback) a 91005161 aDLCcDLC00aPZ7.W244bAm 199200220a[Fic] c2057d2057 aJ Warner1 aWarner, Gertrude Chandler,d1890-1979.14aThe amusement park mystery /ccreated by Gertrude Chandler Warner ; illustrated by Charles Tang. aMorton Grove, Ill. :bAlbert Whitman,cc1992. a9201. ap. cm. a119 p. :bill. ;c21 cm. 4aThe Boxcar children. aThe Aldens search for carousel horses that have disappeared from an amusement park. 1aMystery and detective stories. 1aAmusement parksxFiction.11aTang, Charles,eill. aLVLcJFkJ Warner bMAINp32000000037132r9.95u8344u3884 bLB1p36000000002067r2.63u8345u388500599 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000450013424500400017926000410021930000240026050000330028494200200031795200440033729720LVL19990323000000.0920430s1993 nyu 00010 eng a92014917 a0679418903 a 92014917 c2058d2058 a811 Me10aMerwin, W. S.d1927-q(William Stanley),10aTravels :bpoems /cby W.S. Merwin.0 aNew York :bAlfred A. Knopf,cc1993. ax, 137 p. ;c25 cm. a"A Borzoi book"--T.p. verso. aLVLcNFk811 Me bMAINp32000000066177r20.00u8346u388601262 2200337 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009409000150011009200170012510000350014224501260017726000490030330000360035250000200038850400300040852001020043865000290054070000310056994200270060095200420062795200430066995200420071295200430075495200420079795200430083995200420088243758LVL19990316000000.0741210s1975 nyua j b 00111 eng a74032024 a0064460916 anpl93000066 c2059d2059 aJNF 398.2 Sc10aSchwartz, Alvin,d1927-ecomp.10aWhoppers :btall tales and other lies /ccollected from American folklore by Alvin Schwartz ; illustrated by Glen Rounds.0 aNew York :bHarperCollinsPublishers,cc1975. a127 p. :bill. ;c23 cm. ;dpa. aIncludes index. aBibliography: p. 119-125. aA collection of tall tales involving animals, the weather, narrow escapes, and many other topics. 1aFolklorezUnited States.11aRounds, Glen,d1906-eill. aLVLcJNFkJNF 398.2 Sc bLB2p37000000001537r2.33u8347u3887 bMAINp32000000039469r2.33u8348u3888 bLB1p36000000002527r2.33u8349u3889 bMAINp35000000002166r2.33u8350u3890 bLB2p34000000008042r2.33u8351u3891 bMAINp31000000042931r2.33u8352u3892 bLB1p33000000015407r2.33u8353u389300838 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000180013724500610015526000390021630000210025552001570027665000220043365000220045594200230047795200420050095200420054257796LVL19990220000000.0850605s1986 nyu j 00011 eng a85013293 a0899194087 a 85013293 c2060d2060 aJ Bunting 0aBunting, Eve.10aJanet Hamm needs a date for the dance /cby Eve Bunting.0 aNew York :bClarion Books,cc1986. a105 p. ;c21 cm. aPeer pressure and the lack of a date for the seventh grade dance lead Janet Hamm to inventing a date, but she finds her dishonesty brings complications. 1aHonestyxFiction. 1aSchoolsxFiction. aLVLcJFkJ Bunting bLB2p34000000006821r2.90u8354u3894 bLB1p33000000017708r2.90u8355u389500597 2200217 450000100060000000300040000600500170001000800390002701000200006603500210008604000130010705000190012009000150013910000460015424500280020026000320022830000190026049000350027994200210031495200440033522702LVL20000204000000.0730213s1960 nyu 000 1 eng a60012605 //r852 a 60012605 //r852 aDLCcDLC0 aPZ3.S6737bSt2 c2061d20611 aSnow, C. P.d1905-1980.q(Charles Percy),10aStrangers and brothers. aNew York,bScribnerc[1960] a309 p.c22 cm.0 aHis Strangers and brothersv1. aLVLcAFkAF Snow bMAINp32000000007667r10.00u8356u389600370 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000330009824500260013194200240015795200430018129721LVL19990323000000.0940805s19xx xxu 00010 eng d a0723234523 c2062d2062 aPotter, Beatrix,d1866-1943.10aMeet squirrel nutkin. aLVLcEASYkE Potter bMAINp32000000014959r1.71u8357u389700343 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000160009624500210011294200210013395200430015436740LVL19990803000000.0940714s19xx xxu 00010 eng d a33027359 c2063d2063 aGag, Wanda.14aThe A B C bunny. aLVLcEASYkE Gag bMAINp32000000008378r6.57u8358u389801028 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200190012324500330014226000460017530000330022144000290025450000580028350000200034152001240036165000200048565000180050594200290052395200440055295200430059695200440063995200430068343759LVL20000912051024.0870724s1988 wiua j 00100 eng a87020685 a0817231137 a 87020685 c2064d2064 aJNF 591.909 An00aAnimals in rivers and ponds.0 aMilwaukee :bRaintree Publishers,cc1988. a48 p. :bcol. ill. ;c26 cm. 0aAnimals and their homes. aTranslation of: Animaux des riviÁeres et des Âetangs. aIncludes index. aDescribes frogs, insects, birds, beavers, fish, and other animals that make their homes underwater in rivers and ponds. 1aStream animals. 1aPond animals. aLVLcJNFkJNF 591.909 An bMAINp32000000044332r14.96u8359u3899 bLB2p34000000008459r14.96u8360u3900 bMAINp31000000043568r14.65u8361u3901 bLB1p33000000015761r14.65u8362u390200215 2200085 4500020001500000090001500015245003100030942002400061952004400085 a0848707214 c2065d206510aChristmas is coming! 1988. aLVLcNFk745.594 Ch bMAINp32000000022459r11.48u8363u390301394 2200349 450000100060000000300040000600500170001000700100002700800410003703500160007803700240009409000150011809200170013324501460015026000580029630000550035450000210040950000400043050600310047051100980050152001710059952100130077053800540078365000190083770000240085670000180088070000270089870000200092570000310094594200240097695200440100057797LVL19990220000000.0vf cbahos890427p19891988cau118 g vleng d avid93001455 a62825bRCA/Columbia c2066d2066 aAV Hand- ful02aA Handful of dustcNew Line Cinema ; Stagescreen Productions ; produced by Derek Granger ; directed by Charles Sturridge.h[videorecording] / aBurbank, CA :bRCA/Columbia Home Video,c1989, c1988. a1 videocassette (118 min.) :bsd., col. ;c1/2 in. aMPAA rating: PG. aBased on the novel by Evelyn Waugh. aFor private home use only.1 aJames Wilby, Kristin Scott Thomas, Rupert Graves, Anjelica Huston, Judi Dench, Alec Guinness. aThe lives of an upper-class British couple are changed forever after a dashing young man visits for the weekend and sparks a series of infidelity, passion, and death. aGeneral. aVHS hi-fi Dolby surround stereo, mono-compatible. 0aFeature films.11aSturridge, Charles.11aWilby, James.21aScott Thomas, Kirstin.11aGraves, Rupert.11aWaugh, Evelyn,d1903-1966. aLVLcAVkAV Handful bMAINp31000000030371r68.99u8364u390400581 2200205 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200130011410000210012724500460014826000440019430000300023894200220026895200420029095200430033222703LVL19990327000000.0930109s1992 nyu 00011 eng d a0061080160 aonv90003848 c2067d2067 aAF Hagan10aHagan, Patricia.12aA forever kind of love /cPatricia Hagan.0 aNew York :bHarperPaperbacks,cc1992. . a464 p. ;c18 cm. ;dpa. . aLVLcAFkAF Hagan bLB1p36000000004923r3.19u8365u3905 bMAINp31000000041711r3.19u8366u390600875 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000230013524500380015826000380019630000210023450000280025552001140028365000310039765000270042865100360045594200210049195200430051295200420055529722LVL20010711105003.0921204s1993 nyu j 00011 eng a92042348 a0671870394 a 92042348 c2068d2068 aYA Pike 0aPike, Christopher.14aThe immortal /cChristopher Pike.0 aNew York :bPocket Books,cc1993. a213 p. ;c22 cm. a"An Archway hardcover." aTwo high school friends visit the sacred island of Delos and discover a link with the world of Greek deities. 1aMythology, GreekxFiction. 1aSupernaturalxFiction. 1aDelos Island (Greece)xFiction. aLVLcYAkYA Pike bMAINp31000000043533r8.26u8367u3907 bLB1p33000000015722r8.26u8368u390801359 2200433 450000100060000000300040000600500170001000800390002701000170006602000360008302000250011903500160014403900180016004000200017805000250019808200120022309000150023510000270025024500360027725000120031326000380032530000430036351000320040651000520043851000280049052000600051852100090057865000190058765000250060665000270063165000190065865000250067765000270070294200250072995200430075495200430079795200430084095200420088336741LVL19990320000000.0830721s1984 nyua j 00011 eng a83047913 /AC a0060241004 (lib. bdg.) :c$8.89 a0060240997 :c$10.95 aflb000975100 a2b3c3d3e3 aDLCcDLCdICrlF0 aPZ7.M478415bPi 19840 219a[E] c2069d206910aMcCully, Emily Arnold.10aPicnic /cEmily Arnold McCully. a1st ed.0 aNew York :bHarper & Row,cc1984. a[32] p. :bchiefly col. ill. ;c24 cm.0 aChildren's Catalog (Wilson)0 aElementary School Library Collection (Bro-Dart)0 aSchool Library Journal. aA little mouse gets lost on the way to a family picnic.2 aK-3. 1aMicexFiction. 1aPicnickingxFiction. 1aStories without words. 7aMicexFiction. 7aPicnickingxFiction. 7aStories without words. aLVLcEASYkE McCully bMAINp32000000018903r9.51u8369u3909 bMAINp32000000020797r4.89u8370u3910 bMAINp35000000002365r4.89u8371u3911 bLB1p33000000001622r6.95u8372u391200799 2200253 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200170011410000220013124500540015326000490020730000330025650000590028965000330034865000440038165000220042571000270044794200270047495200440050157798LVL19990220000000.0951228s1994 nyua j 00010 eng d a1569241759 anpl95001939 c2070d2070 aJNF 759.4 An10aAnderson, Janice.14aThe art of the impressionists /cJanice Anderson.0 aNew York, NY :bShooting Star Press,cc1994. a79 p. :bill. ;c21 x 20 cm. aA compilation of works from the Bridgeman Art Library. 1aImpressionism (Art)zFrance. 1aPainting, Moderny19th centuryzFrance. 1aPaintingzFrance.20aBridgeman Art Library. aLVLcJNFkJNF 759.4 An bMAINp31000000057944r19.95u8374u391300511 2200145 4500020001500000090001500015100002000030245014900050260003400199300002100233700002000254700002500274942002200299952004400321 a1562829300 c2071d207110aPhilbin, Regis.10aCooking with Regis and Kathie Lee :bQuick and easy recepies from America's favorite TV personalites /cby Regis Philbin and Kathie Lee Gifford. aNew York :bHyperion,cc1993. a256 p. :c25 cm.10aPhilbin, Regis.10aGifford, Kathie Lee. aLVLcNFk641.5 Ph bMAINp31000000042227r11.48u8376u391400736 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009403900180010804000130012605000250013908200160016409000150018010000300019524500620022526000640028730000210035194200230037295200430039595200440043836742LVL19990320000000.0821105s1983 nyu 000 1 eng a82022083 a0440087406 a 820220830 a2b3c3d3e3 aDLCcDLC0 aPS3566.A686bW5 19830 219a813/.54 c2072d20721 aParker, Robert B.,d1932-14aThe widening gyre :ba Spenser novel /cRobert B. Parker. aNew York, N.Y. :bDelacorte Press/Seymour Lawrence,cc1983. a183 p. ;c22 cm. aLVLcMYSkM Parker bMAINp32000000002803r7.77u8378u3915 bMAINp32000000032875r10.00u8379u391600864 2200277 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200130011410000170012724500640014425000120020826000370022030000510025760000360030860000240034460000250036865100450039370000200043894200220045895200620048095200440054222705LVL19990327000000.0930505s1993 nyuaf 00010aeng d a0671865587 anpl93000027 c2073d2073 a364.1 Fi1 aFisher, Amy.10aAmy Fisher :bmy story /cby Amy Fisher with Sheila Weller. a1st ed. aNew York :bPocket Bookscc1993. aviii, 276, [16] p. of plates :bill. ;c24 cm.10aFisher, Amy,dAugust 21, 1974-.10aButtafuoco, Joseph.10aButtafuoco, Mary Jo. 0aLong Island, New YorkxAttempted murder.10aWeller, Sheila. aLVLcNFk364.1 Fi bMAINdMAINp32000000039197r13.20u8380u3917v2003-09-01 bMAINp31000000042802r13.20u8381u391800880 2200241 450000100060000000300040000600500170001000800390002701000130006603500140007909000150009309200130010810000280012124500890014926000370023830000330027552001500030865000390045870000340049770000400053194200240057195200430059529724LVL19990323000000.0850919s1968 ilua j 00011 eng a68021676 a 68021676 c2074d2074 aE Martin1 aMartin, Patricia Miles.10aOne special dog /cby Patricia Miles Martin; illustrated by John and Lucy Hawkinson. aChicago :bRand McNally,cc1968. a48 p. :bcol. ill. ;c24 cm. aMolly, a little Indian girl, was afraid to be left alone with the sheep because of the wild dog packs until a special dog befriended her brother. 1aIndians of North AmericaxFiction.11aHawkinson, John,d1912-eill.11aHawkinson, Lucy Ozone,d1924-eill. aLVLcEASYkE Martin bMAINp32000000042148r2.25u8382u391901147 2200337 450000100060000000300040000600500170001000800390002701000170006602000150008303500160009803900180011404000200013205000260015208200210017809000150019910000250021424500510023926000440029030000210033451000280035552001730038352100170055665000350057365000400060865000340064865100310068265100310071394200230074495200420076736743LVL20010809132221.0820510s1982 nyu 00011 eng a82005966 /AC a0671456970 aflb011482010 a2b3c3d3e3 aDLCcDLCdICrlF0 aPS3556.A7765bM4 19820 219a813/.54aFic c2075d207510aFarris, Jack,d1921-10aMe and Gallagher :ba novel /cby Jack Farris.0 aNew York :bSimon and Schuster,cc1982. a143 p. ;c22 cm.0 aSchool Library Journal. aA young man looks back on the formation in 1863 of the Montana vigilante movements and on the part he played, at the age of fifteen, in the bloody events that followed.2 aYoung Adult. 1aVigilance committeesxFiction. 1aFrontier and pioneer lifexFiction. 1aCrime and criminalsxFiction. 0aMontanaxHistoryxFiction. 1aMontanaxHistoryxFiction. aLVLcWESkW Farris bLB2p37000000016950r2.03u8383u392000766 2200241 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200140011410000390012824500610016726000480022830000280027644000270030494200240033195200430035595200420039895200420044095200420048243762LVL20030116183301.0960304r19851935nyu 00011 eng d a0345321561 anpl96000513 c2076d2076 aM Gardner10aGardner, Erle Stanley,d1889-1970.14aThe case of the caretaker's cat /cErle Stanley Gardner.0 aNew York :bBallantine Books,c1985, c1935. a218 p. ;c18 cm. ;dpa. 2aA Perry Mason mystery. aLVLcMYSkM Gardner bMAINp32000000063150r3.53u8384u3921 bLB1p36000000005083r3.53u8385u3922 bLB2p34000000013264r3.53u8386u3923 bLB2p37000000017675r3.53u8387u392400672 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000310013824500380016925000200020726000470022730000220027465000220029694200240031895200440034295200440038650781LVL20020826120052.0950609r19951995meu d 00011 eng a95030747 a0786205318 a 95030747 c2077d2077 aLP Pilcher10aPilcher, Rosamunde,d1924-10aComing home /cRosamunde Pilcher. aLarge print ed.0 aThorndike, Me. :bThorndike Press,cc1995. a1216 p. ;c24 cm. 0aLarge type books. aLVLcLPkLP Pilcher bMAINp32000000060796r14.47u8388u3925 bMAINp31000000057312r14.47u8389u392600349 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000170009624500200011394200270013395200430016057800LVL19990220000000.0911206s19xx xxu 00010 eng d a85004202 c2078d2078 aGoble, Paul.14aThe Great race. aLVLcJNFkJNF 398.2 Go bMAINp31000000006598r7.64u8390u392700582 2200217 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200140011410000220012824500430015025000200019326000400021330000230025365000220027694200230029895200430032122706LVL20021011143327.0930608c19851962enk d 00011 eng d a0708960537 anpl93000233 c2079d2079 aLP Treves1 aTreves, Kathleen.10aSurgeon's daughter /cKathleen Treves. aLarge print ed. aLeicester :bLinford,c1985, c1962. a317 p. ;c19 cm.;. 0aLarge type books. aLVLcLPkLP Treves bMAINp31000000043318r6.95u8391u392801077 2200325 450000100060000000300040000600500170001000700100002700800410003702000150007803500160009309000150010909200140012424500670013826000530020530000540025844000350031250000300034750600310037751100210040852001070042952100130053653800160054965100380056570000220060371000280062574000310065394200230068495200440070729725LVL19990323000000.0vf cbahom931028s1987 cou060 g vleng d a0938939084 avid93000512 c2080d2080 aAV 914 Sc00aBonny ScotlandcA Film by Sherilyn Mentes.h[videorecording] / aEnglewood, CO :bQuantum Communications,cc1987. a1 videocassette (60 min.) :bsd., col. ;c1/2 in. 0aTraveloguer collection ;vv.8. aTitle on cover: Scotland. aFor private home use only.3 aSherilyn Mentes. aTravelogue of Scotland, showing the rugged highlands and the city of Glasgow, and featuring bagpipers. aGeneral. aVHS format. 0aScotlandxDescription and travel.11aMentes, Sherilyn.21aQuantum Communications.01aScotlandh[videorecording] aLVLcAVkAV 914 Sc bMAINp32000000024826r15.00u8392u392900786 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000190013624500510015525000210020626000380022730000260026550000550029174000240034694200220037095200430039295200430043595200420047836744LVL19990320000000.0920303r19921981nyu 00011 eng a92005518 a0446394521 a 92005518 c2081d2081 aAF Flagg10aFlagg, Fannie.10aDaisy Fay and the miracle man /cFannie Flagg. aWarner Books ed.0 aNew York :bWarner Books,cc1992. a320 p, ;c21 cm,; pa. aPreviously published as: Coming attractions. 1981.01aComing attractions. aLVLcAFkAF Flagg bMAINp32000000061952r4.78u8393u3930 bMAINp31000000042376r4.78u8394u3931 bLB1p33000000020865r4.78u8395u393200356 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000220009824500250012094200220014595200430016757801LVL19990220000000.0950323s19uu 000 0 eng d a0553155814 c2082d20821 aPascal, Francine.10aCenter of attention. aLVLcJFkJ Pascal bMAINp31000000009405r1.47u8396u393300717 2200229 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200150012524500670014026000600020730000400026765000300030765000440033771000400038194200240042195200420044522707LVL20010824141734.0930717s1993 nyua 00000 eng d a92972101 a0874474566 a 92972101 c2083d2083 a378.166 In00aIntroducing the new SAT :bthe College Board's official guide.0 aNew York :bCollege Entrance Examination Board,cc1993. aix, 260 p. :bill. ;c28 cm. ;dpa. 0aScholastic aptitude test. 0aScholastic aptitude testxStudy guides.20aCollege Entrance Examination Board. aLVLcNFk378.166 In bLB2p34000000001517r7.08u8397u393400693 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012324500560013726000370019330000340023065000130026465100190027774000430029694200250033995200440036495200430040829726LVL19990323000000.0890310s1989 ilua 00000 eng a89042815 a0528833626 a 89042815 c2084d2084 aJR 973 Ra00aRand McNally children's atlas of the United States.0 aChicago :bRand McNally,cc1989. a109 p. :bcol. ill. ;c28 cm. 1aAtlases. 1aUnited States.01aChildren's atlas of the United States. aLVLcJREFkJR 973 Ra bMAINp32000000044069r11.40u8398u3935 bLB1p33000000017280r11.40u8399u393600631 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010810000330012324500530015626000380020930000220024794200230026995200360029295200430032895200420037143764LVL20010804201458.0930311s1993 nyu 00011 eng a93015246 a0446516538 a 93015246 c2085d208510aWaller, Robert James,d1939-10aSlow waltz in Cedar Bend /cRobert James Waller.0 aNew York :bWarner Books,cc1993. a197 cm. ;c20 cm. aLVLcAFkAF Waller bLB2p37000000015464u8400u3937 bMAINp32000000052023r9.51u8402u3938 bLB2p34000000004634r9.51u8404u393900808 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000200013624500440015626000440020030000360024465000130028065000230029370000220031694200220033895200430036095200420040395200430044595200420048822708LVL20010831144115.0930607s1993 nyua 00110 eng a93021622 a0312097751 a 93021622 c2086d2086 a641.8 Ro10aRobbins, Maria.10aCookies for Christmas /cMaria Robbins.0 aNew York :bSt, Martin's Press,cc1993. a132 p. :bill. ;c14 cm. ;dpa. 0aCookies. 0aChristmas cookery.10aPolushkin, Maria. aLVLcNFk641.8 Ro bMAINp32000000042054r3.96u8407u3940 bLB2p34000000001984r3.96u8409u3941 bMAINp31000000044529r3.96u8410u3942 bLB1p33000000016388r3.96u8412u394301177 2200361 450000100060000000300040000600500170001000800390002701000130006602000250007903500160010404000250012004300120014505000220015708200220017909000150020110000210021624500660023726000310030330000320033450000200036651000140038652001340040052100110053460000210054565000600056665000410062665000410066765000150070865000240072394200240074795200440077136746LVL19990320000000.0890203s1989 nyua 001 0aeng a89040054 a0670829390 :c$16.95 aflb01444805 aDLCcDLCdDLCdICrlF an-us---00aHV5132.bA53 198900220a362.29/23/092 c2087d20871 aAnderson, Louie.10aDear Dad :bletters from an adult child /cby Louie Anderson. aNew York :bViking,c1989. ax, 209 p. :bill. ;c21 cm. aIncludes index.0 aBooklist. aA collection of letters written by comedian Louie to his father, exploring the pain and guilt of living with an alcoholic parent.2 aAdult.10aAnderson, Louie. 0aAdult children of alcoholicsxBiography.zUnited States 0aComediansxBiography.zUnited States 7aAdult children of alcoholic parents. 7aComedians. 7aDomestic relations. aLVLcNFk362.29 AND bMAINp32000000027659r10.00u8413u394400459 2200169 4500010001300000020001500013082001000028090001500038100001800053245004100071260002900112300004100141500002000182650002100202942002200223952004400245 a90180220 a060055634400a792.8 c2088d20881 aHall, Fernau.14aThe beauty of ballet /cFernau Hall. aLondon :bHamlyn,c1989. a157 p. :bill. (some col.) ;c28 cm. aIncludes index. 0aBalletxHistory. aLVLcNFk792.8 Ha bMAINp32000000030202r14.98u8414u394500272 2200121 450000100060000000300040000600500170001000800410002709000150006810000260008324500200010994200210012957803LVL19990220000000.0950323s19uu 000 0 eng d c2089d20891 aFast, Howard,d1914-.14aThe immigrants. aLVLcAFkAF Fast01688 2200421 450000100060000000300040000600500170001000700100002700800410003702000150007803500160009303700280010909000150013709200140015224501680016626000600033430000560039450000500045050000470050050000710054750600310061851100660064952001220071552100140083753800160085165000190086770000420088670000190092870000200094770000210096770000220098894200230101095200430103395200600107695200430113695200440117995200430122322709LVL19990327000000.0vf cbahom931022s1987 cau100 g vleng d a0782000535 avid93000488 a1822bRepublic Pictures c2090d2090 aAV Secret04aThe Secret gardenh[videorecording] /Republic Pictures Home Video ; written for television by Blanche Hanalis ; produced by Steve Lanning ; directed by Alan Grint.0 aLos Angeles, CA :bRepublic Pictures Home Video,c1987. a1 videocassette (100 min.) :bsd., col. ;c1/2 in.. aBased on the book by Frances Hodgson Burnett.1 aClosed-captioned for the hearing impaired.1 aOriginally released as a Hallmark Hall of Fame television special. aFor private home use only.1 aGennie James, Barret Oliver, Jadrien Steele, Michael Hordern. aAn orphan girl and her invalid cousin bring new life to their home on the moors when they discover the secret garden.8 aRated PG. aVHS Stereo. 0aFeature films.11aBurnett, Frances Hodgson,d1849-1924.11aJames, Gennie.11aOliver, Barret.11aSteele, Jadrien.11aHordern, Michael. aLVLcAVkAV Secret bMAINp32000000070837r7.49u8416u3946 bLB1dLB2p36000000012438r11.23u8417u3947v2003-09-01 bLB2p34000000011999r11.23u8418u3948 bMAINp31000000044694r11.23u8419u3949 bLB1p33000000016212r11.23u8420u395000865 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200180012310000230014124500950016425000230025926000410028230000330032344000210035652001110037765000110048871000290049994200280052895200430055629728LVL19990323000000.0860303s1987 wiua j b 00010 eng a86005719 a155532066X a 86005719 c2091d2091 aJNF 598.41 Co1 aColdrey, Jennifer.14aThe swan on the lake /ctext by Jennifer Coldrey ; photographs by Oxford Scientific Films. aNorth American ed. aMilwaukee :bGareth Stevens,cc1987. a32 p. :bcol. ill. ;c25 cm. 0aAnimal habitats. aText and illustrations depict swans feeding, breeding, and defending themselves in their natural habitats. 1aSwans.20aOxford Scientific Films. aLVLcJNFkJNF 598.41 Co bMAINp32000000044871r5.95u8421u395101155 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000230013824501320016126000500029330000330034344000250037650000600040150400200046152001600048165100350064170000320067683000320070894200250074095200440076595200440080922710LVL19990327000000.0920226s1992 ctua j b 00110 eng a92009467 a156294200X a 92009467 c2092d2092 aJNF 937 Gu1 aGuittard, Charles.14aThe Romans :blife in the Empire /cby Charles Guittard ; illustrations by Annie-Claude Martin ; translated by Mary Kae LaRose. aBrookfield, Conn. :bMillbrook Press,cc1992. a64 p. :bcol. ill. ;c27 cm. 0aPeoples of the past. aTranslation of: Autour de la Mediterranee, les Romains. aIncludes index. aDiscusses the formation of the Roman Empire, the daily life of its inhabitants, and their accomplishments in the areas of art, music, writing, and science. 1aRomexSocial life and customs.11aMartin, Annie Claude,eill. 0aPeuples du passe.lEnglish. aLVLcJNFkJNF 937 Gu bMAINp32000000043921r14.90u8423u3952 bMAINp31000000045859r14.90u8424u395300718 2200229 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200190011210000250013124500490015626000440020530000280024994200260027795200420030395200420034595200420038795200590042929729LVL20011026112352.0950123c19891988nyu 00011 eng a0553052519 anpl95000163 c2093d2093 aAF Keller- man10aKellerman, Jonathan.14aThe butcher's theater /cJonathan Kellerman.0 aNew York :bBantam Books,c1989, c1988. a628 p. ;c18 cm. ;dpa. aLVLcAFkAF Kellerman bLB2p34000000003286r3.84u8425u3954 bLB2p37000000018281r3.90u8426u3955 bLB1p33000000024692r3.90u8427u3956 bLB1dLB1p33000000021633r3.84u8428u3957v2003-09-0100898 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500180009409000150011209200180012710000280014524500450017325000120021826000350023030000330026550000200029852002010031860000280051965000140054794200280056195200430058936748LVL19990320000000.0881125s1989 nyua j 00110 eng a88034637 a0385263791 a 88034637 /AC c2094d2094 aJNF 599.73 Le2 aLeslie-Melville, Betty.10aWalter Warthog /cBetty Leslie-Melville. a1st ed. aNew York :bDoubleday,cc1989. a46 p. :bcol. ill. ;c29 cm. aIncludes index. aDescribes how the author and her family established a friendship with a wart hog at their home outside of Nairobi and how the relationship continued for eight years, embracing the hog's offspring.11aLeslie-Melville, Betty. 1aWart hog. aLVLcJNFkJNF 599.73 Le bMAINp32000000035823r6.95u8429u395800340 2200133 450000100060000000300040000600500170001000800410002709000150006810000280008324500310011194200210014295200430016357805LVL19990220000000.0950324s19uu 000 0 eng d c2095d20951 aGrey, Zane,d1872-1939.14aThe last of the plainsmen. aLVLcWESkW Grey bMAINp31000000034758r5.40u8430u395900741 2200241 450000100060000000300040000600500170001000800390002702000150006603500140008109000150009509200140011010000180012424501030014225000160024526000360026130000210029765000460031870000260036494200230039095200430041395200430045622711LVL19990327000000.0940203s1994 nyua 00110 eng a0805023038 a 93025860 c2096d2096 a791.43 Se1 aSeger, Linda.10aFrom script to screen :bthe collaborative art of filmaking /cLinda Seger and Edward J. Whetmore. a1st Owl ed. aNew York :bHenry Holt,cc1994. a345 p. :c21 cm. 0aMotion pictures-Production and direction.10aWhetmore, Edward Jay. aLVLcNFk791.43 Se bMAINp32000000062754r8.67u8431u3960 bMAINp32000000044779r2.00u8432u396101176 2200313 450000100060000000300040000600500170001000700100002700800410003702000150007803500160009303700240010909000150013309200140014824501100016226000650027230000550033750600270039252001370041952100130055653800090056965000600057865000610063871000220069974000300072194200230075195200440077495200440081829730LVL20000911034003.0vf cbahom940628s1984 nyu077 g vleng d a0517555557 avid93001164 a555557bCrown Video c2097d2097 aAV 460 Li00aLiving Language SpanishcCrown Publishers, Inc. ; produced and directed by Lee Kraft.h[videorecording] / aNew York :bCrown Video,bDist. by Random House Videoc1984. a1 videocassette (77 min.) :bsd., col. ;c1/2 in.. aPrivate home use only. aSpanish language instruction for English speakers. Includes scenes at the airport, hotel, street, restaurants and department stores. aGeneral. aVHS. 0aSpanish languagexStudy and teachingxEnglish speakers. 0aSpanish languagexStudy and teachingxAudio-visual aids.21aCrown Publishers.01aSpanishh[videorecording] aLVLcAVkAV 460 Li bMAINp32000000048184r14.96u8433u3962 bMAINp31000000048795r14.96u8434u396301149 2200301 450000100060000000300040000600500170001000800410002701000160006803500160008409000150010009200150011524500840013026000410021430000430025544000280029850501200032652100150044653800160046165000220047770000610049970000460056070000860060670000440069294200250073695200430076195200430080436749LVL20000911201538.0930427s1992 ctu b 0 0vaeng d avid93000074 avid93000074 c2098d2098 aAVJ Doctor00aDoctor De Soto and other stories /c[compiled by] CC Studios.h[videorecording] aWeston, CT :bCC Home Video,cc1992. a1 videocassette ;bsd., col.,c1/2 in. 0aChildren's Circle ;v1.0 aDoctor De Soto / W. Steig -- Patrick / Q. Blake -- Curious George rides a bike / H. A. Rey -- The Hat / T. Ungerer. aNot rated. aVHS Format. 0aChildren's films.11aSteig, William,d1907-hVideorecording.tDoctor de Soto.11aBlake, QuentinhVideorecording.tPatrick. 1aRey, H. A.d1898-hVideorecording.q(Hans Augusto),tCurious George rides a bike.11aUngerer, TomhVideorecording.tThe hat. aLVLcAVJkAVJ Doctor bMAINp32000000038540r0.15u8435u3964 bLB1p36000000005554r14.95u8436u396500832 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000240013824500370016225000200019926000450021930000210026465000670028565000480035265000220040065100210042294200240044395200430046795200440051043768LVL19990316000000.0951113r19961995meu d 00011 eng a95047871 a078620608X a 95047871 c2099d2099 aLP Wheeler10aWheeler, Richard S.10aGoldfield /cRichard S. Wheeler. aLarge print ed.0 aThorndike, ME :bThorndike Press,c1996. a655 p. ;c23 cm. 0aGold mines and miningxHistoryxFiction.y20th centuryzNevada 0aFrontier and pioneer lifexFiction.zNevada 0aLarge type books. 0aNevadaxFiction. aLVLcLPkLP Wheeler bLB1p36000000006345r11.47u8438u3966 bMAINp31000000058956r11.47u8439u396701002 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000260013824500380016426000350020230000300023752001120026765000190037965000220039894200260042095200430044695200420048995200420053195200420057395200430061595200420065822712LVL19990327000000.0940319s1972 nyua j 00011 eng a72186355 a0027459004 a 72186355 c2100d2100 aE Hutchins10aHutchins, Pat,d1942-10aGood night, Owl! /cPat Hutchins.0 aNew York :bMacmillan,cc1972. a[32] p. :bill. ;c25 cm. aBecause all the other animals' noises keep him from sleeping, Owl watches for a chance to take his revenge. 1aOwlsxFiction. 1aAnimalsxFiction. aLVLcEASYkE Hutchins bMAINp32000000045668r8.23u8440u3968 bLB1p36000000003512r8.23u8441u3969 bLB2p34000000010360r8.23u8442u3970 bLB2p34000000010359r2.75u8443u3971 bMAINp31000000047270r8.23u8444u3972 bLB1p33000000018189r8.23u8445u397300983 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000240013524500330015926000390019230000260023165000530025765000500031065000480036065000380040894200220044695200420046895200430051095200430055395200420059695200430063836750LVL20010828112708.0930806s1983 nyu 00011 eng a83002984 a0449212858 a 83002984 c2101d2101 aM Perry10aPerry, Anne,d1938-10aRutland Place /cAnne Perry.0 aNew York :bFawcett Crest,cc1983. a217 p. ;c18 cm.dpa. 0aPitt, Charlotte (Fictitious character)xFiction. 0aPitt, Thomas (Fictitious character)xFiction. 0aWomen detectivesxFiction.zEnglandzLondon 0aPolicexFiction.zEnglandzLondon aLVLcMYSkM Perry bLB2p37000000001637r3.97u8446u3974 bMAINp32000000041221r4.95u8447u3975 bMAINp32000000045612r3.47u8448u3976 bLB2p34000000006608r3.47u8449u3977 bMAINp31000000047209r3.47u8450u397800851 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000160013624500530015225000200020526000460022530000210027165000590029265000480035165000420039965000220044194200220046395200440048595200440052943769LVL19990316000000.0931202r19941962meu d 00011 eng a93047340 a0786201118 a 93047340 c2102d2102 aLP Kesey1 aKesey, Ken.10aOne flew over the cuckoo's nest /cby Ken Kesey. aLarge print ed. aThorndike, Me. :bThorndike Press,c1994. a528 p. ;c22 cm. 0aPsychiatric hospital patientsxFiction.zUnited States 0aPsychiatric nursesxFiction.zUnited States 0aMentally illxFiction.zUnited States 0aLarge type books. aLVLcLPkLP Kesey bMAINp32000000046077r16.46u8451u3979 bMAINp31000000047612r16.46u8452u398000886 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000220013824501020016026000370026230000290029944000300032850000600035850400650041865000260048394200240050995200440053395200430057722713LVL19990327000000.0950126s1995 nyua b 00110 eng a95005529 a0393313352 a 95005529 c2103d2103 a796.932 Ca10aCazeneuve, Brian.10aCross-country skiing :ba complete guide /cby Brian Cazeneuve ; illustrations by Ron Hildebrand.0 aNew York :bW.W. Norton,cc1995. a192 p. :bill. ;c22 cm. 2aA Trailside series guide. aA companion volume to the television series, Trailside. aIncludes bibliographical references: p. (179-187) and index. 0aCross-country skiing. aLVLcNFk796.932 Ca bMAINp32000000061189r10.77u8453u3981 bLB1p33000000024291r10.77u8455u398200748 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000250013624501250016126000550028630000360034150000200037765000270039770000160042494200220044095200440046229732LVL19990323000000.0870302s1987 vaua 00110 eng a87006593 a0932620736 a 87006593 c2104d2104 a643.7 Le10aLester, Kent,d1953-10aComplete guide to remodeling your home :ba step-by-step manual for homeowners and investors /cKent Lester & Una Lamie.0 aWhite Hall, Va. :bBetterway Publications,cc1987. a272 p. :bill. ;c28 cm. ;dpa. aIncludes index. 0aDwellingsxRemodeling.10aLamie, Una. aLVLcNFk643.7 Le bMAINp32000000062680r18.95u8456u398301038 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000210013524500930015626000510024930000500030050400510035060000320040165000310043365000450046465000480050970000270055794200220058495200440060695200430065095200430069336751LVL20000323000000.0930125s1993 nyuaf b 00110beng a93009370 a0814754848 a 93009370 c2105d2105 aB Truth10aMabee, Carleton.10aSojourner Truth--slave, prophet, legend /cby Carleton Mabee, with Susan Mabee Newhouse.0 aNew York :bNew York University Press,cc1993. axvi, 293, [16] p. of plates :bill. ;c24 cm. aIncludes bibliographical references and index.10aTruth, Sojourner,dd. 1883. 0aAfro-AmericansxBiography. 0aAbolitionistsxBiography.zUnited States 0aSocial reformersxBiography.zUnited States10aNewhouse, Susan Mabee. aLVLcBIOkB Truth bMAINp32000000042297r20.65u8457u3984 bLB2p37000000009531r20.65u8458u3985 bLB1p33000000016507r20.65u8459u398600793 2200205 4500010001300000020001500013090001500028245008800043260004200131300003900173500002000212650007000232650003900302651005700341700002300398700003400421942002400455952004400479952006400523 a93024539 a0132036215 c2106d210604aThe D-Day encyclopedia /cedited by David G. Chandler and James Lawton Collins, Jr. aNew York :bSimon & Schuster,cc1994. ali, 665 p. :bill.; maps ;c29 cm. aIncludes index. 0aWorld War, 1939-1945xEncyclopedias.xCampaignszNormandyzFrance 0aOperation OverlordxEncyclopedias. 0aNormandy (France)xEncyclopedias.xHistory, Military10aChandler, David G.10aCollins, James Lawton,d1917- aLVLcNFk940.54 D-D bMAINp32000000046991r50.15u8460u3987 bMAINdMAINp31000000048182r50.15u327997u3988v2005-03-1000999 2200289 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200120011210000200012424500370014426000380018130000270021950000290024652001520027565000350042765000260046265000240048894200230051295200440053595200430057995200440062295200430066622714LVL19990327000000.0931014s1993 nyua j 00011 eng a0060211342 anpl94001008 c2107d2107 aE Joyce10aJoyce, William.10aSanta calls /cby William Joyce. 0aNew York :bHarperCollins,c1993. a42 p. :bill.,c29 cm. a"A Laura Geringer book." aArt Aimesworth receives a mysterious summons from Santa Claus and he shares a Christmas adventure with his sister that brings them closer together. 1aBrothers and sistersxFiction. 1aSanta ClausxFiction. 1aChristmasxFiction. aLVLcEASYkE Joyce bMAINp32000000048255r21.46u8462u3989 bLB2p34000000011339r16.10u8463u3990 bMAINp31000000049721r21.46u8464u3991 bLB1p33000000019562r21.46u8465u399201072 2200277 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200140011210000200012624500580014626000360020430000360024052002900027665000190056665000220058565000130060770000230062094200230064395200440066695200420071095200420075229733LVL19990323000000.0861027s1986 nyua j 00011 eng a0380708272 anpl93000174 c2108d2108 aJ Jacques10aJacques, Brian.10aRedwall /cBrian Jacques ; illustrated by Gary Chalk.0 aNew York :bAvon Books,cc1986. a351 p. :bill. ;c18 cm. ;dpa. aWhen the peaceful life of ancient Redwall Abbey is shattered by the arrival of the evil rat Cluny and his villainous hordes, Matthias, a young mouse, determines to find the legendary sword of Martin the Warrior which, he is convinced, will help Redwall's inhabitants destroy the enemy. 1aMicexFiction. 1aAnimalsxFiction. 1aFantasy.11aChalk, Gary,eill. aLVLcJFkJ Jacques bMAINp32000000035220r10.00u8466u3993 bLB1p36000000004638r2.89u8467u3994 bLB2p34000000007225r2.89u8468u399500849 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000320013724500450016926000520021430000210026661000580028765000530034565100300039894200240042895200430045295200440049595200440053936752LVL20020417144256.0951013s1996 mou 00011 eng a95046000 a0836210425 a 95046000 c2109d2109 aM Kienzle10aKienzle, William X.,d1928-10aRequiem for Moses /cWilliam X. Kienzle.0 aKansas City, MO. :bAndrews and McMeel,cc1996. a272 p. ;c24 cm.20aCatholic ChurchxClergyxFiction.zMichiganzDetroit. 0aKoesler, Robert (Fictitious character)xFiction. 0aDetroit (Mich.)xFiction. aLVLcMYSkM Kienzle bLB2p37000000011776r11.77u8469u3996 bMAINp32000000067824r11.77u8470u3997 bMAINp31000000059508r11.77u8471u399801080 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000220013724500790015926000450023830000290028352001500031265000200046265100280048270000260051094200250053695200430056195200440060495200430064895200440069195200430073543771LVL19990316000000.0940608s1993 nyua j 00011 eng a92040868 a0688052878 a 92040868 c2110d2110 aE Hurwitz10aHurwitz, Johanna.10aNew shoes for Sylvia /cby Johanna Hurwitz ; illustrated by Jerry Pinkney.0 aNew York :bMorrow Junior Books,cc1993. a[32] p. :bill.,c29 cm. aA young girl receives a pair of beautiful red shoes from her Tia Rosita and finds different uses for them until she grows enough for them to fit. 1aShoesxFiction. 1aLatin AmericaxFiction.11aPinkney, Jerry,eill. aLVLcEASYkE Hurwitz bMAINp32000000047774r8.63u8473u3999 bMAINp32000000048238r13.44u8474u4000 bLB2p34000000010449r13.44u8475u4001 bMAINp31000000049121r13.44u8476u4002 bLB1p33000000019537r13.44u8477u400300380 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000260009624500470012294200230016995200420019250790LVL20020919141255.0930426s19xx xxu 00010 eng d a76054308 c2111d21111 aTerkel, Studs,d1912-10aTalking to myself :ba memoir of my times. aLVLcBIOkB Terkel bLB1p32000000003465r4.69u8478u400400372 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000210009624500420011794200240015995200430018357809LVL19990220000000.0950324s19uu 000 0 eng d a80010506 c2112d2112 aParmet, Herbert.10aJack :bstruggles of John F. Kennedy. aLVLcBIOkB Kennedy bMAINp31000000021317r8.97u8479u400500712 2200241 450000100060000000300040000600500170001000800410002703500160006809000150008409200130009924500580011226000340017030000410020444000320024550000220027750400260029961000110032565000290033670000220036594200220038795200610040929734LVL19990323000000.0941212s1969 nyuae bc 00100 eng d anpl94002622 c2113d2113 a708.9 Eg00aEgyptian Museum, Cairo /c[texts by Sergio Donadoni]. aNew York :bNewsweek,cc1969. a169 p. :bcol. ill., plans ;c30 cm. 0aGreat museums of the world. aIncludes indexes. aBibliography: p. 168.20aal-Mat 0aArt, EgyptianxCatalogs.10aDonadoni, Sergio. aLVLcNFk708.9 Eg bMAINdMAINp32000000054385r6.95u8481u4006v2003-09-0100611 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000290013724500480016626000440021430000260025894200230028495200430030795200430035036753LVL20010802113525.0950710s1995 nyu 00011 eng a95034745 a0312135629 a 95034745 c2114d2114 aAF Veryan10aVeryan, Patricia,d1923-14aThe mandarin of Mayfair /cPatricia Veryan.0 aNew York :bSt. Martin's Press,cc1995. avii, 340 p. ;c22 cm. aLVLcAFkAF Veryan bLB2p37000000008654r14.13u8482u4007 bLB1p33000000023873r14.13u8484u400800949 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000290014024500770016925000120024626000390025830000330029750000200033052000850035065000180043565000120045370000280046594200270049395200430052095200420056395200420060543772LVL19990316000000.0920623s1993 nyua j 00110 eng a92023949 a0823409996 a 92023949 c2115d2115 aJNF 599.5 Pa10aPatent, Dorothy Hinshaw.10aKiller whales /cDorothy Hinshaw Patent ; photographs by John K.B. Ford. a1st ed.0 aNew York :bHoliday House,cc1993. a31 p. :bcol. ill. ;c24 cm. aIncludes index. aDescribes the physical characteristics, behavior, and habitats of killer whales. 1aKiller whale. 1aWhales.11aFord, John K. B.,eill. aLVLcJNFkJNF 599.5 Pa bMAINp32000000048548r9.41u8485u4009 bLB2p34000000008557r9.41u8486u4010 bLB1p33000000019721r9.41u8487u401101591 2200445 450000100060000000300040000600500170001000800390002701000170006602000270008302000150011003500160012504000200014104100110016105000210017208200200019309000150021310000200022824501310024825000120037926000540039130000330044550501020047851000320058051000480061251000430066052100340070352100090073760000460074660000460079260000320083865000350087065000330090565000260093865000190096470000310098370000660101494200210108095200440110150791LVL19991206000000.0860828s1988 nyua j 000 1 eng a86021045 /AC a0688062024 (lib. bdg.) a0688062016 aflb01692402 aDLCcDLCdICrlF1 aengenm0 aPR1872.bC6 19880 219a821/.2aFic c2116d21161 aCohen, Barbara.10aCanterbury tales /cGeoffrey Chaucer ; selected, translated, and adapted by Barbara Cohen ; illustrated by Trina Schart Hyman. a1st ed. aNew York :bLothrop, Lee & Shepard Books,cc1988. a87 p. :bcol. ill. ;c29 cm.0 aThe nun's priest's tale -- The pardoner's tale -- The wife of Bath's tale -- The franklin's tale.0 aChildren's Catalog (Wilson)0 aJunior High School Library Catalog (Wilson)0 aBooklist Editors' (Reviewers') Choice.0 a5.2bFollett Library Book Co.2 a5-8.10aChaucer, Geoffrey,dd. 1400xAdaptations.11aChaucer, Geoffrey,dd. 1400xAdaptations.17aChaucer, Geoffrey, d. 1400. 0aMiddle AgesxJuvenile fiction. 0aChildren's stories, English. 1aMiddle AgesxFiction. 1aShort stories.11aHyman, Trina Schart,eill.11aChaucer, Geoffrey,dd. 1400..kSelections.tCanterbury tales. aLVLcJFkJ Cohen bMAINp32000000023674r16.16u8488u401200872 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000300013624500910016626000620025730000320031950000200035150400300037165000130040165000410041465000180045565100240047370000200049794200220051795200430053922716LVL19990327000000.0790418c19791978nyua b 00110 eng a79012901 a0140052666 a 79012901 c2117d2117 a393.3 Ha2 aHamilton-Paterson, James.10aMummies, death and life in ancient Egypt /cJames Hamilton-Paterson and Carol Andrews. aHarmondsworth ;aNew York :bPenguin Books,c1979, c1978. a224 p. :bill. ;c24 cm. ;. aIncludes index. aBibliography: p. 216-218. 0aMummies. 0aFuneral rites and ceremonieszEgypt. 0aTombszEgypt. 0aEgyptxAntiquities.10aAndrews, Carol. aLVLcNFk393.3 Ha bMAINp32000000050067r5.95u8489u401301264 2200349 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200150011210000280012724500590015526000390021430000400025352000710029365000250036465000270038994200260041695200420044295200420048495200430052695200430056995200420061295200490065495200420070395200420074595200430078795200420083095200420087229735LVL20020715134326.0941222s1988 maua j 00011 eng a0395584108 anpl95000236 c2118d2118 aE Marshall10aMarshall, James,d1942-10aGeorge and Martha 'round and 'round /cJames Marshall.0 aBoston :bHoughton Mifflin,c1988. a46 p. :bcol. ill. ;c21 cm. ;dpa. aFive episodes chronicle the ups and downs of a special friendship. 1aFriendshipxFiction. 1aHippopotamusxFiction. aLVLcEASYkE Marshall bLB2p37000000022250r4.95u8490u4014 bLB2p37000000022251r4.95u8491u4015 bMAINp32000000055618r3.31u8492u4016 bMAINp32000000128378r4.95u8493u4017 bLB1p36000000018846r4.95u8494u4018 bMAINdMAINp32000000002799r4.95u8495u4019 bLB2p34000000010616r3.31u8496u4020 bLB2p34000000028359r4.95u8497u4021 bMAINp31000000053265r3.31u8498u4022 bLB1p33000000021729r3.31u8500u4023 bLB1p33000000051911r4.95u8501u402401180 2200361 450000100060000000300040000600500170001000800390002701000170006602000150008303500160009804000200011405000220013408200240015609000150018010000270019524500910022225000120031326000520032530000350037751000280041251000200044052001170046052100340057752100090061165000170062065000220063765000170065965000220067670000490069894200270074795200440077450792LVL20020911095741.0860326s1986 mx a j 000 0 eng a86007629 /AC a0152642277 aflb01370904 aDLCcDLCdICrlF0 aPZ8.C285bPu 19860 219a398.2/1/0944aE c2119d21191 aCauley, Lorinda Bryan.10aPuss in boots /cby Charles Perrault ; retold and illustrated by Lorinda Bryan Cauley. a1st ed. aSan Diego :bHarcourt Brace Jovanovich,cc1986. a[32] p. :bcol. ill. ;c29 cm.0 aSchool Library Journal.0 aKirkus Reviews. aA retelling of the French fairy tale in which a clever cat wins his master a fortune and the hand of a princess.0 a3.5bFollett Library Book Co.2 aK-3. 1aFairy tales. 1aFolklorexFrance. 7aFairy tales. 7aFolklorezFrance.11aPerrault, Charles,d1628-1703.tChat bottÂe. aLVLcJNFkJNF 398.2 Ca bMAINp32000000016980r10.00u8502u402500414 2200157 450000100060000000300040000600500170001000800410002702000150006809000150008310000210009824500230011994200270014295200440016995200430021357811LVL19990220000000.0950323s19uu 000 0 eng d a0590410962 c2120d2120 aMacdonald, Gold.14aThe little island. aLVLcEASYkE Macdonald bMAINp31000000002883r11.99u8503u4026 bMAINp31000000009339r9.89u8504u402700942 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200180012310000250014124501130016626000420027930000400032152001680036165000210052970000250055094200270057595200430060295200430064529736LVL19990323000000.0920519s1994 nyua j 00011 eng a92019676 a0671787101 a 92019676 c2121d2121 aE Borde- wich10aBordewich, Fergus M.10aPeach blossom spring :badapted from a chinese tale /cby Fergus M. Bordewich ; illustrated by Yang Ming-Yi.0 aNew York :bGreen Tiger Press,c1994. a[38] p. :bcol. ill. ;c21 x 26 cm. aWhen he accidentally discovers a beautiful hidden valley inhabited by contented people, a fisherman is asked to return but only if he tells no one where he's been. 1aFolklorezChina.11aYang, Ming-Yi,bill. aLVLcEASYkE Bordewich bMAINp32000000063063r8.63u8505u4028 bMAINp31000000058654r8.63u8506u402900879 2200277 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200130011210000230012524500860014825000290023426000380026330000380030150000640033965000210040365000290042465000220045365000240047570000350049994200240053495200430055843774LVL19990316000000.0940928s1992 nyua j 00011 eng a0440831105 anpl94002021 c2122d2122 aE George1 aGeorge, William T.10aWinter at Long Pond /cby William T. George ; pictures by Lindsay Barrett George. aTrumpet Club special ed. aNew York :bTrumpet Club,cc1992. a[31] p. :bcol. ill. ;c28 cm. ;. aOriginally published by the title "Christmas at Long Pond". 1aWinterxFiction. 1aFather and sonxFiction. 1aAnimalsxFiction. 1aChristmasxFiction.11aGeorge, Lindsay Barrett,eill. aLVLcEASYkE George bMAINp32000000052083r5.95u8508u403000649 2200241 450000100060000000300040000600500170001000800390002701000190006602000240008503500200010904000130012905000320014208200170017409000150019110000180020624500340022425000210025826000410027930000210032094200230034195200430036450793LVL19990313000000.0760512r1976 nyu 000 1 eng a76017064 //r83 a0025575805 :c$6.95 a 76017064 //r83 aDLCcDLC0 aPZ4.H944aPR6015.U565bLan70 219a823/.914 c2123d21231 aHunter, Alan.10aLanded Gently /cAlan Hunter. a1st American ed. aNew York :bMacmillan,c1976, c1957. a184 p. ;c22 cm. aLVLcMYSkM Hunter bMAINp32000000001925r4.66u8509u403100894 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000180014024500910015826000460024930000340029550400640032965000470039365000420044074000360048294200220051895200440054095200440058422718LVL20010804191707.0940127s1994 txua b 00110 eng a94005493 a1565301277 a 94005493 c2124d2124 aREF 745.5 We1 aWest, Janice.10aMarketing your arts & crafts :bcreative ways to profit from your work /cJanice West. aFort Worth, Tex. :bSummit Group,cc1994. axvi, 270 p. :bill. ;c21 cm. aIncludes bibliographical references (p. 249-254) and index. 0aDecorative artsxMarketing.zUnited States 0aHandicraftxMarketing.zUnited States02aMarketing your arts and crafts. aLVLcNFk745.5 We bMAINp32000000053776r15.47u8510u4032 bMAINp31000000052164r15.47u8511u403300851 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000190013624500610015526000450021630000350026152001090029665000240040565000220042965000220045194200240047395200440049795200440054136756LVL19990320000000.0940604s1990 nyua j 00011 eng a89027268 a0688085776 a 89027268 c2125d2125 aE Taylor1 aTaylor, Scott.10aDinosaur James :bstory and pictures /cby Scott Taylor. aNew York :bMorrow Junior Books,cc1990. a[32] p. :bcol. ill. ;c24 cm. aPeople doubt the value of James's dinosaur obsession, until it helps him deal with the playground bully. 1aDinosaursxFiction. 1aBulliesxFiction. 1aStories in rhyme. aLVLcEASYkE Taylor bMAINp32000000047606r11.99u8512u4034 bMAINp31000000048712r11.99u8513u403501342 2200409 450000100060000000300040000600500170001000800390002701000130006602000250007902000350010403500160013904000200015505000230017508200140019809000150021210000200022724501150024725000120036226000380037430000290041251000140044151000200045552001360047552100340061152100090064565000270065465000230068165000270070465000110073165000130074291000340075591000540078991000180084394200280086195200430088950794LVL19990730000000.0741125s1974 nyua 000 0 eng a74002608 a0060241977 :c$4.95. a0060241985blib. bdg. :c$4.79 aflb00363802 aDLCcDLCdICrlF0 aTT900.C4bM48 1974 a745.59/41 c2126d21261 aMeyer, Carolyn.10aChristmas crafts :bthings to make the 24 days before Christmas /cby Carolyn Meyer ; pictures by Anita Lobel. a1st ed. aNew York :bHarper & Row,c[1974] a136 p. :bill. ;c24 cm.0 aBooklist.0 aKirkus Reviews. aInstructions for making twenty-four Christmas gifts, decorations, and foods and information about the origins of Christmas customs.0 a5.2bFollett Library Book Co.2 a3-6. 0aChristmas decorations. 0aChristmas cookery. 7aChristmas decorations. 7aGifts. 7aCookery. a1997 November --bAPL --g000 a1997 November --bCPL --gdecorative & minor arts a1997 November aLVLcJNFkJNF 745.59 Me bMAINp35000000001607r4.69u8515u403600889 2200265 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200150012510000200014024500740016026000410023430000350027550000300031052001100034065000290045070000320047994200260051195200430053795200430058029738LVL19990323000000.0931222s1993 nyua j 00011 eng d a93077115 a0062050397 a 93077115 c2127d2127 aE McMullan10aMcMullan, Kate.10aNutcracker Noel /cstory by Kate McMullan ; pictures by Jim McMullan.0 a[New York] :bHarperCollins,cc1993. a[32] p. :bcol. ill. ;c28 cm. a"Michael di Capua books." aA young girl who has dreamed of dancing in a real ballet learns to be content with the role she is given. 1aBallet dancingxFiction.11aMcMullan, Jim,d1936-eill. aLVLcEASYkE McMullan bMAINp32000000059638r8.63u8516u4037 bMAINp32000000059639r8.63u8517u403801014 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200160012310000200013924501230015926000380028230000300032044000240035052002130037465000200058770000180060770000550062594200250068095200430070536757LVL20000911231735.0940706s1989 nyua j 00011 eng a88034079 a0394838475 a 88034079 c2128d2128 aYA McMullan1 aMcMullan, Kate.14aThe phantom of the opera /cby Gaston Leroux ; adapted by Kate McMullan ; cover and text illustrations by Paul Jennis. aNew York :bRandom House,cc1989. a96 p. :bill. :c20 cm.;. 2aA bullseye chiller. aA disfigured musical genius who lives beneath the Paris Opera House falls in love with a beautiful soprano and, in his desperation to have his love returned, embarks on some terrifying means towards that end. 1aHorror stories.10aJennis, Paul.11aLeroux, Gaston,d1868-1927.tFantÃome de l'OpÂera. aLVLcYAkYA McMullan bMAINp31000000049944r2.99u8519u403900803 2200265 450000100060000000300040000600500170001000800390002702000150006603500140008109000150009509200110011011000200012124500340014126000640017530000410023950000200028065000200030071000330032074000360035394200200038995200430040995200420045295200430049443776LVL19990316000000.0870605s1988 nyua 00110 eng a0895776634 a 87016356 c2129d2129 a640 Re10aReaders Digest.10aHousehold hints & handy tips.0 aPleasantville, N.Y. :bReader's Digest Association,cc1988. a480 p. :bcol. ill. ;c23 cm. ;dpa. aIncludes index. 0aHome economics.20aReader's Digest Association.01aHousehold hints and handy tips. aLVLcNFk640 Re bMAINp32000000056065r8.82u8520u4040 bLB2p34000000003045r8.82u8521u4041 bMAINp31000000053474r8.82u8522u404200915 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200180012310000280014124500520016926000620022130000210028352001800030465000320048465000210051665000220053765100190055994200270057895200440060536758LVL19990320000000.0940808c19891986cau jd 00011 eng a89006538 a1557361304 a 89006538 c2130d2130 aLP J Danziger1 aDanziger, Paula,d1944-10aThis place has no atmosphere /cPaula Danziger. aSanta Barbara, Calif. :bCornerstone Books,c1989, c1986. a188 p. ;c24 cm. aFifteen-year-old Aurora loves her life on Earth in the twenty-first century, until she learns that her family is moving to the colony on the moon (a place with no atmosphere). 1aMoving, HouseholdxFiction. 1aScience fiction. 1aLarge type books. 1aMoonxFiction. aLVLcJFkJ LP Danziger bMAINp32000000049483r10.00u8524u404300738 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012324500710013826000510020930000260026050000280028650000200031465000210033470000170035594200240037295200440039695200440044043777LVL19990316000000.0940816s1995 nyu 00100 eng a94032423 a0231081227 a 94032423 c2131d2131 a811.008 Co04aThe Columbia anthology of American poetry /cedited by Jay Parini.0 aNew York :bColumbia University Press,cc1995. axxi, 757 p. ;c24 cm. a"A Columbia anthology." aIncludes index. 0aAmerican poetry.10aParini, Jay. aLVLcNFk811.008 Co bMAINp32000000028355r17.97u8525u4044 bMAINp31000000054373r17.97u8526u404501133 2200325 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200130012524501590013826000420029730000360033950000510037565000170042665000140044370000240045771000310048171000280051274000330054094200220057395200430059595200420063895200420068095200430072295200420076522721LVL19990327000000.0950623s1995 nyua b 00100 eng d a94096755 a0345388453 a 94096755 c2132d2132 a613.7 Tw00a20-minute yoga workouts /cAmerican Yoga Assiation with Alice Christensen, Founder, The American Yoga Association; produced by the Philip Lief Group, Inc.0 aNew York :bBallantine Books,cc1995. a143 p. :bill. ;c28 cm. ;dpa. aIncludes bibliographical references and index. 0aYoga, Hatha. 0aExercise.10aChristensen, Alice.20aAmerican Yoga Association.20aPhilip Lief Group, Inc.01aTwenty minute yoga workouts. aLVLcNFk613.7 Tw bMAINp32000000058072r7.64u8528u4046 bLB1p36000000000354r7.64u8529u4047 bLB2p34000000005783r7.64u8530u4048 bMAINp31000000054865r7.64u8531u4049 bLB1p33000000022694r7.64u8532u405001022 2200265 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200130011210000250012524500370015026000490018730000280023652002160026465000330048065100510051394200220056495200430058695200430062995200420067295200420071429740LVL20011123110802.0960528r19961994nyu j 00011 eng a0440219787 anpl96000975 c2133d2133 aYA Matas10aMatas, Carol,d1949-14aThe burning time /cCarol Matas.0 aNew York :bLaurel-Leaf Books,c1996, c1994. a113 p. ;c18 cm. ;dpa. aAfter her father's sudden death, fourteen-year-old Rose Rives finds that sixteenth-century France is a dangerous place for women, when some greedy, vindictive men charge her mother and others with being witches. 1aWitchcraftxFiction.zFrance 1aFrancexHistoryxFiction.yHenry IV, 1589-1610 aLVLcYAkYA Matas bMAINp32000000064783r2.35u8533u4051 bMAINp35000000001126r2.25u8534u4052 bLB2p37000000018341r2.35u8535u4053 bLB1p33000000025740r2.25u8536u405400746 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012324500520013826000440019030000310023444000270026550000200029265000200031265000210033270000260035374000340037994200240041395200430043736759LVL19990320000000.0950505s1995 nyu 00100 eng a95019647 a0486285537 a 95019647 c2134d2134 a821.008 On00a100 best-loved poems /cedited by Philip Smith.0 aNew York :bDover Publications,cc1995. ax, 101 p. ;c23 cm. ;dpa. 0aDover thrift editions. aIncludes index. 0aEnglish poetry. 0aAmerican poetry.10aSmith, Philip,d1967-01aOne hundred best-loved poems. aLVLcNFk821.008 On bMAINp32000000062617r1.00u8537u405500915 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000320013624501260016826000440029430000360033850001170037450400510049165000360054270000190057894200220059795200420061943778LVL20010813091704.0950106s1995 orua b 00110 eng a95002522 a0939165252 a 95002522 c2135d2135 a324.6 St10aStevens, Doris,d1892-1963.10aJailed for freedom :bAmerican women win the vote /cDoris Stevens ; edited by Carol O'Hare ; introduction by Edith Mayo.0 aTroutdale, OR :bNewSage Press,cc1995. a220 p. :bill. ;c23 cm. ;dpa. a"Edited from the original edition, 'Jailed for Freedom,' by Doris Stevens, first published in 1920"--T.p. verso. aIncludes bibliographical references and index. 0aWomenxSuffragezUnited States.10aO'Hare, Carol. aLVLcNFk324.6 St bLB1p33000000023086r8.03u8539u405600578 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007904000130009405000310010705100280013808200140016609000150018010000250019524500340022026000370025430000210029150000130031294200230032557816LVL19990220000000.0770511s1977 mau 00011 eng a77023343 a0316289590 aDLCcDLC0 aPZ4.F788aPR6056.O85bDan3 aPR6056.O85bD3cCopy 2. a823/.9/14 c2136d2136 0aFowles, John,d1926-10aDaniel Martin /cJohn Fowles.0 aBoston :bLittle, Brown,cc1977. a629 p. ;c24 cm. aA novel. aLVLcAFkAF Fowles02175 2200493 450000100060000000300040000600500170001000700100002700800410003702000150007803500160009309000150010909200150012424501750013926000830031430000550039744000300045250000760048250000530055850801700061151100690078152001610085052100130101153800100102453800150103465000290104965000530107865000220113165000530115365100310120665100310123770000190126870000210128770000210130870000200132970000710134971000240142073000370144494200250148195200440150695200440155095200430159495200440163722722LVL20000911204413.0vfucbahom950918s1989 ilu116 g vleng d a0780014790 anav95000187 c2137d2137 aAVJ Caddie00aCaddie Woodlawncby Carol Ryrie Brink ; produced by Richard John David ; directed by Giles Walker ; teleplay by Joe Wiesenfeld and Richard John David.h[videorecording] /0 aChicago, IL :bWonderWorks Family Movie,bdist. by Public Media Video,cp1989. a1 videocassette (116 min.) :bsd., col. ;c1/2 in. 0aWonderWorks family video. aBased on the Newbery award winning book published in 1935 by Macmillan. aOriginally released as a motion picture in 1989. aDirector of photography, Gregory Andracke ; production design, Arnold Whyler ; editors, Jill Nemiro, David Saxon ; music, Al Kasha, Joel Hirschhorn, Archie Jordan. .1 aEmily Schulman, James Stephens, Season Hubley, Parker Stevenson. aDramatization of some of the stories told by the Brink's grandmother of her life during the pioneer days in the American West in the mid-nineteenth century. aGeneral. aNTSC. aVHS Hi-fi. 0aPioneer childrenxDrama. 0aFrontier and pioneer lifexDrama.zUnited States 0aChildren's films. 7aFrontier and pioneer lifexDrama.zUnited States 0aWisconsinxHistoryxDrama. 7aWisconsinxHistoryxDrama.1 aWalker, Giles.1 aSchulman, Emily.1 aStephens, James.1 aHubley, Season.1 aBrink, Carol Ryrie,d1895-1981.hVideorecording.tCaddie Woodlawn.21aPublic Media Video.01aWonderWorks (Television program) aLVLcAVJkAVJ Caddie bMAINp32000000059367r22.92u8541u4057 bMAINp33000000023211r22.92u8542u4058 bLB2p34000000007186r22.92u8543u4059 bMAINp31000000055858r22.92u8544u406000737 2200241 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009910000440011424500340015826000360019230000280022844000220025650000260027894200210030495200430032595200420036895200430041095200420045329741LVL20020228132709.0960802s1994 nyu j 00011 eng d a0590477439 anpl96001455 c2138d213810aStine, R. L.d1943-q(Robert Lawrence),10aGo eat worms! /cR. L. Stine.0 aNew York :bScholastic,cc1994. a119 p. ;c20 cm. ;dpa. 0aGoosebumps ;v21. a"An Apple Paperback." aLVLcJFkJ Stine bMAINp32000000000845r3.99u8545u4061 bLB1p36000000012679r3.99u8546u4062 bMAINp31000000079158r3.50u8547u4063 bLB1p33000000050116r3.25u8548u406400877 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000230014024500680016326000430023130000280027444000250030252000980032760000250042565000140045065000310046470000330049594200270052895200440055536760LVL19990320000000.0730330s1973 nyua j 00010beng a72083787 a0690459343 a 72083787 c2139d2139 aJNF 796.4 Ka1 aKaufman, Mervyn D.10aJesse Owens /cby Mervyn Kaufman; illustrated by Larry Johnson. aNew York :bThomas Y. Crowell,cc1973. a33 p. :bill. ;c24 cm. 0aCrowell biographies. aAn easy-to-read biography of the black athlete who won four gold medals in the 1936 Olympics.11aOwens, Jesse,d1913- 1aAthletes. 1aAfro-AmericansxBiography.11aJohnson, Larry,d1949-eill. aLVLcJNFkJNF 796.4 Ka bMAINp32000000052766r12.95u8549u406500694 2200253 450000100060000000300040000600500170001000800390002701000130006602000280007903900180010704000130012505000260013808200160016409000150018010000240019524500400021925000200025926000470027930000210032665000220034794200280036995200430039757817LVL20000104000000.0850826s1985 meu d 00011 eng a85020844 a0896216705 (alk. paper)0 a2b3c3d3e3 aDLCcDLC1 aPS3501.U25bH57 1985b0 219a813/.54 c2140d214010aAuchincloss, Louis.10aHonorable men /cLouis Auchincloss. aLarge print ed.0 aThorndike, Me. :bThorndike Press,cc1985. a382 p. ;c22 cm. 0aLarge type books. aLVLcLPkLP Auchincloss bLB2p31000000083898r12.72u8551u406600543 2200193 450000100060000000300040000600500170001000800390002703500160006609000150008209200150009710000200011224500430013226000420017530000210021744000420023894200250028095200440030522723LVL19990327000000.0860324s1986 nyu 00011 eng anpl96000014 c2141d2141 aSF Anthony10aAnthony, Piers.10aWielding a red sword /cPiers Anthony.0 aNew York :bBallantine Books,cc1986. a276 p. ;c22 cm. 0aIncarnations of immortality ;vbk. 4. aLVLcSCIkSF Anthony bMAINp32000000061958r10.00u8552u406701227 2200337 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000430013624500950017926000540027430000280032844000400035652001320039665000220052865000220055065000240057265000190059665000350061570000250065080000660067594200220074195200420076395200420080595200420084729742LVL20030206130013.0961008s1996 ilua j 00011 eng a96030587 a0807565288 a 96030587 c2142d2142 aJ Warner10aWarner, Gertrude Chandler,d1890-1979.14aThe pet shop mystery /ccreated by Gertrude Chandler Warner ; illustrated by Charles Tang.0 aMorton Grove, Ill. :bA. Whitman and Co.,cc1996. a138 p. :bill.,c20 cm.10aThe Boxcar children mysteries ;v7. aWhile helping out part time in a pet shop, the Alden children discover an employee who is smuggling and selling exotic animals. 1aOrphansxFiction. 1aAnimalsxFiction. 1aCriminalsxFiction. 1aPetsxFiction. 1aMystery and detective stories.11aTang, Charles,eill.10aWarner, Gertrude Chandler,d1890-tBoxcar children mysteries. aLVLcJFkJ Warner bLB2p37000000002533r2.33u8553u4068 bLB1p36000000002140r2.33u8554u4069 bLB2p34000000014451r2.23u8555u407001226 2200325 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010810000180012324500480014125000310018926000440022030000280026449000300029252002110032265000530053365000270058665000230061365100260063680000450066294200230070795200420073095200430077295200430081595200420085843780LVL20021220144828.0950808s1996 nyu 00011 eng a95035907 a068980329X a 95035907 c2143d214310aWatson, Jude.10aImpetuous :bMattie's story /cJude Watson. a1st Aladdin Paperbacks ed.0 aNew York :bAladdin Paperbacks,cc1996. a178 p. ;c18 cm. ;dpa.1 aBrides of Wildcat County. aSeventeen-year-old Mattie leaves her sister Ivy in Last Chance, California, and disguises herself as a boy in order to get a job with the Pony Express, finding adventure, facing danger, and falling in love. 1aFrontier and pioneer lifexFiction.zWest (U.S.) 1aPony expressxFiction. 1aSex rolexFiction. 1aWest (U.S.)xFiction.10aWatson, Jude.tBrides of Wildcat County. aLVLcYAkYA Watson bLB1p36000000002393r2.29u8558u4071 bMAINp35000000003428r4.60u8559u4072 bMAINp35000000001162r2.29u8560u4073 bLB1p33000000024524r2.29u8561u407400374 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000180009824500460011694200230016295200430018550799LVL19990313000000.0941128s19xx xxu 00010 eng d a0373255853 c2144d214410aHarris, Lisa.10aUndercurrent /bHarlequin Temptation 485. aLVLcAFkPB Harris bMAINp32000000053278r2.99u8562u407500777 2200265 450000100060000000300040000600500170001000800390002701000130006602000340007902000270011304000130014005000240015308200160017709000150019310000270020824500440023525000230027926000460030230000350034844000390038365000220042294200230044495200440046757818LVL19990220000000.0860310c19861978mau d 00011 eng a86004807 a081614074X (pbk. : lg. print) a081614060X (lg. print) aDLCcDLC1 aPS3562.U26bH6 19860 219a813/.54 c2145d214510aLudlum, Robert,d1927-14aThe Holcroft covenant /cRobert Ludlum. a[Large print ed.].0 aBoston, Mass. :bG.K. Hall,c1986, c1978. a668 p. (large print) ;c25 cm. 0aG.K. Hall large print book series. 0aLarge type books. aLVLcLPkLP Ludlum bMAINp31000000010946r16.96u8563u407600891 2200241 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200130011210000220012524500390014726000540018630000280024052002140026865000210048265000300050365000330053394200220056695200610058822724LVL20020801102145.0960523r19951993nyu j 00011 eng a0679867260 anpl96000959 c2146d2146 aYA Grant10aGrant, Cynthia D.10aUncle Vampire /cCynthia D. Grant.0 aNew York :bRandom House Sprinters,c1995, c1993. a173 p. ;c18 cm. ;dpa. aSixteen-year-old Caroline and her twin sister Honey know for sure that their Uncle Toddy is a vampire who comes at night to drink their blood but fear of the consequences makes them keep their terrible secret. 1aIncestxFiction. 1aFamily problemsxFiction. 1aEmotional problemsxFiction. aLVLcYAkYA Grant bMAINdMAINp31000000060058r2.94u8564u4077v2003-09-0100659 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000250013724000390016224500760020126000490027730000210032670000160034794200230036395200430038643781LVL20021031114336.0960226s1996 nyu 00011 eng a96033811 a0374238685 a 96033811 c2147d2147 aAF Hansen10aHansen, Erik Fosnes.10aSalme ved reisens slutt.lEnglish.10aPsalm at journey's end /cErik Fosnes Hansen ; translated by Joan Tate.0 aNew York :bFarrar, Straus & Giroux,cc1996. a371 p. ;c24 cm.10aTate, Joan. aLVLcAFkAF Hansen bLB1p33000000026436r14.40u8566u407800914 2200289 450000100060000000300040000600500170001000800390002701000220006603500160008804000200010405000200012408200140014409000150015810000160017324500700018926000360025930000330029552001090032852100340043752100090047165000340048065000220051465000220053694200230055895200430058150800LVL19990313000000.0700312s1969 nyua j 000 1 eng a71086940 /AC/r832 aflb00124102 aDLCcDLCdICrlF0 aPZ8.3.G276bIac0 219a[Fic] c2148d21481 aSeuss,cDr.10aI can lick 30 tigers today! :band other stories ,cby Dr. Seuss. aNew York,bRandom Housec[1969] a[65] p.bcol. illus.c29 cm. aThree stories in verse: "I Can Lick 30 Tigers Today," "King Looie Katz," and "The Glunk That Got Thunk."0 a3.3bFollett Library Book Co.2 aK-3. 0aChildren's stories, American. 1aStories in rhyme. 7aStories in rhyme. aLVLcEASYkE Seuss bMAINp32000000011259r4.77u8567u407900776 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903900180009404000130011205000270012508200160015209000150016810000290018324500370021225000200024926000540026930000210032350000790034465000220042394200220044595200430046757819LVL20030624154051.0810316r19811942meu d 00011 eng a81004809 a08962127770 a2b3c3d3e3 aDLCcDLC1 aPS3513.L68158bR5 19810 219a813/.54 c2149d214910aShort, Luke,d1908-1975.10aRide the man down /cLuke Short. aLarge print ed.0 aThorndike, Me. :bThorndike Press,c[1981] c1942. a343 p. ;c22 cm. aReprint. Originally published: Garden City, N.Y. : Doubleday, Doran, 1942. 0aLarge type books. aLVLcLPkLP Short bMAINp31000000011337r9.95u8568u408000904 2200265 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200130011410000210012724500580014826000530020630000420025950400650030165000400036665000220040665000450042865000560047394200220052995200440055195200430059522725LVL20030524114228.0960731s1995 caua b 00110 eng d a1565920309 anpl96001426 c2150d2150 a617.5 St10aStigliani, Joan.14aThe computer user's survival guide /cJoan Stigliani.0 aSebastopol, CA :bO'Reilly & Associates,cc1995. axvii, 276 p. :bill. ;c24 cm. ;dpa. aIncludes bibliographical references: p. (263-267) and index. 0aComputer terminalsxHealth aspects. 0aOveruse injuries. 0aVideo display terminalsxHealth aspects. 0aOffice practicexAutomationxPsychological aspects. aLVLcNFk617.5 St bMAINp32000000065867r13.17u8569u4081 bLB1p33000000026333r13.17u8570u408200756 2200241 450000100060000000300040000600500170001000800390002701000200006604000180008605000170010408200100012109000150013110000280014624500430017425000140021726000360023130000400026750400940030760000460040194200240044795200430047157820LVL19990220000000.0721219s1953 mauac b 00000beng a52012621 //r902 aDLCcDLCdDLC00aE457.25.bR300a920.7 c2151d215110aRandall, Ruth (Painter)00aMary Lincoln; biography of a marriage. a[1st ed.]0 aBoston,bLittle, Brownc[c1953] axiv, 555 p.billus., ports.c23 cm. aBibliographical references included in "Notes" (p. [445]-516) Bibliography: p. [517]-529.10aLincoln, Mary Todd,d1818-1882xMarriage. aLVLcBIOkB Lincoln bMAINp31000000023965r3.84u8571u408300573 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000320013824500390017025000200020926000370022930000210026694200240028795200440031122726LVL20030321150522.0840727s1984 maub d 00011 eng a84015875 a0816137374 a 84015875 c2152d2152 aLP L'Amour10aL'Amour, Louis,d1908-1988.14aThe walking drum /cLouis L'Amour. aLarge print ed.0 aBoston, MA :bG.K. Hall,cc1984. a588 p. ;c24 cm. aLVLcAFkAF L'Amour bMAINp31000000037238r10.00u8572u408400624 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000280013624500320016425000120019626000380020830000550024650000270030194200220032895200440035029745LVL20020729093134.0831017s1984 nyuabf 00011 eng a83050862 a0394530497 a 83050862 c2153d2153 aAF Diehl10aDiehl, William.,d1924-10aHooligans /cWilliam Diehl. a1st ed.0 aNew York :bVillard Books,c1984. a428 p., [1] leaf of plates :bill., maps ;c25 cm. aMaps on lining papers. aLVLcAFkAF Diehl bMAINp32000000068081r15.95u8573u408501212 2200325 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000360013424500880017026000720025830000290033044000440035950000390040350000600044252001210050265000260062365000230064970000240067294200200069695200430071695200420075995200430080195200420084436764LVL19990320000000.0940216r1994 nyua j 00011 eng a94005858 a0679436405 a 94005858 c2154d2154 aJ Wyss10aWyss, Johann David,d1743-1818.14aThe Swiss family Robinson /cJohann David Wyss ; with illustrations by Louis Rhead.0 aNew York :bAlbert A. Knopf :bDistributed by Random House,cc1994. a286 p. :bill. ;c21 cm. 0aEveryman's library children's classics. a"First published 1812"--verso t.p. a"First included in Everyman's Library 1910"--verso t.p. aRelates the fortunes of a shipwrecked family as they adapt to life on an island with abundant animal and plant life. 1aFamily lifexFiction. 1aSurvivalxFiction.11aRhead, Louis,eill. aLVLcJFkJ Wyss bMAINp32000000058324r8.23u8574u4086 bLB2p34000000006421r8.23u8575u4087 bMAINp31000000055054r8.23u8576u4088 bLB1p33000000022958r8.23u8577u408900339 2200133 450000100060000000300040000600500170001000800410002709000150006810000250008324500380010894200220014695200370016843784LVL19990316000000.0920504s19xx xxu 00010 eng d c2155d2155 aClark, Mary Higgins.10aWeep no more, my lady :ba novel. aLVLcLPkLP Clark bMAINp32000000016824u8579u409000443 2200145 4500020001500000090001500015245005400030260004200084300002900126440001400155700001900169942002100188952004400209952004400253 a0894341251 c2156d2156 aRobin Hood /ccover illustration by Anita Nelson. aChicago, IL :bJ.G. Ferguson,cc1992. a278 p. :bill. ;c22 cm. aChildren. aNelson, Anita, aLVLcJFkJ Robin bMAINp32000000040389r15.00u8580u4091 bMAINp31000000043694r15.00u8581u409200732 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009405000250010808200130013309000150014609200160016110000170017724500320019425000200022626000380024650000580028450000310034274000270037394200230040095200430042357822LVL20021009120859.0871117c19881953enk d 00011 eng a87033944 a1555045448 a 870339441 aPS3511.L697bN5 19880 a813/.529 c2157d2157 aL.P. Floren10aFloren, Lee.10aNight riders /cLee Floren. aLarge print ed.0 aBath, England :bChivers Press ;. aPreviously published as: Raiders of White Pine. 1953. a"Atlantic western"--Cover.00aRaiders of White Pine. aLVLcLPkLP Floren bMAINp31000000035650r8.95u8582u409301040 2200301 450000100060000000300040000600500170001000800390002701000210006603500160008704000200010305000170012308200080014009000150014810000260016324500370018926000420022630000400026844000220030850000250033052001990035552100340055452100090058860000480059760000260064594200300067195200370070129747LVL19990323000000.0850821s1968 nyua j 000 0beng a68026549 /AC/r85 aflb00050708 aDLCcDLCdICrlF0 aND699.C5bR3 a760 c2158d21581 aRaboff, Ernest Lloyd.10aMarc Chagall,cby Ernest Raboff. aGarden City, N.Y.,bDoubleday,c1968. a[31] p.billus. (part col.)c29 cm. 0aArt for children. aA Gemini-Smith book. aA brief biography of this twentieth-century artist and an explanation of his philosophy of art are followed by analyses of twelve of his paintings. Includes color reproductions of the paintings.0 a6.5bFollett Library Book Co.2 a3-6.10aChagall, Marc,d1887-xJuvenile literature.11aChagall, Marc,d1887- aLVLcJNFkJNF 760.092 RAB bMAINp32000000015843u8583u409401353 2200373 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200170012524500840014225000120022626000370023830000330027552001160030865000290042465000400045370000180049370000170051194200270052895200420055595200430059795200430064095200420068395200420072595200430076795200430081095200420085395200420089595200420093736766LVL20000911182717.0930515s1989 nyua j 00010 eng d a89001097 a0525444580 a 89001097 c2159d2159 aJNF 398.2 Di04aThe Diane Goode book of American folk tales & songs /ccollected by Ann Durell. a1st ed.0 aNew York :bE.P. Dutton,cc1989. a63 p. :bcol. ill. ;c28 cm. aPresents a collection of folk tales and songs from a variety of regions and ethnic groups in the United States. 1aFolklorezUnited States. 1aFolk songs, EnglishzUnited States.10aGoode, Diane.10aDurell, Ann. aLVLcJNFkJNF 398.2 Di bLB2p37000000001623r9.41u8584u4095 bMAINp32000000059837r9.41u8585u4096 bMAINp32000000067172r4.12u8586u4097 bLB2p34000000007976r8.97u8588u4098 bLB2p34000000014447r4.12u8589u4099 bMAINp31000000042949r8.97u8590u4100 bMAINp31000000056422r9.41u8591u4101 bLB1p33000000015429r8.97u8592u4102 bLB1p33000000023685r9.41u8593u4103 bLB1p33000000026789r4.12u8594u410400301 2200121 450000100060000000300040000600500170001000800410002709000150006824500370008394200160012095200430013643785LVL19991222000000.0921111s19xx xxu 00010 eng d c2160d216010aCOBBLESTONE 1984 SEPT. V.5 No.9. aLVLcPERkJ bMAINp32000000022111r2.25u8595u410500970 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000170013424500640015125000120021526000500022730000350027752001750031265000270048765000270051494200220054195200430056395200430060695200430064950804LVL20000911163959.0851119c19861980nyua j 00011 eng a85029224 a0027081400 a 85029224 c2161d2161 aE Bang1 aBang, Molly.14aThe grey lady and the strawberry snatcher /cby Molly Bang. a1st ed. aNew York :bFour Winds Press,c[1986], c1980. a[48] p. :bcol. ill. ;c21 cm. aThe strawberry snatcher tries to wrest the strawberries from the grey lady but as he follows her through shops and woods he discovers some delicious blackberries instead. 1aStories without words. 1aStrawberriesxFiction. aLVLcEASYkE Bang bMAINp32000000036103r9.27u8596u4106 bLB1p33000000040180r16.00u8597u4107 bLB1p33000000040181r16.00u8598u410800748 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000200013624500440015625000120020026000540021230000470026650000200031360000270033365000670036094200230042795200440045057823LVL19990220000000.0901218s1991 nyuaf 00110aeng a90056394 a006018308X a 90056394 c2162d2162 aB Rogers10aRogers, Ginger.10aGinger :bmy story /cby Ginger Rogers. a1st ed.0 aNew York, NY :bHarperCollins Publishers,cc1991. a450 p. [16] p. of plates :bill. ;c24 cm. aIncludes index.10aRogers, Ginger,d1911- 0aMotion picture actors and actressesxBiography.zUnited States aLVLcBIOkB Rogers bMAINp31000000037245r13.20u8599u410900358 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000230009824500230012194200250014495200430016943786LVL19990316000000.0921015s19xx xxu 00010 eng d a0881846139 c2163d21631 aFreeling, Nicolas.10aLove in Amsterdam. aLVLcMYSkM Freeling bMAINp32000000028211r2.29u8602u411000846 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000190013624500750015525000120023026000380024230000330028044000240031352000970033765000230043465000190045770000240047694200240050095200440052450805LVL19990313000000.0810327s1981 nyua j 00011 eng a81047111 a0060246588 a 81047111 c2164d2164 aE Parish1 aParish, Peggy.10aNo more monsters for me! /cBy Peggy Parish ; pictures by Marc Simont. a1st ed. aNew York :bHarperTrophy,cc1981. a64 p. :bcol. ill. ;c23 cm. 3aAn I can read book. aMinneapolis Simpkin is not allowed to have a pet, so she finds the most unusual replacement. 1aMonstersxFiction. 1aPetsxFiction.11aSimont, Marc,eill. aLVLcEASYkE Parish bMAINp32000000037203r11.69u8603u411100899 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000290013524500850016426000420024930000280029152001620031965000350048170000230051694200210053995200420056095200430060257824LVL19990220000000.0791115s1980 nyua j 00011 eng a79006340 a0590075624 a 79006340 c2165d2165 aJ Sobol10aSobol, Donald J.,d1924-10aEncyclopedia Brown carries on /cby Donald J. Sobol ; illustrated by Ib Ohlsson.0 aNew York :bFour Winds Press,cc1980. a72 p. :bill. ;c22 cm. aOnce again America's 10-year-old Sherlock Holmes in sneakers is called upon to help his police-chief father and the neighborhood children solve 10 mysteries. 1aMystery and detective stories.11aOhlsson, Ib,eill. aLVLcJFkJ Sobol bLB2p34000000007614r4.17u8605u4112 bMAINp31000000005715r4.17u8606u411300734 2200217 4500010001300000020001500013090001500028100002600043245010500069260005000174300003400224440002500258651002800283651001400311651001400325651001800339700002800357942002500385952004400410952006200454 a94043816 a079103402X c2166d2166 0aAylesworth, Thomas G.10aMid-Atlantic :bDelaware, Maryland, Pennsylvania /cby Thomas G. Aylesworth, Virginia L. Aylesworth.0 aNew York :bChelsea House Publishers,cc1996. a94 p. :bill. ; map ;c21 cm. 0aDiscovering America. 1aMiddle Atlantic States. 1aDelaware. 1aMaryland. 1aPennsylvania.10aAylesworth, Virginia L. aLVLcJNFkJNF 974 Ay bMAINp32000000064912r18.95u8607u4114 bLB2dLB2p37000000027306r18.95u320509u4115v2004-11-3000352 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000170009824500260011594200220014195200430016343787LVL19990316000000.0941224s19uu 000 0 eng d a0553157302 c2167d21671 aBecker, Eve.10aThirteen means magic. aLVLcJFkJ Becker bMAINp32000000026141r2.24u8609u411601107 2200313 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200150011410000270012924500780015625000170023426001110025130000660036250000220042850400300045065000160048065000140049694200240051095200430053495200440057795200430062195200430066495200430070795200430075050806LVL19991103000000.0930309r19921982enka 00110 eng d a0713723386 aonv90004149 c2168d2168 a639.376 Ma10aMattison, Christopher.14aThe care of reptiles and amphibians in captivity /cChristopher Mattison. aRev. 3rd ed.0 aPoole, Dorset :aNew York, N.Y. :bBlanford Press ;bDistributed in the U.S. by Sterling Pub. Co.,cc1992. a317 p. [16] p. of plates :bill. (some col.) ;c22 cm. ;dpa. aIncludes indexes. aBibliography: p. 303-306. 0aAmphibians. 0aReptiles. aLVLcNFk639.376 Ma bLB2p37000000004211r10.59u8610u4117 bMAINp32000000051966r10.59u8611u4118 bLB1p36000000000486r10.77u8612u4119 bLB1p36000000011915r10.77u8613u4120 bLB2p34000000001879r10.77u8614u4121 bLB1p33000000015013r14.96u8615u412200752 2200181 4500010001300000020001500013090001500028100002200043245005200065260004800117300002100165520021900186650001300405942002300418952004200441952004300483952004400526 a75033306 a0374378487 c2169d216910aBabbitt, Natalie.10aTuck everlasting :ba novel /cNatalie Babbitt.0 aNew York :bFarrar, Straus, Giroux,cc1975. a139 p. ;c21 cm. aThe Tuck family is confronted with an agonizing situation when they discover that a ten-year-old girl and a malicious stranger now share their secret about a spring whose water prevents one from ever growing older. 1aFantasy. aLVLcJFkJ Babbitt bLB2p37000000014631r3.80u8616u4123 bMAINp31000000004206r5.15u8617u4124 bMAINp31000000074125r15.00u8618u412500702 2200253 450000100060000000300040000600500170001000800390002701000130006602000250007903500140010403900180011804000130013605000250014908200170017409000150019110000270020624500690023326000430030230000210034550000240036694200210039095200370041122731LVL19990327000000.0840604s1984 nyu 000 1 eng a84011744 a0312292058 :c$11.95 a 840117440 a2b3c3d3e3 aDLCcDLC0 aPR6057.A728bF5 19840 219a823/.914 c2170d21701 aGash, Jonathan,d1933-10aFirefly gadroon :ba Lovejoy novel of suspense /cJonathan Gash. aNew York :bSt. Martin's Press,c1984. a208 p. ;c22 cm. a"A Joan Kahn book." aLVLcMYSkM Gash bMAINp32000000024573u8619u412600433 2200157 450000100060000000300040000600500170001000800410002701000130006809000150008124500460009691000490014291000180019194200220020995200440023129750LVL20000219000000.0930423s19xx xxu 00010 eng d a77083767 c2171d217110aHow to play nearly everything from bones. a1997 December --bAPL --ggeneral principles a1997 December aLVLcNFk781.9 Ho bMAINp32000000031722r10.00u8620u412701000 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000240013824500780016226000410024030000320028150400510031352001440036465000150050894200250052395200440054895200440059295200430063695200430067936769LVL20010122140348.0960103s1996 nyua j b 00110 eng a96000836 a067993930X a 96000836 c2172d2172 aJNF 291 Os10aOsborne, Mary Pope.10aOne world, many religions :bthe ways we worship /cby Mary Pope Osborne.0 aNew York :bAlfred A. Knopf,cc1996. aix, 86 p. :bill. ;c29 cm. aIncludes bibliographical references and index. aAn illustrated introduction to comparative religion, discussing Judaism, Christianity, Islam, Hinduism, Buddhism, Confucianism, and Taoism. 1aReligions. aLVLcJNFkJNF 291 Os bMAINp32000000067418r24.29u8621u4128 bMAINp32000000082534r24.29u8622u4129 bLB2p34000000014516r24.29u8623u4130 bLB1p33000000026894r24.29u8624u413100356 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000230009824500200012194200250014195200440016643788LVL19990316000000.0921019s19xx xxu 00010 eng d a089296412X c2173d21731 aFreeling, Nicolas.10aThose in peril. aLVLcMYSkM Freeling bMAINp32000000036485r10.89u8625u413201318 2200349 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012324500270013525000380016226000410020030000280024150001050026950000210037450000560039550501180045165000310056970000380060070000520063870000440069094200220073495200430075695200420079995200420084195200430088395200420092650807LVL19990924000000.0880725s1987 nyu 00001 eng a87091126 a0345384385 a 87091126 c2174d2174 aSF Star04aThe Star Wars trilogy. aA special anniversary omnibus ed.0 aNew York :bBallantine Books,c1987. a471 p. ;c18 cm. ;dpa. aOn t.p. the registered trademark symbol "TM" is subscript following "back" and "Jedi" in the titles. a"Del Rey books." a"First Ballantine books trade edition"--T.p. verso.0 aStar wars / by George Lucas -- The Empire strikes back / by Donald F. Glut -- Return of the Jedi / by James Kahn. 0aScience fiction, American.12aLucas, Georgef1987.tStar wars .12aGlut, Donald Ff1987.tThe empire strikes back.12aKahn, Jamesf1987.tReturn of the Jedi. aLVLcSCIkSF Star bMAINp32000000039706r3.47u8626u4133 bLB1p36000000005307r3.47u8627u4134 bLB2p34000000006056r3.47u8628u4135 bMAINp31000000081814r3.47u8629u4136 bLB1p33000000015476r3.47u8630u413700852 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000170013424500710015126000420022230000350026452001930029965000290049265000240052194200220054595200430056757826LVL20020418144039.0961203r19961990maua j 00011 eng a95067224 a1564026000 a 95067224 c2175d2175 aE West10aWest, Colin.10aGo tell it to the toucan /cwritten and illustrated by Colin West.0 aCambridge :bCandlewick Press,c1996. a[26] p. :bcol. ill. ;c23 cm. aAnimals all over the jungle look for the toucan so he can tell the animals to come to a party for elephant's birthday, and while they search for that bird, they spread the word themselves. 1aJungle animalsxFiction. 1aBirthdaysxFiction. aLVLcEASYkE West bLB1p33000000027180r13.95u8632u413800976 2200313 450000100060000000300040000600500170001000800390002701000170006602000250008303500180010804000180012604300120014405000210015608200140017709000150019110000180020624500290022425000180025326000430027130000460031444000270036050400600038752000940044765100350054165100140057694200280059095200440061822733LVL19990327000000.0891113s1990 nyuab j b 001 0 eng a89025464 /AC a1854352962 :c$19.95 a 89025464 /AC aDLCcDLCdDLC aa-my---00aDS592.bM85 199000220a959.5 c2176d21761 aMunan, Heidi.10aMalaysia /cHeidi Munan. aReference ed. aNew York :bMarshall Cavendish,c1990. a128 p. :bill. (some col.), map ;c24 cm. 0aCultures of the world. aIncludes bibliographical references (p. 127) and index. aIntroduces the geography, history, religious beliefs, government, and people of Malaysia. 0aMalaysiaxJuvenile literature. 1aMalaysia. aLVLcJNFkJNF 959.5 MUN bMAINp32000000028465r19.95u8634u413900348 2200133 450000100060000000300040000600500170001000800410002709000150006810000420008324500230012594200230014895200430017136771LVL20020911143933.0920804s19xx xxu 00010 eng d c2177d21771 aChurchill, Winston,cSir,d1874-1965.10aTheir Finest Hour. aLVLcNFk940.53 Ch bMAINp32000000012643r8.50u8635u414000692 2200241 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200110011410000160012524500720014126000370021330000300025065000210028065000260030170000160032794200220034395200430036595200420040843790LVL19990316000000.0920310s1983 wiua j 00011 eng d a0824980484 aonv90002287 c2178d2178 aE Baer10aBaer, Jane.14aThe Easter bunny gang /cstory & illustrations by Jane & Dale Baer.0 aMilwaukee, WI :bIdeals,cc1983. a[29] p. :bill. ;c29 cm. 1aEasterxFiction. 1aEaster eggsxFiction.10aBaer, Dale. aLVLcEASYkE Baer bMAINp32000000032819r2.49u8636u4141 bLB2p34000000009698r2.49u8637u414200762 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000210013624500620015725000120021926000370023130000330026850000290030150000200033060000210035065000590037194200220043095200440045250809LVL19990313000000.0950314s1995 maua 00110aeng a95012988 a0821220713 a 95012988 c2179d2179 a709.2 Ri10aRinggold, Faith.10aWe flew over the bridge :bthe memoirs of Faith Ringgold. a1st ed.0 aBoston :bLittle, Brown,cc1995. axv, 288 p. :bill. ;c24 cm. a"A Bulfinch Press book." aIncludes index.10aRinggold, Faith. 0aAfro-American women artistsxBiography.zUnited States aLVLcNFk709.2 Ri bMAINp32000000060327r17.67u8638u414300665 2200217 450000100060000000300040000600500170001000800410002701000130006803500140008109000150009509200150011010000210012524501340014626000440028030000290032465000350035370000160038870000190040494200240042357828LVL19990220000000.0930902s1958 nyua 00011 eng d a58013291 a 58013291 c2180d2180 aAF Carroll1 aCarroll, Gordon.14aThe Post reader of Civil War stories /cedited by Gordon Carroll; with an introduction by E.B. Long; illustrated by Ray Houlihan. aGarden City, N.Y. :bDoubleday,cc1958. a331 p. :bill. ;c21 cm. 0aCivil War, 1861-1865xFiction.10aLong, E. B.11aHoulihan, Ray. aLVLcAFkAF Carroll01189 2200313 450000100060000000300040000600500170001000700100002700800410003703500160007803700200009409000150011409200120012924501750014126000530031630000550036950000470042450600310047151100290050252001270053152100330065853800150069165000190070665000220072570000180074774000450076594200220081095200430083250810LVL20000911201823.0vf cbahom870917p19871983miu044 b vleng d avid93000670 a6885bPlayhouse c2181d2181 aAVJ Mr.00aMr. Wizard's worldbair and water wizardry /cMTV Networks ; produced and written by Alyce Myatt ; coproduced by Fern Field ; directed by Dan Parrish.h[videorecording] : aLivonia, Mich. :bPlayhouse Video,c1987, c1983. a1 videocassette (44 min.) :bsd., col. ;c1/2 in.. aClosed-captioned for the hearing impaired. aFor private home use only.2 aDon Herbert (Mr. Wizard) aMr. Wizard joins his young friends in experiments involving air, bubbles, and water, using common materials found at home. aElementary through jr. high. aVHS Hi-fi. 0aScience films. 0aChildren's films.11aHerbert, Don.01aAir and water wizardryh[videorecording] aLVLcAVJkAVJ Mr. bMAINp32000000020728r0.16u8641u414400825 2200265 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200110012524500730013626000480020930000280025750000890028550000420037465000170041665000240043371000190045771000190047694200200049595200440051522735LVL19990327000000.0930719s1994 paua 00000 eng d a93085535 a1561383937 a 93085535 c2182d2182 a743 Wa00aWays of drawing hands :ba guide to expanding your visual awareness.0 aPhiladelphia, Pa. :bRunning Press,cc1994. a64 p. :bill. ;c17 cm. a"Produced, edited, and designed by Inklink, Greenwich, London, England"--T.p. verso. a"The Ways of drawing series"--Jacket. 0aHand in art. 0aDrawingxTechnique.20aRunning Press.20aInklink (Firm) aLVLcNFk743 Wa bMAINp32000000060392r12.95u8642u414501264 2200277 4500090001500000245009600015260006100111300005500172511012400227520013700351538004500488650004500533650001900578700002200597700003000619700002000649700002700669700003800696710002400734710003200758942002100790952004400811952004400855952004400899952004300943 c2183d218300aKing LearcGranada Television of England ; directed by Michael Elliott.h[videorecording] /0 aW. Long Branch, NJ :bKultur International Films,c1984. a1 videocassette (158 min.) :bsd., col. ;c1/2 in.1 aLaurence Olivier, Colin Blakely, Anna Calder-Marshall, John Hurt, Jeremy Kemp, Robert Lang, Robert Lindsay, Leo McKern. aAward-winning production of the classic Shakespeare play in which an old king prematurely divides his kingdom among his 3 daughters. aVHS Hi-fi Dolby stereo, mono compatible. 0aLear, King (Legendary character)xDrama. 0aFeature films.11aElliott, Michael.11aOlivier, Laurence,d1907-11aBlakely, Colin.11aCalder-Marshall, Anna.11aShakespeare, William,d1564-1616.21aGranada Television.21aKultur International Films. aLVLcAVkAV King bMAINp32000000092834r24.95u8643u4146 bMAINp32000000124256r10.00u8644u4147 bMAINp31000000030484r13.62u8645u4148 bLB1p33000000036833r24.95u8646u414900352 2200133 450000100060000000300040000600500170001000800410002701000130006809000150008124500560009694200230015295200430017536774LVL19990320000000.0930421s19xx xxu 00010 eng d a81043060 c2184d218410aGhosts :ba treasury of chilling tales old and new. aLVLcAFkAF Ghosts bMAINp32000000025714r7.64u8647u415000752 2200253 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200170011410000190013124500300015026000490018030000280022944000270025750000590028460000350034365000220037871000270040094200270042795200440045457831LVL19990220000000.0951228s1994 nyua j 00010beng d a1569241783 anpl95001940 c2185d2185 aJNF 759.4 Do10aDoeser, Linda.10aPissarro /cLinda Doeser.0 aNew York, NY :bShooting Star Press,cc1994. a79 p. :bill. ;c21 cm. 4aThe life and works of. aA compilation of works from the Bridgeman Art Library.11aPissarro, Camille,d1830-1903. 1aPainterszFrance.20aBridgeman Art Library. aLVLcJNFkJNF 759.4 Do bMAINp31000000057945r14.95u8648u415100818 2200229 4500010001900000020001500019082001300034090001500047100002600062245005300088250001200141260004000153300002600193520014500219650001600364650004000380650004000420651003000460651003000490942002400520952004400544 a80007703 //r86 a0394507932 a920/.073 c2186d21861 aTerkel, Studs,d1912-10aAmerican dreams, lost and found /cStuds Terkel. a1st ed. aNew York :bPantheon Books,cc1980. axxv, 470 p. ;c25 cm. aPresents 100 interviews with a cross section of American people, both famous and non-famous, who discuss their personal lives and ambitions. 0aInterviews. 0aNational characteristics, American. 0aNational characteristics, American. 0aUnited StatesxBiography. 0aUnited StatesxBiography. aLVLcNFk920.073 Te bMAINp32000000031544r10.00u8649u415200562 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000230013824500400016125000120020126000440021330000210025760000410027894200250031929756LVL20020118100324.0831107s1984 nyu 00010 eng a83020766 a0385191650 a 83020766 c2187d2187 aW Estleman10aEstleman, Loren D.10aThis old Bill /cLoren D. Estleman. a1st ed.0 aGarden City, N.Y. :bDoubleday,cc1984. a203 p. ;c22 cm.00aBill,cBuffalo,d1846-1917xFiction. aLVLcWESkW Estleman01143 2200349 450000100060000000300040000600500170001000800390002701000200006602000250008603500160011104000200012705000250014708200160017209000150018810000280020324500500023125000120028126000300029330000250032351000140034852001310036252100170049360000280051065000370053865000240057565100460059965100370064594200250068295200430070795200430075043794LVL20001004133616.0820510s1982 nyu 00011 eng a82047810 //r892 a0394524063 :c$16.95 aflb01138602 aDLCcDLCdICrlF0 aPS3552.R228bM5 19820 219a813/.54 c2188d218810aBradley, Marion Zimmer.14aThe mists of Avalon /cMarion Zimmer Bradley. a1st ed.0 aNew York :bKnopf,c1982. axi, 876 p. ;c25 cm.0 aBooklist. aA re-creation of the Arthurian legend following the clash between Christianity and paganism that led to the demise of Camelot.2 aYoung Adult.00aArthur,cKingxFiction. 0aArthurian romancesxAdaptations. 7aArthurian romances. 0aGreat BritainxHistoryxFiction.yTo 1066 7aGreat BritainxHistoryxFiction. aLVLcSCIkSF Bradley bLB2p37000000013339r16.95u8651u4153 bMAINp31000000012603r9.83u8652u415400690 2200241 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200130011410000210012724500620014826000350021030000330024550000200027865000210029865000190031994200220033895200440036095200440040450813LVL19990313000000.0940513s1993 nyua 00110deng d a0831763078 anpl94000641 c2189d2189 a784.5 Ma1 aMarschall, Rick.10aNew country :btoday's brightest stars /cRick Marschall. aNew York :bSmithmark,cc1993. a96 p. :bcol. ill. ;c33 cm. aIncludes index. 0aCountry singers. 0aCountry music. aLVLcNFk784.5 Ma bMAINp32000000047072r17.95u8653u4155 bMAINp31000000048302r17.95u8654u415600331 2200133 450000100060000000300040000600500170001000800410002709000150006810000210008324500240010494200260012895200430015457832LVL19990220000000.0950324s19uu 000 0 eng d c2190d2190 aSchreiber, W. G.12aA bullet or a rope. aLVLcAFkAF Schreiber bMAINp31000000030751r2.89u8655u415701151 2200325 450000100060000000300040000600500170001000800390002701000130006602000220007902000150010103500160011604000200013205000210015208200160017309000150018910000200020424500890022426000630031330000330037650000200040950400300042952001680045952100170062765000330064465000390067794200240071695200430074095200420078329757LVL20000912084129.0860626s1986 ncua b s00110 eng a86050125 a0807841579 (pbk.) a0807817112 aflb00127908 aDLCcDLCdICrlF0 aTT185.bU53 19860 219a684/.08 c2191d219110aUnderhill, Roy.14aThe woodwright's workbook /cRoy Underhill ; [original drawings by Kimberly Wagner].0 aChapel Hill :bUniversity of North Carolina Press,cc1986. avi, 248 p. :bill. ;c29 cm. aIncludes index. aBibliography: p. 245-246. aFeatures step-by-step instructions for a selection of projects from shows aired for the most part during the 1986-87 year on the PBS series, "The Woodwright Shop."2 aYoung Adult. 0aWoodworkxAmateurs' manuals. 7aWoodworkxHandbooks, manuals, etc. aLVLcNFk684.08 UND bMAINp32000000011286r7.64u8656u4158 bLB2p37000000011762r8.82u8657u415900727 2200241 450000100060000000300040000600500170001000800390002701000210006603500220008704000130010905000190012209000150014110000310015624500760018725000140026326000420027730000190031960000450033860000430038394200220042695200370044843795LVL19990316000000.0721219s1954 nyu 000 1 eng a54009678 /L/r872 a 54009678 /L/r872 aDLCcDLC0 aPZ3.S87872bLo c2192d21921 aStone, Irving,d1903-1989.10aLove is eternal ;ba novel about Mary Todd Lincoln and Abraham Lincoln. a[1st ed.] aGarden City, N.Y.,bDoubleday,c1954. a468 p.c22 cm.10aLincoln, Mary Todd,d1818-1882xFiction.10aLincoln, Abraham,d1809-1865xFiction. aLVLcAFkAF Stone bMAINp32000000007741u8658u416000979 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000250014024500590016525000160022426000470024030000290028744000340031650400640035060000480041460000420046265000220050465000350052694200280056195200440058995200440063350814LVL19990313000000.0930427s1994 njua b 00110 eng a93022403 a0894904590 a 93022403 c2193d2193 aYA 344.73 He1 aHerda, D. J.,d1948-10aRoe v. Wade :bthe abortion question /cby D.J. Herda. aLibrary ed. aHillside, NJ :bEnslow Publishers,cc1994. a104 p. :bill. ;c24 cm. 0aLandmark Supreme Court cases. aIncludes bibliographical references (p. 101-102) and index.11aRoe, Jane,d1947-xTrials, litigation, etc.11aWade, HenryxTrials, litigation, etc. 1aTrials (Abortion) 1aAbortionxLaw and legislation. aLVLcYANFkYA 344.73 He bMAINp32000000047898r17.95u8659u4161 bMAINp31000000048926r17.95u8660u416200813 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000210013624500670015726000510022430000300027552001510030565000190045665000290047594200240050495200430052822739LVL19990327000000.0951026s1996 nyua j 00011 eng a95026169 a0590543318 a 95026169 c2194d2194 aE Rylant10aRylant, Cynthia.14aThe bookshop dog /cwritten and illustrated by Cynthia Rylant.0 aNew York :bBlue Sky Press/Scholastic,cc1996. a[32] p. :bill. ;c26 cm. aWhen Martha Jane's owner falls ill and has to go to the hospital, the inhabitants of her small town bicker over who will care for the beloved dog. 1aDogsxFiction. 1aNeighborlinessxFiction. aLVLcEASYkE Rylant bMAINp32000000066530r8.82u8661u416300925 2200277 450000100060000000300040000600500170001000800390002701000190006602000250008503500160011004000200012605000280014608200070017409000150018110000270019624500370022326000360026030000210029649000210031751000280033852001980036652100170056494200230058195200430060429758LVL19990323000000.0790828s1980 nyu 00011 eng a79020555 //r81 a0803777396 :c$10.95 aflb00615006 aDLCcDLCdICrlF0 aPZ4.V78aPS3572.I53bSn aSF c2195d219510aVinge, Joan D.,d1948-14aThe snow queen /cJoan D. Vinge.0 aNew York :bDial Press,cc1980. a536 p. ;c24 cm.0 aA Quantum novel.0 aSchool Library Journal. aThe Snow Queen has planted her secret clone and heir to be brought up among the Summer people, ignorant of her heritage, yet drawn to fulfill her destiny in the city where Arienrhod held court.2 aYoung Adult. aLVLcSCIkSF Vinge bMAINp32000000007937r6.57u8662u416401083 2200349 450000100060000000300040000600500170001000800390002701000210006602000160008702000260010303500160012904000200014505000200016508200100018509000150019510000290021024500820023926000340032130000290035551000140038451000210039851000200041952000990043952100090053865000400054765000390058765100220062670000210064894200220066995200420069143796LVL20000926105044.0760618s1976 nyua j 00011 eng a76022185 /AC/r87 a0688220789. a0688320783blib. bdg. aflb00764703 aDLCcDLCdICrlF0 aPZ7.B380544bSo a[Fic] c2196d219610aBeatty, Patricia,d1922-10aSomething to shout about /cPatricia Beatty ; frontispiece by Marylin Hafner.0 aNew York :bW. Morrow,c1976. a254 p. :bill. ;c22 cm.0 aBooklist.0 aLibrary Journal.0 aKirkus Reviews. aThe women of a Montana mining town disrupt life when they try to raise money for a new school.2 a5-8. 1aFrontier and pioneer lifexFiction. 1aWomenxSocial conditionsxFiction. 1aMontanaxFiction.10aHafner, Marylin. aLVLcJFkJ Beatty bLB2p37000000013213r1.98u8665u416500541 2200205 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200130011410000190012724500420014626000320018830000230022044000270024394200220027095200430029250815LVL19990313000000.0940716s1990 nyu j 00011 eng d a0553401238 anpl94001207 c2197d2197 aYA Lewis1 aLewis, Debbie.10aOur day will come /cby Debbie Lewis. aNew York :bBantam,cc1990. a159 p. :c18 cm.;. 0aDirty Dancing ;vbk 6. aLVLcYAkYA Lewis bMAINp32000000048735r3.00u8666u416601365 2200385 450000100060000000300040000600500170001000800390002701000190006602000250008503500160011004000250012604300300015105000240018108200150020509000150022010000240023524500520025925000120031126000470032330000340037051000230040451000430042751000180047052001640048852100110065265000270066365000330069065100480072365100550077165100420082694200230086895200440089195200440093529759LVL20021021122412.0890426s1989 nyua 00110 eng a89045583 //r90 a0374158940 :c$22.95 aflb01865502 aDLCcDLCdDLCdICrlF ama-----aa-is---aa-le---00aDS119.7.bF736 198900220a956.04 c2198d219810aFriedman, Thomas L.10aFrom Beirut to Jerusalem /cThomas L. Friedman. a1st ed.0 aNew York :bFarrar, Straus, Giroux,c1989. axiv, 525 p. :bill. ;c24 cm.0 aALA Notable Books.0 aBooklist Editors' (Reviewers') Choice.0 aLJ Best Book. aExamines Israeli-Palestinian relations, the PLO, Israeli politics, Lebanese factions, news reporting from the Middle East, and other issues of the Middle East.2 aAdult. 0aIsrael-Arab conflicts. 0aJewish-Arab relationsy1973- 0aMiddle EastxPolitics and governmenty1945- 0aLebanonxHistoryyIsraeli intervention, 1982-1984. 7aMiddle EastxPolitics and government. aLVLcNFk956.04 Fr bMAINp32000000025643r13.77u8668u4167 bMAINp31000000011742r13.77u8669u416800705 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009404000130010805000210012108200100014209000150015210000200016724500410018725000110022826000520023930000450029150000200033665000240035694200220038095200370040236778LVL20020911101820.0770613s1978 nyua 001 0 eng a77024195 a0030899605 a 77024195 aDLCcDLC0 aNC730.bC45 1978 a741.2 c2199d21991 aChaet, Bernard.14aThe art of drawing /cBernard Chaet. a2d ed. aNew York :bHolt, Rinehart and Winston,cc1978. ax, 324 p. :bill., (some col.) ;c28 cm. aIncludes index. 0aDrawingxTechnique. aLVLcNFk741.2 Ch bMAINp32000000014595u8670u416900744 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000210013624500610015725000210021826000400023930000290027965000500030865000360035865100290039494200230042395200440044650816LVL19990313000000.0940615s1994 nyub 00011 eng a94027271 a067943349X a 94027271 c2200d2200 aM Dibdin10aDibdin, Michael.10aDead Lagoon :ban Aurelio Zen mystery /cMichael Dibdin. a1st American ed.0 aNew York :bPantheon Books,cc1994. a297 p. :bmaps ;c25 cm. 0aZen, Aurelio (Fictitious character)xFiction. 0aPolicexFiction.zItalyzVenice 0aVenice (Italy)xFiction. aLVLcMYSkM Dibdin bMAINp32000000068107r21.00u8671u417001105 2200349 450000100060000000300040000600500170001000800390002701000210006602000380008702000310012503500160015603900180017204000200019005000180021008200140022809000150024210000200025724500800027726000460035730000350040349000160043852001100045452100340056452100090059865100300060765100090063765100090064670000300065594200270068595200430071236779LVL19990320000000.0810708s1982 njua j 00010 eng a81011460 /AC/r84 a0893756512 (pbk.) :c$1.25 (est.) a0893756504 :c$7.95 (est.) aflb005798100 a2b3c3d3e3 aDLCcDLCdICrlF0 aQB521.5.bP340 219a523.7 c2201d220110aPalazzo, Janet.10aOur friend the sun /cwritten by Janet Palazzo ; illustrated by Susan Hall.0 aMahwah, N.J. :bTroll Associates,cc1982. a[32] p. :bcol. ill. ;c24 cm.0 aNow I know. aSimple text and illustrations introduce the characteristics of the sun and its relationship to the earth.0 a2.1bFollett Library Book Co.2 aK-3. 0aSunxJuvenile literature. 1aSun. 7aSun.11aHall, Susan,d1940-eill. aLVLcJNFkJNF 523.7 Pa bMAINp32000000025034r9.89u8672u417101597 2200421 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000290013524501190016426000400028330000290032344000210035250000240037352001010039765100320049865100230053070000340055370000270058794200210061495200430063595200440067895200440072295200440076695200430081095200440085395200430089795200430094095200440098395200620102795200430108995200430113250817LVL20020808094226.0920709s1994 nyua j 00011 eng a92027398 a0688106560 a 92027398 c2202d2202 aJ Twain10aTwain, Mark,d1835-1910.14aThe adventures of Huckleberry Finn /cby Mark Twain ; illustrated by Steven Kellogg ; afterword by Peter Glassman.0 aNew York :bWilliam Morrow,cc1994. a348 p. :bill. ;c24 cm. 0aBooks of wonder. aRn: Samuel Clemons. aThe adventures of a boy and a runaway slave as they travel down the Mississippi River on a raft. 1aMississippi RiverxFiction. 1aMissourixFiction.10aClemons, Samuel.,d1835-1910.11aKellogg, Steven,eill. aLVLcJFkJ Twain bLB2p37000000002522r11.80u8673u4172 bMAINp32000000052304r11.08u8674u4173 bMAINp32000000055453r11.80u8675u4174 bMAINp32000000058321r11.80u8676u4175 bLB1p36000000002051r11.80u8677u4176 bMAINp35000000006121r20.00u8678u4177 bLB2p34000000006418r11.80u8679u4178 bLB2p34000000007680r11.80u8680u4179 bMAINp31000000051533r11.08u8681u4180 bMAINdMAINp31000000055051r11.80u4181u4181v2005-03-23 bLB1p33000000020597r11.08u8683u4182 bLB1p33000000022955r11.80u8684u418301308 2200373 450000100060000000300040000600500170001000800390002701000170006602000250008303500160010804000200012405000230014408200140016709000150018110000190019624500290021526000460024430000210029051000320031151000480034351000250039152001900041652100340060652100100064065000310065065000220068165000200070394200230072395200610074695200420080795200430084995200420089222742LVL20000621000000.0840910s1985 nyu j 00011 eng a84020443 /AC a0027701808 :c$11.95 aflb00548011 aDLCcDLCdICrlF0 aPZ7.P2843bDo 19850 219a[Fic] c2203d220310aPaulsen, Gary.10aDogsong /cGary Paulsen.0 aNew York, N.Y. :bBradbury Press,cc1985. a177 p. ;c22 cm.0 aChildren's Catalog (Wilson)0 aJunior High School Library Catalog (Wilson)0 aNewbery Medal/Honor. aA fourteen-year-old Eskimo boy who feels assailed by the modernity of his life takes a 1400-mile journey by dog sled across ice, tundra, and mountains seeking his own "song" of himself.0 a5.8bFollett Library Book Co.2 a7-10. 0aEskimosxJuvenile fiction. 1aEskimosxFiction. 7aInuitxFiction. aLVLcJFkJ Paulsen bMAINdMAINp32000000014129r7.05u8685u4184v2003-09-01 bLB2p34000000007439r7.05u8686u4185 bMAINp31000000005482r7.05u8687u4186 bLB1p33000000002712r7.05u8688u418701024 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000170013524500280015225000120018026000360019230000210022844000160024952001600026565000310042565100200045694200210047695200420049795200430053995200430058295200430062595200420066829761LVL20000107000000.0950406s1995 nyu 00011 eng a95002926 a0805029834 a 95002926 c2204d2204 aYA Mori10aMori, Kyoko.10aOne bird /cKyoko Mori. a1st ed.0 aNew York :bHenry Holt,cc1995. a242 p. :c22 cm. 0aEdge books. aAfter her mother abandons them, fifteen-year-old Megumi tries to understand her father's need for his mistress while dealing with her own aching isolation. 1aParent and childxFiction. 1aJapanxFiction. aLVLcYAkYA Mori bLB2p37000000006195r9.12u8689u4188 bMAINp32000000025203r9.12u8690u4189 bMAINp32000000067265r9.12u8691u4190 bMAINp35000000000764r9.12u8693u4191 bLB2p34000000014476r9.12u8694u419201018 2200277 450000100060000000300040000600500170001000800390002701000220006602000240008803500230011204000130013505000200014808200100016809000150017810000560019324500820024926000390033130000350037052001840040565000350058965000260062465000240065094200230067495200430069729762LVL19990323000000.0770810s1976 maua j 000 1 eng a77362616 /AC/r872 a0395249813 :c$8.95 a 77362616 /AC/r872 aDLCcDLC0 aPZ7.T5744bFat4 a[Fic] c2205d22051 aTolkien, J. R. R.d1892-1973.q(John Ronald Reuel),14aThe Father Christmas letters /cJ. R. R. Tolkien ; edited by Baillie Tolkien. aBoston :bHoughton Mifflin,c1976. a[48] p. :bcol. ill. ;c28 cm. aA collection of illustrated letters from Father Christmas recapping the activities of the preceding year at the North Pole. The letters were written by the author to his children. 0aSanta ClausxJuvenile fiction. 1aSanta ClausxFiction. 1aChristmasxFiction. aLVLcJFkJ Tolkien bMAINp32000000014563r1.98u8697u419300890 2200265 450000100060000000300040000600500170001000800390002701000170006602000270008302000150011003500160012508200150014109000150015610000180017124500640018926000320025330000400028552001540032565000290047965000220050870000280053094200220055895200440058043800LVL19990316000000.0860818s1987 nyua j 00011 eng a86021745 /AC a0688064000 (lib. bdg.) a0688063993 aflb002351100 219aE Blos c2206d220610aBlos, Joan W.10aOld Henry /cJoan W. Blos ; illustrated by Stephen Gammell.0 aNew York :bMorrow,cc1987. a[32] p. :bcol. ill. ;c24 x 27 cm. aHenry's neighbors are scandalized that he ignores them and lets his property get run down, until they drive him away and find themselves missing him. 1aNeighborlinessxFiction. 1aStories in rhyme.11aGammell, Stephen,eill. aLVLcEASYkE Blos bMAINp32000000024120r12.70u8698u419400802 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012324500510013426001250018530000410031044000150035150000200036665000450038671000210043183000320045294200200048495200440050450819LVL19990313000000.0840501s1985 vaua 00100 eng a84008480 a0809455048 a 84008480 c2207d2207 a643 Ki00aKitchens /cby the editors of Time-Life Books. aAlexandria, Va. :aMorristown, N.J. :bTime-Life Books ;bSchool and library distribution by Silver Burdett Co.,cc1985. a127 p. :bill. (some col.) ;c29 cm. 0aYour home. aIncludes index. 0aKitchensxRemodelingxAmateurs' manuals.20aTime-Life Books. 0aYour home (Alexandria, Va.) aLVLcNFk643 Ki bMAINp32000000054796r12.95u8699u419501448 2200397 450000100060000000300040000600500170001000800390002701000170006602000310008302000380011403500160015203900180016804000200018605000230020608200270022909000150025610000230027124501030029426000350039730000280043251000520046052000960051252100340060852100090064260000590065160000380071060000370074865000660078565000520085165000310090365000230093470000240095794200260098195200430100729763LVL19990323000000.0820826s1983 njua j 000 0beng a82015993 /AC a0893758574 :c$6.45 (est.) a0893758582 (pbk.) :c$1.95 (est.) aflb006343040 a2b3c3d3e3 aDLCcDLCdICrlF0 aE449.D75bS26 19830 219a973.8/092/4aBa92 c2208d22081 aSantrey, Laurence.10aYoung Frederick Douglass :bfight for freedom /cby Laurence Santrey ; illustrated by Bert Dodson. aMahwah, N.J. :bTroll,cc1983. a48 p. :bill. ;c24 cm.0 aElementary School Library Collection (Bro-Dart) aPresents the early life of the slave who became an abolitionist, journalist, and statesman.0 a4.8bFollett Library Book Co.2 a3-6.10aDouglass, Frederick,d1817?-1895xJuvenile literature.11aDouglass, Frederick,d1817?-1895.17aDouglass, Frederick, 1817?-1895. 0aAbolitionistsxBiographyxJuvenile literature.zUnited States 0aAfro-AmericansxBiographyxJuvenile literature. 1aAfro-AmericansxBiography. 7aBlacksxBiography.11aDodson, Bert,eill. aLVLcJNFkJB Douglass bMAINp32000000029712r6.30u8701u419600683 2200253 450000100060000000300040000600500170001000800390002701000130006602000250007903500140010404000180011805000260013608200160016209000150017810000180019324500350021125000120024626000380025830000210029694200240031795200440034195200440038536782LVL19990320000000.0890306s1989 nyu 000 1 eng a89042781 a0394569873 :c$18.95 a 89042781 aDLCcDLCdDLC00aPS3552.E177bP53 198900220a813/.54 c2209d22091 aBeattie, Ann.10aPicturing Will /cAnn Beattie. a1st ed. aNew York :bRandom House,cc1989. a230 p. ;c22 cm. aLVLcAFkAF Beattie bMAINp32000000027267r10.89u8702u4197 bMAINp32000000035015r10.00u8703u419800720 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000230013524500250015826000290018330000210021250000370023394200220027095200440029295200430033695200440037995200430042350820LVL20000911213105.0950112s1995 nyu 00011 eng a95002063 a0312855168 a 95002063 c2210d2210 aSF Bear10aBear, Greg,d1951-10aLegacy /cGreg Bear.0 aNew York :bTOR,cc1995. a349 p. ;c24 cm. a"A Tom Doherty Associates book." aLVLcSCIkSF Bear bMAINp32000000057772r13.77u8704u4199 bLB2p34000000006499r14.23u8706u4200 bMAINp31000000054610r13.77u8707u4201 bLB2p37000000008077r13.77u8708u420200856 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000150013424500760014925000120022526000430023730000380028052000660031865000270038465000240041170000330043594200220046895200440049095200440053422745LVL19990327000000.0890512s1990 nyua j 00011 eng a89034617 a0688088759 a 89034617 c2211d2211 aE Rice10aRice, Eve.10aAt Grammy's house /cby Eve Rice ; illustrated by Nancy Winslow Parker. a1st ed.0 aNew York :bGreenwillow Books,cc1990. a32 p. :bcol. ill. ;c22 x 26 cm. aA brother and sister spend a delightful day at Grammy's farm. 1aGrandmothersxFiction. 1aFarm lifexFiction.11aParker, Nancy Winslow,eill. aLVLcEASYkE Rice bMAINp32000000033838r11.59u8709u4203 bMAINp31000000039605r11.59u8711u420401220 2200373 450000100060000000300040000600500170001000800410002701000130006802000240008102000240010503500160012903500200014504000250016504200140019005000220020408200190022609000150024510000290026024500830028926000440037230000430041649000160045952000890047552100340056452100090059865000370060765000500064465000210069470000290071583000320074494200270077695200430080343802LVL19990316000000.0870217s1986 enka j 000 0 eng d a87050229 a0863134319 (UK ed.) a0531102947 (US ed.) aflb01602901 a(OCoLC)20237852 aOrPcDLCdDLCdICrlF alccopycat00aMLCM 91/02550 (B)04219a152/.142/5 c2212d22121 aPluckrose, Henry Arthur.10aFloating and sinking /ctext, Henry Pluckrose ; photography, Chris Fairclough. aLondon ;aNew York :bF. Watts,cc1986. a[30] p. :bchiefly col. ill. ;c23 cm.1 aThinkAbout. aColor photographs and simple text examine the basic concept of floating and sinking.0 a2.0bFollett Library Book Co.2 aK-3. 0aPerceptionxJuvenile literature. 0aMovement, Psychology ofxJuvenile literature. 7aFloating bodies.11aFairclough, Chris,eill. 0aThinkAbout (New York, N.Y.) aLVLcEASYkE Pluckrose bMAINp32000000018823r9.90u8712u420500803 2200265 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200130011410000170012724500940014426000410023830000300027944000110030965000100032065000170033070000350034794200240038295200440040695200440045095200430049450821LVL19990313000000.0950809s1994 nyua j 00011 eng d a0590488546 anpl95001072 c2213d2213 aE Martin10aMartin, Ann.10aFire truck to the rescue /cwritten by Ann Martin; illustrated by Steven James Petruccio.0 aNew York :bScholastic Inc.,cc1994. a[30] p. :bill. ;c21 cm. 0aTonka. 1aFire. 1aFire trucks.11aPetruccio, Steven James,eill. aLVLcEASYkE Martin bMAINp32000000058745r10.89u8713u4206 bMAINp31000000055366r10.89u8714u4207 bLB1p33000000023174r10.89u8715u420800988 2200313 450000100060000000300040000600500170001000800390002701000170006602000250008303500180010804000180012604300120014405000230015608200150017909000150019410000270020924500320023625000180026826000370028630000450032344000270036850400600039552000950045565100360055065100150058694200290060195200440063022746LVL19990327000000.0891109s1990 nyuab j b 001 0 eng a89025465 /AC a1854352954 :c$19.95 a 89025465 /AC aDLCcDLCdDLC aa-si---00aDS598.S7bL35 199000220a959.57 c2214d22141 aLayton, Lesley,d1954-10aSingapore /cLesley Layton. aReference ed. aNew York :bM. Cavendish,c1990. a128 p. :bcol. ill., col. maps ;c25 cm. 0aCultures of the world. aIncludes bibliographical references (p. 127) and index. aIntroduces the geography, history, religious beliefs, government, and people of Singapore. 0aSingaporexJuvenile literature. 1aSingapore. aLVLcJNFkJNF 959.57 LAY bMAINp32000000028467r19.95u8716u420901376 2200421 450000100060000000300040000600500170001000800390002701000170006602000370008303500160012004000200013605000240015608200120018009000150019210000200020724500870022725000120031426000320032630000350035851000320039351000140042551000280043952001370046752100340060452100090063865000270064765000210067465000290069565000270072465000210075165000290077265100300080165100300083170000240086194200260088595200430091129765LVL19990323000000.0860221s1986 nyua j 000 1 eng a86004490 /AC a0525442618 (lib. bdg.) :c$10.95 aflb00407611 aDLCcDLCdICrlF0 aPZ7.L5796bIag 19860 219a[E] c2215d22151 aLevinson, Riki.10aI go with my family to Grandma's /cby Riki Levinson ; illustrated by Diane Goode. a1st ed. aNew York :bDutton,cc1986. a[32] p. :bcol. ill. ;c28 cm.0 aChildren's Catalog (Wilson)0 aBooklist.0 aSchool Library Journal. aAs five cousins and their families arrive by various means of transportation, Grandma's home in Brooklyn gets livelier and livelier.0 a2.1bFollett Library Book Co.2 aK-3. 1aGrandmothersxFiction. 1aFamilyxFiction. 1aTransportationxFiction. 7aGrandmothersxFiction. 7aFamilyxFiction. 7aTransportationxFiction. 1aNew York (N.Y.)xFiction. 7aNew York (N.Y.)xFiction.11aGoode, Diane,eill. aLVLcEASYkE Levinson bMAINp32000000021487r6.38u8717u421000798 2200253 450000100060000000300040000600500170001000800390002701000130006602000390007903500160011804000200013405000270015408200160018109000150019710000350021224500400024726000320028730000210031952001250034052100110046594200240047695200440050036784LVL20021127124602.0880829s1989 nyu 00011 eng a88028801 a0399134263 :c$19.95 ($25.95 Can.) aflb01788702 aDLCcDLCdICrlF0 aPS3569.A5125bC29 19890 219a813/.54 c2216d221610aSanders, Lawrence,d1920-1998.10aCapital crimes /cLawrence Sanders.0 aNew York :bPutnam,cc1989. a381 p. ;c24 cm. aA worldly cynic and a holy reprobate confront each other in a place where good and evil whirl in a storm of retribution.2 aAdult. aLVLcAFkAF Sanders bMAINp32000000032241r11.00u8719u421100716 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000200013724500740015724600360023126000320026730000210029994200240032095200440034495200430038895200430043150822LVL20011109130345.0950301s1995 nyu 00011 eng a95011475 a0525939989 a 95011475 c2217d2217 aM Hornsby10aHornsby, Wendy.10a77th Street requiem :ba Maggie MacGowen mystery /cby Wendy Hornsby.30aSeventy-seventh Street requiem.0 aNew York :bDutton,cc1995. a273 p. ;c23 cm. aLVLcMYSkM Hornsby bMAINp32000000060153r12.95u8721u4212 bLB2p34000000017473r21.95u8722u4213 bLB1p33000000023834r12.95u8723u421401268 2200373 450000100060000000300040000600500170001000800390002701000170006602000250008303500160010804000200012405000240014408200140016809000150018210000260019724500460022325000120026926000330028130000210031450000240033551000320035951000140039151000280040552002120043352100340064552100090067965000350068865000350072365000350075865000350079394200230082895200430085136785LVL19990320000000.0870723s1988 nyu j 00011 eng a87017505 /AC a0689313977 :c$12.95 aflb01679401 aDLCcDLCdICrlF0 aPZ7.R54465bMe 19880 219a[Fic] c2218d221810aRoberts, Willo Davis.10aMegan's island /cby Willo Davis Roberts. a1st ed.0 aNew York :bAtheneum,c1988. a187 p. ;c22 cm. a"A Jean Karl book."0 aChildren's Catalog (Wilson)0 aBooklist.0 aSchool Library Journal. aFirst eleven-year-old Megan is astonished when her mother insists on taking her and her younger brother up to the lake cottage a week before school is out; then they find mysterious strangers following them.0 a6.6bFollett Library Book Co.2 a5-8. 1aSingle-parent familyxFiction. 1aMystery and detective stories. 7aMystery and detective stories. 7aSingle parent familyxFiction. aLVLcJFkJ Roberts bMAINp32000000021026r7.64u8727u421501012 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000220013824501280016026000430028830000410033149000270037250000200039965000270041965000280044694200240047495200420049895200430054095200420058395200430062595200420066843804LVL20010824151605.0890412s1989 nyua 00110 eng a89008969 a0471620815 a 89008969 c2219d2219 a581.973 Sm10aSmith, Richard M.10aWild plants of America :ba select guide for the naturalist and traveler /cRichard M. Smith ; illustrations by the author.0 aNew York :bJohn Wiley & Sons,cc1989. axix, 267 p. :bill. ;c23 cm. ;dpa.1 aWiley nature editions. aIncludes index. 0aBotanyzUnited States. 0aPlantsxIdentification. aLVLcNFk581.973 Sm bLB2p37000000000310r7.77u8728u4216 bMAINp32000000034035r7.77u8729u4217 bLB2p34000000001577r7.77u8730u4218 bMAINp31000000039839r7.77u8731u4219 bLB1p33000000013197r7.77u8732u422000549 2200205 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200150011410000190012924500280014826000530017630000280022950000190025794200240027695200430030050823LVL20010604144810.0960131s1995 nyu 00011 eng d a0821751603 anpl96000286 c2220d2220 aAF Jackson10aJackson, Lisa.10aWishes /cLisa Jackson.0 aNew York :bKensington Publishing Corp.,cc1995. a477 p. ;c18 cm. ;dpa. a"Zebra Books". aLVLcAFkAF Jackson bMAINp31000000058324r3.53u8733u422100831 2200265 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200130012524500900013826000410022830000230026965000360029265000320032865000360036070000270039670000320042394200220045595200440047795200440052122748LVL19990327000000.0930109s1993 nyu 00000 eng d a92053339 a0060169190 a 92053339 c2221d2221 a808.8 In00aInto the garden :ba wedding anthology :cedited by Robert Hass and Stephen Mitchell. aNew York :bHarperCollins,cc1993. . a193 p. ;c25 cm. . 0aWeddingsxLiterary collections. 0aLovexLiterary collections. 0aMarriagexLiterary collections.10aHass, Robert,d1941- .10aMitchell, Stephen,d1943- . aLVLcNFk808.8 In bMAINp32000000036586r11.80u8734u4222 bMAINp31000000041713r11.80u8735u422300862 2200241 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200150011410000360012924500610016525000200022626000490024630000280029550501650032365000220048894200240051095200430053495200430057729767LVL19990323000000.0960417r19941991enk d 00011 eng d a0745135013 anpl96000778 c2222d2222 aLP Durrell 0aDurrell, Gerald M.,d1925-1995.10aMarrying off Mother and other stories /cGerald Durrell. aLarge print ed.0 aBath :bChivers Press/Paragon,c1994, c1991. a226 p. ;c24 cm. ;dpa. aEsmeralda / Fred--or A touch of the warm South / Retirement / Marrying off Mother / Ludwig / The jury / Miss Booth-Wycherly's clothes / A parrot for the parson. 0aLarge type books. aLVLcLPkLP Durrell bMAINp32000000064005r3.95u8736u4224 bMAINp31000000059432r3.95u8737u422500779 2200253 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200110012510000300013624500750016626000440024130000320028570000180031794200200033595200420035595200430039795200430044095200420048350824LVL20001107171419.0960618s1996 nyu j 00011 eng d a96084440 a068981027X a 96084440 c2223d2223 aJ Hugo10aHugo, Victor,d1802-1885.14aThe hunchback of Notre Dame /cby Victor Hugo; adapted by Robin Moore.0 aNew York :bAladdin Paperbacks,cc1996. aiv, 124 p. ;c20 cm. ;dpa.10aMoore, Robin. aLVLcJFkJ Hugo bLB2p37000000002797r2.61u8738u4226 bMAINp32000000065282r2.61u8739u4227 bMAINp35000000008252r2.61u8741u4228 bLB2p34000000013974r2.61u8742u422900737 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000250013624500660016126000370022730000250026465000210028965000230031094200220033395200430035595200430039895200420044129768LVL19990323000000.0950503s1995 cau 00010 eng a95011222 a1561703184 a 95011222 c2224d2224 a152.4 De10aDe Angelis, Barbara.10aConfidence :bfinding it and living it /cBarbara De Angelis.0 aCarson, CA :bHay House,cc1995. aix, 101 p. ;c19 cm. 0aSelf-confidence. 0aTrust (Psychology) aLVLcNFk152.4 De bMAINp32000000060431r7.77u8744u4230 bMAINp31000000057001r7.77u8745u4231 bLB1p33000000023963r7.77u8746u423201131 2200361 450000100060000000300040000600500170001000800390002701000170006602000250008303500160010804000200012405000210014408200210016509000150018610000210020124500310022226000390025330000410029251000320033351000430036551000240040852001140043252100340054652100090058065000370058965000160062665000240064265000160066665000190068294200250070195200430072636787LVL20021108121607.0880429s1988 maua j 000 0 eng a88015889 /AC a039543078X :c$15.95 aflb00024511 aDLCcDLCdICrlF0 aBS658.bG37 19880 219a222/.1109505 c2225d22251 aGeisert, Arthur.14aThe ark /cArthur Geisert. aBoston :bHoughton Mifflin,c1988. a48 p. :bchiefly ill. ;c23 x 31 cm.0 aChildren's Catalog (Wilson)0 aBooklist Editors' (Reviewers') Choice.0 aHorn Book Magazine. aRetells the familiar Bible story, using etchings as illustrations, and vividly depicting life inside the ark.0 a5.1bFollett Library Book Co.2 aK-3. 0aNoah's arkxJuvenile literature. 1aNoah's ark. 1aBible storiesxO.T. 7aNoah's ark. 7aBible stories. aLVLcJNFkJNF 222 Ge bMAINp32000000027183r9.89u8747u423300649 2200217 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200120011210000250012424500630014926000410021230000280025394200220028195200430030395200430034695200420038943806LVL20020930170955.0921125c19921986nyu 00011 eng a0804109303 aonv90003670 c2226d2226 aM Smith10aSmith, Julie,d1944-10aTourist trap :ba Rebecca Schwartz mystery /cJulie Smith.0 aNew York :bIvy Books,c1992, c1986. a211 p. ;c18 cm. ;dpa. aLVLcMYSkM Smith bMAINp32000000039748r2.89u8748u4234 bMAINp31000000041341r2.89u8749u4235 bLB2p37000000008160r2.89u8750u423601000 2200277 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200130011210000210012524501530014626000480029930000410034750000200038865000500040865000500045865000520050865000520056070000250061270000200063794200220065795200430067950825LVL19990313000000.0941116s1995 paua 00110 eng a0070179077 anpl96001671 c2227d2227 a372.3 Va10aVansant, Rhonda.10aMoths, butterflies, insects, and spiders :bscience in art, song, and play /cby Rhonda Vansant, Barbara L. Dondiego ; illustrated by Claire Kalish.0 aBlue Ridge Summit, PA :bTAB Books,cc1995. axii, 100 p. :bill. ;c28 cm. ;dpa. aIncludes index. 0aInsectsxStudy and teaching (Early childhood) 0aSpidersxStudy and teaching (Early childhood) 0aInsectsxStudy and teachingxActivity programs. 0aSpidersxStudy and teachingxActivity programs.10aDondiego, Barbara L.10aKalish, Claire. aLVLcNFk372.3 Va bMAINp32000000066475r2.95u8751u423700674 2200229 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200150012510000440014024500550018426000440023930000210028350000270030494200250033195200440035695200440040022750LVL19990327000000.0930305s1993 nyu 00011 eng d a92029876 a0312088183 a 92029876 c2228d2228 aM Coughlin10aCoughlin, William Jeremiah,d1929-1992.10aIn the presence of enemies /cWilliam J. Coughlin.0 aNew York :bSt. Martin's Press,cc1993. a309 p. ;c24 cm. a"A Thomas Dunne book." aLVLcMYSkM Coughlin bMAINp32000000037738r12.95u8752u4238 bMAINp31000000042228r12.95u8753u423900354 2200133 450000100060000000300040000600500170001000800410002709000150006810000550008324500170013894200210015595200440017629769LVL19990323000000.0940203s19xx xxu 00010 eng d c2229d22291 aBuck, Pearl S.d1892-1973.q(Pearl Sydenstricker),10aDragon seed. aLVLcAFkAF Buck bMAINp32000000001316r10.00u8755u424000816 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000170013424500780015125000120022926000430024130000320028465000140031665000150033094200200034595200430036595200440040895200430045295200430049550826LVL20010925122729.0960318s1996 maua 00010 eng a96007584 a0316004944 a 96007584 c2230d2230 a684 Ab10aAbram, Norm.10aMeasure twice, cut once :blessons from a master carpenter /cNorm Abram. a1st ed.0 aBoston :bLittle, Brown & Co.,cc1996. ax, 196 p. :bill. ;c20 cm. 0aWoodwork. 0aCarpentry. aLVLcNFk684 Ab bLB2p37000000002932r10.30u8756u4241 bMAINp32000000065098r10.30u8757u4242 bLB2p34000000013898r10.30u8759u4243 bLB1p33000000025871r10.30u8760u424401123 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200200012310000220014324500960016526000480026130000400030944000320034950000200038152002100040165000220061165100430063370000190067670000280069570000240072394200300074795200440077729770LVL19990323000000.0860312s1986 mnua j 00110 eng a86007155 a0822509156 a 86007155 c2231d2231 aJNF 641.0947 Pl1 aPlotkin, Gregory.10aCooking the Russian way /cGregory & Rita Plotkin ; photographs by Robert L. & Diane Wolfe. aMinneapolis :bLerner Publications,cc1986. a47 p. :bill. (some col.) ;c19 cm. 0aEasy menu ethnic cookbooks. aIncludes index. aIntroduces the cooking and food habits of the Soviet Union, including such recipes as borscht, chicken kiev, and beef stroganoff, and provides brief information on the geography and history of the country. 1aCookery, Russian. 1aSoviet UnionxSocial life and customs.10aPlotkin, Rita.11aWolfe, Robert L.,eill.11aWolfe, Diane,eill. aLVLcJNFkJNF 641.0947 Pl bMAINp32000000035660r13.46u8761u424501417 2200457 450000100060000000300040000600500170001000800390002701000130006602000150007902000220009403500140011604000250013005000210015508200150017609000150019109200170020610000180022324500870024126000450032830000280037350000200040150400280042150400250044951000320047451000140050652001210052052100340064152100090067565000250068465000220070965000240073165000220075565000110077765000220078865000110081070000260082194200270084795200420087495200430091643808LVL20020916093610.0880922s1989 nyua b 00110 eng a88029108 a0688077889 a0688088090 (pbk.) a 88029108 aDLCcDLCdDLCdICrlF00aGR485.bC65 198900219a398/.8 c2232d2232 aJNF 398.8 Co1 aCole, Joanna.10aAnna Banana :b101 jump-rope rhymes /cJoanna Cole ; illustrated by Alan Tiegreen. aNew York :bMorrow Junior Books,cc1989. a64 p. :bill. ;c25 cm. aIncludes index. aBibliography: p. 60-61. aBibliography: p. 60.0 aChildren's Catalog (Wilson)0 aBooklist. aAn illustrated collection of jump rope rhymes arranged according to the type of jumping they are meant to accompany.0 a4.9bFollett Library Book Co.2 a3-6. 0aCounting-out rhymes. 0aJump rope rhymes. 0aChildrenxFolklore. 1aJump rope rhymes. 1aGames. 7aJump rope rhymes. 7aGames.11aTiegreen, Alan,eill. aLVLcJNFkJNF 398.8 Co bLB2p37000000001433r4.03u8762u4246 bMAINp32000000037138r8.30u8764u424701120 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000190014024501240015925000120028326000540029530000300034952001940037965000220057365000190059565000250061470000240063994200270066395200430069095200430073395200420077622752LVL20020709131754.0910805s1992 nyua j 00010 eng a91031214 a0803709587 a 91031214 c2233d2233 aJNF 574.5 Wi10aWilson, April.10aLook again! :bthe second ultimate spot-the-difference book /cillustrated by April Wilson ; nature notes by A.J. Wood. a1st ed.0 aNew York :bDial Books for Young Readers,cc1992. a[40] p. :bill. ;c26 cm. aThe reader is encouraged to find in the illustrations a variety of plants and animals from twelve distinct habitats around the world that use their shape and color to ensure their survival. 1aColor of animals. 1aPlantsxColor. 1aCamouflage (Biology)10aWood, A. J.,d1960- aLVLcJNFkJNF 574.5 Wi bLB2p37000000021079r13.00u8766u4248 bMAINp31000000038978r7.67u8768u4249 bLB1p33000000012412r7.67u8769u425000799 2200277 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200150012510000210014024500510016125000120021226000350022430000350025950000130029450000210030752000830032865000220041165000190043394200260045295200430047829771LVL19990323000000.0930315s1989 nyua j 00011 eng d a88009145 a0689712758 a 88009145 c2234d2234 aE Oxenbury1 aOxenbury, Helen.10aTom and Pippo in the garden /cHelen Oxenbury. a1st ed. aNew York :bMacmillan,cc1989. a[12] p. :bcol. illus.c26 cm. a"Pippo." a"Aladdin books." aA young boy has fun playing in the garden with his toy monkey and wheelbarrow. 1aMonkeysxFiction. 1aToysxFiction. aLVLcEASYkE Oxenbury bMAINp32000000037869r3.54u8770u425101180 2200337 450000100060000000300040000600500170001000700150002700800410004202000150008302400180009803500160011603700220013209000150015409200150016910000320018424500680021626000450028430000480032950000160037751100290039352001400042265000190056265000350058165000510061665000500066765100360071770000220075394200240077595200430079936790LVL20020807121211.0ssulsnjlc ce960327s1996 caunnn f eng d a0787109398 1a022917815508 anav96000166 a81550bDove Audio c2235d2235 aAC Whitney1 aWhitney, Phyllis A.,d1903-10aDaughter of the starscby Phyllis Whitney.h[sound recording] /0 aBeverly Hills, CA :bDove Audio,cp1996. a6 sound cassettes (9 hrs.) :banalog. mono. aUnabridged.0 aRead by Meredith MacRae. aA desperate letter prompts Lacey Elliot to travel to Harpers Ferry, West Virginia to discover the violent history of her family's past. 0aTalking Books. 0aDetective and mystery stories. 0aFamilyxFiction.zWest VirginiazHarpers Ferry 0aWomenxFiction.zWest VirginiazHarpers Ferry 0aHarpers Ferry (W.Va.)xFiction.11aMacRae, Meredith. aLVLcACkAC Whitney bLB1p33000000025024r16.47u8771u425200833 2200229 4500010001300000020001500013090001500028100002900043245011100072250001200183260004200195300002700237650002600264650002300290650002700313740005100340942002000391952004400411952004300455952004300498952006200541 a91058630 a0345377443 c2236d2236 aEstes, Clarissa Pinkola. aWomen who run with the wolves :bmyths and stories of the wild woman archetype /cClarissa Pinkola EstÂes. a1st ed. aNew York :bBallantine Books,cc1992. axiii, 520 p. ;c25 cm. aWild womenxFolklore. aWomenxPsychology. aArchetype (Psychology) aMyths and stories of the wild woman archetype. aLVLcNFk398 Es bMAINp32000000041478r13.50u8772u4253 bMAINp32000000096213r7.99u8773u4254 bMAINp32000000096214r7.99u8774u4255 bMAINdMAINp32000000134200r23.00u8775u4256v2003-09-0101171 2200325 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000190014024500330015925000120019226000400020430000340024450000400027852002550031860000190057365000290059265000150062165000210063665000420065770000320069994200270073195200430075895200440080129772LVL20000911030935.0891120s1990 nyuab j 00010deng a89070835 a0027702219 a 89070835 c2237d2237 aJNF 796.5 Pa1 aPaulsen, Gary.10aWoodsong /cby Gary Paulsen. a1st ed. aNew York :bBradbury Press,cc1990. a132 p. :bill., map ;c24 cm. aIllustrated by Ruth Wright Paulsen. aFor a rugged outdoor man and his family, life in northern Minnesota is a wild experience involving wolves, deer, and the sled dogs that make their way of life possible. Includes an account of the author's first Iditarod, a dogsled race across Alaska.11aPaulsen, Gary. 1aOutdoor lifezMinnesota. 1aSled dogs. 1aSled dog racing. 1aIditarod Trail Sled Dog Race, Alaska.11aPaulsen, Ruth Wright,eill. aLVLcJNFkJNF 796.5 Pa bLB2p37000000010732r16.00u8776u4257 bMAINp32000000036740r13.46u8777u425800585 2200205 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200150011210000270012724500410015426000460019530000280024194200250026995200430029495200420033743810LVL20030630105351.0930927c19931984nyu 00011 eng a1558177442 anpl93001191 c2238d2238 aW Cummings10aCummings, Jack,d1925-10aSergeant Gringo /cby Jack Cummings.0 aNew York :bPinnacle Books,c1993, c1984. a224 p. ;c18 cm. ;dpa. aLVLcWESkW Cummings bMAINp35000000000607r2.03u8778u4259 bLB2p34000000004508r2.03u8779u426000361 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000350009824500180013394200210015195200430017250829LVL19990313000000.0921027s19xx xxu 00010 eng d a0448054620 c2239d2239 aDodge, Mary Mapes,d1830-1905.10aHans Brinker. aLVLcJFkJ Dodge bMAINp32000000013484r5.00u8780u426100581 2200217 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200160011410000220013024500380015225000200019026000400021030000230025065000220027394200250029595200430032022754LVL20021015153243.0930608c19841965enk d 00011 eng d a0708960170 anpl93000234 c2240d2240 aLP Winspear1 aWinspear, Violet.10aDesert doctor /cViolet Winspear. aLarge print ed. aLeicester :bLinford,c1984, c1965. a327 p. ;c19 cm.;. 0aLarge type books. aLVLcLPkLP Winspear bMAINp31000000043319r6.95u8781u426200998 2200289 450000100060000000300040000600500170001000800390002701000170006602000150008302000270009803500160012508200150014109000150015610000150017124500300018625000120021626000340022830000400026252001950030265000190049794200220051695200420053895200430058095200420062395200430066536792LVL19990726000000.0830128s1983 nyua j 00011 eng a83002325 /AC a0394859952 a0394959957 (lib. bdg.) aflb012463010 219aE Agee c2241d224110aAgee, Jon.10aEllsworth /cby Jon Agee. a1st ed.0 aNew York :bPantheon,cc1983. a[31] p. :bcol. ill. ;c22 x 26 cm. aBecause Ellsworth, a dog, behaves too much like a dog when he is off duty, he is asked to leave his job as economics professor at Wallywell, causing him quite natural concern for the future. 1aDogsxFiction. aLVLcEASYkE Agee bLB2p37000000003016r2.98u8782u4263 bMAINp32000000000848r2.98u8783u4264 bLB1p36000000003078r2.98u8785u4265 bMAINp31000000038467r2.98u8786u426601067 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000190013724500720015625000120022826000460024030000300028652001200031665000270043665000220046365000200048570000530050594200250055895200430058395200420062695200430066895200420071143811LVL19990316000000.0920123s1993 nyua j 00011 eng a92000321 a0689505701 a 92000321 c2242d2242 aE Serfozo10aSerfozo, Mary.10aBenjamin Bigfoot /cby Mary Serfozo ; illustrated by Jos. A. Smith. a1st ed.0 aNew York :bM.K. McElderry Books,cc1993. a[32] p. :bill. ;c26 cm. aBecause he feels big when he wears his father's shoes, a little boy wants to wear them when he begins kindergarten. 1aKindergartenxFiction. 1aSchoolsxFiction. 1aShoesxFiction.11aSmith, Joseph A.d1936-eill.q(Joseph Anthony), aLVLcEASYkE Serfozo bMAINp32000000039470r8.82u8787u4267 bLB2p34000000011108r8.82u8788u4268 bMAINp31000000042932r8.82u8789u4269 bLB1p33000000015408r8.82u8790u427000387 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000210009824500520011994200270017195200430019850830LVL19990313000000.0930415s19xx xxu 00010 eng d a0671071785 c2243d22431 aWilliams, Brian.10aPicture encyclopedia of the world for children. aLVLcJREFkJR 910.3 Wi bMAINp32000000017473r4.63u8791u427100511 2200193 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200140011410000210012824500390014926000370018830000260022594200230025195200430027422755LVL20011204161046.0940319s1990 nyu 00011 eng d a082173525X anpl94000249 c2244d2244 aAF Taylor 0aTaylor, Janelle.10aFollow the wind /cJanelle Taylor.0 aNew York :bZebra Books,cc1990. a539 p. ;c18 cm.; pa. aLVLcAFkAF Taylor bMAINp31000000047271r3.45u8792u427200966 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000480013724501560018525000250034126000290036630000350039570000220043094200240045295200430047695200420051995200420056195200430060395200420064629774LVL20021009104533.0930304r19931968nyu 00011 eng a93010067 a0451452739 a 93010067 c2245d2245 aSF Clarke10aClarke, Arthur C.d1917-q(Arthur Charles),10a2001 :ba space odyssey /cby Arthur C. Clarke ; based on a screenplay by Stanley Kubrick and Arthur C. Clarke ; with a new introduction by the author. a25th anniversary ed.0 aNew York :bROC,cc1993. axviii, 236 p. ;c21 cm. ;dpa.10aKubrick, Stanley. aLVLcSCIkSF Clarke bMAINp32000000041126r5.80u8794u4273 bLB1p36000000005038r5.80u8795u4274 bLB2p34000000004898r5.80u8796u4275 bMAINp31000000043930r5.80u8797u4276 bLB1p33000000016024r5.80u8798u427700708 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000190013724500730015626000370022950400540026665000490032094200230036995200430039295200430043536793LVL19990320000000.0890921s1990 nyu b 00010 eng a89013370 a0452266335 a 89013370 c2246d2246 a362.29 Ho10aHobe, Phyllis.10aLovebound :brecovering from an alcoholic family /cby Phyllis Hobe.0 aNew York, N.Y. :bPlume,cc1990. aIncludes bibliographical references (p. 247-248). 0aAdult children of alcoholicszUnited States. aLVLcNFk362.29 Ho bMAINp32000000030843r8.95u8799u4278 bMAINp31000000036251r8.75u8800u427900825 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000200014024500460016026000450020630000330025144000220028450000440030652000910035065000180044170000300045994200270048995200430051643812LVL20010906091653.0861007s1987 wiua j 00010 eng a86026233 a0817227210 a 86026233 c2247d2247 aJNF 595.3 Po1 aPohl, Kathleen.10aHermit crabs /cadapted by Kathleen Pohl. aMilwaukee :bRaintree Publishers,c1987. a32 p. :bcol. ill. ;c26 cm. 0aNature close-ups. aAdaptation of: Yadokari / Hidetomo Oda. aText and photographs describe the life cycle and behavior patterns of the hermit crab. 1aHermit crabs.11aOda, Hidetomo.tYadokari. aLVLcJNFkJNF 595.2 Po bMAINp31000000043569r5.80u8801u428000642 2200241 450000100060000000300040000600500170001000800390002701000130006602000250007903500140010404000130011805000250013108200160015609000150017210000290018724500400021625000120025626000430026830000210031194200250033295200430035750831LVL19990313000000.0860321s1986 nyu 000 1 eng a86006391 a0385232691 :c$12.95 a 86006391 aDLCcDLC0 aPS3562.A557bM3 19860 219a813/.54 c2248d22481 aLansdale, Joe R.,d1951-14aThe magic wagon /cJoe R. Lansdale. a1st ed. aGarden City, N.Y. :bDoubleday,c1986. a182 p. ;c22 cm. aLVLcWESkW Lansdale bMAINp32000000002340r6.00u8802u428100593 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007904000130009405000300010708200140013709000150015110000180016624500210018425000140020526000350021930000190025450500670027394200230034057850LVL19990220000000.0740605s1974 mau 00001 eng a74010952 a0316290939 aDLCcDLC0 aPZ4.F788aPR6056.O85bEb3 a823/.9/14 c2249d2249 0aFowles, John.14aThe ebony tower. a[1st ed.]0 aBoston,bLittle, Brownc[1974] a312 p.c25 cm.0 aThe ebony tower.--Eliduc.--Poor Koko.--The enigma.--The cloud. aLVLcAFkAF Fowles00766 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200160012310000180013924500940015726000310025130000400028265000230032265000150034594200250036095200430038595200420042895200420047022756LVL19990327000000.0921013s1993 nyua b 00110 eng a92038670 a0452269954 a 92038670 c2250d2250 a641.5973 Wi10aWilbur, Todd.10aTop secret recipes :bcreating kitchen clones of America's favorite foods /cTodd Wilbur.0 aNew York :bPlume,cc1993. aix, 134 p. :bill. ;c21 cm. ;dpa. 0aCookery, American. 0aJunk food. aLVLcNFk641.5973 Wi bMAINp32000000040917r6.00u8804u4282 bLB2p34000000001970r6.50u8805u4283 bLB1p33000000015957r6.00u8806u428400709 2200229 450000100060000000300040000600500170001000800410002701000130006803500140008109000150009509200170011010000310012724501060015826000390026430000300030365000170033365000220035070000370037294200270040995200430043629775LVL19990323000000.0930914s1961 maua j 00010 eng d a61009283 a 61009283 c2251d2251 aJNF 398.2 Ha1 aHaviland, Virginia,d1911-10aFavorite fairy tales told in Norway /cretold by Virginia Haviland; illustrated by Leonard Weisgard.. aBoston :bLittle, Brown,cc1961. . a89 p. :bill. ;c24 cm. . 1aFairy tales. 1aFolklorezNorway.11aWeisgard, Leonard,d1916-,eill. aLVLcJNFkJNF 398.2 Ha bMAINp32000000042149r2.84u8807u428500662 2200217 450000100060000000300040000600500170001000800410002701000130006802000150008109000150009624501190011125000160023026000400024630000360028665000130032270000230033570000210035894200220037995200430040136794LVL19990320000000.0920903s19xx xxu 00010 eng d a91027284 a0878579915 c2252d225214aThe Rodale book of composting :beasy methods for every gardener /cDeborah L. Martin and Grace Gershuny, editors. aRevised ed.0 aEmmaus, PA :bRodale Press,cc1992. a278 p. :bill. ;c23 cm. ;cpa. 7aCompost.11aMartin, Deborah L.11aGershuny, Grace. aLVLcNFk631.8 Ro bMAINp32000000032407r8.82u8809u428600676 2200193 4500010001300000020001500013090001500028100002400043245005500067260003800122300002300160520009900183650002300282650002500305942002300330952004300353952004300396952004300439 a89018311 a0553289586 c2253d22531 aCooney, Caroline B.14aThe face on the milk carton /cCaroline B. Cooney. aNew York :bBantam Books,cc1990. a184 p. ;c18 cm.;. aA photograph of a missing girl on a milk carton leads Janie on a search for her real identity. 1aIdentityxFiction. 1aKidnappingxFiction. aLVLcYAkYA Cooney bMAINp32000000041362r2.10u8810u4287 bMAINp31000000044161r2.10u8811u4288 bMAINp32000000062144r3.99u8812u428901223 2200337 450000100060000000300040000600500170001000700150002700800410004202000150008302800260009803500160012409000150014009200140015510000350016924500760020426000520028030000520033250000160038450000610040051100320046152001560049365000260064965000320067565100260070770000210073374000190075494200240077395200440079795200440084150832LVL19990313000000.0ssulsnjlc ce960715s1996 mdunnn j f eng d a078870639X02a94818bRecorded Books anav96000371 c2254d2254 aYAC Dodge1 aDodge, Mary Mapes,d1830-1905.10aHans Brinker, or The silver skatescMary M. Dodge.h[sound recording] /0 aPrince Frederick, MD :bRecorded Books,cp1996. a8 sound cassettes (10.25 hrs.) :banalog. mono. aUnabridged. aOn container : Recommended for listeners aged 11 and up.0 aNarrated by John McDonough. aA Dutch boy and girl work toward two goals, finding the doctor who can restore their father's memory and winning the competition for the silver skates. 0aIce skatingxFiction. 0aTalking books for children. 0aNetherlandsxFiction.11aMcDonough, John.01aSilver skates. aLVLcYACkYAC Dodge bMAINp32000000065190r63.00u8813u4290 bMAINp31000000060395r63.00u8814u429100666 2200241 450000100060000000300040000600500170001000800390002701000200006602000150008604000130010105000380011408200160015209000150016810000290018324500390021226000330025130000210028450000320030565000220033794200220035995200430038157851LVL19990220000000.0750813s1975 mau d 00011 eng a75026982 //r873 a0816163286 aDLCcDLC1 aPZ3.G4955aPS3513.L68158bVe 19750 219a813/.54 c2255d225510aShort, Luke,d1908-1975.10aVengeance valley /cby Luke Short.0 aBoston :bG. K. Hall,c1975. a287 p. ;c24 cm. a"Published in large print." 0aLarge type books. aLVLcAFkAF Short bMAINp31000000012913r8.95u8815u429201377 2200349 450000100060000000300040000600500170001000700100002700800410003703500160007803700260009409000150012009200140013524502390014926000520038830000540044044000400049450600310053450800290056551100500059452001390064452100130078353800090079665000140080565000180081970000280083770000300086571000220089594200230091795200430094095200440098329776LVL19990323000000.0vf cbahom931028s1986 cau060 g vleng d avid93000513 aPAV 636bPacific Arts c2256d2256 aAV 599 So02aA Sound of dolphinscCousteau Society ; A Marshall Flaum production in association with Les Requins Associes and Metromedia Producers Corporation ; producer-writer: Andy White ; executive producer Jacques Cousteau.h[videorecording] / aBeverly Hills, CA :bPacific Arts Video,c1986. a1 videocassette (60 min.) :bsd., col. ;c1/2 in. 0aUndersea world of Jacques Cousteau. aFor private home use only. aNarrated by Rod Serling.1 aJacques Cousteau and the crew of the Calypso. aFilms of dolphins around the world, and a study of their ability to communicate. Includes scenes of dolphins helping islanders fish. . aGeneral. aVHS. 0aDolphins. 0aAnimal films.11aCousteau, Jacques Yves.11aSerling, Rod,d1924-1975.21aCousteau Society. aLVLcAVkAV 599 So bLB1p36000000006364r14.50u8816u4293 bMAINp31000000067319r14.50u8817u429400893 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000180014024500930015826000420025130000400029344000330033350400530036665000220041970000240044170000350046594200270050095200440052795200440057136795LVL19990320000000.0930907s1994 nyua j b 00010 eng a93036496 a1568471068 a 93036496 c2257d2257 aJNF 398.2 Hu10aHull, Robert.10aGreek stories /cretold by Robert Hull ; illustrated by Adam Stower and Claire Robinson.0 aNew York :bThomson Learning,cc1994. a48 p. :bill. (some col.) ;c28 cm. 0aTales from around the world. aIncludes bibliographical references and (p. 48). 1aMythology, Greek.11aStower, Adam,eill.11aRobinson, Claire,d1955-eill. aLVLcJNFkJNF 398.2 Hu bMAINp32000000062002r11.96u8818u4295 bMAINp31000000057981r11.96u8819u429600458 2200145 4500020001500000090001500015100002000030245008800050260004700138650001600185650001100201650001500212942002200227952006300249 a0876377843 c2258d2258 aSchwartz, Jeri.10aOfficial identification and price guide to silver and silverplate /cJeri Schwartz.0 aNew York :bHouse of Collectibles,cc1989. 0aSilverwork. 0aPlate. 0aHallmarks. aLVLcNFk739.2 Sc bMAINdMAINp31000000016295r7.64u328167u4297v2005-03-1100727 2200253 450000100060000000300040000600500170001000800390002701000200006602000150008604000130010105000220011408200180013609000150015410000270016924500650019626000340026130000380029535000110033350400320034460000360037694200240041295200370043657852LVL19990220000000.0710329s1970 mauac b 00000beng a68024369 //r872 a0807054488 aDLCcDLC0 aE457.25.bS5 1970 a973.7/0924aB c2259d225910aSimmons, Dawn Langley.12aA rose for Mrs. Lincoln ;ba biography of Mary Todd Lincoln.0 aBoston,bBeacon Pressc[1970] ax, 197 p.billus., ports.c24 cm. a$8.50. aBibliography: p. [195]-197.10aLincoln, Mary Todd,d1818-1882. aLVLcBIOkB Lincoln bMAINp31000000022094u8821u429800794 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000210013724500660015826000430022430000350026750400410030265000280034394200230037195200430039495200610043795200420049822758LVL19990327000000.0920420s1993 caua b 00010 eng a92053801 a0914881558 a 92053801 c2260d2260 a746.44 Mo10aMontano, Judith.14aThe art of silk ribbon embroidery /cby Judith Baker Montano.0 aLafayette, Calif. :bC&T Pub.,cc1993. a120 p. :bill. ;c28 cm. ; pa. aIncludes bibliographical references. 0aSilk ribbon embroidery. aLVLcNFk746.44 Mo bMAINp32000000042055r9.57u8822u4299 bMAINdMAINp31000000044531r9.57u8823u4300v2003-09-01 bLB1p33000000016389r9.57u8824u430100516 2200181 4500010001300000020001500013090001500028245005700043260003700100300003300137650001300170650001500183650001500198650001300213740004400226942002100270952004300291 a90053225 a0528834150 c2261d226100aRand McNally children's atlas of earth through time.0 aChicago :bRand McNally,cc1990. a77 p. :bcol. ill. ;c28 cm. 1aFossils. 1aDinosaurs. 1aEvolution. 1aAtlases.01aChildren's atlas of earth through time. aLVLcJNFk973 Ra bLB1p33000000017281r11.40u8826u430200591 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200160012310000240013924500380016326000380020130000210023994200250026095200440028595200440032936796LVL19990320000000.0920715s1992 nyu 00011 eng a92028062 a0671743066 a 92028062 c2262d2262 aAF McCammon1 aMcCammon, Robert R.10aGone south /cRobert R. McCammon. aNew York :bPocket Books,cc1992. a359 p. ;c24 cm. aLVLcAFkAF McCammon bMAINp32000000036907r12.98u8827u4303 bMAINp31000000041812r12.98u8828u430400720 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000270013624500360016325000120019926000380021130000210024994200220027095200440029295200440033695200430038095200430042343815LVL20030517101121.0921102s1993 nyu 00011 eng a92056844 a0394577787 a 92056844 c2263d2263 aAF Russo10aRusso, Richard,d1949-10aNobody's fool /cRichard Russo. a1st ed.0 aNew York :bRandom House,cc1993. a549 p. ;c24 cm. aLVLcAFkAF Russo bMAINp32000000043352r13.28u8829u4305 bMAINp32000000045510r13.28u8830u4306 bLB2p34000000004041r13.28u8831u4307 bLB1p33000000018076r13.28u8832u430800892 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200180012310000260014124500570016726000400022430000200026444000370028450000200032152000670034165000200040865000380042865000380046665000280050494200280053295200420056029778LVL20020521150842.0851115s1986 nyu j 00110 eng a85026635 a0531101207 a 85026635 c2264d2264 aJNF 794.82 La10aLampton, Christopher.10aHow to create computer games /cChristopher Lampton.0 aNew York :bFranklin Watts,cc1986. a86 p. ;c23 cm. 2aA Computer-awareness first book. aIncludes index. aProvides instructions for creating computer games using BASIC. 1aComputer games. 1aBASIC (Computer program language) 1aProgramming languages (Computers) 1aProgramming (Computers) aLVLcJNFkJNF 794.82 La bLB2p34000000008921r2.49u8833u430900667 2200229 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200110011410000140012524500540013926000390019330000330023274000240026594200210028995200420031095200420035295200430039436797LVL20010822092704.0931228s1994 nyu 00011 eng d a0843935677 anpl93001781 c2265d2265 aW Cody10aCody, Al.10aWest from Deadwood/The heart of texas /cAl Cody.0 aNew York :bLeisure Books,cc1994. a224, 223 p. ;c18 cm. ;dpa.41aThe heart of Texas. aLVLcWESkW Cody bLB1p36000000005331r2.89u8834u4310 bLB2p34000000004506r2.89u8835u4311 bMAINp31000000046078r2.89u8836u431200644 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009405000270010808200130013509000150014809200160016310000210017924500470020025000200024726000380026750000310030594200230033695200430035957854LVL20030325111429.0880203c19881949enk d 00011 eng a88003601 a1555045960 a 880036011 aPS3515.O6526bO98 19880 a813/.549 c2266d2266 aL.P. Hopson10aHopson, William.10aOutlaw of Hidden Valley /cWilliam Hopson. aLarge print ed.0 aBath, England :bChivers Press ;. a"Atlantic western"--Cover. aLVLcLPkLP Hopson bMAINp31000000035651r8.95u8837u431301416 2200373 450000100060000000300040000600500170001000700100002700800410003702000150007803500160009303700390010909000150014809200200016324501290018326000560031230000560036850000390042450600310046351100900049452001430058452100130072753800150074065000190075570000180077470000300079270000200082270000210084270000210086394200270088495200440091195200440095595200430099922760LVL19991222000000.0vf cbahom931022s1961 cau101 g vleng d a080012295X avid93000489 a60067bColumbia Tristar Home Video c2267d2267 aAV Myster- ious00aMysterious islandcColumbia Tristar Home Video ; produced by Charles Schneer ; directed by Cy Endfield..h[videorecording] /0 aBurbank, CA :bColumbia Tristar Home Video,cc1961. a1 videocassette (101 min.) :bsd., col. ;c1/2 in.. aBased on the novel by Jules Verne. aFor private home use only.1 aMichael Craig, Joan Greenwood, Michael Callan, Gary Merrill, Beth Rogan, Herbert Lom. aPrisoners who escape from a Confederate prison by balloon find themselves stranded on a mysterious island filled with prehistoric animals. aGeneral. aVHS Hi-fi. 0aFeature films.11aEndfield, Cy.11aVerne, Jules,d1828-1905.11aCraig, Michael.11aGreenwood, Joan.11aCallan, Michael. aLVLcAVkAV Mysterious bMAINp32000000041652r11.21u8838u4314 bMAINp35000000000392r11.21u8839u4315 bLB1p33000000016213r11.21u8840u431601036 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200190012310000460014224500860018826000470027430000210032150400510034252001670039365000250056065000160058594200290060195200430063095200430067395200420071629779LVL19990323000000.0961003s1996 ctua j b 00110 eng a96014297 a0761300716 a 96014297 c2268d2268 aJNF 745.594 Ro10aRoss, Kathyd1948-q(Katharine Reynolds),14aThe best holiday crafts ever! /cby Kathy Ross ; illustrated by Sharon Lane Holm.0 aBrookfield, CT :bMillbrook Press,cc1996. a176 p. :c27 cm. aIncludes bibliographical references and index. aProvides instructions for more than seventy-five craft projects for Valentine's Day, Easter, Earth Day, Halloween, Thanksgiving, Hanukkah, Christmas, and Kwanzaa. 1aHoliday decorations. 1aHandicraft. aLVLcJNFkJNF 745.594 Ro bMAINp32000000067123r9.57u8841u4317 bMAINp31000000061965r9.57u8842u4318 bLB1p33000000026709r9.57u8843u431900842 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000210013824500290015926000440018830000300023252000910026265000270035394200260038095200430040695200420044995200430049195200420053436798LVL19990320000000.0920121s1993 nyua j 00011 eng a92001022 a0399224173 a 92001022 c2269d2269 aE De Paola10aDe Paola, Tomie.10aTom /cby Tomie dePaola.0 aNew York :bG.P. Putnam's Sons,cc1993. a[32] p. :bill. ;c26 cm. aAside from having the same name, Tommy and his grandfather Tom share a sense of humor. 1aGrandfathersxFiction. aLVLcEASYkE De Paola bMAINp32000000038013r8.67u8844u4320 bLB2p34000000010183r8.67u8845u4321 bMAINp31000000042378r8.67u8846u4322 bLB1p33000000015104r8.67u8847u432300816 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000190013424500390015325000120019226000310020430000350023552000790027065000190034965000210036894200220038995200420041195200430045395200420049622761LVL20000911204718.0940203s1989 nyua j 00011 eng a88014188 a0517573490 a 88014188 c2270d2270 aE Hurd10aHurd, Thacher.10aBlackberry ramble /cThacher Hurd. a1st ed.0 aNew York :bCrown,cc1989. a[32] p. :bcol. ill. ;c29 cm. aWhen spring comes to Farmer Clem's farm, Baby Mouse loves to go exploring. 1aMicexFiction. 1aSpringxFiction. aLVLcEASYkE Hurd bLB2p37000000006578r3.99u8848u4324 bMAINp31000000046458r3.99u8850u4325 bLB1p33000000017705r3.99u8851u432601201 2200325 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000200014024500670016026000500022730000280027744000260030550400590033152001850039065000100057565000140058580000320059994200270063195200440065895200430070295200430074595200440078895200430083222762LVL19990727000000.0921002s1993 ctua j b 00110 eng a92035147 a1562943499 a 92035147 c2271d2271 aJNF 001.9 La10aLandau, Elaine.10aYeti, abominable snowman of the Himalayas /cby Elaine Landau.0 aBrookfield, Conn. :bMillbrook Press,cc1993. a47 p. :bill. ;c24 cm. 0aMysteries of science. aIncludes bibliographical references (p. 45) and index. aIntroduces the yeti or Abominable Snowman of the Himalayas, recounts sightings throughout history, and considers the reliability of the evidence advanced as proof of its existence. 1aYeti. 1aMonsters.1 aLandau, Elaine.tMysteries. aLVLcJNFkJNF 001.9 La bMAINp32000000047299r12.51u8853u4327 bLB1p36000000002435r12.51u8854u4328 bLB2p34000000007778r12.51u8855u4329 bMAINp31000000045860r13.90u8856u4330 bLB1p33000000017196r13.90u8857u433100936 2200289 450000100060000000300040000600500170001000700090002700800410003603500160007709000150009309200140010824500710012226000410019330000440023444000290027850500420030752100190034953800160036865000220038474000360040674000510044294200230049395200430051695200440055995200430060336800LVL20000911201539.0vd cbaho930427s1989 ctu j 0 0vaeng d avid93000075 c2272d2272 aAVJ Homer00aHomer Price stories /c[compiled by] CC Studios.h[videorecording]0 aWeston, CT :bCC Home Video,cc1989. a1 videocassette ;bsd., col. ;c1/2 in. 0aChildren's Circle ;v13.0 aDoughnuts / Case of the Cosmic Comic. aAges 4 and up. aVHS Format. 0aChildren's films.42aThe doughnuts.hVideorecording.42aThe case of the cosmic comic.hVideorecording. aLVLcAVkAVJ Homer bLB2p34000000011987r19.95u8858u4332 bMAINp31000000030392r22.50u8859u4333 bMAINp32000000038597r0.15u8860u433400714 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000180013624500370015426000310019130000210022250000370024365000400028065100290032094200230034995200440037295200440041643819LVL20030117142643.0951024s1996 nyu 00011 eng a95042568 a0312859848 a 95042568 c2273d2273 aM Holton10aHolton, Hugh.10aChicago blues /cby Hugh Holton.0 aNew York :bForge,cc1996. a384 p. ;c22 cm. a"A Tom Doherty Associates book." 0aPolicexFiction.zillinoiszChicago 0aChicago (Ill.)xFiction. aLVLcMYSkM Holton bMAINp32000000063314r14.37u8861u4335 bMAINp31000000058881r14.37u8862u433600794 2200277 450000100060000000300040000600500170001000800390002701000130006602000250007903500160010404000200012005000240014008200170016409000150018110000260019624500390022225000210026126000610028230000210034350500470036452100110041174000260042294200250044895200430047350838LVL19990313000000.0880607r1989 nyu 00011 eng a88045258 a0394572351 :c$15.95 aflb01869902 aDLCcDLCdICrlF0 aPR6054.E37bA6 19890 219a823/.914 c2274d227410aDeighton, Len,d1929-10aGame, set & match /cLen Deighton. a1st American ed.0 aNew York :bKnopf :bDistributed by Random House,c1989. a857 p. ;c25 cm.0 aBerlin game -- Mexico set -- London match.2 aAdult.01aGame, set, and match. aLVLcAFkAF Deighton bMAINp32000000024368r9.12u8863u433700567 2200217 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200120011410000160012624500360014225000200017826000440019830000210024265000220026394200210028595200430030657857LVL19990220000000.0920725c19851983enk d 00011 eng d a0708912575 aonv90002907 c2275d2275 aLP Page1 aPage, Emma.10aCold light of day /cEmma Page. aLarge print ed. aLeicester :bUlverscroft,c1985, c1983. a329 p. ;c22 cm. 0aLarge type books. aLVLcLPkLP Page bMAINp31000000040004r7.98u8864u433800607 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000310013824500610016925000120023026000540024230000260029694200240032295200430034636801LVL20030117110513.0850108s1985 nyu 00011 eng a85001755 a0312923120 a 85001755 c2276d2276 aAF Pilcher10aPilcher, Rosamunde,d1924-14aThe blue bedroom and other stories /cRosamunde Pilcher. a1st ed.0 aNew York :bSt. Martin's Paperbacks,cc1990,1985. a236 p. ;c18 cm.dpa. aLVLcAFkAF Pilcher bMAINp32000000041222r3.95u8865u433901023 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000220014024501160016225000120027826000520029030000350034252000990037765000280047670000290050494200270053395200430056095200430060395200440064695200430069057858LVL19990220000000.0930325s1988 caua j 00010 eng a87008563 a0152932402 a 87008563 c2277d2277 aJNF 398.2 Sh10aSherman, Josepha.10aVassilisa the wise :ba tale of medieval Russia /cretold by Josepha Sherman ; illustrated by Daniel San Souci. a1st ed.0 aSan Diego :bHarcourt Brace Jovanovich,cc1988. a[32] p. :bcol. ill. ;c29 cm. aA clever and beautiful woman uses her wits to get her husband out of Prince Vladimir's prison. 1aFolklorezSoviet Union.21aSan Souci, Daniel,eill. aLVLcJNFkJNF 398.2 Sh bLB1p36000000002528r13.46u8866u4340 bLB2p34000000008053r13.46u8867u4341 bMAINp31000000042417r13.46u8868u4342 bLB1p33000000015128r13.46u8869u434301148 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200160012310000470013924501550018625000120034126000350035330000280038850400620041652001110047865000340058970000270062394200270065095200420067795200430071995200420076295200420080422764LVL20000110000000.0920304s1993 nyua b 00110 eng a92011397 a0027925323 a 92011397 c2278d2278 aYA 612.6 We10aWestheimer, Ruth K.d1928-q(Ruth Karola),10aDr. Ruth talks to kids :bwhere you came from, how your body changes, and what sex is all about /cDr. Ruth Westheimer ; illustrated by Diane deGroat. a1st ed.0 aNew York :bMacmillan,cc1993. a96 p. :bill. ;c24 cm. aIncludes bibliographical references (p. 92-93) and index. aThe noted sex therapist discusses the physical and psychological changes that occur when a child grows up. 0aSex instruction for children.11aDe Groat, Diane,eill. aLVLcYANFkYA 612.6 We bLB2p37000000006094r8.09u8870u4344 bMAINp32000000048256r8.09u8871u4345 bLB2p34000000011770r8.09u8873u4346 bLB1p33000000019563r8.09u8874u434700701 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000250013824500550016325000200021826000470023830000210028594200220030695200440032895200440037295200430041643821LVL19990316000000.0910524r19911991meu d 00011 eng a91020785 a1560542365 a 91020785 c2279d2279 aL.P. Clark 0aClark, Mary Higgins.10aLoves music, loves to dance /cMary Higgins Clark. aLarge print ed.0 aThorndike, Me. :bThorndike Press,cc1991. a445 p. ;c22 cm. aLVLcLPkLP Clark bMAINp32000000046078r14.97u8875u4348 bMAINp31000000038647r22.95u8876u4349 bLB1p33000000012094r22.95u8877u435001444 2200421 450000100060000000300040000600500170001000800390002701000130006602000150007902000220009403500160011603900180013204000200015004300120017005000280018208200120021009000150022224501390023725000120037626000370038830000630042550000280048850000200051651000140053652001280055052100170067865000440069565000430073965000240078265000230080665100620082965100240089170000250091570000190094094200200095995200430097950840LVL19990313000000.0850515s1985 nyuaf 001 0 eng a85010373 a0525243534 a0525481818 (pbk.) aflb001593070 a2b3c3d3e3 aDLCcDLCdICrlF an-usa--0 aGV1204.13.A66bF68 19850 219a793 c2280d228004aThe Foxfire book of toys and games :breminiscences and instructions from Appalachia /cedited by Linda Garland Page and Hilton Smith. a1st ed. aNew York :bE.P. Dutton,cc1985. axviii, 267 p., [2] leaves of plates :bill. ;c21 x 24 cm. a"A Foxfire Press book." aIncludes index.0 aBooklist. aA collection of indoor and outdoor games: making dolls, homemade board games, playhouses, and other toys with instructions.2 aYoung Adult. 0aGamesxMiscellanea.zAppalachian Region 0aToysxMiscellanea.zAppalachian Region 7aGamesxMiscellanea. 7aToysxMiscellanea. 0aAppalachian RegionxSocial life and customsxMiscellanea. 7aAppalachian region.10aPage, Linda Garland.10aSmith, Hilton. aLVLcNFk793 Fo bMAINp32000000011918r8.56u8878u435101281 2200361 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012311000120013424500720014626000490021830000480026750000910031565000620040670000240046871000180049274000230051094200200053395200430055395200370059695200430063395200420067695200420071895200430076095200370080395200370084095200420087736803LVL19990320000000.0920501s1992 caua 00010 eng a92081027 a0376011246 a 92081027 c2281d2281 a728 Su20aSunset.10aBest home plans :bAffordable living /cEditor: Elizabeth L. Hogan.0 aMenlo Park, CA :bSunset Pub. Corp.,cc1992. a224 p. :bill. (some col.) ;c28 cm. ;dpa. a"More than 200 designs, helpful building tips, blueprint ordering information"--Cover. 0aArchitecture, DomesticxDesigns and plans.zUnited States10aHogan, Elizabeth L.20aSunset Books.01aAffordable living. aLVLcNFk728 Su bMAINp32000000042298r5.79u8880u4352 bMAINp32000000060189u8881u4353 bMAINp32000000060190r9.99u8882u4354 bLB1p36000000000757r5.79u8883u4355 bLB2p34000000002162r5.79u8884u4356 bMAINp31000000044661r5.79u8885u4357 bMAINp31000000056796u8886u4358 bMAINp31000000056797u8887u4359 bLB1p33000000016508r5.79u8888u436000579 2200205 450000100060000000300040000600500170001000800410002701000130006809000150008110000200009624500500011625000140016626000550018030000300023565100210026565100190028694200250030595200430033043822LVL20020829172740.0930422s19xx xxu 00010 eng d a64012464 c2282d2282 aGoulder, Grace.10aOhio scenes and citizens /cby Grace Goulder. aFirst ed.0 aCleveland, OH :bWorld Publishing Company,cc1964. a253 p. :bmaps. ;c24 cm. 0aOhioxBiography. 0aOhioxHistory. aLVLcNFk920.0771 Go bMAINp32000000013034r3.97u8889u436100560 2200205 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200140011410000200012824500480014826000460019630000230024244000240026594200230028995200420031250841LVL20010906171602.0940716s1988 enk j 00011 eng d a055252347X anpl94001208 c2283d2283 aYA Leeson1 aLeeson, Robert.14aThe metro gangs attack /cby Robert Leeson. aLondon, England :bCorgi Freeway,cc1988. a120 p. :c18 cm.,. 0aTime rope ;vbk. 4. aLVLcYAkYA Leeson bLB2p37000000018348r3.00u8891u436200676 2200229 450000100060000000300040000600500170001000800390002701000130006603500140007909000150009309200140010810000390012224500400016126000490020130000490025044000290029950400300032865000220035894200230038095200430040322766LVL19990327000000.0731003s1966 nyuab b 00010 eng a66012991 a 66012991 c2284d2284 a709.01 Po1 aPowell, Thomas George Eyre,d1916-00aPrehistoric art /cT. G. E. Powell. aNew York :bOxford University Press,cc1966. a284 p. :bill. (part col.), map ;c21 cm. ;. 4aThe world of art series. aBibliography: p. 263-264. 0aArt, Prehistoric. aLVLcNFk709.01 Po bMAINp32000000050068r9.95u8892u436300654 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000180013424500920015226000490024430000310029365000180032470000190034294200200036195200430038129785LVL19990323000000.0871123c19881987caua 00010 eng a87073354 a0945221002 a 87073354 c2285d2285 a381 Wi1 aWilkie, Jack.10aTrash and treasure :bthe complete book about garage sales /cby Jack and Chris Wilkie. aTustin, Calif. :bBent Twig,c[1988], c1987. a94 p. :bill. ;c22 cm. ;. 0aGarage sales.10aWilkie, Chris. aLVLcNFk381 Wi bMAINp32000000053925r7.95u8893u436400859 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000200013624500570015626000450021330000390025850000200029765000580031765000690037594200220044495200430046695200420050995200420055143823LVL19990316000000.0920407s1992 txua f 00110 eng a92014253 a0878337970 a 92014253 c2286d2286 a643.7 Sc10aSchnaser, Gene.14aThe home repair emergency handbook /cGene Schnaser.0 aDallas, Tex. :bTaylor Pub. Co.,cc1992. ax, 174 p. :bill. ;c26 cm. ;dpa. aIncludes index. 0aDwellingsxMaintenance and repairxAmateurs' manuals. 0aHousehold appliancesxMaintenance and repairxAmateurs' manuals. aLVLcNFk643.7 Sc bMAINp32000000046992r8.82u8894u4365 bLB2p34000000002010r8.82u8895u4366 bLB1p33000000018883r8.82u8896u436700726 2200241 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200170011410000260013124500340015726000500019130000280024144000270026950000590029660000310035571000270038694200270041395200440044057861LVL19990220000000.0951228s1994 nyua j 00010beng d a185813580X anpl95001941 c2287d2287 aJNF 759.4 Sw10aSwinglehusrt, Edmund.10aMonet /cEdmund Swinglehurst.0 aNew York, NY :bShooting Star Press,ccc1994. a79 p. :bill. ;c21 cm. 4aThe life and works of. aA compilation of works from the Bridgeman Art Library.10aMonet, Claude,d1840-1926.20aBridgeman Art Library. aLVLcJNFkJNF 759.4 Sw bMAINp31000000057946r14.95u8897u436800304 2200133 450000100060000000300040000600500170001000800410002709000150006824500190008330000090010294200160011195200430012736805LVL19990320000000.0950209c19uu r p 0 a0eng d c2288d228800aTeen 1995 Mar. a21c. aLVLcPERkA bMAINp32000000055342r1.00u8898u436900749 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000200013824500410015825000120019926000480021130000350025952000940029465000240038865000130041294200260042595200440045143824LVL19990316000000.0940608s1993 nyua j 00010 eng a92044375 a0525450734 a 92044375 c2289d2289 aJNF 584 We1 aWexler, Jerome.10aJack-in-the-pulpit /cJerome Wexler. a1st ed. aNew York :bDutton Children's Books,c1993. a[38] p. :bcol. ill. ;c24 cm. aDescribes the structure and life cycle of the wildflower known as the jack-in-the-pulpit. 1aJack-in-the-pulpit. 1aFlowers. aLVLcEASYkJNF 584 We bMAINp32000000047775r12.74u8899u437000927 2200289 450000100060000000300040000600500170001000800390002701000130006602000240007903500160010304000200011905000330013908200130017209000150018510000320020024500430023225000120027526000430028730000210033051000140035152001460036552100170051194200240052895200430055295200420059550843LVL20020807120636.0780525s1978 nyu 00011 eng a78001018 a0385143842 :c$8.95 aflb00159903 aDLCcDLCdICrlF0 aPZ3.W61475aPS3545.H8363bGl a813/.5/4 c2290d229010aWhitney, Phyllis A.,d1903-14aThe glass flame /cPhyllis A. Whitney. a1st ed.0 aGarden City, N.Y. :bDoubleday,c1978. a276 p. ;c22 cm.0 aBooklist. aKaren Hallam is involved in a web of intrigue and jealousy when she goes to the Tennessee Smoky Mountains to investigate her husband's death.2 aYoung Adult. aLVLcAFkAF Whitney bMAINp31000000018491r5.95u8900u4371 bLB1p33000000004296r5.55u8901u437200860 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000230013624500420015926000380020130000210023965000510026065000310031194200230034295200430036595200440040895200430045295200440049595200430053922768LVL20000911020454.0940628s1994 nyu 00011 eng a94029145 a0446517399 a 94029145 c2291d2291 aM McBain10aMcBain, Ed,d1926-10aThere was a little girl /cEd McBain.0 aNew York :bWarner Books,cc1994. a323 p. ;c24 cm. 0aHope, Matthew (Fictitious character)xFiction. 0aLawyersxFiction.zFlorida aLVLcMYSkM McBain bLB2p37000000003558r21.95u8902u4373 bMAINp32000000052652r12.44u8903u4374 bLB2p34000000006376r12.44u8904u4375 bMAINp31000000051805r12.44u8905u4376 bLB1p33000000020829r12.44u8906u437700615 2200193 450000100060000000300040000600500170001000800390002703500160006609000150008209200190009710000350011624500880015126000480023930000290028765000350031694200260035195200440037729787LVL19990323000000.0941212c19491929nyu 00011 eng anpl94002623 c2292d2292 aAF Heming- way1 aHemingway, Ernest,d1899-1961.12aA farewell to arms /cErnest Hemingway; with an introduction by Robert Penn Warren. aNew York :bCharles Scribner's Sons,c1949. axxxvii, 342 p. ;c22 cm. 0aWorld War, 1914-1918xFiction. aLVLcAFkAF Hemingway bMAINp32000000054386r10.00u8907u437800876 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000200013624500390015626000400019530000420023560000290027760000280030665000590033465000560039365000390044994200220048895200440051095200440055436806LVL19990320000000.0930921s1994 nyuac 00010ceng a93037536 a068812156X a 93037536 c2293d2293 a364.1 Da1 aDahmer, Lionel.12aA father's story /cLionel Dahmer. aNew York :bWilliam Morrow,cc1994. a255, 9 leaves of p. :bill. ;c21 cm.10aDahmer, JeffreyxFamily.10aDahmer, LionelxFamily. 0aMurderersxFamily relationships.zWisconsinzMilwaukee 0aSerial murdersxCase studies.zWisconsinzMilwaukee 0aFathersxBiography.zUnited States aLVLcNFk364.1 Da bMAINp32000000045071r11.70u8908u4379 bMAINp31000000047585r11.70u8909u438000979 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200190012310000240014224500970016626000430026330000300030652001730033665000270050965000290053670000330056594200280059895200440062695200430067043825LVL20020404151659.0911213s1993 nyua j 00011 eng a91047030 a006021094X a 91047030 c2294d2294 aE Green- field10aGreenfield, Eloise.10aWilliam and the good old days /cby Eloise Greenfield ; illustrated by Jan Spivey Gilchrist.0 aNew York, NY :bHarperCollins,cc1993. a[32] p. :bill. ;c24 cm. aA little boy remembers his grandmother before she became ill, and during her long recovery he tries to imagine how things will be when she comes home from the hospital. 1aGrandmothersxFiction. 1aAfro-AmericansxFiction.11aGilchrist, Jan Spivey,eill. aLVLcEASYkE Greenfield bMAINp32000000048549r13.40u8910u4381 bLB1p33000000019722r13.40u8912u438200327 2200133 450000100060000000300040000600500170001000800410002701000130006809000150008124500310009694200230012795200430015022769LVL19990327000000.0930419s19xx xxu 00010 eng d a83060068 c2295d229514aThe big book of bluegrass. aLVLcNFk784.52 Bi bMAINp32000000011830r8.82u8913u438301419 2200373 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200140011210000250012624500670015126000390021830000420025752001330029965000200043265000300045265000260048270000290050894200250053795200420056295200420060495200430064695200430068995200590073295200430079195200420083495200420087695200430091895200420096195200420100329788LVL20020718132550.0820524s1983 nyua j 00011 eng a0899193137 anpl95000237 c2296d2296 aE Bunting10aBunting, Eve,d1928-14aThe Valentine bears /cby Eve Bunting ; pictures by Jan Brett.0 aNew York :bClarion Books,cc1983. a[32] p. :bill. ;c22 x 23 cm. ;dpa. aMrs. Bear plans a surprise Valentine's Day celebration for Mr. Bear despite their usual hibernating habits at that time of year. 1aBearsxFiction. 1aValentine's DayxFiction. 1aHibernationxFiction.11aBrett, Jan,d1949-eill. aLVLcEASYkE Bunting bLB2p37000000022470r5.95u8914u4384 bLB2p37000000022471r5.95u8915u4385 bMAINp32000000055619r5.95u8916u4386 bMAINp32000000128469r5.95u8917u4387 bLB1dLB1p36000000018916r5.95u8918u4388v2003-09-01 bMAINp35000000010429r5.95u8919u4389 bLB2p34000000012143r3.32u8920u4390 bLB2p34000000028424r5.95u8921u4391 bMAINp31000000053268r3.32u8922u4392 bLB1p33000000021730r5.95u8924u4393 bLB1p33000000052039r5.95u8925u439400665 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000250013624500830016126000390024430000350028365000240031865000280034294200220037095200430039236807LVL20030623114047.0930913s1994 nyua 00110 eng a93033435 a0020346239 a 93033435 c2297d2297 a641.5 Mc10aMcFadden, Christine.10aNew vegetarian food /cChristine McFadden ; photography by Marie-Louise Avery.0 aNew York :bCollier Books,cc1994. a112 p. :bill. ;c25 cm. ; pa. 0aVegetarian cookery. 0aCookery, Mediterranean. aLVLcNFk641.5 Mc bMAINp32000000045940r8.85u8926u439501028 2200277 450000100060000000300040000600500170001000700140002700800410004102800260008203500160010809000150012409200190013910000380015824500690019626000490026530000480031450000160036251100240037852002180040265000240062065000190064470000170066394200260068095200440070643826LVL19990316000000.0ss lmnjlc c940910s1981 mdunnn f eng d02a81270bRecorded Books avid93001256 c2298d2298 aAC Haw- thorne1 aHawthorne, Nathaniel,d1804-1864.14aThe Scarlet lettercby Nathaniel Hawthorne.h[sound recording] / aCharlotte Hall, MD :bRecorded Books,c1981. a6 sound cassettes (9 hrs.) :banalog, mono. aUnabridged.0 aRead by Flo Gibson. aA young colonial woman commits adultery and must wear a scarlet "A" on her clothes the rest of her life, during the course of which a complex interrelationship develops between herself, her lover and her daughter. 0aHistorical fiction. 0aTalking Books.11aGibson, Flo. aLVLcACkAC Hawthorne bMAINp32000000050491r44.00u8928u439601215 2200373 450000100060000000300040000600500170001000800390002701000170006602000250008302000310010803500160013903900180015504000200017305000230019308200260021609000150024210000270025724500920028426000370037630000350041351000320044851000490048051000450052952000980057452100340067252100090070665000120071565000190072765000120074665000190075894200270077795200370080450845LVL20020911095726.0840516s1984 nyua j 000 0 eng a84011532 /AC a0399211233 :c$11.95 a0399211268 (pbk.) :c$4.95 aflb008649070 a2b3c3d3e3 aDLCcDLCdICrlF0 aPZ8.2.C37bTo 19840 219a398.2/45293233aE c2299d22991 aCauley, Lorinda Bryan.14aThe town mouse and the country mouse /cretold and illustrated by Lorinda Bryan Cauley. aNew York :bG.P. Putnam,cc1984. a[32] p. :bcol. ill. ;c25 cm.0 aChildren's Catalog (Wilson)0 aBulletin Of The Center For Children's Books.0 aNational Council For The Social Studies. aA town mouse and a country mouse exchange visits and discover each is suited to his own home.0 a3.4bFollett Library Book Co.2 aK-3. 1aFables. 1aMicexFiction. 7aFables. 7aMicexFiction. aLVLcJNFkJNF 398.2 Ca bMAINp32000000016023u8929u439700589 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000300013724500400016726000440020730000260025165000270027794200230030495200440032722770LVL20030628105344.0940520s1994 nyu 00010 eng a94021488 a0312113846 a 94021488 c2300d2300 a031.02 Vo1 aVos Savant, Marilyn Mach.10aMore Marilyn /cMarilyn vos Savant. aNew York :bSt. Martin's Press,cc1994. axii, 272 p. ;c24 cm. 0aQuestions and answers. aLVLcNFk031.02 Vo bMAINp32000000053777r12.37u8930u439800645 2200169 4500010001300000020001500013090001500028100003600043245011900079260005200198300002900250440003000279650003500309942002500344952004400369952006200413 a94062135 a0895776979 c2301d230110aMichener, James A.,d1907-1997.10aTales of the South Pacific /cby James A. Michener; illustrations by James Barkley; afterword by Orville Prescott.0 aNew York :bReader's Digest Association,c1995. a359 p. :bill. ;c24 cm. 4aThe World's best reading. 0aWorld War, 1939-1945xFiction. aLVLcAFkAF Michener bMAINp32000000064559r14.95u8931u4399 bLB2dLB2p37000000031426r14.95u325954u4400v2005-02-1400564 2200181 4500020001500000090001500015100001800030245004000048260003800088300002300126440002300149800001700172942002300189952004300212952004200255952004300297952004200340 a0553568728 c2302d230210aTyers, Kathy.14aThe truce at Bakura /cKathy Tyers.0 aNew York :bBantam Books,cc1994. a341 p. ;c18 cm. ; 0aStar wars ;vv. 3.1 aTyers, Kathy aLVLcSCIkSF Tyers bMAINp32000000055477r3.53u8932u4401 bLB2p34000000006064r3.53u8933u4402 bMAINp31000000053075r3.53u8934u4403 bLB1p33000000021615r3.53u8935u440400974 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000180013824501380015626000660029430000340036052001490039460000380054365000230058170000500060494200220065495200440067629790LVL20030509093109.0930310s1994 nyua j 00010beng a93012814 a0671796283 a 93012814 c2303d2303 aJNF 813 Bl10aBlos, Joan W.14aThe days before now :ban autobiographical note /cby Margaret Wise Brown ; adapted by John W. Blos ; illustrated by Thomas B. Allen.0 aNew York :bSimon & Schuster Books for Young Readers,cc1994. a[32] p. :bcol. ill ;c26 cm. aThe celebrated children's book writer describes the scenes of her childhood, in New York City and on Long Island, and how she lived as an adult.11aBrown, Margaret Wise,d1910-1952. 1aAuthors, American.11aAllen, Thomas B.d1928-eill.q(Thomas Burt), aLVLcEASYkE Blos bMAINp32000000058200r12.75u8936u440500527 2200157 4500020001500000090001500015100003700030245004800067260004000115300002100155942002500176952004200201952004200243952004200285952004200327 a006018650X c2304d230410aBradford, Barbara Taylor,d1933-12aA secret affair /cBarbara Taylor Bradford.0 aNew York :bHarper Collins,cc1996. a180 p. ;c21 cm. aLVLcAFkAF Bradford bLB2p37000000001860r9.12u8937u4406 bLB1p36000000001150r9.12u8940u4407 bLB2p34000000014425r9.12u8942u4408 bLB1p33000000026712r9.12u8944u440900760 2200241 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200110011410000210012524501060014626000390025230000340029165000140032565000320033994200200037195200430039195200420043495200420047643828LVL20030508183105.0950210s1995 nyu 00010 eng d a0425145786 anpl95000344 c2305d2305 a395 Cl10aClaro, Danielle.10aHow to have the wedding you want :b(not the one everybody else wants you to have) /cDanielle Claro.0 aNew York :bBerkley Books,cc1995. aviii, 261 p. ;c23 cm. ;dpa. 0aWeddings. 0aMarriage customs and rites. aLVLcNFk395 Cl bMAINp32000000056066r7.08u8945u4410 bLB2p34000000003801r7.08u8946u4411 bLB1p33000000021858r7.08u8947u441201131 2200337 450000100060000000300040000600500170001000800390002701000170006602000250008302000230010803500180013103900180014904000130016705000220018008200190020209000150022110000300023624500820026625000120034826000430036030000330040352001560043665000370059265000160062965000160064565000160066194200290067795200440070695200430075050847LVL20000912093105.0840822s1984 nyua j 000 0 eng a84042801 /AC a0140491759 :c$12.95 a0670434337 (cover) a 84042801 /AC0 a2b3c3d3e3 aDLCcDLC0 aTT175.bP43 1984b0 219a745.592/21 c2306d23061 aPearson, Tracey Campbell.10aDollhouse people :ba doll family you can make /cby Tracey Campbell Pearson. a1st ed. aNew York, N.Y. :bPuffin Books,c1984. a74 p. :bill. ;c21 x 26 cm. aPatterns and instructions for making the various members of the Littlefield doll family, from grandparents to grandchildren. Includes a family history. 0aDollmakingxJuvenile literature. 1aDollmaking. 1aHandicraft. 7aDollmaking. aLVLcJNFkJNF 745.59 PEA bMAINp32000000015824r12.95u8948u4413 bMAINp32000000021259r1.49u8949u441400342 2200109 4500010001300000090001500013100001900028245005500047942002400102952004300126952006300169 a74075469 c2307d2307 aCampbell, Stu. aLet it rot! :bthe gardener's guide to composting. aLVLcNFk631.875 Ca bMAINp31000000028894r4.95u8950u4415 bMAINdMAINp32000000138765r3.95u275442u4416v2003-09-2500985 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000200013724500470015725000170020426000500022130000350027150000920030652001170039865000280051565000210054365000200056494200250058495200430060995200430065236810LVL19990320000000.0940604s1992 maua j 00011 eng a91058718 a1564020738 a 91058718 c2308d2308 aE Radford1 aRadford, Derek.10aBernie drives a truck /cby Derek Radford. a1st U.S. ed. aCambridge, Mass. :bCandlewick Press,cc1992. a[28] p. :bcol. ill. ;c25 cm. a"First published in Great Britain in 1992 by Walker Books Ltd., London"--P. facing t.p. aBernie the bear delivers his cargo and introduces the various parts of his truck and the work of a truck driver. 1aTruck drivingxFiction. 1aTrucksxFiction. 1aBearsxFiction. aLVLcEASYkE Radford bMAINp32000000047607r6.99u8954u4417 bMAINp31000000048713r6.99u8955u441800663 2200229 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200130011410000270012724500520015425000120020626000390021830000230025794200220028095200440030295200440034695200430039043829LVL20000910174140.0950509s1995 nyu 00011 eng d a0060172754 anpl95000702 c2309d2309 aAF Banks10aBanks, Russell,d1940-10aRule of the bone :ba novel /cRussell Banks. . a1st ed.0 aNew York :bHarperCollins,cc1995. a390 p. ;c21 cm. . aLVLcAFkAF Banks bMAINp32000000057329r13.20u8956u4419 bMAINp32000000063562r13.20u8957u4420 bLB2p37000000009165r13.20u8958u442100681 2200229 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200120011410000190012624500760014526000420022130000290026344000250029270000250031794200210034295200440036395200440040750848LVL19990313000000.0930624s1992 ilua j 00001 eng d a089434126X anpl93000338 c2310d2310 aJ Defoe1 aDefoe, Daniel.10aRobinson Crusoe /cby Daniel Defoe; cover illustration by Anita Nelson. aChicago, IL :bJ.G. Ferguson,cc1992. a278 p. :bill. ;c22 cm. 0aChildren's Classics.11aNelson, Anita,eill. aLVLcJFkJ Defoe bMAINp32000000040390r15.00u8959u4422 bMAINp31000000043695r15.00u8960u442301139 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000160013824501430015426000910029730000490038850400510043765000450048865000420053365100280057565100250060370000230062874000190065194200240067095200440069495200440073895200430078222773LVL19990327000000.0940804s1995 dcuab b 00110 eng a94033281 a0895990458 a 94033281 c2311d2311 a508.789 Pa10aPage, Jake.14aThe Smithsonian guides to natural America :bThe Southwest--New Mexico and Arizona /ctext by Jake Page ; photography by George H.H. Huey.0 aWashington, DC :aNew York :bSmithsonian Books ;bDistributed by Random House,c1995. axvii, 286 p. :bill. ; maps ;c22 cm. ;dpa. aIncludes bibliographical references and index. 0aNatural historyxGuidebooks.zNew Mexico 0aNatural historyxGuidebooks.zArizona 0aNew MexicoxGuidebooks. 0aArizonaxGuidebooks.10aHuey, George H. H.41aThe southwest. aLVLcNFk508.789 Pa bMAINp32000000058073r11.97u8961u4424 bMAINp31000000054866r11.97u8962u4425 bLB1p33000000022695r11.97u8963u442600702 2200205 4500010001300000020001500013090001500028100003000043245005400073250001200127260004100139300002500180942002500205952004300230952005000273952004300323952004300366952004400409952004300453 a95032034 a0679419462 c2312d231210aCrichton, Michael,d1942-14aThe lost world :ba novel /cby Michael Crichton. a1st ed.0 aNew York :bAlfred A. Knopf,cc1995. axi, 393 p. ;c25 cm. aLVLcAFkAF Crichton bLB2p37000000001566r14.76u8964u4427 bMAINdMAINp32000000009925r14.76u8966u4428 bLB1p36000000003536r14.76u8967u4429 bLB2p34000000009050r14.76u8969u4430 bMAINp31000000056246r14.76u8970u4431 bLB1p33000000023595r14.76u8971u443200737 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000200013624500450015625000130020126000770021430000540029150400640034565000200040994200220042995200440045143830LVL19990316000000.0890920c19901976enkaf b 00110 eng a89023161 a0198161719 a 89023161 c2313d2313 a786.2 Eh10aEhrlich, Cyril.14aThe piano :ba history /cCyril Ehrlich. aRev. ed.0 aOxford :aNew York :bClarendon Press ;bOxford University Press,c1990. a254 p., [8] p. of plates :bill. ;c24 cm. ;dpa. aIncludes bibliographical references (p. 226-233) and index. 0aPianoxHistory. aLVLcNFk786.2 Eh bMAINp32000000058554r20.90u8972u443300875 2200253 450000100060000000300040000600500170001000800390002701000170006603500160008308200200009909000150011910000260013424500890016025000120024926000690026130000430033050000270037352000990040065000220049970000310052194200270055295200420057950849LVL20020628125033.0840801s1985 nyua j 00001 eng a84016599 /AC aflb006031110 219aE Calmenson c2314d231410aCalmenson, Stephanie.10aWaggleby of Fraggle Rock /cby Stephanie Calmenson ; pictures by Barbara McClintock. a1st ed.0 aNew York :bMuppet Press :bHolt, Rinehart, and Winston,cc1985. a[30] p. :bchiefly col. ill. ;c25 cm. a"A Fraggle rock book." aBooker befriends a cave creature with some very destructive habits--and some lovable ones too. 1aPuppetsxFiction.11aMcClintock, Barbara,eill. aLVLcEASYkE Calmenson bLB2p37000000006439r3.31u8973u443400537 2200193 450000100060000000300040000600500170001000800390002703500160006609000150008209200150009710000200011224500390013226000400017130000210021144000420023294200250027495200440029922774LVL19990327000000.0931102s1988 nyu 00011 eng anpl96000015 c2315d2315 aSF Anthony10aAnthony, Piers.10aFor love of evil /cPiers Anthony.0 aNew York :bWilliam Morrow,cc1988. a274 p. ;c22 cm. 0aIncarnations of immortality ;vbk. 6. aLVLcSCIkSF Anthony bMAINp32000000061959r10.00u8974u443500705 2200241 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200120011410000440012624500320017026000360020230000280023844000220026650000260028894200210031495200430033595200430037895200420042129793LVL20000911231458.0960802s1994 nyu j 00011 eng d a0590477447 anpl96001456 c2316d2316 aJ Stine10aStine, R. L.d1943-q(Robert Lawrence),10aGhost beach /cR. L. Stine.0 aNew York :bScholastic,cc1994. a119 p. ;c20 cm. ;dpa. 0aGoosebumps ;v22. a"An Apple Paperback." aLVLcJFkJ Stine bMAINp32000000065956r3.99u8975u4436 bMAINp31000000079157r3.50u8976u4437 bLB1p33000000033110r3.25u8977u443800923 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000190013824501550015726000410031230000410035344000320039450000200042665000490044670000180049570000200051394200240053395200440055795200440060143831LVL19990316000000.0950803s1995 nyua d 00110 eng a95036692 a0823076350 a 95036692 c2317d2317 a781.642 Ha10aHaislop, Neil.10aGiants of country music :bclassic sounds and stars, from the heart of Nashville to the top of the charts /cNeil Haislop, Tad Lathrop, Harry Sumrall.0 aNew York :bBillboard Books,cc1995. axii, 258 p. :bill. ;c24 cm. ;dpa. 0aBillboard hitmakers series. aIncludes index. 0aCountry musiciansxBiography.zUnited States10aLathrop, Tad.10aSumrall, Harry. aLVLcNFk781.642 Ha bMAINp32000000059997r21.95u8978u4439 bMAINp31000000056629r21.95u8979u444000752 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000310013624501000016725000120026726000350027930000290031450400320034360000420037570000170041794200220043495200420045650850LVL20010718161041.0800502s1980 nyub b 00011 eng a79006655 a0385120648 a 79006655 c2318d2318 aAF Stone10aStone, Irving,d1903-1989.14aThe origin :ba biographical novel of Charles Darwin /cby Irving Stone ; edited by Jean Stone. a1st ed.0 aNew York :bDoubleday,cc1980. a743 p. :bmaps ;c24 cm. aBibliography: p. [735]-743.10aDarwin, Charles,d1809-1882xFiction.10aStone, Jean. aLVLcAFkAF Stone bLB2p34000000004296r8.97u8980u444101455 2200385 450000100060000000300040000600500170001000700100002700800410003702000150007803500160009303700440010909000150015324501830016826000610035130000550041250000470046751100910051452001070060552100240071252100130073653800100074953800220075965000180078165000190079965000190081865000470083770000200088470000200090470000190092470000180094371000440096194200210100595200430102622775LVL19990327000000.0vfucbahos950918s1992 cau114 g vleng d a0800109236 anav95000188 a75263bRCA/Columbia Pictures Home Video c2319d231900aCity slickerscCastle Rock Entertainment in association with Nelson Entertainment presents a Face production ; producer, Irby Smith ; director, Ron Underwood.h[videorecording] /0 aBurbank, CA :bRCA/Columbia Pictures Home Video,cp1991. a1 videocassette (114 min.) :bsd., col. ;c1/2 in. aClosed-captioned for the hearing impaired.1 aBilly Crystal, Daniel Stern, Bruno Kirby, Patricia Wettig, Helen Slater, Jack Palance. aCrystal is having a mid-life crisis. To cheer him up, his friends take him on a cattle drive vacation.8 aMPAA rating: PG-13. aGeneral. aNTSC. aVHS Hi-fi stereo. 0aComedy films. 0aWestern films. 0aFeature films. 0aVideo recordings for the hearing impaired.1 aUnderwood, Ron.1 aCrystal, Billy.1 aStern, Daniel.1 aKirby, Bruno.2 aRCA/Columbia Pictures Home Video (Firm) aLVLcAVkAV City bMAINp31000000055862r9.99u8982u444201018 2200277 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200140011210000210012624500420014726000450018930000280023450000440026252002050030665000260051165000230053765000290056094200230058995200430061295200430065595200420069829794LVL20021220144436.0960528r19951993nyu j 00011 eng a0064405486 anpl96000976 c2320d2320 aYA Temple10aTemple, Frances.10aGrab hands and run /cFrances Temple.0 aNew York :bHarper Trophy,c1995 ,c1993. a165 p. ;c20 cm. ;dpa. a"A Richard Jackson book"--Half title p. aAfter his father disappears, twelve-year-old Felipe, his mother, and his younger sister set out on a difficult and dangerous journey, trying to make their way from their home in El Salvador to Canada. 1aSalvadoransxFiction. 1aRefugeesxFiction. 1aIllegal aliensxFiction. aLVLcYAkYA Temple bMAINp35000000001157r2.33u8983u4443 bMAINp31000000060072r2.33u8984u4444 bLB1p33000000025741r2.33u8985u444500613 2200217 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200110011410000200012524500330014526000420017830000280022094200200024895200420026895200420031095200430035243832LVL20021031165818.0960123s1995 nyu 00011 eng d a0061083054 anpl96000210 c2321d2321 aAF Law10aLaw, Susan Kay.10aHome fires /cSusan Kay Law.0 aNew York :bHarperPaperbacks,cc1995. a307 p. ;c18 cm. ;dpa. aLVLcAFkAF Law bLB2p37000000013760r5.50u8986u4446 bLB1p36000000004941r3.25u8987u4447 bMAINp31000000058154r3.25u8988u444801231 2200325 450000100060000000300040000600500170001000800390002701000120006602000150007803500140009309000150010709200180012224501010014024600620024125000120030326000370031530000270035250501430037965000160052265000270053865000230056594200280058895200420061695200430065895200420070195200420074395200610078595200590084650851LVL20020111100949.0961005s1996 paua j 00110 eng a9479156 a1563973731 a 94079156 c2322d2322 aJNF 745.59 On00a175 easy-to-do Christmas crafts :bcreative uses for recyclables /cedited by Sharon Dunn Umnik.00aOne-hundred and seventy five easy to do Christmas crafts. a1st ed.0 aHonesdale :bBell Books,cc1996. a63 p. :bill.,c28 cm. aIncludes step-by-step directions to make Christmas ornaments, decorations, cards, and more. Also includes instructions for making creches. 1aHandicraft. 1aChristmas decorations. 1aRecycling (waste). aLVLcJNFkJNF 745.59 On bLB2p37000000006131r4.10u8989u4449 bMAINp32000000067144r4.10u8990u4450 bLB1p36000000002848r4.10u8991u4451 bLB2p34000000014434r4.10u8992u4452 bMAINdMAINp31000000061986r4.10u8993u4453v2003-09-01 bLB1dLB1p33000000026724r4.10u8994u4454v2003-09-0101039 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200160012310000260013924500370016526000390020230000290024144000230027050400600029352001190035365000490047265000180052180000420053994200250058195200440060695200440065095200430069422776LVL19990327000000.0950818s1996 caua j b 00110 eng a95040336 a1560063319 a 95040336 c2323d2323 aYA 305.5 St10aStewart, Gail,d1949-14aThe homeless /cby Gail Stewart.0 aSan Diego :bLucent Books,cc1996. a112 p. :bill. ;c24 cm. 4aThe other America. aIncludes bibliographical references (p. 109) and index. aPresents first-person accounts of individuals and families who are living as homeless persons in America's cities. 1aHomeless personsxInterviews.zUnited States 1aHomelessness.10aStewart, Gail,d1949-tOther America. aLVLcYAkYA 305.5 St bMAINp32000000065469r16.95u8995u4455 bMAINp31000000060743r16.95u8996u4456 bLB1p33000000026154r16.95u8997u445700752 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000230013824500660016126000380022730000260026550000200029161000300031165000450034194200240038695200440041095200440045443833LVL19990316000000.0951207s1996 nyu 00110 eng a95051000 a0446520330 a 95051000 c2324d2324 a796.332 Gr10aGreen, Tim,d1963-14aThe dark side of the game :bmy life in the NFL /cTim Green.0 aNew York :bWarner Books,cc1996. axiv, 272 p. ;c24 cm. aIncludes index.20aNational Football League. 0aFootballxSocial aspectszUnited States. aLVLcNFk796.332 Gr bMAINp32000000066426r11.67u9000u4458 bMAINp31000000061339r11.67u9001u445900685 2200229 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200130011410000430012724500610017025000200023126000410025130000320029265000440032465000220036894200220039095200430041250852LVL20030328180932.0960417s1994 enk d 00011 eng d a0745121969 anpl96000776 c2325d2325 aLP Doyle10aDoyle, Arthur Conan,cSir,d1859-1930.10aThe hound of the Baskervilles /cSir Arthur Conan Doyle. aLarge print ed.0 aBath :bChivers Large Print,cc1994. aix, 284 p. ;c22 cm. ;dpa. 0aHolmes, Sherlock (Fictitious character) 0aLarge type books. aLVLcLPkLP Doyle bMAINp32000000063997r3.95u9002u446000636 2200217 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200160011410000300013024500360016024600320019626000480022830000310027650000420030794200260034995200430037522777LVL20030527150043.0960731r19961995gaua 00011 eng d a1565041925 anpl96001427 c2326d2326 aSF Moorcock10aMoorcock, Michael,d1939-10aVon Bek /cby Michael Moorcock.1 aMichael Moorcock's Von Bek.0 aClarkston, Ga :bWhite Wolf,c1996, c1995.. ax, 705 p. ;c23 cm. ;dpa. aMichael Moorcock's Von Bek, on cover. aLVLcSCIkSF Moorcock bMAINp32000000065868r8.99u9004u446100350 2200133 450000100060000000300040000600500170001000800410002709000150006810000380008324500310012194200210015295200430017329796LVL19990323000000.0930421s19xx xxu 00010 eng d c2327d2327 aHale, Edward Everett,d1822-1909.14aThe man without a country. aLVLcAFkAF Hale bMAINp32000000004924r1.00u9005u446200920 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000160013524500310015124600100018226000420019230000280023450000230026250000320028552001640031765000220048165000200050394200210052395200430054495200430058743834LVL20011123110937.0930803s1987 nyu j 00011 eng a86045776 a0064470318 a 86045776 c2328d2328 aYA Kerr10aKerr, M. E.10aM.E. Kerr introduces Fell.1 aFell.0 aNew York :bHarper Key Point,cc1987. a165 p. ;c18 cm. ;dpa. aCover title: Fell. a"A Charlotte Zolotow book." aA strange incident on the night of the senior prom changes John Fell's entire life, leading him to enroll in an exclusive private school under an assumed name. 1aSchoolsxFiction. 1aSpiesxFiction. aLVLcYAkYA Kerr bMAINp32000000067540r2.33u9006u4463 bMAINp32000000067541r2.33u9007u446400360 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000210009624500300011794200240014795200430017129797LVL19990323000000.0930420s19xx xxu 00010 eng d a76187503 c2329d23291 aScarry, Richard.10aNicky goes to the doctor. aLVLcEASYkE Scarry bMAINp32000000012278r5.17u9009u446500821 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000290013724500710016626000480023730000280028565000390031365000270035265000260037994200230040595200430042895200420047195200420051336816LVL20010820145215.0941018s1995 miu 00011 eng a94042286 a0801083818 a 94042286 c2330d2330 aAF Schaap10aSchaap, James C.,d1948-10aIn the silence there are ghosts :ba novel /cJames Calvin Schaap.0 aGrand Rapids, Mich. :bBaker Books,cc1995. a228 p. ;c23 cm. ;dpa. 0aCity and town lifexFiction.zIowa 0aFamilyxFiction.zIowa 0aWomenxFiction.zIowa aLVLcAFkAF Schaap bMAINp32000000057199r7.07u9010u4466 bLB1p36000000004730r7.07u9011u4467 bLB2p37000000008799r7.07u9012u446800991 2200325 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009403900180011004000200012805000250014808200160017309000150018910000260020424500390023026000370026930000210030651000480032752000880037552100110046365000190047465000190049394200210051295200440053395200440057795200440062143835LVL20030626095435.0820504s1982 nyu 000 1 eng a82070145 a0670272663 aflb011241010 a2b3c3d3e3 aDLCcDLCdICrlF0 aPS3561.I483bD5 19820 219a813/.54 c2331d23311 aKing, Stephen,d1947-10aDifferent seasons /cStephen King. aNew York :bViking Press,c1982. a527 p. ;c24 cm.0 aJunior High School Library Catalog (Wilson) aRita Hayworth and Shawshank Redemption --Apt pupil--The body--The breathing method.2 aAdult. 7aShort stories. 0aShort stories. aLVLcAFkAF King bMAINp32000000005803r10.17u9014u4469 bMAINp32000000137596r30.95u9015u4470 bMAINp35000000000633r10.00u9016u447100237 2200085 4500010001300000090001500013245005800028942002200086952004300108 a87042674 c2332d233210aAmerican diebetic association family cookbook Vol. 1. aLVLcNFk641.5 Am bMAINp32000000000554r9.71u9017u447201019 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000230013724500430016026000660020330000350026952001940030465000190049865000290051794200250054695200430057195200420061495200430065695200420069936817LVL19990320000000.0930223s1994 nyua j 00011 eng a93012525 a0671787764 a 93012525 c2333d2333 aE Pinkney10aPinkney, J. Brian.10aMax found two sticks /cBrian Pinkney.0 aNew York :bSimon & Schuster Books for Young Readers,cc1994. a[32] p. :bcol. ill. ;c29 cm. aAlthough he doesn't feel like talking, a young boy responds to questions by drumming on various objects, including a bucket, hat boxes, and garbage cans, echoing the city sounds around him. 1aDrumxFiction. 1aAfro-AmericansxFiction. aLVLcEASYkE Pinkney bMAINp32000000058328r8.85u9018u4473 bLB2p34000000006424r8.85u9019u4474 bMAINp31000000055058r8.85u9020u4475 bLB1p33000000022961r8.85u9021u447600825 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000210013624500880015726000400024530000280028552000740031365000220038765000360040965000190044570000280046494200240049295200430051650855LVL19990313000000.0850322s1985 nyua j 00011 eng a85007701 a0027772004 a 85007701 c2334d2334 aJ Rylant1 aRylant, Cynthia.10aEvery living thing :bstories /cby Cynthia Rylant ; decorations by S.D. Schindler. aNew York :bBradbury Press,cc1985. a81 p. :bill. ;c22 cm. aTwelve stories in which animals change people's lives for the better. 1aAnimalsxFiction. 1aPetsxTherapeutic usexFiction. 1aShort stories.11aSchindler, S. D.,eill. aLVLcEASYkJ Rylant bMAINp32000000036104r8.03u9022u447700661 2200217 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200100011210000280012224500380015026000450018830000350023352000920026865000190036094200210037995200430040029799LVL19990323000000.0951201r19561928nyua j 00011 eng a0698200918 anpl95001708 c2335d2335 aE Gag10aGag, Wanda,d1893-1946.10aMillions of cats /cby Wanda Gag.0 aNew York :bCoward-McCann,c1956, c1928. a[32] p. :bill. ;c18 x 25 cm. aHow can an old man and his wife select one cat from a choice of millions and trillions? 1aCatsxFiction. aLVLcEASYkE Gag bMAINp32000000061216r6.30u9023u447800926 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012324500920013825000170023026000420024730000330028950000750032250000200039765000230041771000620044073000330050294200250053595200440056095200440060436818LVL19990320000000.0940525s1995 nyua 00100 eng a94013101 a0517596105 a 94013101 c2336d2336 aREF 613 Co04aThe Columbia University College of Physicians and Surgeons complete home medical guide. aRev. 3rd ed.0 aNew York :bCrown Publishers,cc1995. axi, 932 p. :bill. ;c29 cm. a"Revised and updated ed. of the popular: Complete home medical guide." aIncludes index. 0aMedicine, Popular.20aColumbia University.bCollege of Physicians and Surgeons.01aComplete home medical guide. aLVLcREFkREF 613 Co bMAINp32000000059838r30.00u9024u4479 bMAINp31000000056423r30.00u9025u448000848 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000350013724500490017225000120022126000380023330000330027144000240030452001350032865000260046365000240048994200250051395200440053850856LVL19990313000000.0770609s1977 nyua j 00011 eng a76058714 a0060205822 a 76058714 c2337d2337 aE Bonsall1 aBonsall, Crosby Newell,d1921-10aTwelve bells for Santa /cby Crosby Bonsall. a1st ed. aNew York :bHarperTrophy,cc1977. a64 p. :bcol. ill. ;c23 cm. 3aAn I can read book. aThree children, off to the North Pole to deliver 12 chocolate bells to Santa for winning a contest, become very hungry on the way. 1aSanta ClausxFiction. 1aChristmasxFiction. aLVLcEASYkE Bonsall bMAINp32000000037204r11.69u9026u448100369 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000180009624500440011494200220015895200430018057875LVL20000107000000.0930421s19xx xxu 00010 eng d a59005350 c2338d2338 aField, Peter.10aDrive for Devil's River /cPeter Field. aLVLcWESkW Field bMAINp31000000034760r5.40u9027u448200849 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000200013624500360015626000400019230000210023265000670025365000590032065000520037965100410043194200230047295200440049595200440053929800LVL20011025165203.0951010s1996 nyu 00011 eng a95025865 a0688144500 a 95025865 c2339d2339 aM Finder10aFinder, Joseph.14aThe zero hour /cJoseph Finder.0 aNew York :bWilliam Morrow,cc1996. a422 p. ;c25 cm. 0aGovernment investigatorsxFiction.zNew York (State)zNew York 0aWomen detectivesxFiction.zNew York (State)zNew York 0aTerrorismxFiction.zNew York (State)zNew York 0aManhattan (New York, N.Y.)xFiction. aLVLcMYSkM Finder bMAINp32000000064549r14.46u9028u4483 bMAINp31000000059973r14.46u9030u448400965 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000240013624500510016026000390021130000290025044000270027950400640030665000220037065000130039265000370040565000280044274000280047094200220049895200440052095200440056495200430060850857LVL19990313000000.0920427s1993 nyua b 00110 eng a92016748 a0671847201 a 92016748 c2340d2340 a635.9 Cr10aCresson, Charles O.10aCharles Cresson on the American flower garden.0 aNew York :bPrentice Hall,cc1993. a245 p. :bill. ;c28 cm. 0aBurpee expert gardner. aIncludes bibliographical references (p. 236-237) and index. 0aFlower gardening. 0aFlowers. 0aFlower gardeningzUnited States. 0aFlowerszUnited States.01aAmerican flower garden. aLVLcNFk635.9 Cr bMAINp32000000038368r11.80u9031u4485 bMAINp31000000042533r11.80u9032u4486 bLB1p33000000015185r11.80u9033u448701160 2200385 450000100060000000300040000600500170001000800390002701000170006602000270008303500160011003900180012604000200014405000220016408200160018609000150020210000250021724500350024225000130027726000330029030000280032349000180035150000200036951000320038951000140042151000280043552001130046352100340057652100090061065000310061965000100065094200280066095200430068895200430073122782LVL19990327000000.0820303s1982 nyua j 00110 eng a82002688 /AC a0531003361 (lib. bdg.) aflb007874010 a2b3c3d3e3 aDLCcDLCdICrlF0 aTP325.bK643 19820 219a662.6/2 c2341d234110aKraft, Betsy Harvey.10aCoal /cby Betsy Harvey Kraft. aRev. ed.0 aNew York :bF. Watts,c1982. a64 p. :bill. ;c23 cm.0 aA First book. aIncludes index.0 aChildren's Catalog (Wilson)0 aBooklist.0 aSchool Library Journal. aDiscusses the history, mining, and uses of coal, and its effect on the environment, today and in the future.0 a6.0bFollett Library Book Co.2 a3-6. 0aCoalxJuvenile literature. 1aCoal. aLVLcJNFkJNF 553.2 KRA bMAINp32000000015724r8.95u9035u4488 bMAINp31000000008198r8.95u9036u448900344 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000220009824500130012094200220013395200430015529801LVL19990323000000.0930415s19xx xxu 00010 eng d a0553275666 c2342d23421 aPascal, Francine.10aRunaway. aLVLcJFkJ Pascal bMAINp32000000025307r1.74u9037u449000958 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000260014024501010016626000500026730000340031744000250035150400600037665100200043665100140045665100160047065100110048670000280049794200270052595200440055295200600059636820LVL19990320000000.0941212s1995 nyuab j b 00110 eng a94045786 a0791034127 a 94045786 c2343d2343 aJNF 976.4 Ay 0aAylesworth, Thomas G.14aThe Southwest :bColorado, New Mexico, Texas /cby Thomas G. Aylesworth, Virginia L. Aylesworth.0 aNew York :bChelsea House Publishers,cc1995. a96 p. :bill. ; map ;c21 cm. 0aDiscovering America. aIncludes bibliographical references: p. (94) and index. 1aSouthwest, New. 1aColorado. 1aNew Mexico. 1aTexas.10aAylesworth, Virginia L. aLVLcJNFkJNF 976.4 Ay bMAINp32000000064913r18.95u9038u4491 bLB2dLB2p37000000015442r18.95u9039u4492v2004-12-1101683 2200481 450000100060000000300040000600500170001000800390002701000220006602000270008803500160011504000200013105000160015108200120016709000150017910000210019424500670021526000580028230000400034035000110038051000520039151000230044351000140046652001220048052100340060252100090063665000400064565000390068565000480072465000330077265000100080565000240081565000100083965000240084994200260087395200430089995200440094295200440098695200430103095200430107395200430111695200420115950858LVL19990313000000.0730920c19741973njua j 00010 eng a73016365 /AC/r853 a0131283553 (lib. bdg.) aflb00315301 aDLCcDLCdICrlF0 aTS1626.bD4 a646.4/5 c2344d234410aDe Paola, Tomie.10aCharlie needs a cloak /cstory and pictures by Tomie de Paola.0 aEnglewood Cliffs, N.J.,bPrentice-Hallc[1974, c1973] a[32] p.billus. (part col.)c23 cm. a$4.95.0 aElementary School Library Collection (Bro-Dart)0 aALA Notable Books.0 aBooklist. aA shepherd shears his sheep, cards and spins the wool, weaves and dyes the cloth, and sews a beautiful new red cloak.0 a1.9bFollett Library Book Co.2 aK-3. 0aHand spinningxJuvenile literature. 0aHand weavingxJuvenile literature. 0aDyes and dyeingxWoolxJuvenile literature. 0aCloaksxJuvenile literature. 1aWool. 1aClothing and dress. 7aWool. 7aClothing and dress. aLVLcEASYkE De Paola bMAINp32000000019427r5.48u9040u4493 bMAINp32000000039520r14.00u9041u4494 bMAINp32000000039521r14.00u9042u4495 bMAINp32000000039707r3.00u9043u4496 bMAINp31000000002020r2.75u9044u4497 bMAINp31000000009775r5.48u9045u4498 bLB1p33000000030211r6.95u9046u449900759 2200241 450000100060000000300040000600500170001000800390002702000150006603500140008109000150009509200190011010000240012924500700015326000430022330000360026650000200030265000400032265000400036294200290040295200430043195200430047436821LVL19990320000000.0901102s1991 nyua 00110 eng a0806972912 a 90022886 c2345d2345 aJNF 796.323 Be10aBenagh, Jim,d1937-10aBasketball :bstartling stories behind the records /cJim Benagh.0 aNew York :bSterling Pub. Co.,cc1991. a128 p. :bill. ;c21 cm. ;dpa. aIncludes index. 1aBasketballxHistory.zUnited States 1aBasketballxRecordszUnited States. aLVLcJNFkJNF 796.323 Be bMAINp32000000066207r2.95u9047u4500 bMAINp31000000061217r2.95u9048u450100944 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200190012310000230014224500690016526000390023430000290027350400510030252000990035360000360045265000180048894200290050695200440053595200440057995200430062350859LVL19990313000000.0920625s1993 nyua j b 00110beng a92025024 a0899198627 a 92025024 c2346d2346 aJNF 973.917 Fr10aFreedman, Russell.10aEleanor Roosevelt :ba life of discovery /cby Russell Freedman.0 aNew York :bClarion Books,cc1993. a198 p. :bill. ;c26 cm. aIncludes bibliographical references and index. aA photobiography of the first wife of a president to have a public life and career of her own.11aRoosevelt, Eleanor,d1884-1962. 1aFirst ladies. aLVLcJNFkJNF 973.917 Fr bMAINp32000000041601r10.30u9050u4502 bMAINp31000000044266r10.30u9051u4503 bLB1p33000000016153r10.30u9052u450400330 2200133 450000100060000000300040000600500170001000800410002702000150006809000150008324500340009894200200013295200440015243841LVL19990316000000.0930419s19xx xxu 00010 eng d a0848710290 c2347d234710aCooking light cookbook; 1991. aLVLcNFk641 Co bMAINp32000000029643r14.72u9053u450500747 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000140013424500420014825000200019026000460021030000210025665000370027765000370031465000220035194200200037395200440039395200440043750860LVL19990313000000.0951016r19961995meu d 00011 eng a95043003 a0786205989 a 95043003 c2348d2348 aLP Tan10aTan, Amy.14aThe hundred secret senses /cAmy Tan. aLarge print ed.0 aThorndike, Me. :bThorndike Press,c1996. a568 p. ;c23 cm. 0aSistersxFiction.zUnited States 0aChinese American womenxFiction. 0aLarge type books. aLVLcLPkLP Tan bMAINp32000000062749r13.47u9054u4506 bMAINp31000000058467r13.47u9055u450701098 2200301 450000100060000000300040000600500170001000700100002700800410003703500160007803700220009409000150011609200140013124501680014526000520031330000550036550600310042050800270045152001220047852100130060053800200061365000330063365000250066670000200069170000180071194200230072995200440075250861LVL19990313000000.0vf cbahom931230s1986 cau046 g vleng d avid93000671 a644bPacific Arts c2349d2349 aAV 629 Fo00aFootsteps of giantscBellvinent Communications, Inc. ; produced by William Carpenter and John L. Ernst ; written and produced by Kevin Sanders.h[videorecording] / aBeverly Hills, CA :bPacific Arts Video,c1986. a1 videocassette (46 min.) :bsd., col. ;c1/2 in.. aFor private home use only. aNarrator: David Perry. aDocumentary on the 25 year history of manned space flight, from the first Mercury missions to the Challenger program. aGeneral. aVHS Hi-fi mono. 0aAstronauticszUnited States. 0aManned space flight.11aSanders, Kevin.11aPerry, David. aLVLcAVkAV 629 Fo bMAINp32000000019509r11.97u9056u450800342 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000190009824500140011794200220013195200430015322786LVL19990327000000.0941224s19uu 000 0 eng d a0674179145 c2350d2350 aMercer, Ian F.10aCrystals. aLVLcNFk548.5 Me bMAINp32000000028468r5.77u9057u450900558 2200193 4500010001300000020001500013090001500028100001800043245003600061250001200097260003700109300002900146600003400175600001900209650004200228651003000270942002200300952004200322 a93014474 a0385471025 c2351d235110aTaylor, Nick.12aA necessary end /cNick Taylor. a1st ed.0 aNew York :bN.A. Talese,cc1994. a194 p. :bill. ;c19 cm.10aTaylor, Nick,d1945-xFamily.10aTaylor family. 0aDeathxSocial aspectszUnited States. 0aUnited StatesxBiography. aLVLcNFk929.2 Ta bLB1p36000000012266r8.85u9059u451000925 2200277 450000100060000000300040000600500170001000800390002701000190006602000300008504000130011505000200012808200110014809000150015910000160017424500930019026000410028330000360032450400510036065000550041165000430046670000210050974000520053094200220058295200430060457881LVL20020920141245.0770712s1977 paua b 00110 eng a77022069 //r84 a0878571914bpbk. :c$8.95 aDLCcDLC0 aTJ163.5.D86bW3 a690/.8 c2352d235210aWade, Alex.10a30 energy-efficient houses...you can build /cAlex Wade ; photographs by Neal Ewenstein.0 aEmmaus, Pa. :bRodale Press,cc1977. axviii, 316 p. :bill. ;c29 cm. aIncludes bibliographical references and index. 0aDwellingsxEnergy conservationxAmateurs' manuals. 0aHouse constructionxAmateurs' manuals.10aEwenstein, Neal.01aThirty energy efficient houses...you can build. aLVLcNFk690.8 Wa bMAINp31000000024043r7.16u9061u451101014 2200325 450000100060000000300040000600500170001000800390002701000130006602000260007902000300010503500160013504000200015105000160017108200130018709000150020010000200021524500400023526000400027530000380031550000200035350400300037352001260040352100170052965000140054665000290056065000310058994200250062095200430064529806LVL19990323000000.0780118s1978 paua b 001 0 eng a78000780 a0878572007 :c$12.95. a0878572015bpbk. :c$9.95 aflb00707506 aDLCcDLCdICrlF0 aTT200.bL34 a684/.082 c2353d23531 aLangsner, Drew.10aCountry woodcraft /cDrew Langsner. aEmmaus, Pa. :bRodale Press,c1978. axv, 304 p. :bill. ;c19 x 23 cm. aIncludes index. aBibliography: p. 297-299. aA guide to making traditional woodcrafting projects covering tools, materials, techniques, and step-by-step instructions.2 aYoung Adult. 0aWoodwork. 0aAgricultural implements. 0aImplements, utensils, etc. aLVLcNFk684.082 LAN bMAINp32000000013130r7.77u9062u451201244 2200325 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012324501440013826000380028230000290032050000370034950000200038650501310040665000230053765000230056065000350058371000340061873000550065273000490070773000510075694200240080795200440083195200430087543844LVL19990316000000.0871109s1988 nyua 00100 eng a87032073 a0394565231 a 87032073 c2354d2354 a616.072 Am04aThe American Medical Association home medical advisor :bthe new self-help guide to symptoms, disorders, diseases, and medical emergencies.0 aNew York :bRandom House,cc1988. a320 p. :bill. ;c29 cm. aEach pt. also issued separately. aIncludes index.0 aChildren, how to understand their symptoms -- Men, how to understand their symptoms -- Women, how to understand your symptoms. 0aMedicine, Popular. 0aSelf-care, Health. 0aSymptomatologyxPopular works.20aAmerican Medical Association.00aChildren, how to understand their symptoms.d1988.00aMen, how to understand your symptoms.d1988.00aWomen, how to understand your symptoms.d1988. aLVLcNFk616.072 Am bMAINp32000000000725r14.43u9063u4513 bLB2p34000000001668r14.43u9064u451400781 2200241 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200110011210000210012324500770014425000120022126000440023330000320027750400600030965000620036994200200043195200440045195200440049550863LVL19990313000000.0940407s1993 vtua bf 00110 eng a0944475388 anpl94000380 c2355d2355 a690 St1 aStiles, David R.10aSheds :bthe do-it-yourself guide for backyard builders /cDavid Stiles. a1st ed. aCharlotte, Vt. :bCamden House,cc1993. ax, 142 p. :bill. ;c28 cm. aIncludes bibliographical references p. (137) and index. 0aOutbuildingsxDesign and constructionxAmateurs' manuals. aLVLcNFk690 St bMAINp32000000046165r19.25u9065u4515 bMAINp31000000047670r19.25u9066u451600356 2200133 450000100060000000300040000600500170001000800410002709000150006810000340008324500370011794200250015495200430017936826LVL19990320000000.0940526s19xx xxu 00010 eng d c2356d23561 aChristie, Agatha,d1890-1976.14aThe mysterious affair at Styles. aLVLcMYSkM Christie bMAINp32000000001656r8.00u9068u451700616 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000240013424500460015825000120020426000410021630000210025744000370027880000500031594200210036550864LVL20030423150311.0930914s1994 nyu 00011 eng a93037802 a0679433104 a 93037802 c2357d2357 aSF May1 aMay, Julian,d1931-10aDiamond mask :ba novel /cby Julian May. a1st ed. aNew York :bAlfred A. Knopf,cc1994. a461 p. ;c25 cm. 0aGalactic milieu trilogy ;vv. 2.1 aMay, JuliantGalactic milieu trilogy ;vv. 2. aLVLcSCIkSF May00954 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009409000150011009200120012510000310013724500690016825000120023726000370024930000390028652001380032565000330046365000280049665000280052465000210055270000260057394200210059995200440062057884LVL19990220000000.0871224s1988 maua j 00010 eng a87037218 a0316281638 aflb01612205 c2358d2358 aJ Field10aField, Rachel,d1894-1942.10aGeneral store /cby Rachel Field ; illustrated by Giles Laroche. a1st ed.0 aBoston :bLittle, Brown,cc1988. a[32] p. :bcol ill. ;c24 x 27 cm. aA girl imagines the general store she will own someday and all the things for sale in it, from bolts of calico to bunches of bananas. 0aChildren's poetry, American. 1aGeneral storesxPoetry. 1aStores, RetailxPoetry. 1aAmerican poetry.11aLaroche, Giles,eill. aLVLcJFkJ Field bMAINp31000000013989r13.01u9071u451800930 2200289 450000100060000000300040000600500170001000800390002701000190006602000310008503500160011604000200013205000260015208200160017809000150019410000250020924500390023426000490027330000210032250000320034352001160037552100340049152100100052594200200053595200430055595200420059829809LVL19990323000000.0810619s1981 mnu 000 1 eng a81010183 //r88 a0871234130 (pbk.) :c$3.50 aflb01387501 aDLCcDLCdICrlF0 aPR9199.3.O38bO5 19810 219a813/.54 c2359d23591 aOke, Janette,d1935-10aOnce upon a summer /cJanette Oke. aMinneapolis, Minn. :bBethany House,cc1981. a203 p. ;c21 cm. aSequel: The winds of autum. aAuntie Lou was the only mother Josh knew and now Grandpa and Uncle Charlie were working to get her married off.0 a8.0bFollett Library Book Co.2 a7-10. aLVLcAFkAF Oke bMAINp32000000030903r3.45u9073u4519 bLB1p36000000004589r3.45u9074u452000835 2200229 450000100060000000300040000600500170001000800390002703500160006609000150008209200170009710000300011424501320014426000590027630000340033552001110036965000170048065000140049770000230051194200270053495200440056150866LVL20000706000000.0940613s1951 nyua j 00010 eng anpl94000887 c2360d2360 aJNF 398.2 La1 aLang, Andrew,d1844-1912.14aThe crimson fairy book /ccollected and edited by Andrew Lang; illustrated by Ben Kutcher; with a foreword by Mary Gould Davis. aLondon :aNew York :bLongmans, Green and Co.,cc1951. axii, 233 p. :bill. ;c21 cm. aThirty-six fairy tales from the folklore of Hungary, Russia, Rumania, Finland, Iceland, Japan, and Sicily. 1aFairy tales. 1aFolklore.11aKutcher, Beneill. aLVLcJNFkJNF 398.2 La bMAINp32000000047899r10.00u9075u452100764 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009403900180011004000200012805000260014808200160017409000150019010000350020524500510024026000320029130000210032352000700034452100170041494200240043195200430045522791LVL20030517123705.0830204s1983 nyu 00011 eng a83003173 a0399128204 aflb011828030 a2b3c3d3e3 aDLCcDLCdICrlF0 aPS3569.A5125bS2 19830 219a813/.54 c2361d236110aSanders, Lawrence,d1920-1998.14aThe seduction of Peter S. /cLawrence Sanders.0 aNew York :bPutnam,cc1983. a393 p. ;c24 cm. a"Success" comes to a would-be actor from an unexpected direction.2 aYoung Adult. aLVLcAFkAF Sanders bMAINp32000000009217r9.41u9077u452200385 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000260009824500430012494200280016795200440019536829LVL19990320000000.0930424s19xx xxu 00010 eng d a094428017X c2362d2362 aSandell, Elizabeth J.10aMaiasaura :bthe good mother dinosaur. aLVLcJNFkJNF 567.9 SAN bMAINp32000000032086r11.90u9079u452301563 2200361 4500020001500000090001500015100002600030245005700056246005200113260003200165300003600197440003200233520015000265800002600415942002100441952004300462952004300505952004300548952004300591952004300634952003600677952004300713952004300756952004200799952004200841952004200883952004200925952004300967952004301010952004301053952004201096952006301138 a0451190491 c2363d236310aKing, Stephen,d1947-14aThe two dead girls /cwith a foreword by the author.30aThe green mile: part one ;bThe two dead girls.0 aNew York :bSignet,cc1996. axiii, 92 p. :bill. ;c18 cm. ; 4aThe green mile ;vpart one. aA multi-part serial novel that begins on death row and goes on from theere to realms of revelation that make death seem sweet. To be continued...10aKing, Stephen,d1947- aLVLcAFkAF King bMAINp32000000073131r1.70u9081u4524 bMAINp32000000063535r1.70u9082u4525 bMAINp32000000063537r1.70u9083u4526 bMAINp32000000063539r1.70u9084u4527 bMAINp32000000137591r2.99u9085u4528 bLB1p36000000004643u9086u4529 bMAINp35000000000631r1.70u9087u4530 bMAINp35000000000632r1.70u9088u4531 bLB2p34000000013419r1.70u9089u4532 bLB2p34000000013420r1.70u9090u4533 bLB2p34000000013421r1.70u9091u4534 bLB2p34000000013154r2.99u9092u4535 bMAINp31000000059049r1.70u9093u4536 bMAINp31000000059051r1.70u9094u4537 bMAINp31000000059052r1.70u9095u4538 bLB1p33000000025194r1.70u9096u4539 bMAINdMAINp31000000121136r2.99u326283u4540v2005-02-1700610 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009405000260010808200130013409000150014709200160016210000230017824500410020125000200024226000520026294200230031495200430033757886LVL19990220000000.0860813c19871951mau d 00011 eng a86019836 a0893408630 a 860198361 aPS3523.E434bT49 19870 a813/.549 c2364d2364 aL.P. Lehman10aLehman, Paul Evan.10aTexas vengeance /cPaul Evan Lehman. aLarge print ed.0 aSouth Yarmouth, MA :bJohn Curley,cc1987,1951. aLVLcLPkLP Lehman bMAINp31000000035652r8.95u9097u454100948 2200265 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200170011210000210012924500610015026000420021130000420025352001490029565000210044465000210046594200270048695200430051395200420055695200420059895200420064015773LVL20021023184356.0960418r19961989nyua j 00010 eng a0698113713 anpl96000799 c2365d2365 aJNF 398.2 De10aDe Paola, Tomie.10aTony's bread :ban Italian folktale /cby Tomie dePaola.0 aNew York :bPaper Star,c1996, c1989. a[32] p. :bcol. ill. ;c26 cm. ;dpa. aA baker loses his daughter but gains a bakery in the grand city of Milano after meeting a determined nobleman and baking a unique loaf of bread. 1aBreadxFolklore. 1aFolklorezItaly. aLVLcJNFkJNF 398.2 De bMAINp32000000064059r3.51u9098u4542 bLB1p36000000002504r3.51u9099u4543 bLB2p37000000012230r5.95u9100u4544 bLB1p33000000025429r3.51u9101u454500537 2200193 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200130011410000340012724500450016126000450020630000280025194200220027995200420030129811LVL20030513150141.0950717s1995 onc 00011 eng d a1551660679 anpl96000532 c2366d2366 aAF Allen10aAllen, Charlotte Vale,d1941-10aSomebody's baby /cCharlotte Vale Allen.0 a[Ontario, Canada] :bMIRA Books,cc1995. a400 p. ;c18 cm. ;dpa. aLVLcAFkAF Allen bLB1p36000000001071r8.23u9102u454600631 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000210013424500500015526000490020530000210025465000200027594200200029595200430031595200430035843849LVL19990316000000.0950817c19861975ilu 00010 eng a86050399 a084231394X a 86050399 c2367d2367 a242 Hu10aHurnard, Hannah.10aHinds' feet on high places /cHannah Hurnard.0 aWheaton, Ill. :bLiving Books,c1986, c1975. a317 p. ;c19 cm. 0aChristian life. aLVLcNFk242 Hu bMAINp32000000058904r8.95u9103u4547 bMAINp31000000055488r8.95u9104u454800801 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000190013724500710015625000120022726000390023930000270027860000300030565000480033565000420038394200230042595200430044895200440049150868LVL20020228123005.0940207s1994 nyu 00010aeng a94006270 a0688127169 a 94006270 c2368d2368 a813.54 Ba10aBach, Richard.10aRunning from safety :ban adventure of the spirit /cRichard Bach. a1st ed.0 aNew York :bWiliam Morrow,cc1994. axiii, 274 p. ;c25 cm.10aBach, RichardxBiography. 0aAuthors, AmericanxBiography.y20th century 0aAir pilotsxBiography.zUnited States aLVLcNFk813.54 Ba bLB2p34000000002393r13.28u9105u4549 bMAINp31000000051270r13.28u9106u455001154 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200180012310000220014124500380016325000120020126000380021330000210025150000320027250000260030452002470033065000340057765000390061165000260065065000250067665100700070194200250077195200440079615774LVL19990331000000.0921223s1990 nyu j 00011 eng a89036380 a0060219130 a 89036380 c2369d2369 aJ Fleish- man1 aFleischman, Paul.10aSaturnalia /cby Paul Fleischman. a1st ed. aNew York :bHarper & Row,cc1990. a113 p. ;c22 cm. a"A Charlotte Zolotow book." a"Ages 12 up"--Jacket. aIn 1681 in Boston, fourteen-year-old William, a Narraganset Indian captured in a raid six years earlier, leads a productive and contented life as a printer's apprentice but is increasingly anxious to make some connection with his Indian past. 1aNarraganset IndiansxFiction. 1aIndians of North AmericaxFiction. 1aApprenticesxFiction. 1aPrejudicesxFiction. 1aBoston (Mass.)xHistoryxColonial period, ca. 1600-1775xFiction. aLVLcJFkJ Fleishman bMAINp32000000036432r12.50u9107u455100567 2200217 450000100060000000300040000600500170001000800390002701000130006603500140007904000130009305000180010609000150012410000330013924500290017225000140020126000470021530000190026294200250028195200430030622793LVL19990327000000.0680912s1968 nyu 000 1 eng a68024394 a 68024394 aDLCcDLC0 aPZ3.M189bSal c2370d23701 aMacInnes, Helen,d1907-1985.14aThe Salzburg connection. a[1st ed.] aNew York,bHarcourt, Brace & Worldc[1968] a406 p.c22 cm. aLVLcAFkAF MacInnes bMAINp32000000006051r4.17u9108u455200933 2200277 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200150011210000220012724500740014926000390022330000420026252001050030465000240040965000200043365000220045370000270047594200260050295200430052895200420057195200420061350869LVL19990313000000.0880628s1989 nyua j 00011 eng a0689718616 anpl94002072 c2371d2371 aE Rockwell10aRockwell, Anne F.10aApples and pumpkins /cby Anne Rockwell ; pictures by Lizzy Rockwell.0 aNew York :bAladdin Books,cc1989. a[16] p. :bill. ;c18 x 23 cm. ;dpa. aIn preparation for Halloween night, a family visits Mr. Comstock's farm to pick apples and pumpkins. 1aHalloweenxFiction. 1aApplexFiction. 1aPumpkinxFiction.11aRockwell, Lizzy,eill. aLVLcEASYkE Rockwell bMAINp32000000052305r2.33u9109u4553 bLB2p34000000010858r2.33u9110u4554 bLB1p33000000020598r2.33u9111u455500921 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000220013724500740015925000120023326000420024530000400028744000300032750400590035752000940041665000210051094200250053195200440055695200430060057888LVL19990220000000.0950329s1996 nyua j b 00110 eng a95008758 a0823921492 a 95008758 c2372d2372 aYA 158 Ig10aIgnoffo, Matthew.10aEverything you need to know about self-confidence /cMatthew Ignoffo. a1st ed.0 aNew York :bRosen Pub. Group,cc1996. a64 p. :bill. (some col.) ;c25 cm. 4aThe Need to know library. aIncludes bibliographical references (p. 62) and index. aSuggests how self-confidence can be built and describes the positive effects it can have. 1aSelf-confidence. aLVLcYANFkYA 158 Ig bMAINp31000000062835r13.95u9112u4556 bLB1p33000000027178r13.95u9113u455700695 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000200013524500660015525000130022126000390023430000290027394200220030295200430032495200430036795200430041015775LVL20030513143513.0881221s1989 nyua 00011 eng a88040611 a0394572572 a 88040611 c2373d2373 aM Bayer1 aBayer, William.10aBlind side /cWilliam Bayer ; with photographs by the author. a1st. ed. aNew York :bVillard Books,cc1989. a321 p. :bill. ;c25 cm. aLVLcMYSkM Bayer bLB2p37000000023475r18.95u9114u4558 bMAINp32000000039241r5.00u9115u4559 bMAINp31000000042842r5.00u9116u456001086 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012324501100013425000120024426000540025630000450031050000250035560000460038065000700042665000460049665000370054265000340057965000260061365100400063970000290067994200200070895200440072843851LVL19990316000000.0931216s1994 nyuf f 00000 eng a93049507 a0060170344 a 93049507 c2374d2374 a813 To04aThe Tony Hillerman companion :ba comprehensive guide to his life and work /cedited by Martin Greenberg. a1st ed.0 aNew York, NY :bHarperCollins Publishers,cc1994. aviii, 375 p., [8] p. of plates ;c25 cm. aMap on lining paper.10aHillerman, TonyxHandbooks, manuals, etc. 0aDetective and mystery stories, AmericanxHandbooks, manuals, etc. 0aLeaphorn, Joe, Lt. (Fictitious character) 0aChee, Jim (Fictitious character) 0aNavajo Indians in literature. 0aPolice in literature. 0aSouthwestern StatesxIn literature.10aGreenberg, Martin Harry. aLVLcNFk813 To bMAINp32000000063221r15.95u9117u456100733 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200190012310000540014224500530019625000300024926000440027930000240032365000440034765000310039194200260042295200430044850870LVL19990313000000.0830505c19831971nyu 00011 eng a83047590 a0060806672 a 83047590 c2375d2375 aAF Wode- house1 aWodehouse, P. G.d1881-1975.q(Pelham Grenville),10aJeeves and the tie that binds /cP.G. Wodehouse. a1st Perennial library ed. aNew York :bHarper & Row,c1983, c1971. a189 p. ;c18 cm. ;. 0aJeeves (Fictitious character)xFiction. 0aButlersxFiction.zEngland aLVLcAFkAF Wodehouse bMAINp32000000053426r3.95u9118u456200881 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000250013824500790016326000500024230000280029252001510032065000170047170000270048894200260051595200430054195200430058457889LVL20000911161506.0900112s1992 nyua j 00011 eng a90030527 a0060224967 a 90030527 c2376d2376 aE Paterson10aPaterson, Katherine.14aThe king's equal /cby Katherine Paterson ; illustrated by Vladimir Vagin.0 aNew York :bHarperCollins Publishers,cc1992. a64 p. :bill. ;c26 cm. aIn order to wear the crown of the kingdom, an arrogant young prince must find an equal in his bride. Instead, he finds someone far better than he. 1aFairy tales.11aVagin, Vladimir,eill. aLVLcEASYkE Paterson bLB2p37000000012496r10.12u9119u4563 bLB1p33000000015129r10.12u9121u456400895 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200220012310000260014524500740017126000360024530000300028152001550031165000350046665100200050194200320052195200440055395200440059722795LVL19990327000000.0920831s1993 nyua j 00011 eng a92032324 a0590465732 a 92032324 c2377d2377 aE Cowen- Fletcher20aCowen-Fletcher, Jane.10aIt takes a village /cwritten and illustrated by Jane Cowen-Fletcher.0 aNew York :bScholastic,cc1993. a[30] p. :bill. ;c26 cm. aOn market day in a small village in Benin, Yemi tries to watch her little brother Kokou and finds that the entire village is watching out for him too. 1aBrothers and sistersxFiction. 1aBeninxFiction. aLVLcEASYkE Cowen-Fletcher bMAINp32000000063075r13.56u9122u4565 bMAINp31000000058666r13.56u9123u456600983 2200277 450000100060000000300040000600500170001000800390002701000210006604000130008705000190010008200070011909000150012610000200014124500860016126000470024730000310029444000260032552001370035152100340048860000600052260000390058270000240062194200230064595200370066829814LVL19990323000000.0850906s1967 ilua j 00010beng a67012234 /AC/r85 aDLCcDLC0 aDA86.22.D7bF6 a92 c2378d237810aFoster, John T.12aA world explorer: Sir Francis Drake,cby John Foster. Illustrated by Gray Morrow.0 aChampaign, Ill.,bGarrard Pub. Co.c[1967] a95 p.bcol. illus.c24 cm. 0aWorld explorer books. aA brief biography of the English explorer who traveled around the world and to the New World, and fought against the Spanish Armada.0 a5.2bFollett Library Book Co.10aDrake, francis,cSir,d1540?-1596xJuvenile literature.11aDrake, Francis,cSir,d1540?-1596.11aMorrow, Gray,eill. aLVLcJNFkJB Drake bMAINp32000000001955u9124u456701426 2200373 4500010002100000020002900021082000800050090001500058100001700073245003300090260008700123300003500210500006100245520008000306650003300386650003200419650004400451650004300495650002200538650001200560650001200572650001100584942002500595952004200620952004400662952004400706952004300750952004400793952004300837952004300880952004300923952004300966952004301009 a86002534 /AC/r90 a0887080154 (lib. bdg.) :00a582 c2379d23791 aCarle, Eric.14aThe tiny seed /cEric Carle. aNatick, MA :bDistributed in USA by Alphabet Press,bPicture Book Studio :cc1987. a[32] p. :bcol. ill. ;c29 cm. aReprint. Originally published: New York : Crowell, 1970. aA simple description of a flowering plant's life cycle through the seasons. 0aPlantsxJuvenile literature. 0aSeedsxJuvenile literature. 0aPlant life cyclesxJuvenile literature. 0aSeedsxJuvenile literature.xDispersal 0aSeedsxDispersal. 0aPlants. 0aPlants. 0aSeeds. aLVLcJNFkJNF 582 Ca bLB2p37000000012300r9.12u9125u4568 bMAINp32000000024779r11.96u9126u4569 bMAINp32000000128360r11.96u9127u4570 bLB1p36000000018829r11.96u9128u4571 bMAINp35000000010155r11.96u9129u4572 bLB2p34000000028296r11.96u9130u4573 bMAINp31000000063699r9.12u9131u4574 bMAINp31000000063703r9.12u9132u4575 bMAINp31000000063708r9.12u9133u4576 bLB1p33000000051890r11.96u9135u457700581 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000210013724500390015826000370019730000210023494200230025595200430027895200420032143852LVL19990316000000.0901029s1990 nyu 00011 eng a90062886 a0821732048 a 90062886 c2380d2380 aAF Taylor 0aTaylor, Janelle.10aFollow the wind /cJanelle Taylor. aNew York :bZebra Books,cc1990. a452 p. ;c24 cm. aLVLcAFkAF Taylor bMAINp32000000029263r9.83u9136u4578 bLB2p34000000004309r9.83u9137u457900637 2200229 450000100060000000300040000600500170001000800410002703500160006809000150008409200120009910000190011124500470013026000440017730000280022150000260024965000200027565000200029565000250031594200230034095200440036350871LVL19990313000000.0911028r19721971nyua j 00011 eng d anpl94001084 c2381d2381 aE Lobel1 aLobel, Arnold.10aFrog and Toad together /cby Arnold Lobel. aNew York :bHarper & Row,c1972, c1971. a63 p. :bill. ;c23 cm. a"Weekly Reader Books" 1aFrogsxFiction. 1aToadsxFiction. 1aFriendshipxFiction. aLVLcEASYkE Lobel bMAINp32000000054797r10.95u9138u458001329 2200373 450000100060000000300040000600500170001000700100002700800410003702000150007803500160009309000150010909200110012424501070013526000820024230000550032444000210037950000480040050000420044850600310049051100540052152000820057552100130065753800440067065000190071470000320073370000170076570000270078270000150080970000230082494200200084795200440086795200440091115777LVL19990331000000.0vf cbahoq930713m19911946nyu113 g vleng d a1559838469 avid93000271 c2382d2382 aAV Kid04aThe Kid from BrooklyncA Samuel Goldwyn production ; directed by Norman Z. McLeod.h[videorecording] / aNew York, NY :bHBO Video ;bSamuel Goldwyn Home Entertainment,c1991, c1946. a1 videocassette (113 min.) :bsd., col. ;c1/2 in. 0aFamily classics. aDigitally remastered stereo surround sound. aIncludes original theatrical trailer. aFor private home use only.1 aDanny Kaye, Virginia Mayo, Eve Arden, Vera-Ellen. aThrough a series of misadventures, a timid milkman becomes a boxing champion. aGeneral. aVHS. Dolby B NR. Chace Surround stereo. 0aFeature films.11aMcLeod, Norman,d1895-1964.11aKaye, Danny.11aMayo, Virginia,d1920-11aAden, Eva.10aVera-Ellen,d1926- aLVLcAVkAV Kid bMAINp32000000031992r15.99u9139u4581 bMAINp31000000064444r15.99u9140u458201055 2200325 450000100060000000300040000600500170001000800390002701000170006602000150008303500180009804000130011605000230012908200140015209000150016610000190018124500370020026000410023726300100027830000110028852001800029965000220047965000280050165000370052965000330056665100210059994200230062095200430064395200430068622796LVL19990327000000.0910318s1991 nyu j 000 1 eng a91013919 /AC a0385305184 a 91013919 /AC aDLCcDLC00aPZ7.P2843bMo 199100220a[Fic] c2383d23831 aPaulsen, Gary.14aThe monument /cby Gary Paulsen. aNew York :bDelacorte Press,c[1991] a9110. ap. cm. aThirteen-year-old Rocky, self-conscious about the braces on her leg, has her life changed by the remarkable artist who comes to her small Kansas town to design a war memorial. 1aArtistsxFiction. 1aWar memorialsxFiction. 1aPhysically handicappedxFiction. 1aCity and town lifexFiction. 1aKansasxFiction. aLVLcJFkJ Paulsen bMAINp32000000031417r8.85u9141u4583 bMAINp32000000041010r2.31u9142u458400926 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009409000150011009200150012510000200014024500760016025000120023626000320024830000350028052000740031565000410038965000270043070000240045794200260048195200430050795200430055095200430059329815LVL19990323000000.0841214s1985 nyua j 00011 eng a84028672 a0525442057 aflb00854808 c2384d2384 aE Levinson10aLevinson, Riki.10aWatch the stars come out /cRiki Levinson ; illustrated by Diane Goode. a1st ed.0 aNew York :bDutton,cc1985. a[32] p. :bcol. ill. ;c29 cm. aGrandma tells about her mama's journey to America by boat, years ago. 1aEmigration and immigrationxFiction. 1aGrandmothersxFiction.11aGoode, Diane,eill. aLVLcEASYkE Levinson bMAINp32000000019121r8.05u9143u4585 bMAINp32000000035845r7.42u9145u4586 bMAINp31000000002790r7.42u9146u458700808 2200253 450000100060000000300040000600500170001000800390002701000170006603500180008304000130010105000180011408200100013209000150014210000190015724500810017625000140025726000420027130000310031352001070034470000370045194200230048895200430051136834LVL19990320000000.0700626s1970 nyua j 000 1 eng a70094673 /AC a 70094673 /AC aDLCcDLC0 aPZ7.A2685bGi a[Fic] c2385d23851 aAgnew, Seth M.14aThe giant sandwich,cby Seth M. Agnew. Illustrated by Barbara Ninde Byfield. a[1st ed.] aGarden City, N.Y.,bDoubledayc[1970] a41 p.bcol. illus.c22 cm. aMr. Magoffin felt inspired to make a giant sandwich but neither he nor his cat was inspired to eat it.11aByfield, Barbara Ninde.,eillus. aLVLcEASYkE Agnew bMAINp32000000005269r2.75u9147u458800980 2200289 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200150012510000180014024500550015826000490021330000480026250000420031050501300035252000640048265000200054665000220056665000140058870000200060294200250062295200430064750872LVL19990313000000.0950302s1995 onca j 00010 eng d a95131620 a0553482904 a 95131620 c2386d2386 aJNF 796 Mc10aMcMane, Fred.10aWinning women /cby Fred McMane and Cathrine Wolf.0 aToronto ;aNew York :bBantam Books,cc1995. a109 p. :bill. (some col.) ;c20 cm. ;dpa. a"A Sports illustrated for kids book."0 aOksana Baiul -- Gail Devers -- Julie Krone -- Steffi Graf -- Bonnie Blair -- Teresa Edwards -- Nancy Lopez -- Shannon Miller. a"Eight great athletes and their unbeatable stories"--Cover. 1aWomen athletes. 1aSports for women. 1aAthletes.10aWolf, Cathrine. aLVLcJNFkJNF 796 Mc bMAINp32000000066362r2.95u9148u458900740 2200265 450000100060000000300040000600500170001000800390002701000130006602000270007903500140010603900180012004000130013805000260015108200160017709000150019310000360020824500450024426000460028930000210033550000300035665000220038694200220040895200440043022797LVL19990327000000.0840727c19841971mau d 000 1 eng a84015819 a0816136483 (lg. print) a 840158190 a2b3c3d3e3 aDLCcDLC1 aPS3513.I4628bE5 19840 219a813/.54 c2387d23871 aGiles, Janice Holt,d1909-1979.14aThe enduring hills /cJanice Holt Giles. aBoston, Mass. :bG.K. Hall,c1984, c1971. a406 p. ;c25 cm. aPublished in large print. 0aLarge type books. aLVLcLPkLP Giles bMAINp32000000005393r14.88u9150u459000630 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009403900180010804000130012605000250013908200170016409000150018110000210019624500480021726000340026530000210029994200250032095200430034529816LVL19990323000000.0810519s1981 nyu 000 1 eng a81008594 a0684172941 a 810085940 a2b3c3d3e3 aDLCcDLC0 aPR6053.A855bT5 19810 219a823/.914 c2388d23881 aCaudwell, Sarah.10aThus was Adonis murdered /cSarah Caudwell. aNew York :bScribner,cc1981. a246 p. ;c21 cm. aLVLcMYSkM Caudwell bMAINp32000000003133r5.00u9151u459100624 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200240012310000360014724500440018326000440022730000290027165000350030065000400033594200310037536835LVL20021207110238.0950418s1995 nyua 00011 eng a95012776 a0312130783 a 95012776 c2389d2389 aAF Ross- Mac donald20aRoss-Macdonald, Malcolm,d1932-10aFor I have sinned /cMalcolm Macdonald.0 aNew York :bSt. Martin's Press,cc1995. a391 p. :bill. ;c22 cm. 0aYoung womenxFiction.zIreland 0aMissing childrenxFiction.zIreland aLVLcAFkAF Ross-Macdonald01188 2200373 450000100060000000300040000600500170001000800390002701000210006603500160008703900180010304000200012104300120014105000220015308200200017509000150019510000170021024500450022726000330027230000210030550000200032651000480034652001500039452100340054452100100057865000490058865000510063765000130068865000150070165000130071665000150072994200270074495200430077143854LVL20010720144326.0840405s1984 nyu j 00110 eng a84007340 /AC/r85 aflb001653120 a2b3c3d3e3 aDLCcDLCdICrlF an-us---0 aHV9471.bK67 19840 219a365/.6/0973 c2390d239010aKosof, Anna.10aPrison life in America /cby Anna Kosof.0 aNew York :bF. Watts,c1984. a104 p. ;c24 cm. aIncludes index.0 aSenior High School Library Catalog (Wilson) aAn account of prison life in America today, both for men and women, emphasizing the dehumanization of the experience and suggesting alternatives.0 a7.3bFollett Library Book Co.2 a7-10. 0aPrisonsxJuvenile literature.zUnited States 0aPrisonersxJuvenile literature.zUnited States 1aPrisons. 1aPrisoners. 7aPrisons. 7aPrisoners. aLVLcJNFkJNF 365.6 Ko bMAINp31000000006481r8.91u9153u459200871 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000230013724501110016025000120027126000350028330000450031865000410036365000350040465000450043965000540048494200230053895200440056150873LVL20030607142939.0941104s1995 nyuaf 00010 eng a94043317 a0385477902 a 94043317 c2391d2391 a796.44 Ry10aRyan, Joan,d1936-10aLittle girls in pretty boxes :bthe making and breaking of elite gymnasts and figure skaters /cJoan Ryan. a1st ed.0 aNew York :bDoubleday,cc1995. a243, [16] p. of plates :bill. ;c25 cm. 0aGymnastics for girlszUnited States. 0aFigure skatingzUnited States. 0aWomen athletesxAbuse ofzUnited States. 0aSportsxMoral and ethical aspects.zUnited States aLVLcNFk796.44 Ry bMAINp32000000058746r14.23u9154u459300353 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000170009624500280011394200230014195200430016457892LVL19990220000000.0930407s19xx xxu 00010 eng d a62009904 c2392d2392 aBallard, Er.10aArt of training plants. aLVLcNFk635.9 BAL bMAINp31000000024664r3.30u9155u459400512 2200205 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000210013524500320015626000320018830000210022094200210024195200440026250874LVL20021028132032.0950524s1995 nyu 00011 eng a95022830 a0670866121 a 95022830 c2393d2393 aAF Hart 0aHart, Josephine.10aOblivion /cJosephine Hart.0 aNew York :bViking,cc1995. a201 p. ;c21 cm. aLVLcAFkAF Hart bMAINp32000000060154r11.77u9156u459501028 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000300013724501280016726000450029530000280034044000380036852001280040660000440053465000200057865000310059865000130062970000280064294200240067095200440069415780LVL19990331000000.0860210s1986 mnua j 00010beng a86002690 a0876142927 a 86002690 c2394d2394 aJB Carver1 aMitchell, Barbara,d1941-12aA pocketful of goobers :ba story about George Washington Carver /cby Barbara Mitchell ; illustrations by Peter E. Hanson. aMinneapolis :bCarolrhoda Books,cc1986. a64 p. :bill. ;c23 cm. 2aA Carolrhoda creative minds book. aRelates the scientific efforts of George Washington Carver, especially his production of more than 300 uses for the peanut.11aCarver, George Washington,d1864?-1943. 1aAgriculturists. 1aAfro-AmericansxBiography. 1aPeanuts.11aHanson, Peter E.,eill. aLVLcJNFkJB Carver bMAINp32000000041958r13.46u9158u459601059 2200349 450000100060000000300040000600500170001000800390002701000210006602000240008703500160011104000200012705000210014708200080016809000150017610000190019124500360021026000310024630000380027751000140031551000280032951000240035752000870038152100340046852100090050265000470051165000130055865000270057194200250059895200430062395200430066622799LVL20020903091707.0791113s1980 nyua j 000 0 eng a79024945 /AC/r83 a0517541041 :c$6.95 aflb00167607 aDLCcDLCdICrlF0 aQL49.bB556 1980 a591 c2395d23951 aBester, Roger.10aGuess what? /cBy Roger Bester. aNew York :bCrown,cc1980. a[32] p. :bchiefly ill. ;c24 cm.0 aBooklist.0 aSchool Library Journal.0 aHorn Book Magazine. aDescribes the characteristics of a variety of animals in question and answer form.0 a3.0bFollett Library Book Co.2 aK-3. 0aAnimalsxMiscellaneaxJuvenile literature. 1aAnimals. 1aQuestions and answers. aLVLcJNFkJNF 591 Be bMAINp32000000015332r5.56u9159u4597 bMAINp32000000035833r6.95u9160u459800597 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000180013524500550015326000380020830000210024694200240026795200440029195200440033536837LVL19990320000000.0900828s1991 nyu 00011 eng a90047441 a067940077X a 90047441 c2396d2396 aBeattie10aBeattie, Ann.10aWhat was mine and other stories /cby Ann Beattie.0 aNew York :bRandom House,cc1991. a237 p. ;c22 cm. aLVLcAFkAF Beattie bMAINp32000000030496r11.51u9161u4599 bMAINp32000000042101r11.51u9162u460000996 2200277 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200100011224501700012226000440029230000330033665000410036965000360041065000210044665100510046770000240051870000290054294200200057195200420059195200430063395200420067650875LVL20030627145502.0960131r19951994nyu 00001 eng a0553573160 anpl96000287 c2397d2397 aW New00aNew trails :btwenty-three original stories of the West from western writers of America /cedited by John Jakes and Martin H. Greenberg ; introduction by John Jakes.0 aNew York :bBantam Books,c1995, c1994. axii, 353 p. ;c18 cm. ;dpa. 0aShort stories, AmericanzWest (U.S.) 0aAmerican fictiony20th century. 0aWestern stories. 0aWest (U.S.)xSocial life and customsxFiction.10aJakes, John,d1932-10aGreenberg, Martin Harry. aLVLcWESkW New bLB2p37000000002756r3.47u9163u4601 bMAINp35000000000701r3.47u9164u4602 bLB2p34000000012700r3.47u9165u460300871 2200301 450000100060000000300040000600500170001000800390002701000130006602000250007903500160010404000250012005000240014508200160016909000150018510000270020024500320022725000120025926000410027130000210031250000220033351000140035552000970036952100170046665000210048394200220050495200430052622800LVL19990327000000.0880922s1989 nyu 000 1 eng a88007413 a0345339754 :c$19.95 aflb00123705 aDLCcDLCdDLCdICrlF00aPS3566.O36bH6 198900219a813/.54 c2398d2398 aPohl, Frederik,d1919-10aHomegoing /cFrederik Pohl. a1st ed. aNew York :bBallantine Books,c1989. a279 p. ;c24 cm. a"A Del Rey book."0 aBooklist. aAfter being raised by aliens on their spaceship, Sandy Washington is returned home to Earth.2 aYoung Adult. 7aScience fiction. aLVLcSCIkSF Pohl bMAINp32000000024306r9.71u9169u460400878 2200265 450000100060000000300040000600500170001000800390002701000130006602000320007903500160011103900180012704000200014505000260016508200160019109000150020710000350022224500500025726000320030730000210033952001670036052100170052794200240054495200440056836838LVL20020311093939.0820408s1982 nyu 00011 eng a82007518 a0399127240 :c$13.95 (est.) aflb011239010 a2b3c3d3e3 aDLCcDLCdICrlF0 aPS3569.A5125bC3 19820 219a813/.54 c2399d239910aSanders, Lawrence,d1920-1998.14aThe case of Lucy Bending /cLawrence Sanders.0 aNew York :bPutnam,cc1982. a440 p. ;c24 cm. aA psychiatrist searches for the reason behind the aberrant behavior of a beautiful eight-year-old girl, Lucy, who acts like a practiced seductress. 0-399-12724-0.2 aYoung Adult. aLVLcAFkAF Sanders bMAINp32000000032155r10.00u9170u460500842 2200277 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200140011410000190012824500300014726000340017730000270021144000240023865000240026294200230028695200420030995200430035195200430039495200420043795200430047995200420052250876LVL20020308143648.0960618s1996 nyu j 00011 eng d a0440410495 anpl96001124 c2400d2400 aJ Paulsen10aPaulsen, Gary.10aSkydive! /cGary Paulsen.0 aNew York :bYearling,cc1996. a58 p. ;c20 cm. ;dpa. 0aWorld of adventure. 1aSkydivingxFiction. aLVLcJFkJ Paulsen bLB2p37000000004387r2.31u9172u4606 bMAINp32000000065283r2.31u9173u4607 bMAINp35000000002050r2.31u9174u4608 bLB2p34000000013975r2.31u9175u4609 bMAINp31000000060478r2.31u9176u4610 bLB1p33000000026024r2.31u9177u461101659 2200445 450000100060000000300040000600500170001000800390002701000170006602000150008303500160009804000250011404300210013905000270016008200190018709000150020610000340022124501290025526000310038426300100041530000290042550000640045450000200051850400210053851000320055951000480059151000230063952001550066252100340081752100090085165000710086065000490093165000240098065000440100465000150104870000330106394200300109695200430112695200440116922801LVL19990327000000.0890228r19891988nyu j b 001 0 eng a89003820 /AC a0399220313 aflb01640603 aDLCcDLCdDLCdICrlF aa-vt---an-us-dc00aDS559.83.W18bA83 198900219a959.704/38 c2401d24011 aAshabranner, Brent K.,d1921-10aAlways to remember :bthe story of the Vietnam Veterans Memorial /cBrent Ashabranner ; photographs by Jennifer Ashabranner. aNew York :bPutnam,c1989. a8906. a101 p. :bill. ;c24 cm. aReprint. Originally published: New York : Dodd, Mead, 1988. aIncludes index. aBibliography: p.0 aChildren's Catalog (Wilson)0 aJunior High School Library Catalog (Wilson)0 aALA Notable Books. aDiscusses the building of the Vietnam Veterans Memorial, the controversies that have surrounded it, and some human interest stories connected with it.0 a7.6bFollett Library Book Co.2 a5-8. 0aVietnam Veterans Memorial (Washington, D.C.)xJuvenile literature. 1aVietnam Veterans Memorial (Washington, D.C.) 1aNational monuments. 7aVietnam Veterans Memorial (Wash., D.C.) 7aMonuments.11aAshabranner, Jennifer,eill. aLVLcJNFkJNF 959.704 ASH bMAINp32000000027411r9.27u9179u4612 bMAINp32000000031804r13.46u9180u461300682 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000270013624500690016325000120023226000520024430000290029665000220032565000270034794200220037495200440039629820LVL19990323000000.0870817s1987 nyua j 00011 eng a87042950 a0474356165 a 87042950 c2402d2402 aJ Selden1 aSelden, George,d1929-14aThe old meadow /cGeorge Selden ; illustrated by Garth Williams. a1st ed. aNew York :bFarrar, Strauss and Giroux,cc1987. a193 p. :bill. ;c24 cm. 1aAnimalsxFiction. 1aCountry lifexFiction. aLVLcJFkJ Selden bMAINp32000000036741r13.50u9181u461401368 2200361 450000100060000000300040000600500170001000800390002701000170006602000240008303500160010704000200012305000240014308200140016709000150018110000260019624501130022225000260033526000450036130000210040651000320042751000480045951000140050752002450052152100340076652100090080065000230080965000230083294200230085595200430087895200430092195200420096436839LVL20000817000000.0880205c19881987nyu j 00011 eng a88003358 /AC a0689712251 :c$3.95 aflb01621203 aDLCcDLCdICrlF1 aPZ7.R54465bSu 19880 219a[Fic] c2403d240310aRoberts, Willo Davis.10aSugar isn't everything :ba support book, in fiction form, for the young diabetic /cby Willo Davis Roberts. a1st Aladdin Books ed.0 aNew York :bAladdin Books,c1988, c1987. a190 p. ;c20 cm.0 aChildren's Catalog (Wilson)0 aJunior High School Library Catalog (Wilson)0 aBooklist. aA detailed description of juvenile-onset diabetes (Type I) using a fictional form in which eleven-year-old Amy discovers that she has the disease, learns to treat it and to deal with her anger, and finally accepts that she CAN live with it.0 a4.0bFollett Library Book Co.2 a5-8. 1aDiabetesxFiction. 7aDiabetesxFiction. aLVLcJFkJ Roberts bMAINp32000000025564r6.75u9182u4615 bMAINp35000000002682r2.37u9183u4616 bLB2p37000000012347r3.95u9184u461700917 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000240014024500760016426000480024030000400028844000250032850000200035352001570037365000250053070000260055594200270058195200430060850877LVL19990313000000.0960821r19921991nyua j 00110 eng a92053091 a1856978133 a 92053091 c2404d2404 aJNF 574.5 Co10aCochrane, Jennifer.10aNature /cJennifer Cochrane ; illustrated by Graham Allen ... [et al.].0 aNew York, N.Y. :bKingfisher Books,cc1992. a48 p. :bcol. ill. ;c28 cm. ;dpa. 4aThe World around us. aIncludes index. aExamines how plants and animals have invaded almost every conceivable habitat on land and sea, below ground and in the air, and adapted to thrive there. 1aAdaptation (Biology)11aAllen, Graham,d1940- aLVLcJNFkJNF 574.5 Co bMAINp32000000066476r2.95u9185u461800354 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000210009824500200011994200260013995200430016557896LVL19990220000000.0950323s19uu 000 0 eng d a0312937539 c2405d24051 aMcCaffrey, Anne.10aStitch in snow. aLVLcAFkAF McCaffrey bMAINp31000000015467r8.82u9186u461900935 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000240013724500350016126000310019630000210022750000370024865000700028565000490035594200240040495200430042895200440047195200430051595200440055895200430060215783LVL20010804011450.0940107s1994 nyu 00011 eng a94002343 a0312853823 a 94002343 c2406d2406 aW Wheeler10aWheeler, Richard S.10aCashbox /cRichard S. Wheeler.0 aNew York :bForge,cc1994. a381 p. ;c24 cm. a"A Tom Doherty Associates book." 0aSilver mines and miningxHistoryxFiction.y19th centuryzMontana 0aFrontier and pioneer lifexFiction.zMontana aLVLcWESkW Wheeler bLB2p37000000015150r13.89u9187u4620 bMAINp32000000059245r13.89u9188u4621 bLB2p34000000005909r13.89u9189u4622 bMAINp31000000048510r13.89u9190u4623 bLB1p33000000019118r13.89u9191u462400858 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009409000150011009200150012510000200014024500830016026000320024330000280027549000300030352000810033365000250041465000300043965000210046970000210049094200260051195200430053722802LVL19990327000000.0781128s1979 nyua j 00011 eng a78025717 a0399611371 aflb00541707 c2407d2407 aE Johnston10aJohnston, Tony.10aHappy birthday, Mole & Troll /cby Tony Johnston ; drawings by Cyndy Szekeres.0 aNew York :bPutnam,cc1979. a63 p. :bill. ;c23 cm.0 aA See and read storybook. aMole and Troll learn several lessons about friendship in these four stories. 1aFriendshipxFiction. 1aMoles (Animals)xFiction. 1aTrollsxFiction.10aSzekeres, Cyndy. aLVLcEASYkE Johnston bMAINp32000000016686r2.50u9193u462501087 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200190012310000180014224501020016026000480026230000280031044000320033850000200037052001950039065000210058565100360060670000180064270000280066070000240068894200290071295200440074129821LVL19990323000000.0870326s1988 mnu j 00110 eng a87004014 a0822509210 a 87004014 c2408d2408 aJNF 641.595 Ch1 aChung, Okwha.10aCooking the Korean way /bOkwha Chung and Judy Monroe ; photographs by Robert L. and Diane Wolfe. aMinneapolis :bLerner Publications,cc1988. a48 p. :billus.c19 cm. 0aEasy menu ethnic cookbooks. aIncludes index. aIntroduces the cooking and food habits of Korea, including such recipes as bean sprout salad and Korean egg rolls, and provides brief information on the geography and history of the country. 1aCookery, Korean. 1aKoreaxSocial life and customs.10aMonroe, Judy.11aWolfe, Robert L.,eill.11aWolfe, Diane,eill. aLVLcJNFkJNF 641.595 Ch bMAINp32000000035661r13.46u9194u462601415 2200421 450000100060000000300040000600500170001000800390002701000210006602000240008703500160011103900180012704000200014505000230016508200120018809000150020010000170021524500940023226000470032630000330037351000140040651000280042051000270044852000930047552100340056852100090060265000260061165000350063765000260067265000350069870000230073394200230075695200420077995200430082195200430086495200430090795200430095043859LVL20000310000000.0810108s1981 nyua j 00011 eng a80029664 /AC/r85 a0878881824 :c$7.95 aflb009552060 a2b3c3d3e3 aDLCcDLCdICrlF0 aPZ7.B6265bOn 19810 219a[E] c2409d240910aBlume, Judy.14aThe one in the middle is the green kangaroo /cby Judy Blume ; illustrated by Amy Aitken.0 aScarsdale, N.Y. :bBradbury Press,cc1981. a39 p. :bcol. ill. ;c24 cm.0 aBooklist.0 aSchool Library Journal.0 aBasal Reading Program. aFreddy hates being the middle one in the family until he gets a part in the school play.0 a2.0bFollett Library Book Co.2 aK-3. 1aFamily lifexFiction. 1aBrothers and sistersxFiction. 7aFamily lifexFiction. 7aBrothers and sistersxFiction.11aAitken, Amy,eill. aLVLcEASYkE Blume bLB2p37000000008916r7.95u9197u4627 bMAINp32000000005342r5.37u9198u4628 bMAINp32000000019100r4.77u9199u4629 bMAINp32000000034159r2.95u9200u4630 bMAINp31000000004265r7.77u9201u463100352 2200133 450000100060000000300040000600500170001000800410002709000150006810000230008324500470010694200220015395200430017557897LVL19990220000000.0930422s19xx xxu 00010 eng d c2410d2410 aRayner, William H.10aElementary surveying /cWilliam H. Rayner. aLVLcNFk526.9 Ra bMAINp31000000019190r2.98u9202u463201022 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000230013824500780016126000470023930000330028649000430031952001910036265000170055370000210057094200250059195200430061695200430065995200420070215784LVL19990331000000.0800401s1981 ilua j 00011 eng a80013667 a0813650747 a 80013667 c2411d2411 aJE Hillert10aHillert, Margaret.14aThe magic nutcracker /cMargaret Hillert ; illustrated by Portia Iversen.0 aChicago, Ill. :bFollett Pub. Co.,cc1981. a32 p. :bcol. ill. ;c21 cm. 2aA Follett just-beginning-to read book. aWhen a young girl rescues her nutcracker from an attack by mice, the nutcracker becomes a prince and takes her to see the Snow King and Queen, the Sugar Plum Fairy, and waltzing flowers. 1aFairy tales.10aIversen, Portia. aLVLcEASYkE Hillert bMAINp32000000048099r7.69u9203u4633 bMAINp31000000043383r7.70u9204u4634 bLB1p33000000007348r6.95u9205u463501319 2200409 450000100060000000300040000600500170001000800390002701000170006602000340008303500160011704000200013305000210015308200240017409000150019810000280021324500370024126000580027830000330033649000280036950000200039751000140041751000280043152000840045952100340054352100090057760000530058660000320063960000320067165000580070365000150076165000170077665000170079365000260081094200300083695200430086636841LVL19990320000000.0780816c19791975mnua j 001 0beng a78056804 /AC a0822512157blib bdg. :c$4.95 aflb00100302 aDLCcDLCdICrlF0 aBR325.bO64 1979 a230/.4/10924aBa92 c2412d24121 aO'Neill, Judith,d1930-10aMartin Luther /cJudith O'Neill. aMinneapolis :bLerner Publications Co.,c1979, c1975. a50 p. :bill. ;c22 x 23 cm.0 aA Cambridge topic book. aIncludes index.0 aBooklist.0 aSchool Library Journal. aPresents the life and philosophy of a key figure in the Protestant Reformation.0 a6.8bFollett Library Book Co.2 a5-8.10aLuther, Martin,d1483-1546xJuvenile literature.11aLuther, Martin,d1483-1546.17aLuther, Martin,d1483-1546. 0aReformationxBiographyxJuvenile literature.zGermany 1aReformers. 1aReformation. 7aReformation. 7aReformersxBiography. aLVLcJNFkJNF 230.4 O'NEI bMAINp32000000014901r5.95u9206u463600608 2200217 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200120011410000170012624500300014326000390017330000280021294200220024095200430026295200420030595200430034743860LVL20021031153544.0930927s1993 nyu 00011 eng d a0843934883 anpl93001192 c2413d2413 aW Slade10aSlade, Jack.10aRapid fire /cJack Slade.0 aNew York :bLeisure Books,cc1993. a171 p. ;c18 cm. ;dpa. aLVLcWESkW Slade bMAINp32000000042432r2.31u9207u4637 bLB1p36000000005434r2.31u9208u4638 bMAINp31000000044786r2.31u9209u463901043 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000210013524500400015625000120019626000540020830000350026244000320029752001160032965000220044565000190046780000500048694200230053695200430055995200420060295200430064495200420068715785LVL19990331000000.0911024s1992 nyua j 00011 eng a91041598 a0803711786 a 91041598 c2414d2414 aE Wells10aWells, Rosemary.14aThe island light /cRosemary Wells. a1st ed.0 aNew York :bDial Books for Young Readers,cc1992. a[24] p. :bcol. ill. ;c14 cm. 0aVoyage to the Bunny Planet. aFelix has an awful day until he is whisked off to the Bunny Planet to experience the day that should have been. 1aRabbitsxFiction. 1aSickxFiction.1 aWells, Rosemary.tVoyage to the Bunny Planet. aLVLcEASYkE Wells bMAINp32000000049081r7.48u9210u4640 bLB2p34000000011381r2.51u9211u4641 bMAINp31000000050398r2.51u9212u4642 bLB1p33000000019909r2.51u9213u464301002 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000210013624501380015725000120029526000340030730000360034165000240037765000150040165000470041670000180046391000170048194200220049895200420052095200420056295200420060495200420064622804LVL20030524130718.0920127s1992 nyua b 00110 eng a92003543 a1562829769 a 92003543 c2415d2415 a618.2 Sw1 aSweet, O. Robin.14aThe working woman's Lamaze handbook :bthe essential guide to pregnancy, Lamaze, and childbirth /cby O. Robin Sweet and Patty Bryan. a1st ed. aNew York :bHyperion,cc1992. a222 p. :bill. ;c21 cm. ;dpa. 0aNatural childbirth. 0aPregnancy. 0aPregnant womenxEmploymentzUnited States.10aBryan, Patty. a1997 October aLVLcNFk618.2 Sw bLB2p37000000003978r5.77u9214u4644 bLB1p36000000000424r5.77u9216u4645 bLB2p34000000001726r5.77u9218u4646 bLB1p33000000012920r5.77u9219u464700347 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000260009624500120012294200230013495200440015729823LVL20020924110242.0930522s19xx xxu 00010 eng d a88008373 c2416d24161 aDailey, Janet,d1944-10aRivals. aLVLcAFkAF Dailey bMAINp31000000017492r14.76u9220u464801272 2200385 450000100060000000300040000600500170001000800390002701000170006602000330008303500160011604000250013205000240015708200120018109000150019310000230020824500420023126000430027330000350031651000190035151000140037051000240038452001990040852100340060752100090064165000200065065000230067065000190069365000200071265000230073265000190075594200250077495200440079995200430084343861LVL19990316000000.0890918s1990 nyua j 000 1 eng a89027856 /AC a0553070622 (library binding) aflb00548703 aDLCcDLCdDLCdICrlF00aPZ7.P75186bJu 199000220a[E] c2417d24171 aPolacco, Patricia.10aJust plain fancy /cPatricia Polacco. aNew York, N.Y. :bBantam Books,c1990. a[32] p. :bcol. ill. ;c29 cm.0 aSLJ Best Book.0 aBooklist.0 aHorn Book Magazine. aNaomi, an Amish girl whose elders have impressed upon her the importance of adhering to the simple ways of her people, is horrified when one of her hen eggs hatches into an extremely fancy bird.0 a3.8bFollett Library Book Co.2 aK-3. 1aAmishxFiction. 1aPeacocksxFiction. 1aEggsxFiction. 7aAmishxFiction. 7aPeacocksxFiction. 7aEggsxFiction. aLVLcEASYkE Polacco bMAINp32000000030753r14.39u9221u4649 bLB1p36000000003777r14.39u9222u465001609 2200457 450000100060000000300040000600500170001000800390002701000170006602000270008302000220011003500160013204000200014805000210016808200140018909000150020310000230021824501200024126000320036130000290039344000460042251000320046851000280050051000200052852001910054852100340073952100090077365000440078265000330082665000230085965000280088265000290091065000160093965000170095565000230097265000280099565000290102370000280105294200270108095200440110736843LVL20020919083802.0860506s1986 nyua j 001 0 eng a86012500 /AC a0688063489 (lib. bdg.) a0688063497 (pbk.) aflb00705606 aDLCcDLCdICrlF0 aTJ147.bZ89 19860 219a621.8 c2418d24181 aZubrowski, Bernie.10aWheels at work :bbuilding and experimenting with models of machines /cBernie Zubrowski ; illustrated by Roy Doty. aNew York :bMorrow,cc1986. a112 p. :bill. ;c24 cm. 2aA Boston Children's Museum activity book.0 aChildren's Catalog (Wilson)0 aSchool Library Journal.0 aKirkus Reviews. aInstructions for using readily available materials to make models of machines such as pulleys, windlasses, and water wheels, with suggested experiments to demonstrate their capabilities.0 a5.9bFollett Library Book Co.2 a3-6. 0aMachineryxModelsxJuvenile literature. 0aWheelsxJuvenile literature. 1aMachineryxModels. 1aMachineryxExperiments. 1aModels and model making. 1aHandicraft. 1aExperiments. 7aMachineryxModels. 7aMachineryxExperiments. 7aModels and model making.11aDoty, Roy,d1922-eill. aLVLcJNFkJNF 621.8 Zu bMAINp32000000029743r10.80u9224u465100557 2200205 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009409000150011009200140012510000180013924500690015726000360022630000210026294200240028395200440030743862LVL19990316000000.0911202s1992 nyu 00011 eng a91045165 a0805010858 aonv90003941 c2419d2419 aM Grafton1 aGrafton, Sue.10a"I" is for innocent :ba Kinsey Millhone mystery /cSue Grafton. aNew York :bHenry Holt,cc1992. a286 p. ;c24 cm. aLVLcMYSkM Grafton bMAINp32000000033101r10.70u9225u465201063 2200313 450000100060000000300040000600500170001000700150002700800410004202000150008303500160009803700260011409000150014009200140015510000280016924500820019726000510027930000430033050000160037351100270038952000930041665000550050965000350056465000350059965100280063470000200066294200230068295200440070550881LVL19990313000000.0ssulmnjlcmnnce950109s1993 mdunnn f eng d a1556908245 anav96000012 a93125bRecorded Books c2420d2420 aAC Pearce10aPearce, Michael,d1933-14aThe Mamur Zapt and the night of the dogcMichael Pearce.h[sound recording] /0 aPrince Frederick, MD :bRecorded Books,c1994. a5 sound cassettes (6.5 hr.) :banalog. aUnabridged.0 aReader: Simon Prebble. aThe Mamur Zapt is caught between Copts and Muslims, whose enmity has resulted in murder. 0aOwen, Cadwallader (Fictitious character)xFiction. 0aPolicexFiction.zEgyptzCairo 0aDetective and mystery stories. 0aCairo (Egypt)xFiction.1 aPrebble, Simon. aLVLcACkAC Pearce bMAINp32000000061410r40.00u9226u465300623 2200193 4500010001300000020001500013090001500028100002100043245007300064260006400137300002900201500003900230500002000269650001600289650003200305650002600337942002200363952004400385 a93050890 a0895776057 c2421d24211 aGreen, Caroline.10aVictorian crafts revived /cCaroline Green ; photography D.I. Lewis. aPleasantville, N.Y. :bReader's Digest Association,cc1993. a144 p. :bill. ;c29 cm. a"Reader's digest book"--Verso t.p. aIncludes index. 0aHandicraft. 0aDecorative arts, Victorian. 0aNeedleworkxPatterns. aLVLcNFk745.5 Gr bMAINp31000000051738r15.64u9228u465400896 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000240013524500880015925000210024726000600026830000410032865000220036965000200039165000190041170000270043094200210045795200430047895200420052195200430056322806LVL20020226144452.0950321c19871986nyua j 00011 eng a87163722 a0670816361 a 87163722 c2422d2422 aJ Aiken10aAiken, Joan,d1924-10aPast eight o'clock :bgoodnight stories /cJoan Aiken ; pictures by Jan Pienkowski. a1st American ed.0 aNew York, N.Y., U.S.A. :bViking Kestrel,c1987, c1986. a128 p. :bill. (some col.) ;c26 cm. 1aBedtimexFiction. 1aSleepxFiction. 1aShort stories.11aPienkowski, Jan,eill. aLVLcJFkJ Aiken bMAINp32000000036587r4.95u9229u4655 bLB2p34000000001167r4.95u9230u4656 bMAINp31000000041714r4.95u9231u465700934 2200301 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200150012510000210014024500490016125000260021026000390023630000420027549000110031752000810032865000190040965000190042880000300044794200260047795200430050395200430054695200430058929825LVL20000316000000.0930315s1989 nyua j 00011 eng d a89000341 a068971338X a 89000341 c2423d2423 aE Oxenbury1 aOxenbury, Helen.10aTom and Pippo and the dog /cHelen Oxenbury. a1st Aladdin Books ed. aNew York :bAladdin Books,cc1989. a[12] p. :bill. (some col.) ;c26 cm.10aPippo. aWhile out for a walk with Mommy, Tom and Pippo have an adventure with a dog. 1aDogsxFiction. 1aToysxFiction.1 aOxenbury, Helen..tPippo. aLVLcEASYkE Oxenbury bMAINp32000000037870r3.54u9233u4658 bMAINp32000000039328r3.54u9234u4659 bMAINp32000000041965r3.54u9235u466001156 2200385 450000100060000000300040000600500170001000800390002701000130006602000370007902000250011603500160014104000200015705000250017708200120020209000150021410000270022924500360025625000120029226000400030430000390034451000320038351000280041552000730044352100090051665000190052565000220054465000270056665000190059365000270061265000200063994200250065995200430068495200430072736844LVL19990320000000.0870205s1987 nyua j 00011 eng a87000156 a0060241330 (lib. bdg.) :c$11.89 a0060241322 :c$11.50 aflb01456503 aDLCcDLCdICrlF0 aPZ7.M478415bSc 19870 219a[E] c2424d242410aMcCully, Emily Arnold.10aSchool /cEmily Arnold McCully. a1st ed.0 a[New York] :bHarper & Row,cc1987. a[32] p. :ball col. ill. ;c24 cm.0 aChildren's Catalog (Wilson)0 aSchool Library Journal. aA curious little mouse decides to find out what school is all about.2 aK-3. 1aMicexFiction. 1aSchoolsxFiction. 1aStories without words. 7aMicexFiction. 7aStories without words. 7aSchool stories. aLVLcEASYkE McCully bMAINp32000000011267r6.89u9236u4661 bMAINp31000000002881r6.89u9237u466201000 2200313 450000100060000000300040000600500170001000800390002701000190006602000390008503500160012404000250014005000260016508200240019109000150021510000230023024500710025325000120032426000320033630000290036851000140039751000200041152001050043152100170053665000350055370000320058894200220062095200440064243863LVL20010824114253.0900425s1991 nyua 000 1 eng a90037457 //r91 a0393029190 :c$22.95 ($29.95 Can.) aflb01684604 aDLCcDLCdDLCdICrlF00aPS3552.U393bA82 199100220a364.1/523/09964 c2425d24251 aBugliosi, Vincent.10aAnd the sea will tell /cVincent Bugliosi with Bruce B. Henderson. a1st ed. aNew York :bNorton,cc1991. a574 p. :bill. ;c24 cm.0 aBooklist.0 aKirkus Reviews. aReconstructs a realistic murder crime on the remote Palmyra Island, 1,000 miles due south of Hawaii.2 aYoung Adult. 7aMystery and detective stories.10aHenderson, Bruce B.,d1946- aLVLcNFk364.1 Bu bMAINp32000000067953r22.95u9238u466300343 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000240009824500100012294200210013295200440015350882LVL19990313000000.0940609s19xx xxu 00010 eng d a0070374775 c2426d2426 aLevine, Lee Daniel.10aBird. aLVLcBIOkB Bird bMAINp32000000022474r10.59u9239u466400767 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000190013424500640015325000120021726000400022930000370026950000200030650400300032665000110035665000120036774000460037994200200042595200440044515788LVL19990331000000.0811117s1982 nyua b 00110 eng a81018965 a0394748131 a 81018965 c2427d2427 a794 Or1 aOrlick, Terry.14aThe second cooperative sports & games book /cTerry Orlick. a1st ed. aNew York :bPantheon Books,cc1982. axiv, 267 p. :bill. ;c26 cm. ;. aIncludes index. aBibliography: p. 249-254. 0aGames. 0aSports.01aSecond cooperative sports and games book. aLVLcNFk794 Or bMAINp32000000053716r11.05u9240u466501599 2200409 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012324502570013626000380039330000460043150000200047765000370049765000440053465000390057865000460061765100490066365100590071270000240077170000220079570000210081774000170083891000140085594200220086995200430089195200430093495200430097795200420102095200420106295200430110495200420114722807LVL20000323000000.0920626s1993 nyuac b 00100 eng a92024634 a0385422768 a 92024634 c2428d2428 a975.8 Fo00aFoxfire 10 :brailroad lore, boarding houses, Depression-era Appalachia, chairmaking, whirligigs, snakes canes, and gourd art /cedited by George P. Reynolds and Rabun County high school students with the assistance of Eliot Wigginton and Susan Walker.0 aNew York :bAnchor Books,cc1993. a486 p. :bill. with ports. ;c24 cm.;dpa. aIncludes index. 0aFolklorezGeorgiazRabun County. 0aFolklorezAppalachian Region, Southern. 0aHandicraftzGeorgiazRabun County. 0aHandicraftzAppalachian Region, Southern. 0aRabun County (Ga.)xSocial life and customs. 0aAppalachian Region, SouthernxSocial life and customs.10aReynolds, George P.10aWigginton, Eliot.10aWalker, Susan W.01aFoxfire ten. a1998 June aLVLcNFk975.8 Fo bLB2p37000000009280r15.95u9241u4666 bMAINp32000000039200r8.26u9242u4667 bMAINp32000000066304r8.26u9243u4668 bLB1p36000000002092r8.26u9244u4669 bLB2p34000000002571r8.26u9245u4670 bMAINp31000000042804r8.26u9246u4671 bLB1p33000000015372r8.26u9247u467200713 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009409000150011009200140012510000220013924500820016126000440024330000410028750000200032865000350034870000230038394200230040695200420042929826LVL20030524103707.0930616c19931992nyua 00110 eng a92007576 a0553372033 anpl93000302 c2429d2429 a616.99 Hi10aHirshaut, Yashar.10aBreast cancer :bthe complete guide /cYashar Hirshaut and Peter I. Pressman.0 aNew York :bBantam Books,c1993, c1992. axiv, 322 p. :bill. ;c23 cm. ;dpa. aIncludes index. 0aBreastxCancerxPopular works.10aPressman, Peter I. aLVLcNFk616.99 Hi bLB2p34000000001706r7.51u9248u467300778 2200253 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200120011410000230012624500470014926000380019630000280023450000280026294200210029095200430031195200420035495200430039695200430043995200420048236845LVL20010804005255.0960227s1996 nyu 00011 eng d a0671550284 anpl96000501 c2430d2430 aYA Pike 0aPike, Christopher.14aThe starlight crystal /cChristopher Pike.0 aNew York :bPocket Books,cc1996. a195 p. ;c17 cm. ;dpa. a"An Archway Paperback". aLVLcYAkYA Pike bMAINp32000000063030r2.27u9251u4674 bLB2p34000000013249r2.27u9253u4675 bMAINp31000000058625r2.27u9254u4676 bMAINp31000000058626r2.27u9255u4677 bLB1p33000000024916r2.27u9256u467800919 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000220013524500730015725000120023026000490024230000350029152001270032665000250045365000330047870000220051194200230053395200430055695200420059943864LVL19990316000000.0900529s1991 nyua j 00011 eng a90003730 a0525446842 a 90003730 c2431d2431 aE Jones10aJones, Rebecca C.10aMatthew and Tilly /cby Rebecca C. Jones ; illustrated by Beth Peck. a1st ed.0 aNew York :bDutton Children's Books,cc1991. a[32] p. :bcol. ill. ;c26 cm. aLike all good friends, Matthew and Tilly have an occasional tiff, but their friendship prevails despite their differences. 1aFriendshipxFiction. 1aCity and town lifexFiction.11aPeck, Beth,eill. aLVLcEASYkE Jones bMAINp32000000034036r8.23u9257u4679 bLB1p33000000013198r8.23u9259u468000341 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000210009624500160011794200250013395200370015850883LVL19990313000000.0940621s19xx xxu 00010 eng d a87034326 c2432d2432 aRoth-Hano, Rene.10aTouch wood. aLVLcJFkJ Roth-Hano bMAINp32000000026595u9260u468101588 2200445 450000100060000000300040000600500170001000800390002701000130006602000360007903500140011504000250012905000240015408200170017809000150019509200180021010000230022824501130025126000520036430000330041644000350044950000200048450000460050450000480055051000320059851000480063051000520067852001490073052100340087952100090091365000350092265000140095765000130097165000140098465000130099870000360101170000220104794200290106995200440109843865LVL19990316000000.0830906s1983 mnua j 00110 eng a83018777 a0822514818 (lib. bdg.) :c$8.95 a 83018777 aDLCcDLCdDLCdICrlF00aQL596.C65bJ73 198300219a595.76/9 c2433d2433 aJNF 595.76 Jo1 aJohnson, Sylvia A.10aLadybugs /cby Sylvia A. Johnson ; photographs by Yuko Sato ; [translation of original text by Cheaim Uri]. aMinneapolis :bLerner Publications Co.,cc1983. a48 p. :bcol. ill. ;c23 cm. 2aA Lerner natural science book. aIncludes index. aAdaptation of: Tentomushi / by Yuko Sato. aAdaptation of: Tenteomushi / by Yuko Sato.0 aChildren's Catalog (Wilson)0 aJunior High School Library Catalog (Wilson)0 aElementary School Library Collection (Bro-Dart) aDescribes the life cycle of ladybugs, from egg through larva and pupa to adult, and explains how ladybugs aid humans by feeding on insect pests.0 a6.0bFollett Library Book Co.2 a5-8. 0aLadybugsxJuvenile literature. 1aLadybugs. 1aBeetles. 7aLadybugs. 7aBeetles.11aSato, Yuko,d1928-tTentomushi.11aSato, Yukod1928- aLVLcJNFkJNF 595.76 JOH bMAINp32000000037146r17.96u9263u468200667 2200205 4500010001300000020001500013090001500028110003000043245006300073260006200136300003000198440003100228500002000259650001100279650002200290942002200312952004200334952004300376952004200419 a93078870 a0696025752 c2434d243420aBetter Homes and Gardens.10aRoses /c[by the editors of Meredith Books, Garden Books].0 aDes Moines, IA :bBetter Homes and Gardens Books,cc1993. a64 p. :bill. ;c26 cm. ; 4aThe gardener's collection. aIncludes index. 0aRoses. 0aFlower gardening. aLVLcNFk635.9 Be bLB2p34000000002840r2.92u9266u4683 bMAINp31000000052672r2.92u9267u4684 bLB1p33000000021531r2.92u9268u468500570 2200217 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200120011410000170012624500400014325000200018326000400020330000230024365000220026694200210028895200430030922809LVL20030624163448.0930608c19851960enk d 00011 eng d a0708961444 anpl93000235 c2435d2435 aLP Ward1 aWard, Jonas.10aBuchanan on the prod /cJonas Ward. aLarge print ed. aLeicester :bLinford,c1985, c1960. a283 p. ;c19 cm.;. 0aLarge type books. aLVLcLPkLP Ward bMAINp31000000043320r6.95u9269u468600347 2200121 4500010001300000020001500013090001500028100002000043245005400063260003900117942002500156952004400181 a93018414 a0380972239 c2436d243610aZelazny, Roger.12aA night in the lonesome October /cRoger Zelazny.0 aNew York, N.Y. :bAvoNova,cc1993. aLVLcSCIkSF Zelazny bMAINp32000000052628r10.33u9271u468700943 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000230013524500610015826000440021930000350026365000250029865000210032365100200034494200230036495200420038795200430042995200420047295200420051495200430055695200420059943866LVL19990915000000.0941024s1995 nyua j 00011 eng a94042425 a0399228039 a 94042425 c2437d2437 aE Brett10aBrett, Jan,d1949-10aArmadillo rodeo /cwritten and illustrated by Jan Brett.0 aNew York :bG.P. Putnam's Sons,cc1995. a[32] p. :bill. ;c22 x 27 cm. 1aArmadillosxFiction. 1aRodeosxFiction. 1aTexasxFiction. aLVLcEASYkE Brett bLB2p37000000004536r9.57u9272u4688 bMAINp32000000059347r9.57u9273u4689 bLB1p36000000003167r9.37u9274u4690 bLB2p34000000008299r9.57u9275u4691 bMAINp31000000055954r9.57u9276u4692 bLB1p33000000023454r9.57u9277u469300407 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000190009824500790011794200220019695200430021850885LVL19990313000000.0930426s19xx xxu 00010 eng d a0889088896 c2438d24381 aOliver, Margo.10aMargo Oliver's good food for one :beasy recipes for today's busy singles. aLVLcNFk641.5 Ol bMAINp32000000030025r5.27u9278u469400774 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000240013824500500016226000490021230000210026165000400028294200240032295200430034695200440038995200430043395200440047615791LVL20010804011453.0950321r19951993nyu 00011 eng a94029796 a0671896504 a 94029796 c2439d2439 aAF Cookson10aCookson, Catherine.14aThe year of the virgins /cCatherine Cookson.0 aNew York :bSimon & Schuster,cc1995, c1993. a270 p. ;c24 cm. 0aFamilyxFiction.zEngland, Northern aLVLcAFkAF Cookson bLB2p37000000014651r12.69u9279u4695 bMAINp32000000056630r12.69u9280u4696 bLB2p34000000001085r12.69u9281u4697 bMAINp31000000053954r12.69u9282u469800518 2200193 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200150011410000230012924500420015226000370019430000260023194200240025795200430028136848LVL20020829162519.0931228s1993 nyu 00011 eng d a082174447X anpl93001782 c2440d2440 aAF Forrest10aForrest, Pamela K.10aRiver of dreams /cPamela K. Forrest.0 aNew York :bZebra Books,cc1993. a379 p. ;c18 cm.; pa. aLVLcAFkAF Forrest bMAINp31000000046079r2.61u9284u469900308 2200121 450000100060000000300040000600500170001000800410002709000150006824500380008394200220012195200430014343867LVL19990316000000.0930416s19xx xxu 00010 eng d c2441d244114aThe Berlitz self-teacher Russian. aLVLcNFk491.7 Be bMAINp32000000009194r1.97u9285u470000768 2200265 450000100060000000300040000600500170001000800390002701000130006602000380007903500140011704000130013105000280014408200160017209000150018810000320020324500460023525000120028126000350029330000210032894200240034995200430037395200430041695200430045950886LVL20020807120604.0900403s1990 nyu 000 1 eng a90139582 a0385412215 :c$19.95 (24.95 Can.) a 90139582 aDLCcDLC00aPS3545.H8363bS56 1990b00220a813/.54 c2442d24421 aWhitney, Phyllis A.,d1903-14aThe singing stones /cPhyllis A. Whitney. a1st ed. aNew York :bDoubleday,cc1990. a301 p. ;c24 cm. aLVLcAFkAF Whitney bLB2p37000000004527r11.77u9286u4701 bLB2p34000000004409r11.77u9288u4702 bLB1p33000000008669r10.00u9289u470300790 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000210013624500880015725000120024526000410025730000400029850000200033865000320035870000250039094200220041595200440043795200430048115792LVL19990331000000.0940815s1995 nyua 00110 eng a94031298 a0062733362 a 94031298 c2443d2443 a305.4 Fr10aFranck, Irene M.10aWomen's world :ba timeline of women in history /cIrene Franck & David Brownstone. a1st ed.0 aNew York :bHarperPerennial,cc1995. aix, 654 p. :bill. ;c24 cm. ;dpa. aIncludes index. 0aWomenxHistoryxChronology.10aBrownstone, David M. aLVLcNFk305.4 Fr bMAINp32000000057891r13.50u9290u4704 bLB1p33000000022617r13.50u9291u470500989 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012324501240013626000420026030000350030250000200033765000230035765000440038065000200042470000210044471000270046574000420049294200220053495200440055695200440060095200430064422811LVL19990327000000.0930217s1993 nyua f 00100 eng a93020374 a0671767127 a 93020374 c2444d2444 a746.9 Si00aSimplicity's simply the best home decorating book /cillustrations by Martha Vaughan ; technical art by Phoebe Gaughan.0 aNew York :bSimon & Schuster,cc1993. a247 p. :bill. ;c26 cm. ; pa. aIncludes index. 0aHouse furnishings. 0aInterior decorationxAmateurs' manuals. 0aMachine sewing.10aVaughan, Martha.20aSimplicity Pattern Co.01aSimply the best home decorating book. aLVLcNFk746.9 Si bMAINp32000000040918r11.80u9292u4706 bMAINp31000000043817r11.80u9293u4707 bLB1p33000000015958r11.80u9294u470801033 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000180013624501000015425000120025426000360026630000400030252001550034265000390049765000270053665000200056365000370058370000230062070000210064394200240066495200430068836849LVL20020416162404.0870519s1987 nyua j 00011 eng a87014858 a0805005714 a 87014858 c2445d2445 aE Martin1 aMartin, Bill.10aKnots on a counting rope /cby Bill Martin, Jr. and John Archambault ; illustrated by Ted Rand. a1st ed. aNew York :bHenry Holt,cc1987. a[32] p. :bcol. ill. ;c21 x 26 cm. aA grandfather and his blind grandson, Boy-Strength-of-Blue-Horses, reminisce about the young boy's birth, his first horse, and an exciting horse race. 1aIndians of North AmericaxFiction. 1aGrandfathersxFiction. 1aBlindxFiction. 1aPhysically handicappedxFiction.10aArchambault, John.11aRand, Ted,eill. aLVLcEASYkE Martin bMAINp32000000036908r8.82u9295u470900769 2200253 450000100060000000300040000600500170001000800390002701000130006602000250007904000130010405000260011708200250014309000150016810000300018324500630021325000120027626000440028830000470033260000290037965000380040894200250044695200440047157906LVL19990220000000.0870129s1987 nyuaf 00010beng a87004461 a031200561X :c$17.95 aDLCcDLC0 aPN2287.L2845bB6 19870 219a792/.028/0924aB c2446d244610aBonanno, Margaret Wander.10aAngela Lansbury :ba biography /cMargaret Wander Bonanno. a1st ed.0 aNew York :bSt. Martin's Press,cc1987. a225 p., [8] p. of plates :bill. ;c22 cm.10aLansbury, Angela,d1925- 0aActorsxBiography.zUnited States aLVLcBIOkB Lansbury bMAINp31000000021327r10.59u9297u471000819 2200277 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200130012511000260013824500780016425000120024226000630025430000290031765000100034665000120035671000260036874000400039494200220043495200430045695200420049915793LVL20030701122814.0950908s1995 nyua 00010 eng d a95075622 a0696201259 a 95075622 c2447d2447 a641.8 La20aLadies' Home Journal.10a100 great pie & pastry recipes /cby the Editors of Ladies' Home Journal. a1st ed.0 aNew York/Des Moines :bLadies' Home Journal Books,cc1995. a144 p. :bill. ;c22 cm. 0aPies. 0aPastry.20aLadies' Home Journal.01aOne hundred pie and pastry recipes. aLVLcNFk641.8 La bMAINp32000000059279r8.97u9298u4711 bLB1p33000000023432r8.97u9299u471201106 2200265 4500010001300000020001500013090001500028100003500043245008700078260004000165300003500205520013900240650002200379650003500401651005300436700002700489942002700516952004200543952004300585952004300628952004200671952004200713952004300755952004200798 a91046643 a0399219919 c2448d244810aGeorge, Jean Craighead,d1919-14aThe first Thanksgiving /cby Jean Craighead George ; illustrated by Thomas Locker.0 aNew York :bPhilomel Books,cc1993. a[32] p. :bill. ;c23 x 28 cm. aDescribes how the colonists aboard the Mayflower founded New Plymouth and celebrated their first harvest with a feast of thanksgiving. 1aThanksgiving Day. 1aPilgrims (New Plymouth colony) 1aMassachusettsxHistoryyNew Plymouth, 1620-1691.11aLocker, Thomas,d1937- aLVLcJNFkJNF 394.2 Ge bLB2p37000000001612r9.25u9300u4713 bMAINp32000000042056r9.25u9301u4714 bMAINp32000000082545r9.25u9302u4715 bLB1p36000000002486r9.25u9303u4716 bLB2p34000000007923r9.25u9304u4717 bMAINp31000000044532r9.25u9305u4718 bLB1p33000000016390r9.25u9306u471901004 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000180014024500760015826000410023430000280027544000340030350000350033752001340037265000120050694200270051895200430054595200420058895200420063095200420067236850LVL19990320000000.0920413s1993 nyua j 00010 eng a92014329 a0590455028 a 92014329 c2449d2449 aJNF 574.3 Ku10aKuhn, Dwight.10aMy first book of nature :bhow living things grow /cby Dwight R. Kuhn.0 aNew York :bScholastic Inc.,cc1993. a61 p. :bill. ;c26 cm. 0aCartwheel learning bookshelf. a"Cartwheel Books"--T.p. verso. aProvides an introduction to growth, explaining how it occurs in such everyday things as guppies, apples, dogs, trees, and humans. 1aGrowth. aLVLcJNFkJNF 574.3 Ku bMAINp32000000042322r7.05u9307u4720 bLB1p36000000006044r7.05u9308u4721 bLB2p34000000008387r7.05u9309u4722 bLB1p33000000015106r7.05u9311u472300810 2200301 450000100060000000300040000600500170001000800390002701000130006602000250007903500140010404000130011805000210013108200120015209000150016410000230017924500490020225000120025126000440026330000260030750000200033350000270035350400320038065000170041265000160042994200200044595200430046550888LVL20021009121934.0861008s1987 nyu b 001 0 eng a86026183 a0312001142 :c$15.95 a 86026183 aDLCcDLC0 aTA145.bF55 19870 219a620 c2450d24501 aFlorman, Samuel C.14aThe civilized engineer /cSamuel C. Florman. a1st ed. aNew York :bSt. Martin's Press,cc1987. axii, 258 p. ;c22 cm. aIncludes index. a"A Thomas Dunne book." aBibliography: p. [235]-247. 0aEngineering. 0aTechnology. aLVLcNFk620 Fl bMAINp32000000023922r6.08u9312u472401012 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012324500810013726000430021830000210026144000250028250400640030765000440037165000440041565000390045965000390049865000410053765000350057870000300061394200230064395200440066615794LVL20020612112457.0951205s1996 cau b 00100 eng a95049646 a1565103955 a 95049646 c2451d2451 a305.26 Ag03aAn aging population :bopposing viewpoints /cCharles P. Cozic, book editor.0 aSan Diego :bGreenhaven Press,cc1996. a216 p. ;c23 cm. 0aOpposing viewpoints. aIncludes bibliographical references (p. 208-210) and index. 0aAgedxGovernment policyzUnited States. 0aAgedxSocial conditions.zUnited States 0aAgedxMedical carezUnited States. 0aOld age assistancezUnited States. 0aAgedxPublic opinion.zUnited States 0aPublic opinionzUnited States.10aCozic, Charles P.,d1957- aLVLcNFk305.26 Ag bMAINp31000000059820r19.95u9314u472501144 2200265 4500090001500000245010400015260006000119300005600179500004700235500005600282500005300338511006300391520008600454538003700540600003900577650002400616650002200640700002400662700002700686700002700713700002000740700003100760942002500791952006200816 c2452d2452 aLawrence of ArabiacHorizon ; produced by Sam Spiegel ; directed by David Lean.h[videorecording] / aBurbank, CA :bRCA/Columbia Pictures Home Video,c1989. a2 videocassettes (216 min.) :bsd., col. ;c1/2 in. aClosed-captioned for the hearing impaired. aNewly restored director's cut in widescreen format. aOriginally released as a motion picture in 1962. aPeter O'Toole, Alex Guinness, Anthony Quinn, Jack Hawkins. aCinematic account of the life of T.E. Lawrence, best known as Lawrence of Arabia. aVHS Hi-fi Dolby surround stereo. aLawrence, T. E.d1888-1919xDrama. aBiographical films. aHistorical films. aLean, David,d1908- aO'Toole, Peter,d1932- aGuinness, Alec,d1914- aQuinn, Anthony. aHawkins, Jack,d1910-1973. aLVLcAVkAV Lawrence bMAINdMAINp32000000139061r10.00u272396u4726v2003090800736 2200253 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200140011424500920012825000190022026000370023930000320027650000200030865000180032870000250034671000180037174000270038994200230041695200430043936851LVL20030317183014.0960621s1996 nyu 00100 eng d a007036222X anpl96001139 c2453d2453 a332.63 Bu00aBusinessWeek guide to mutual funds /cJeffrey M. Laderman Senior Writer, Business Week. a6th annual ed.0 aNew York :bMcGraw-Hill,cc1996. avi, 216 p. ;c28 cm. ;dpa. aIncludes index. 0aMutual funds.10aLaderman, Jeffrey M.20aBusinessWeek.01aGuide to mutual funds. aLVLcNFk332.63 Bu bMAINp32000000065353r8.97u9316u472700777 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000240013824500830016225000120024526000430025730000210030065000660032165000370038765100300042494200250045495200440047915795LVL19990331000000.0960725s1996 nyu 00011 eng a95023885 a0449909492 a 95023885 c2454d2454 aM Kaminsky10aKaminsky, Stuart M.10aBlood and rubles :ba Porfiry Petrovich Rostnikov novel /cStuart M. Kaminsky. a1st ed.0 aNew York :bFawcett Columbine,cc1996. a257 p. ;c22 cm. 0aRostnikov, Porfiry Petrovich (Fictitious character)xFiction. 0aPolicexFiction.zRussiazMoscow 0aMoscow (Russia)xFiction. aLVLcMYSkM Kaminsky bMAINp32000000068516r12.10u9318u472801295 2200325 450000100060000000300040000600500170001000700090002700800410003603500160007709000150009309200130010824501040012126000410022530000440026644000270031050501230033752100190046053800160047965000220049570000740051770000450059170000930063694200230072995200430075295200430079595200440083895200430088295200440092536852LVL20020910130352.0vd cbaho930427s1989 ctu j 0 0vaeng d avid93000076 c2455d2455 aAVJ Mike00aMike Mulligan and his steam shovel and other stories /c[compiled by] CC Studios.h[videorecording] aWeston, CT :bCC Home Video,cc1989. a1 videocassette ;bsd., col. ;c1/2 in. 0aChildren Circle ;v12.0 aBurt Dow: Deep-water man / R. McCloskey -- Moon man / T. Ungerer -- Mike Mulligan and his steam shovel / V. L. Burton. aAges 3 and up. aVHS Format. 0aChildren's films.11aMcCloskey, Robert,d1914-hVideorecording.tBurt Dow: Deep-water man.11aUngerer, TomhVideorecording.tMoon man.11aBurton, Virginia Lee,d1909-1968.hVideorecording.tMike Mulligan and his steam shovel . aLVLcAVJkAVJ Mike bLB1p36000000005598r19.95u9320u4729 bLB2p34000000011992r19.95u9321u4730 bMAINp31000000030390r22.50u9322u4731 bMAINp32000000038596r0.15u9323u4732 bMAINp32000000109235r10.00u9324u473300758 2200253 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200130011410000170012724500540014424600180019826000830021630000400029950000200033965000180035965000170037794200220039495200440041695200440046015796LVL19990331000000.0960912r19961994enka 00110 eng d a0706374894 anpl96001777 c2456d2456 a635.9 Ke10aKelly, John.10aPlanning and planting rock gardens /cJohn Kelly.1 aRock gardens.0 aLondon :bWard Lock, distributed in U.S. by Sterling Publishing,c1996, c1994. a96 p. :bill. (some col.) ;c22 cm. aIncludes index. 0aRock gardens. 0aRock plants. aLVLcNFk635.9 Ke bMAINp32000000066827r11.66u9326u4734 bMAINp31000000061691r11.66u9327u473500575 2200181 4500010001300000020001500013090001500028100002200043245003500065250002100100260004400121300002100165650005200186942002500238952004300263952004400306952004300350 a93019740 a0399138927 c2457d245710aShatner, William.10aTek secret /cWilliam Shatner. a1st American ed.0 aNew York :bG.P. Putnam's Sons,cc1993. a223 p. ;c24 cm. 0aCardigan, Jake (Fictitious character)xFiction. aLVLcSCIkSF Shatner bLB2p34000000006058r11.57u9329u4736 bMAINp31000000045518r19.95u9330u4737 bLB1p33000000017197r11.57u9331u473800739 2200229 450000100060000000300040000600500170001000800390002701000130006603500140007909000150009309200150010810000260012324500430014926000630019230000210025550000690027660000550034594200240040095200430042495200420046729834LVL19990323000000.0740504s1967 nyu 00011 eng a67007309 a 67007309 c2458d2458 aAF Stewart 0aStewart, Mary,d1916-14aThe Gabriel hounds /cby Mary Stewart.0 aNew York :bM. S. Mill Co.; Distributed by Morrow,cc1967. a320 p. ;c22 cm. a"Based on the accounts of the life of the Lady Hester Stanhope."10aStanhope, Hester Lucy,cLady,d1776-1839xFiction. aLVLcAFkAF Stewart bMAINp32000000044071r5.95u9332u4739 bLB2p34000000004281r3.97u9333u474000766 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000180013524500350015325000120018826000430020030000350024352001040027865000220038294200230040495200430042795200420047022816LVL19990327000000.0940203s1986 nyua j 00011 eng a85017699 a0688058949 a 85017699 c2459d2459 aE Weiss10aWeiss, Nicki.10aPrincess Pearl /cNicki Weiss. a1st ed.0 aNew York :bGreenwillow Books,cc1986. a[23] p. :bcol. ill. ;c22 cm. aRosemary is mean to her younger sister Pearl until she sees Pearl's friend act mean toward her too. 1aSistersxFiction. aLVLcEASYkE Weiss bMAINp32000000044781r3.98u9334u4741 bLB1p33000000017706r3.98u9336u474200705 2200205 4500010001300000020001500013090001500028245007400043246003300117246002300150260005600173300004100229500002000270650003700290650002300327700002200350942002200372952004300394952006200437 a95071713 a0898211530 c2460d2460 aTaste of home down-home diabetic cookbook /ceditor, Julie Schnittka. aDown-home diabetic cookbook. aDiabetic cookbook. aGreendale, WI :bReiman Publications, L.P.,cc1995. a322 p. :bill. (some col.) ;c22 cm. aIncludes index. aDiabetesxRecipes.xDiet therapy aCookery, American. aSchnittka, Julie. aLVLcNFk641.5 Ta bLB1p33000000027163r11.13u9337u4743 bLB2dLB2p37000000025585r16.95u282438u4744v2003/11/1501011 2200289 450000100060000000300040000600500170001000800390002701000210006602000150008703500220010204000180012405000200014208200100016209000150017210000250018724500610021226000350027330000330030850400760034152001720041765000110058965000140060070000370061494200270065195200430067850892LVL20021108101614.0690725s1969 nyua j b 000 1 eng a69017905 /AC/r91 a0809824078 a 69017905 /AC/r91 aDLCcDLCdDLC00aPZ8.1.G167bCav00a398.2 c2461d24611 aGarner, Alan,d1934-12aA cavalcade of goblins.cIllustrated by Krystyna Turska. aNew York,bH. Z. Walckc[1969] aviii, 227 p.billus.c26 cm. aBibliographical references included in "Notes and sources" (p. 222-226) aForty-two tales, legends, and poems from various countries, including Japan, India, and North America, about giants, goblins, demons, and other supernatural creatures. 0aTales. 1aFolklore.11aTurska, Krystyna,d1933-eillus. aLVLcJNFkJNF 398.2 Ca bMAINp32000000019096r0.75u9338u474501002 2200325 450000100060000000300040000600500170001000800390002701000130006602000220007902000250010103900180012604000130014405000230015708200220018009000150020210000150021724000200023224501340025225000120038626000320039830000410043050000200047150400300049165000270052170000170054894200230056595200440058895200440063257911LVL20000411000000.0810807s1981 nyua b 00110 eng a81065115 a0525476709 (pbk.) c$21.00z0525931920 :0 a2b3c3d3e3 aDLCcDLC0 aTH4816.bV538 19810 219a690/.831/0286 c2462d246210aVila, Bob.10aThis old house.10aBob Vila's This old house /cby Bob Vila with Anne Henry ... [et al.] ; photographs by Bill Schwob ; illustrations by Anne Henry. a1st ed.0 aNew York :bDutton,cc1981. a284 p. :bill. (some col.) ;c27 cm. aIncludes index. aBibliography: p. 276-277. 0aDwellingsxRemodeling.10aHenry, Anne. aLVLcNFk690.8 Vil bMAINp31000000033923r12.60u9339u4746 bMAINp31000000068367r12.60u9340u474700964 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200180012310000230014124501000016425000230026426000410028730000330032844000210036150000200038252001140040265000150051671000290053194200280056095200430058895200430063129836LVL19990323000000.0851206s1986 wiua j 00110 eng a85030292 a1555320627 a 85030292 c2463d2463 aJNF 599.32 Co1 aColdrey, Jennifer.14aThe squirrel in the trees /ctext by Jennifer Coldrey ; photographs by Oxford Scientific Films. aNorth American ed. aMilwaukee :bGareth Stevens,cc1986. a32 p. :bcol. ill. ;c25 cm. 0aAnimal habitats. aIncludes index. aText and photographs depict squirrels feedings, breeding, and defending themselves in their natural habitats. 1aSquirrels.20aOxford Scientific Films. aLVLcJNFkJNF 599.32 Co bMAINp32000000044873r5.95u9341u4748 bMAINp31000000046584r5.95u9342u474900997 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000230013624501570015926000530031630000350036950400640040465000450046870000260051371000280053994200220056795200440058995200430063395200430067636855LVL20020907092543.0920108s1992 nyua bf 00110 eng a92000098 a0890434301 a 92000098 c2464d2464 a613.9 Wi10aWinikoff, Beverly.14aThe contraceptive handbook :ba guide to safe and effective choices /cBeverly Winikoff, Suzanne Wymelenberg, and the editors of Consumer Reports Books.0 aYonkers, N.Y. :bConsumer Reports Books,cc1992. aviii, 248 p. :bill. ;c22 cm. aIncludes bibliographical references (p. 231-242) and index. 0aContraceptivesxHandbooks, manuals, etc.10aWymelenberg, Suzanne.20aConsumer Reports Books. aLVLcNFk613.9 Wi bMAINp32000000042299r11.18u9343u4750 bLB2p34000000001652r11.18u9344u4751 bLB1p33000000016509r11.18u9345u475200727 2200253 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200110011210000190012324500370014226000430017930000480022250000200027065000130029065000200030394200200032395200440034395200430038795200430043043874LVL19990316000000.0940711c19931991nyua 00110 eng a0806986492 anpl94001157 c2465d2465 a736 Ro10aRojas, Hector.10aOrigami animals /cHector Rojas. 0aNew York :bSterling Pub. Co.,cc1993. a159 p. :bill. (some col.) ;c24 cm. ;dpa. aIncludes index. 0aOrigami. 0aAnimals in art. aLVLcNFk736 Ro bMAINp32000000048550r11.65u9346u4753 bLB2p34000000002173r11.65u9347u4754 bLB1p33000000019723r11.65u9348u475501436 2200433 450000100060000000300040000600500170001000800410002701000130006802000150008102000150009602000150011102000150012603500160014104000270015704100130018408200100019709000150020710000200022224000380024224501330028026000480041330000410046144000320050252000790053452100340061352100090064765000170065665000220067365000390069565000170073470000370075174000150078894200230080395200440082695200440087095200440091495200440095850893LVL20030310082252.0900316c19761946nyua j 00011 eng d a46022697 a0448058014 a0805000275 a0394821106 a0688022677 aflb01108102 aICrlFcICrlFdIMchF-DB1 aenghita04a[Fic] c2466d24661 aCollodi, Carlo.10aAvventure di Pinocchio.lEnglish.14aThe adventures of Pinocchio /cby C. Collodi (Carlo Lorenzini) ; with illustrations by Fritz Kredel ; translated by M.A. Murray. aNew York :bGrosset & Dunlap,c1976, c1946. a257 p. :bill. (some col.) ;c24 cm. 0aIllustrated junior library. aA piece of wood that talks is carved into a wooden puppet named Pinocchio.0 a4.9bFollett Library Book Co.2 a5-8. 1aFairy tales. 1aPuppetsxFiction. 7aPuppets and puppet playsxFiction. 7aFairy tales.11aKredel, Fritz,d1900-1973,eill.01aPinocchio. aLVLcJFkJ Collodi bMAINp32000000004341r17.50u9349u4756 bMAINp32000000013390r17.50u9351u4757 bMAINp32000000026217r11.28u9352u4758 bMAINp31000000004509r16.95u9353u475900972 2200313 450000100060000000300040000600500170001000800390002701000130006602000380007903500140011704000250013105000260015608200160018209000150019809200150021310000310022824500360025925000120029526000360030730000210034350000260036451000150039051000200040552001480042552100170057394200240059095200440061422818LVL19990327000000.0900507s1990 nyu 00011 eng a90038723 a0805012192 (alk. paper) :c$19.95 a 90038723 aDLCcDLCdDLCdICrlF00aPS3558.I356bV53 199000220a813/.54 c2467d2467 aAF Higgins1 aHiggins, George V.,d1939-10aVictories /cGeorge V. Higgins. a1st ed. aNew York :bHenry Holt,cc1990. a298 p. ;c24 cm. a"A John Macrae book." aBOOKLIST*.0 aKirkus Reviews. a"A John Macrae book." Set in rural Vermont in 1968, a former big-league pitcher turned game warden is pressured to become involved in politics.2 aYoung Adult. aLVLcAFkAF Higgins bMAINp32000000029422r11.77u9354u476001803 2200457 450000100060000000300040000600500170001000700100002700800410003703500160007803700150009409000150010909200170012424501650014126000360030630000540034249000360039650000370043251100590046952001450052852100380067353800220071165000170073365000200075065000220077070000260079270000170081870000280083570000900086371000290095383000240098291000300100691000300103691000300106691000140109694200270111095200600113795200620119795200430125995200430130229837LVL19990323000000.0vf cbahos961007s1989 nyu030 b vzeng d anav96000546 aH0705bSVS c2468d2468 aAVJ 398.2 Th00aThumbelinacHans Christian Andersen ; adapted by Tom Roberts ; Rabbit Ears Productions ; produced by Mark Sottnick ; directed by Tim Raglin.h[videorecording] /0 a[New York] :bSVS, Inc.,c1989. a1 videocassette (30 min.) :bsd., col. ;c1/2 in.1 aRabbit Ears storybook classics. aIconographic/enhanced animation.0 aRead by Kelly McGillis ; music composed by Mark Isham. aThe story of a girl no bigger than a thumb who meets the king of the flower angels after escaping from an ugly toad who wanted to marry her. aKindergarten through third grade. aVHS Hi-fi stereo. 0aFairy tales. 0aAnimated films. 0aChildren's films.1 aRoberts, Tom,d1944-.1 aRaglin, Tim.1 aMcGillis, Kelly,d1958-1 aAndersen, H. C.d1805-1875.hVideorecording.lEnglish.q(Hans Christian),tTommelise.2 aRabbit Ears Productions. 0aStorybook classics. a1997 July --bGPL --g000 a1997 July --bNPL --g000 a1997 July --bPPL --g000 a1997 July aLVLcAVJkAVJ 398.2 Th bLB2dLB1p34000000014165r11.95u9355u4761v2003-09-01 bMAINdMAINp31000000061844r11.95u9356u4762v2003-09-01 bMAINp32000000067187r0.12u9357u4763 bLB1p33000000026738r11.95u9358u476400903 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000190013824500370015726000530019430000280024744000190027550000200029465000210031465100240033594200250035995200430038495200440042795200430047195200440051495200430055836856LVL19991112000000.0950316s1995 ctua j 00110 eng a95013269 a1562949381 a 95013269 c2469d2469 aJNF 932 Mi10aMillard, Anne.14aThe Pyramids /cby Anne Millard.0 aBrookfield, Conn. :bCopper Beech Books,cc1995. a40 p. :bill. ;c30 cm. 0aMysteries of-- aIncludes index. 1aPyramidszEgypt. 1aEgyptxAntiquities. aLVLcJNFkJNF 932 Mi bLB2p37000000006093r16.90u9359u4765 bMAINp32000000064089r15.90u9360u4766 bLB1p36000000003006r16.90u9361u4767 bMAINp31000000059509r15.90u9362u4768 bLB1p33000000025443r15.90u9363u476901243 2200409 450000100060000000300040000600500170001000800390002701000170006602000150008303500160009804000200011405000220013408200120015609000150016810000180018324500370020125000170023826000540025530000350030949000300034451000320037451000230040651000280042952000830045752100340054052100090057465000210058365000230060465000310062765000230065865000310068165000220071280000310073494200250076595200430079015800LVL19990331000000.0870109s1987 nyua j 00011 eng a87002604 /AC a0688072720 aflb01412205 aDLCcDLCdICrlF0 aPZ7.O634bBf 19870 219a[E] c2470d247010aOrmerod, Jan.10aBend and stretch /cJan Ormerod. a1st U.S. ed.0 aNew York :bLothrop, Lee & Shepard Books,cc1987. a[18] p. :bcol. ill. ;c18 cm.1 aJan Ormerod's baby books.0 aChildren's Catalog (Wilson)0 aALA Notable Books.0 aSchool Library Journal. aA pregnant mother does her exercises together with her small baby and the cat.0 a1.2bFollett Library Book Co.2 aK-3. 1aBabiesxFiction. 1aExercisexFiction. 1aMother and childxFiction. 7aExercisexFiction. 7aMother and childxFiction. 7aInfantsxFiction.1 aOrmerod, Jan.tBaby books. aLVLcEASYkE Ormerod bMAINp32000000024100r7.16u9364u477000622 2200217 450000100060000000300040000600500170001000800390002702000150006603500140008109000150009509200130011010000220012324500400014526000480018530000400023344000430027350000220031694200230033895200430036122819LVL19990327000000.0960115r19831976nyua 00011 eng a0345312961 a 76006977 c2471d2471 aSF Kurtz10aKurtz, Katherine.10aCamber of Culdi /cKatherine Kurtz.0 aNew York :bBallantine Books,c1983, c1976. axx, 314 p. :bill. ;c18 cm. ;dpa. 4aThe Legends of Camber of Culdi ;vv.1. a"A Del Rey book." aLVLcSCIkSF Kurtz bMAINp32000000018413r2.95u9367u477101729 2200421 450000100060000000300040000600500170001000700100002700800410003702000150007802800300009303500160012309000150013909200150015424501760016926000410034530000540038650000470044050502490048750600310073650800600076751100630082751800760089052100130096653800100097953800220098965000220101165000180103365000220105170000230107370000170109670000190111371000200113274000380115274000490119094200250123995200430126429838LVL20000911201342.0vfucbahos930629s1992 nyu050 g vleng d a156406644442aLV49558bSony Kids' Video avid93001165 c2472d2472 aAVJ 791 Th10aThis pretty planetbTom Chapin live in concert /ca production of Sundance Music, Inc. and Big Room Productions ; producer/director, Denver J. Collins.h[videorecording] : aNew York :bSony Kids' Video,c1992. a1 videocassette (50 min.) :bsd., col. ;c1/2 in. aClosed-captioned for the hearing impaired.0 aThe nick of time -- Uh oh, accident -- Alphabet soup -- Family tree -- Cousins -- This pretty planet -- Someone's gonna use it -- The wheel of the water -- Good garbage -- Sing a whale song -- Happy Earth Day -- Shovelling -- Together tomorrow. aFor private home use only. aCamera, Larry Reveme ; editors, Dana Duquet, John Peck.2 aTom Chapin with special guests, Jon Cobert & Michael Mark. aShot on location at Irvington Town Hall Theatre in Irvington, New York. aGeneral. aNTSC. aVHS Hi-fi stereo. 0aChildren's songs. 0aMusic videos. 0aChildren's films.11aCollins, Denver J.11aCobert, Jon.11aMark, Michael.21aSundance Music.01aLive in concerth[videorecording]01aTom Chapin live in concerth[videorecording] aLVLcAVJkAVJ 791 Th bMAINp32000000048186r0.20u9368u477200643 2200157 4500020001500000090001500015100002200030245010000052260003900152300006100191610005100252650005100303942002400354952004300378952006400421 a0140235450 c2473d24731 aBergerud, Eric M.10aRed thunder, tropic lightning :bthe world of a combat division in Vietnam /cEric M. Bergerud. aNew York :bPenguin Books,cc1993. axix, 328 p., [16] p. of plates :bill., maps ;c22 cm.;.10aUnited States.bInfantry Division, 25th.bArmy 0aVietnamese Conflict, 1961-1975zUnited States. aLVLcNFk959.704 Be bMAINp31000000046695r7.05u9369u4773 bMAINdMAINp31000000116397r15.00u304769u4774v2004-06-2300530 2200193 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200160011410000260013024500470015626000370020330000280024094200250026895200430029343876LVL20020829135934.0960222s1996 nyu 00011 eng d a0821752375 anpl96000440 c2474d2474 aAF Comstock10aComstock, Mary Chase.10aFortune's mistress /cMary Chase Comstock.0 aNew York :bZebra Books,cc1996. a222 p. ;c18 cm. ;dpa. aLVLcAFkAF Comstock bMAINp31000000058547r2.66u9370u477500722 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007902000280009404000130012204300120013505000200014708200120016709000150017910000170019424500720021126000440028330000210032750000200034865100270036894200240039595200370041957914LVL19990220000000.0800508s1980 nyu 00010 eng a80015264 a0671413929 a0671413937 (deluxe ed.) aDLCcDLC an-us---0 aPS3525.A264bP6 a811/.54 c2475d247510aMcKuen, Rod.14aThe power bright and shining :bimages of my country /cRod McKuen.0 aNew York :bSimon and Schuster,cc1980. a168 p. ;c22 cm. a"Cheval books." 0aUnited StatesxPoetry. aLVLcNFk811.54 MCK bMAINp31000000027618u9372u477600877 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200190012310000220014224500660016426000460023030000330027652000570030965000100036670000240037694200290040095200430042995200420047295200430051495200420055722820LVL19990327000000.0911231s1993 nyua j 00010 eng a91048458 a0670845507 a 91048458 c2476d2476 aJNF 636.088 Zi10aZiefert, Harriet.10aLet's get a pet /cHarriet Ziefert ; pictures by Mavis Smith.0 aNew York, N.Y., U.S.A. :bViking,cc1993. a32 p. :bcol. ill. ;c24 cm. aDiscusses all the things involved in choosing a pet. 1aPets.11aSmith, Mavis,eill. aLVLcJNFkJNF 636.088 Zi bMAINp32000000048257r7.97u9373u4777 bLB2p34000000008702r7.97u9374u4778 bMAINp31000000049723r7.97u9375u4779 bLB1p33000000019564r7.97u9376u478000601 2200205 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200130011210000330012524500490015826000450020730000330025294200240028595200430030995200430035229839LVL19990323000000.0940908r19351907nyua j 00011 eng a072320599X anpl94001824 c2477d2477 aE Potter aPotter, Beatrix,d1866-1943.14aThe tale of Tom Kitten /cby Beatrix Potter. aNew York :bFrederick Warne Co.,cc1935. a59 p. :bcol. ill. ;c14 cm. aLVLcEASYkE Potter bMAINp32000000019252r3.96u9377u4781 bMAINp32000000050465r3.95u9378u478200809 2200253 450000100060000000300040000600500170001000800390002701000170006602000150008302000270009803500160012508200140014109000150015510000260017024500760019626000400027230000350031252000890034765000230043670000280045994200250048795200430051250896LVL19990313000000.0790710s1980 nyua j 00011 eng a79017976 /AC a039484162X a0394941624 (lib. bdg.) aflb00711407 aE Cameron c2478d247810aCameron, Ann,d1943-.10aHarry (the monster) /cby Ann Cameron ; illustrated by Jeanette Winter.0 aNew York :bPantheon Books,cc1980. a[42] p. :bill. ;c19 x 24 cm. aA monster who is afraid of little people discovers they are even more afraid of him. 1aMonstersxFiction.10aWinter, Jeanette,eill. aLVLcEASYkE Cameron bMAINp31000000001887r4.17u9380u478301068 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200180012310000280014124500780016926000600024730000410030744000570034850400660040552001670047165000270063865100650066594200280073095200440075822821LVL19990327000000.0900919s1991 njua j b 00110 eng a90049593 a0382241835 a 90049593 c2479d2479 aJNF 345.73 Ho1 aHolmes, Burnham,d1942-14aThe Fifth Amendment /cBurnham Holmes ; introduction by Warren E. Burger. aEnglewood Cliffs, N.J. :bSilver Burdett Press,cc1991. a172 p. :bill. (some col.) ;c27 cm. 4aThe American heritage history of the Bill of Rights. aIncludes bibliographical references (p. 161-163) and indexes. aTraces the history of the several clauses of the Fifth Amendment: the right to a grand jury, due process, self-incrimination, double jeopardy, and eminent domain. 1aCivil rightsxHistory. 1aUnited StatesxConstitutional lawxAmendmentsx5thxHistory. aLVLcJNFkJNF 345.73 Ho bMAINp32000000049223r17.94u9381u478401288 2200361 450000100060000000300040000600500170001000800390002701000130006602000380007903500160011704000200013305000250015308200160017809000150019410000300020924500680023926000580030726300100036530000210037550500670039652100110046365000450047465000450051965000450056465000350060970000530064470000580069770000620075594200230081795200430084095200430088329840LVL19990323000000.0890124s1989 nyu 00011 eng a89001613 a0385297289 :c$12.95 ($16.95 Can) aflb01867803 aDLCcDLCdICrlF0 aPS3566.A686bA6 19890 219a813/.54 c2480d248010aParker, Robert B.,d1932-14aThe early Spenser :bthree complete novels /cRobert B. Parker.0 aNew York, N.Y. :bDelacorte Press/S. Lawrence,c1989. a8906. a498 p. ;c24 cm.0 aThe Godwulf manuscript -- God save the child -- Mortal stakes.2 aAdult. 0aSpenser (Fictitious character)xFiction. 0aDetective and mystery stories, American. 7aSpenser (Fictitious character)xFiction. 7aMystery and detective stories.12aParker, Robert B.,d1932-f1989.tMortal stakes.12aParker, Robert B.,d1932-f1989.tGod save the child.12aParker, Robert B.,d1932-f1989.tThe Godwulf manuscript. aLVLcMYSkM Parker bMAINp32000000025180r8.23u9382u4785 bMAINp31000000009142r8.23u9383u478600786 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000260013524500810016126000450024230000230028750000290031050000980033994200210043795200430045895200430050136859LVL19990320000000.0840406r19841982nyu 00011 eng a84040225 a0394727266 a 84040225 c2481d2481 aAF Endo1 aEndo, Shusaku,d1923-14aThe samurai /cShusaku Endo ; translated from the Japanese by Van C. Gessel. aNew York :bVintage Books,c1984, c1982. a272 p. ;c21 cm.;. aTranslation of: Samurai. aReprint. Originally published: New York, N.Y. : Harper & Row : Kodansha International, c1982. aLVLcAFkAF Endo bMAINp32000000045941r7.08u9384u4787 bMAINp31000000047539r7.08u9385u478800963 2200325 450000100060000000300040000600500170001000800390002701000210006602000270008702000150011403500160012904000200014505000200016508200080018509000150019310000160020824500460022426000360027030000330030635000110033949000330035052001010038352100090048465000220049365000130051594200230052895200430055195200430059450897LVL19990313000000.0720508s1972 nyua j 000 0 eng a72001441 /AC/r73 a0394924908 (lib. bdg.) a0394824903 aflb00239201 aDLCcDLCdICrlF0 aPZ8.3.G276bMar a[E] c2482d24821 aSeuss,cDr.10aMarvin K. Mooney, will you please go now! aNew York,bRandom Housec[1972] a[28] p.bcol. illus.c24 cm. a$2.50.0 aA Bright & early bookvBE13. aSuggests in rhyme a number of ways for Marvin K. Mooney to travel as long as he gets going--now!2 aK-3. 1aStories in rhyme. 1aFantasy. aLVLcEASYkE Seuss bMAINp32000000002141r5.45u9386u4789 bMAINp32000000024127r7.16u9387u479000701 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000480013724500560018526000480024130000400028944000220032950400260035165000160037794200230039395200430041622822LVL19990327000000.0711216s1964 nyuae b 00010 eng a64022933 a0195199219 a 64022933 c2483d2483 a709.37 Wh1 aWheeler, Robert Eric Mortimer,cSir,d1890-10aRoman art and architecture /cSir Mortimer Wheeler. aNew York :bOxford University Presscc1964. a250 p. :bill. ; plans ;c21 cm. ;. 4aThe World of art. aBibliography: p. 237. 0aArt, Roman. aLVLcNFk709.37 Wh bMAINp32000000050069r9.95u9388u479100711 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000190014024500450015925000120020426000520021630000380026852000810030665000110038794200270039895200440042529841LVL19990323000000.0820326s1983 caua j 00010 eng a82003109 a0152594884 a 82003109 c2484d2484 aJNF 676.2 Gi1 aGibbons, Gail.10aPaper, paper everywhere /cGail Gibbons. a1st ed. aSan Diego :bHarcourt Brace Jovanovich,cc1983. a32 p. :bcol. ill. ;c22 x 26 cm. aBriefly discusses where paper comes from, how it is made, and how we use it. 1aPaper. aLVLcJNFkJNF 676.2 Gi bMAINp32000000053926r10.95u9389u479200996 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000340013824500840017225000120025626000540026830000350032252001420035765000570049965000460055665000200060270000270062294200250064995200440067443879LVL19990316000000.0850925s1986 nyua j 00010 eng a85024168 a0688038093 a 85024168 c2485d2485 aJNF 821 Br1 aBrowning, Robert,d1812-1889.14aThe Pied Piper of Hamelin /cRobert Browning ; illustrations by Anatoly Ivanov. a1st ed. aNew York :bLothrop, Lee & Shepard Books,cc1986. a[32] p. :bcol. ill. ;c29 cm. aThe Pied Piper piped the village free of rats and when the villagers refused to pay him for the service he piped away their children too. 1aPied Piper of Hamelin (Legendary character)xPoetry. 1aFolklorexPoetry.zGermany (West)zHameln 1aEnglish poetry.11aIvanov, Anatoly,eill. aLVLcJNFkJNF 821 Br bMAINp32000000052086r13.00u9390u479300600 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000230013624500520015926000400021130000210025194200230027295200440029595200430033950898LVL19990313000000.0880914s1989 nyu 00011 eng a88013709 a0877959943 a 88013709 c2486d2486 aM McBain10aMcBain, Ed,d1926-10aLullaby :ban 87th Precinct novel /cEd McBain.0 aNew York :bWilliam Morrow,cc1989. a350 p. ;c24 cm. aLVLcMYSkM McBain bMAINp32000000032719r10.00u9391u4794 bLB2p34000000006370r10.30u9392u479500763 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200110012310000300013424500630016426000590022730000260028665000400031265000460035294200200039895200420041895200610046029842LVL20000911030941.0910225m19911993tnu 00010 eng a91009800 a1558531025 a 91009800 c2487d2487 a170 Br1 aBrown, H. Jackson,d1940-10aLife's little instruction book /cby H. Jackson Brown, Jr. aNashville, Tenn. :bRutledge Hill Press,cc1991-c1993. aunp ;c12 x 16 cm. ;. 0aHappinessxQuotations, maxims, etc. 0aConduct of lifexQuotations, maxims, etc. aLVLcNFk170 Br bLB2p37000000010003r5.95u9393u4796 bMAINdMAINp32000000054387r5.95u9394u4797v2003-09-0101566 2200433 450000100060000000300040000600500170001000800390002701000130006602000240007902000370010303500160014009000150015609200120017110000200018324500730020325000120027626000440028830000330033244000240036552001070038965000250049665000300052165000260055165000250057765000300060294200230063295200420065595200430069795200430074095200440078395200440082795200440087195200430091595200430095895200430100195200440104495200440108836861LVL19991006000000.0880616s1989 nyua j 00011 eng a88021202 a0060224061 (hard) : a006022407X (lib. bdg.) :c$10.89 aflb00744302 c2488d2488 aE Hoban10aHoban, Lillian.10aArthur's great big valentine /cstory and pictures by Lillian Hoban. a1st ed.0 aNew York, N.Y. :bHarper & Row,cc1989. a60 p. :bcol. ill. ;c23 cm. 3aAn I can read book. aAfter they have a falling out, Arthur and his best friend Norman make up with very special valentines. 1aFriendshipxFiction. 1aValentine's DayxFiction. 1aChimpanzeesxFiction. 7aFriendshipxFiction. 7aValentine's DayxFiction. aLVLcEASYkE Hoban bLB2p37000000004304r6.42u9395u4798 bMAINp32000000023821r6.42u9396u4799 bMAINp32000000023822r6.42u9397u4800 bMAINp32000000039951r11.69u9398u4801 bMAINp32000000047608r11.69u9399u4802 bMAINp32000000047609r11.69u9400u4803 bMAINp35000000002449r9.80u9401u4804 bMAINp31000000002441r9.80u9402u4805 bMAINp31000000002451r6.42u9403u4806 bMAINp31000000043263r11.69u9404u4807 bMAINp31000000045955r11.69u9405u480800884 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000190013624500580015526000960021330000390030950000200034865000130036865000290038194200220041095200440043295200430047695200440051995200430056343880LVL19990316000000.0941205s1995 paua 00110 eng a94045679 a087596186X a 94045679 c2489d2489 a615.8 Jo10aJohnson, Joan.14aThe healing art of sports massage /cby Joan Johnson.0 aEmmaus, Pa. :bRodale Press :bDistributed in the book trade by St. Martin's Press,cc1995. ax, 166 p. :bill. ;c28 cm. ;dpa. aIncludes index. 0aMassage. 0aSports physical therapy. aLVLcNFk615.8 Jo bMAINp32000000057330r10.00u9406u4809 bLB2p34000000005336r10.00u9407u4810 bMAINp31000000054374r10.00u9408u4811 bLB1p33000000022374r10.00u9409u481200339 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000180009624500130011494200230012795200430015050899LVL19990313000000.0930331s19xx xxu 00010 eng d a86016455 c2490d2490 aTurner, Tina.10aI, Tina. aLVLcBIOkB Turner bMAINp32000000003472r9.71u9410u481300890 2200289 450000100060000000300040000600500170001000700090002700800410003603500160007703700250009309000150011809200190013324500630015226000610021530000550027651100660033152100140039753800170041165000210042870000200044970000200046970000200048970000210050994200260053095200440055657918LVL19990220000000.0vf cbaho941117p19871984cau130 g vleng d avid93001483 a3553bOrion Pictures c2491d2491 aAV Louis- iana00aLouisianacOrion Pictures Corporation.h[videorecording] / aLos Angeles, CA :bOrion Pictures Corp.,cp1987, c1984.. a1 videocassette (130 min.) :bsd., col. ;c1/2 in.1 aMargot Kidder, Ian Charleson, Victor Lanoux, Andrea Ferreol.. aGeneral.. aVHS Format.. 0aFeature Films. .11aKidder, Margot.11aCharleson, Ian.11aLanoux, Victor.11aFerreol, Andrea. aLVLcAVkAV Louisiana bMAINp31000000030039r61.99u9411u481400577 2200205 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200130011410000210012724500390014826000450018730000280023250000290026094200230028995200590031222824LVL20030430130427.0950123s1994 nyu 00011 eng d a0425145476 anpl95000151 c2492d2492 aM Cleary10aCleary, Melissa.10aDead and buried /cMelissa Cleary.0 aNew York :bBerkley Prime Crime,cc1994. a199 p. ;c18 cm. ;dpa. a"A dog lover's mystery". aLVLcMYSkM Cleary bLB1dLB1p36000000005036r2.66u9412u4815v2003-09-0100575 2200205 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200140011210000200012624500420014626000450018830000280023394200230026195200430028495200420032736862LVL19990320000000.0940706s1988 nyu j 00011 eng a0553156101 anpl94001119 c2493d2493 aJ Coville10aCoville, Bruce.14aThe ghost wore gray /cBruce Coville.0 aNew York :bBantam Skylark Book,cc1988. a153 p. :c20 cm. ;dpa. aLVLcJFkJ Coville bMAINp32000000048460r3.50u9415u4816 bLB2p34000000006938r2.24u9416u481701169 2200349 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000180013524500670015325000120022026000640023230000330029644000230032952001240035265000230047665000220049965000250052165000320054665000220057870000220060094200230062295200440064595200430068995200440073295200430077643881LVL20000912003817.0920910s1994 nyua j 00011 eng a92034782 a0803714890 a 92034782 c2494d2494 aE Kiser10aKiser, SuAnn.10aHazel saves the day /cby SuAnn Kiser ; pictures by Betsy Day. a1st ed.0 aNew York, New York :bDial Books for Young Readers,cc1994. a48 p. :bcol. ill. ;c23 cm. 0aDial easy-to-read. aHaving moved to a new town, Hazel Hen makes new friends by distributing invitations to her Friday the Thirteenth party. 1aChickensxFiction. 1aAnimalsxFiction. 1aFriendshipxFiction. 1aMoving, HouseholdxFiction. 1aPartiesxFiction.11aDay, Betsy,eill. aLVLcEASYkE Kiser bMAINp32000000058556r11.60u9417u4818 bLB2p34000000006501r11.60u9418u4819 bMAINp31000000055216r11.60u9419u4820 bLB1p33000000023088r11.60u9420u482100872 2200265 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200140011410000170012824500520014526000640019730000360026160000320029765000420032994200240037195200420039595200430043795200420048095200420052295200420056450900LVL19991108000000.0950724s1995 iluac 00010beng d a0451823060 anpl95001004 c2495d2495 aB Presley10aDoll, Susan.10aElvis :bportrait of the king /cby Susan Doll.0 aLincolnwood, IL :bPublicatons International, Ltd.,cc1995. a239 p. :bill. ;c25 cm. ;dpa.10aPresley, Elvis,d1935-1977. 0aSingersxBiographyxPictorial works.. aLVLcBIOkB Presley bLB2p37000000004040r7.64u9421u4822 bMAINp32000000058485r7.64u9422u4823 bLB1p36000000005490r7.64u9423u4824 bLB2p34000000006462r7.64u9424u4825 bLB1p33000000023026r7.64u9425u482600853 2200301 4500001000700000003000400007005001700011007000300028008004100031020002100072035001600093040001300109090001500122100002300137245004000160250002000200260004200220300002100262650002800283650003000311650003400341651002100375655003000396655002900426655002700455942002500482952004400507171220LVL20030320070331.0tb030311s2003 nyu d 000 1 eng d a0060533269 (pa.) anpl30002194 aOCOcOCO c2496d24961 aMargolin, Phillip.10aTies that bind /cPhillip Margolin. aLarge print ed. aNew York :bHarperLargePrint,cc2003. a532 p. ;c23 cm. 0aWomen lawyersxFiction. 0aTrials (Murder)xFiction. 0aAttorney and clientvFiction. 0aOregonvFiction. 72lcsh.aPolitical fiction. 72gsafd.aMystery fiction. 72gsafd.aLegal stories. aLVLcLPkLP Margolin bMAINp32000000134326r25.95u9426u482700977 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000270013724500520016425000120021626000370022830000210026552001400028665000310042665000250045765000200048265000200050294200230052295200440054595200430058995200430063215806LVL19990331000000.0950213s1995 mau 00011 eng a95007169 a0316383511 a 95007169 c2497d2497 aYA Hurwin10aHurwin, Davida,d1950-12aA time for dancing /ca novel by Davida Hurwin. a1st ed.0 aBoston :bLittle, Brown,cc1995. a257 p. ;c22 cm. aSeventeen-year-old best friends Samantha and Juliana tell their stories in alternating chapters after Juliana is diagnosed with cancer. 1aCancerxPatientsxFiction. 1aFriendshipxFiction. 1aDeathxFiction. 1aGriefxFiction. aLVLcYAkYA Hurwin bMAINp32000000064996r11.88u9427u4828 bMAINp31000000057614r8.88u9428u4829 bLB1p33000000025818r11.88u9429u483000562 2200181 4500020001500000090001500015245003000030246002200060246001200082250003100094260005300125300003800178440003000216651002400246942002400270952004300294952004300337 a0679035567 c2498d249800aFodor's exploring Israel.30aExploring Israel.30aIsrael. aCompletely updated 2nd ed.0 aNew York :bFodor's Travel Publications,cc1998. a288 p. :bill. ; maps ;c22 cm. ; 0aFodor's exploring guides. 0aIsraelxGuidebooks. aLVLcNFk915.694 Fo bLB2p34000000018382r22.00u9432u4831 bLB1p33000000031887r22.00u9434u483200915 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000230013624500620015925000170022126000500023830000300028850000890031852000950040765000230050265000220052570000220054794200240056995200440059329844LVL19990323000000.0940125r19951994maua j 00011 eng a94005144 a1564024822 a 94005144 c2499d2499 aE Anholt10aAnholt, Catherine.10aWhat makes me happy? /cby Catherine and Laurence Anholt. a1st U.S. ed.0 aCambridge, Mass. :bCandlewick Press,cc1995. a[25] p. :bill. ;c22 cm. a"First published in Great Britain in 1994 by Walker Books Ltd., London"--T.p. verso. aChildren describe in rhyming verse their feelings and what makes them feel different ways. 1aEmotionsxFiction. 1aStories in rhyme.10aAnholt, Laurence. aLVLcEASYkE Anholt bMAINp32000000058209r11.86u9435u483300818 2200253 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200190011210000270013124500320015826000380019030000350022865000690026365000330033265000320036565100560039794200260045395200420047995200430052143882LVL20010816183106.0940512s1995 nyub 00011 eng a0553572806 anpl96000211 c2500d2500 aAF Cold- smith10aColdsmith, Don,d1926-10aRunestone /cDon Coldsmith.0 aNew York :bBantam Books,cc1995. a580 p. :bmap ;c18 cm. ;dpa. 0aIndians of North AmericaxFirst contact with EuropeansxFiction. 0aExplorersxFiction.zAmerica 0aNorthmenxFiction.zAmerica 0aAmericaxDiscovery and explorationxNorsexFiction. aLVLcAFkAF Coldsmith bLB1p36000000001217r3.47u9436u4834 bMAINp35000000000741r3.47u9437u483501388 2200349 450000100060000000300040000600500170001000700100002700800410003703500160007809000150009409200130010924501500012226000500027230000560032250000530037850600310043151100670046252001960052952100130072553800100073853800200074865000190076865100200078770000280080770000290083570000280086470000350089271000280092794200220095595200610097757920LVL20010804011604.0vfucbahom941107p19831952cau129 g vleng d avid93001459 c2501d2501 aAV Quiet04aThe Quiet mancRepublic Pictures ; produced by John Ford, Merian C. Cooper ; directed by John Ford ; written by Frank Nugent.h[videorecording] / aLos Angeles :bNTA Home Entertainment,c1983. a1 videocassette (129 min.) :bsd., col. ;c1/2 in.. aOriginally released as a motion picture in 1952. aFor private home use only.1 aJohn Wayne, Maureen O'Hara, Barry Fitzgerald, Victor McLaglen. aWhen an American prize-fighter kills a man in the ring, he returns to the Irish village where he was born to find peace. There he meets and falls in love with the sister of the village bully. aGeneral. aNTSC. aVHS Hi-fi mono. 0aFeature films. 0aIrelandxDrama.11aFord, John,d1894-1973.11aWayne, John,d1907-1979.11aO'Hara, Maureen,d1920-11aFitzgerald, Barry,d1888-1961.21aNTA Home Entertainment. aLVLcAVkAV Quiet bMAINdMAINp31000000030298r9.97u9438u4836v2003-09-0100983 2200277 4500001000700000003000400007005001700011007000300028008004100031010001500072020002100087035001600108040001300124090001500137100001900152245007300171246003900244260004300283300002900326650001500355650001200370650001500382856023600397942002800633952004400661171221LVL20030320070351.0ta030113s2003 vtua d 000 0 eng d a2003000745 a0892819162 (pa.) anpl30002196 aDLCcDLC c2502d25021 aLevitt, Susan.10aTeen feng shui :bdesign a space that works for you /cSusan Levitt.30aDesign a space that works for you. aRochester, Vt. :bBindu Books,cc2003. a223 p. :bill. ;c23 cm. 0aFeng shui. 0aTaoism. 0aTeenagers. 3cover artiInput this URL in a browser to get GIF cover art data.qGIFuhttp://firstsearch.oclc.org/WebZ/DCARead?standardNoType=1&standardNo=0892819162:srcdbname=WorldCat:fromExternal=true&sessionid=0xOCLC ECxwidth=166 height=187 aLVLcYANFkYA 133.33 Le bMAINp32000000134325r14.95u9439u483701007 2200313 450000100060000000300040000600500170001000800390002701000190006602000250008503500160011004000250012604300120015105000210016308200190018409000150020310000200021824500330023826000330027130000410030450400640034552001080040952100110051765000450052865000300057365100250060394200210062895200440064915807LVL19990331000000.0890713s1990 nyua b 001 0 eng a89017617 //r91 a0689120966 :c$29.95 aflb00135101 aDLCcDLCdDLCdICrlF ae-gr---00aCB245.bT33 199000220a909/.09821 c2503d25031 aTaplin, Oliver.10aGreek fire /cOliver Taplin. aNew York :bAtheneum,c1990. a276 p. :bill. (some col.) ;c26 cm. aIncludes bibliographical references (p. 266-269) and index. aA historical and cultural criticism of classical Greece. Also explores its influence on modern society.2 aAdult. 0aCivilization, WesternxGreek influences. 7aCivilization, Occidental. 7aGreecexAntiquities. aLVLcNFk909 TAP bMAINp32000000028676r17.67u9440u483800764 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000320013724500890016926000630025830000340032150000200035565000360037594200230041195200440043495200440047822826LVL19990327000000.0940901s1995 nyua 00110 eng a94035426 a0895776545 a 94035426 c2504d2504 a751.42 Sm10aSmith, Ray Campbell,d1916-14aThe art of watercolor :ba guide to the skills and techniques /cRay Campbell Smith.0 aPleasantville, N.Y. :bReader's Digest Association,c1995. a128 p. :bcol. ill. ;c29 cm. aIncludes index. 0aWatercolor paintingxTechnique. aLVLcNFk751.42 Sm bMAINp32000000058074r14.40u9441u4839 bMAINp31000000054867r14.40u9442u484000666 2200181 4500020001500000090001500015245014400030260004300174300002900217650001400246650001200260700001700272700002400289942002200313952004400335952006200379952004300441 a0792456262 c2505d250500aJane's American fighting ships of the 20th century /ccompiled and edited by Captain John Moore; preface by Vice Admiral M. Staser Holcomb.0 aNew York, NY :bMallard Press,cc1991. a319 p. :bill. ;c33 cm. 0aWarships. 0aNavies.10aMoore, John.10aHolcomb, M. Staser. aLVLcNFk623.8 Ja bMAINp32000000059644r29.99u9443u4841 bMAINdMAINp31000000039319r34.77u9444u4842v2005-01-25 bLB1p33000000023596r29.99u9445u484300650 2200217 450000100060000000300040000600500170001000800390002701000130006603500140007909000150009309200120010810000280012024500580014826000380020630000210024465000490026565000530031494200220036795200430038936864LVL19990320000000.0940808s1965 nyu 00011 eng a65020319 a 65020319 c2506d2506 aM Stout1 aStout, Rex,d1886-1975.14aThe doorbell rang :ba Nero Wolfe novel /cRex Stout. aNew York :bViking Press,cc1965. a186 p. ;c21 cm. 0aWolfe, Nero (Fictitious character)xFiction. 0aPrivate investigatorsxFiction.zNew York (N.Y.) aLVLcMYSkM Stout bMAINp32000000049488r3.50u9446u484400900 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000300014024500780017025000130024826000490026130000280031050400510033865000380038965000420042765000390046965000430050894200270055195200440057843883LVL19961212000000.0950509s1995 nyu b 00110deng a95011322 a0198662211 a 95011322 c2507d2507 aREF 820.9 Dr 0aDrabble, Margaret,d1939-14aThe Oxford companion to English literature /cedited by Margaret Drabble. aRev. ed.0 aNew York :bOxford University Press,cc1995. aviii, 1171 p. ;c24 cm. aIncludes bibliographical references and index. 0aEnglish literaturexDictionaries. 0aEnglish literaturexBio-bibliography. 0aAmerican literaturexDictionaries. 0aAmerican literaturexBio-bibliography. aLVLcREFkREF 820.9 Dr bMAINp32000000059998r49.95u9447u484500601 2200217 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200120011410000170012624500250014326000390016830000280020794200210023595200420025695200420029895200430034050902LVL20001025142435.0960313s1996 nyu 00011 eng d a0843939419 anpl96000589 c2508d2508 aAF Hess10aHess, Norah.10aLacey /cNorah Hess.0 aNew York :bLeisure Books,cc1996. a407 p. ;c18 cm. ;dpa. aLVLcAFkAF Hess bLB2p37000000013738r5.99u9448u4846 bLB1p36000000004927r3.53u9449u4847 bMAINp31000000058895r3.53u9450u484800724 2200241 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200170011410000220013124500330015326000490018630000280023544000270026350000590029060000350034971000270038494200270041195200440043857921LVL19990220000000.0951228s1994 nyua j 00010beng d a1858135907 anpl95001943 c2509d2509 aJNF 759.4 An10aAnderson, Janice.10aVan Gogh /cJanice Anderson.0 aNew York, NY :bShooting Star Press,cc1994. a79 p. :bill. ;c21 cm. 4aThe life and works of. aA compilation of works from the Bridgeman Art Library.10aGogh, Vincent van,d1853-1890.20aBridgeman Art Library. aLVLcJNFkJNF 759.4 An bMAINp31000000057948r14.95u9451u484901351 2200337 4500001000700000003000400007005001700011007000300028008004100031020001500072035001600087040001900103090001500122100002000137245004000157250001200197260002900209300002900238490004700267500003700314500002600351650002200377655002900399800006000428856008800488856028300576942002300859952004400882952004400926952004300970171222LVL20030320070413.0ta021114s2003 nyuab 000 1 eng d a0312872097 anpl30002197 aDLCcDLCdCdP c2510d25101 aPinto, Ricardo.14aThe standing dead /cRicardo Pinto. a1st ed. aNew York :bTor,cc2003. a560 p. :bill. ;c25 cm.1 aThe stone dance of the Chameleon ;vbk. 2. a"A Tom Doherty Associates book." aMap on lining papers. 0aGay menxFiction. 72gsafd.aFantasy fiction.1 aPinto, Ricardo.tStone dance of the Chameleon ;vbk. 2.0 3Publisher descriptionuhttp://www.loc.gov/catdir/description/hol031/2002040940.html0 3More InfoiInput this URL in a browser to get HTML More Info data.qHTMLuhttp://firstsearch.oclc.org/WebZ/DECRead?standardNoType=1&standardNo=0312872097&sessionid=0&srcdbname=WorldCat&key=a54ce1dcb0bc44b7dc49385afbab21cc1544d93256c79e92071872a66361d24d&ectype=MOREINFOxOCLC EC aLVLcSCIkSF Pinto bMAINp32000000134322r27.95u9452u4850 bMAINp31000000106000r27.95u9453u4851 bLB1p33000000055240r27.95u9454u485200949 2200277 450000100060000000300040000600500170001000800390002701000130006602000250007903500160010404000200012005000260014008200160016609000150018210000300019724500430022726000440027030000210031452001700033552100110050594200250051695200430054195200440058495200430062815808LVL20020809141339.0880824s1989 nyu 00011 eng a88026493 a0671670379 :c$17.95 aflb00282007 aDLCcDLCdICrlF0 aPS3563.E747bS55 19890 219a813/.54 c2511d251110aMichaels, Barbara,d1927-10aSmoke and mirrors /cBarbara Michaels.0 aNew York :bSimon and Schuster,cc1989. a348 p. ;c25 cm. aErin Hartsock finds danger, intrigue, and a dark secret while working on the staff committed to electing Congresswoman Rosemary White Marshall senator from Virginia.2 aAdult. aLVLcAFkAF Michaels bLB2p37000000001600r10.41u9455u4853 bMAINp32000000050553r17.81u9456u4854 bLB2p34000000003506r10.41u9457u485501919 2200373 4500020001500000090001500015245024300030260004500273300005500318500004700373500005300420500004000473511011800513520032400631538001000955538003700965650001901002650001801021650001901039650004701058651005401105700002901159700001801188700002901206700002801235700001901263710002301282942002301305952004401328952004401372952004201416952004301458952004401501 a0790723662 c2512d251200aThe clientcWarner Bros. presents in association with Regency Enterprises and Alcor Films ; produced by Arnon Milchan and Steven Reuther ; directed by Joel Schumacher ; screenplay by Akova Goldsman and Robert Getchell.h[videorecording] /0 aBurbank, CA :bWarner Home Video,c1994. a1 videocassette (121 min.) :bsd., col. ;c1/2 in. aClosed-captioned for the hearing impaired. aOriginally released as a motion picture in 1994. aBased on the novel by John Grisham.1 aTommy Lee Jones, Susan Sarandon, Mary-Louise Parker, Anthony LaPaglia, Anthony Edwards, Ossie Davis, Brad Renfro. aEleven-year-old Mark Sway witnessed the suicide of a New Orleans attorney. Before he died he told Mark a deadly secret about the recent murder of a Louisiana senator whose accused killer, a Mafia thug, is about to go to trial. Mark hires a lawyer, Reggie Love, who loves helping kids overlooked or abused by the system. aNTSC. aVHS Hi-fi Dolby surround stereo. 0aLegal stories. 0aMafiaxDrama. 0aFeature films. 0aVideo recordings for the hearing impaired. 0aLouisianaxDrama.xPolitics and governmenty1951-1 aSchumacher, Joel,d1939-1 aRenfro, Brad.1 aJones, Tommy Lee,d1946-1 aSarandon, Susan,d1946-1 aGrisham, John.2 aWarner Home Video. aLVLcAVkAV Client bMAINp32000000059366r16.67u9460u4856 bMAINp32000000091395r14.95u9461u4857 bLB1p36000000011115r9.95u9462u4858 bLB2p34000000007185r16.67u9463u4859 bMAINp31000000078887r14.95u9464u486000703 2200157 4500090001500000100001900015245003200034260003800066300002300104500002300127520027100150650003000421650002700451942002400478952004300502 c2513d251310aAndrews, V. C.10aDark angel /cV.C. Andrews.0 aNew York :bPocket Books,cc1986. a443 p. ;c18 cm. ; aSequel to: Heaven. aWhen she moves to Boston to live with her wealthy grandmother, Heaven believes that she has found a place to belong and an opportunity to make something of herself until she begins to realize the terrible truth beneath the glamorous facade of her grandmother's life. 1aFamily problemsxFiction. 1aGrandmothersxFiction. aLVLcAFkAF Andrews bMAINp32000000062201r4.50u9465u486100379 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000190009824500500011794200230016795200430019036865LVL19990320000000.0941121s19xx xxu 00010 eng d a0373109784 c2514d251410aJordan, Penny.10aDesire for revenge /bHarlequin Presents 978. aLVLcAFkPB Jordan bMAINp32000000053155r1.95u9466u486200384 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000280009824500470012694200210017395200440019450903LVL19990313000000.0940818s19xx xxu 00010 eng d a0816191034 c2515d25151 aGrey, Zane,d1872-1939.10aStranger from the Tontoh[sound recording] aLVLcACkAC Grey bMAINp32000000025965r14.99u9467u486301398 2200301 4500001000700000003000400007005001700011007000300028008004100031020002100072035001600093040001800109090001500127245009700142246003000239250001300269260004200282300002200324500007200346500002200418650002000440650003000460700002000490856028300510856023600793942002501029952004201054171223LVL20030320070439.0ta020910s2002 nyu 001 0 eng d a0345449916 (pa.) anpl30002198 aOEMcOEMdUV$ c2516d251600aVideo & DVD guide 2003 /cMick Martin and Marsha Porter ; contributing editor, Derrick Bang.3 aVideo and DVD guide 2003. aRev. ed. aNew York :bBallantine Books,cc2002. a1616 p. ;c18 cm. a"Rates more than 18,000 movies! More than 400 new entries!"--Cover. aIncludes indexes. 0aFilm criticism. 0aMotion picturesxReviews.1 aPorter, Marsha.0 3More InfoiInput this URL in a browser to get HTML More Info data.qHTMLuhttp://firstsearch.oclc.org/WebZ/DECRead?standardNoType=1&standardNo=0345449916&sessionid=0&srcdbname=WorldCat&key=20b1f7e3076eaf5f063d26ff682adad4d776f7cc83c30a5a2911c49100583387&ectype=MOREINFOxOCLC EC0 3cover artiInput this URL in a browser to get GIF cover art data.qGIFuhttp://firstsearch.oclc.org/WebZ/DCARead?standardNoType=1&standardNo=0345449916:srcdbname=WorldCat:fromExternal=true&sessionid=0xOCLC ECxwidth=113 height=187 aLVLcNFk791.4375 Vi bLB1p36000000019873r7.99u9468u486400598 2200181 4500020001500000090001500015100002400030245004300054260003600097300002300133440002200156500002600178942002100204952004300225952004300268952004200311952006300353 a0590477390 c2517d251710aStine, R. L.d1943-10aWhy I'm afraid of bees /cR. L. Stine.0 aNew York :bScholastic,cc1994. a117 p. ;c20 cm. ; 0aGoosebumps ;v17. a"An Apple Paperback." aLVLcJFkJ Stine bMAINp32000000143263r3.99u9470u4865 bMAINp31000000079137r2.95u9471u4866 bLB1p33000000033111r2.95u9472u4867 bMAINdMAINp31000000115692r3.50u309864u4868v2004-08-1600728 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200180012324500820014126000580022330000330028165000430031470000250035794200280038295200440041095200440045436866LVL19990320000000.0960402s1996 maua d 00000ceng a96016456 a0674372999 a 96016456 c2518d2518 aREF 780.92 Ha04aThe Harvard biographical dictionary of music /cedited by Don Michael Randel.0 aCambridge, Mass. :bHarvard University Press,cc1996. ax, 1013 p. :bill. ;c26 cm. 0aMusicxBio-bibliographyxDictionaries.10aRandel, Don Michael. aLVLcREFkREF 780.92 Ha bMAINp32000000067621r23.99u9473u4869 bMAINp31000000062412r23.99u9474u487000780 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012324500960013626000550023230000400028750000200032765000210034765000170036870000310038594200220041695200440043895200440048243885LVL19990317000000.0960305s1996 azua 00100 eng a96011791 a1877749192 a 96011791 c2519d2519 a641.5 Ko00aKosher kettle :binternational adventures in Jewish cooking /cedited by Sybil Ruth Kaplan.0 aChandler, Ariz. :bFive Star Publications,cc1996. axi, 496 p. :bill. ;c22 cm. ;dpa. aIncludes index. 0aCookery, Jewish. 0aKosher food.10aKaplan, Sybil Ruth,d1938- aLVLcNFk641.5 Ko bMAINp32000000067543r22.46u9475u4871 bMAINp31000000062348r22.46u9476u487200630 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009409000150011009200220012510000390014724500520018626000420023830000300028050000330031094200250034395200440036850904LVL20030306135440.0850306r1985 nyub 00011 eng a85003681 a0345328728 aonv90003374 c2520d2520 aM Van de Wetering1 aVan de Wetering, Janwillem,d1931-14aThe rattle-rat /cby Janwillem van de Wetering. aNew York :bBallentine Books,cc1985. a293 p. :bmap ;c18 cm.;. aTranslation of: De ratelrat. aLVLcMYSkM Wetering bMAINp32000000067955r14.95u9477u487300643 2200241 4500001000700000003000400007005001700011007000300028008004100031010001500072020002100087035001600108040001700124090001500141100002100156245004300177250002800220260003500248300002100283655002900304942002400333952004400357171224LVL20030325085354.0ta020315s2002 nyu 000 1 eng d a2002018683 a0441009727 (pa.) anpl30002199 aDLCcDLCdIG c2521d25211 aHetley, James A.14aThe summer country /cJames A. Hetley. aAce trade paperback ed. aNew York :bAce Books,cc2002. a361 p. ;c21 cm. 72gsafd.aFantasy fiction. aLVLcSCIkSF Hetley bMAINp32000000134323r14.00u9479u487400696 2200229 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200130011210000290012524500790015426000440023330000360027750400460031365000210035970000210038094200220040195200430042322829LVL19990327000000.0940506c19761974nyua b 00110 eng a0671693808 anpl96001428 c2522d2522 a649.6 Az10aAzrin, Nathan H.,d1930-10aToilet training in less than a day /cNathan H. Azrin and Richard M. Foxx.0 aNew York :bPocket Books,c1976, c1974. a189 p. :bill. ;c18 cm. ;dpa. aInclues bibliography: p. (181) and index. 0aToilet training.10aFoxx, Richard M. aLVLcNFk649.6 Az bMAINp32000000065869r4.50u9480u487501032 2200313 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200130011210000270012524500430015226000420019530000280023750000230026552000980028865000300038665000260041665000350044265000190047765000300049694200220052695200420054895200430059095200430063395200420067629848LVL20030520142911.0960528r19941993nyu j 00011 eng a059048141X anpl96000977 c2523d2523 aYA Wolff10aWolff, Virginia Euwer.10aMake lemonade /cVirginia Euwer Wolff.0 aNew York :bScholastic,c1994, c1993. a200 p. ;c18 cm. ;dpa. a"Point Signature." aIn order to earn money for college, fourteen-year-old LaVaughn babysits for a teenage mother. 1aTeenage mothersxFiction. 1aBabysittersxFiction. 1aSingle-parent familyxFiction. 1aPoorxFiction. 1aConduct of lifexFiction. aLVLcYAkYA Wolff bLB2p37000000018258r2.33u9481u4876 bMAINp32000000064788r2.33u9482u4877 bMAINp35000000001165r2.33u9483u4878 bLB1p33000000025742r2.33u9484u487900377 2200145 450000100060000000300040000600500170001000800410002709000150006810000210008324500490010430000110015394200240016495200430018850905LVL19990313000000.0930420s19xx xxu 00010 eng d c2524d2524 aFelleman, Hazel.14aThe best loved poems of the American people. a12 cm. aLVLcNFk821.008 Fe bMAINp32000000017474r2.15u9485u488001441 2200289 4500001000700000003000400007005001700011007000300028008004100031020002100072035001600093040002800109090001500137100003000152245012900182250002600311260003700337300002600374504006600400505051700466650002300983650003401006650001501040650003301055942002001088952004301108171225LVL20030320070538.0ta011228r20022000mau b 001 0 eng d a0316346624 (pa.) anpl30002200 aPULcPULdIGPdSPPdCGL c2525d25251 aGladwell, Malcolm,d1963-14aThe tipping point :bhow little things can make a big difference /cMalcolm Gladwell ; [with a new afterword by the author]. a1st Back Bay pbk. ed. aBoston :bLittle, Brown,cc2002. axii, 301 p. ;c21 cm. aIncludes bibliographical references (p. [281]-291) and index.0 aThe three rules of epidemics -- The law of the few: connectors, mavens, and salesmen -- The stickiness factor: Sesame Street, Blue's Clues, and the educational virus -- The power of context (part one): Bernie Goetz and the rise and fall of New York City crime -- The power of context (part two): the magic number one hundred and fifty -- Case study: rumors, sneakers, and the power of translation -- Case study: suicide, smoking, and the search for the unsticky cigarette -- Conclusion: focus, test, and believe. 0aSocial psychology. 0aContagion (Social psychology) 0aCausation. 0aContext effects (Psychology) aLVLcNFk302 Gl bLB1p36000000019868r14.95u9486u488100676 2200181 4500020001500000090001500015100001900030245010100049260004400150300002900194500002000223650005500243942002200298952004400320952004300364952004400407952004300451 a0891457143 c2526d252610aSummers, Beth.12aA decade of Barbie dolls and collectibles, 1981-1991 :bidentification & values /cBeth Summers.0 aPaducah, KY :bCollector Books,cc1997. a256 p. :bill. ;c29 cm. aIncludes index. 0aBarbie dollsxCatalogs.xCollectors and collecting aLVLcNFk688.7 Su bMAINp32000000068123r11.77u9487u4882 bLB2p34000000014756r11.77u9488u4883 bMAINp31000000062755r11.77u9489u4884 bLB1p33000000027123r11.77u9490u488500871 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000190013824500390015726000340019630000260023052001830025665000360043965000330047594200240050895200430053295200420057529849LVL20010920130604.0961008s1991 mau 00011 eng a90039343 a0380717115 a 90039343 c2527d2527 aYA Thesman10aThesman, Jean.14aThe rain catchers /cJean Thesman.0 aBoston :bAvon Flare,cc1991. a182 p. ;c18 cm.dpa. aGrowing up in a house full of women, fourteen-year-old Grayling learns to deal with death, love, and the unanswered questions raised by her widowed mother's apparent abandonment. 1aMothers and daughtersxFiction. 1aAbandoned childrenxFiction. aLVLcYAkYA Thesman bMAINp32000000067233r2.66u9491u4886 bLB1p36000000002388r2.66u9492u488700598 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000260013824500420016426000410020630000210024794200240026895200440029295200440033636868LVL20021028135016.0950203s1994 oru 00011 eng a94010717 a1565071816 a 94010717 c2528d2528 aAF Huggins10aHuggins, James Byron.14aThe reckoning /cJames Byron Huggins.0 aEugene, OR :bHarvest House,cc1994. a473 p. ;c24 cm. aLVLcAFkAF Huggins bMAINp32000000055728r11.99u9495u4888 bMAINp31000000053331r11.99u9496u488900880 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000230013724500930016025000140025326000330026730000290030052001540032965000190048365000190050270000270052194200230054895200430057150906LVL19990313000000.0710611s1971 nyua j 00011 eng a74134818 a0689206518 a 74134818 c2529d2529 aJ O'Brien1 aO'Brien, Robert C.10aMrs. Frisby and the rats of Nimhc[by] Robert C. O'Brien. Illustrated by Zena Bernstein. a[1st ed.] aNew York,bAtheneum,cc1971. a233 p. :bill. ;c22 cm. aHaving no one to help her with her problems, a widowed mouse visits the rats whose former imprisonment in a laboratory made them wise and long lived. 1aMicexFiction. 1aRatsxFiction.11aBernstein, Zena,eill. aLVLcJFkJ O'Brien bMAINp32000000036105r9.27u9497u489000303 2200133 450000100060000000300040000600500170001000800410002701000130006809000150008110000210009624500260011794200260014357925LVL19990220000000.0950323s19uu 000 0 eng d a86050316 c2530d25301 aMcCaffrey, Anne.14aThe year of the Lucy. aLVLcAFkAF McCaffrey00877 2200229 4500010001500000020001500015035001600030090001500046100001900061245009600080260003800176300002800214500002700242500002900269520014300298650002000441650003800461700002100499942002000520952004300540952006400583 a2002004161 a0375802959 anpl30002201 c2531d25311 aPark, Barbara.10aJunie B., first grader :btoothless wonder /cBarbara Park ; illustrated by Denise Brunkus. aNew York :bRandom House,cc2002. a80 p. :bill. ;c20 cm. a"Junie B. Jones,a20." a"A Stepping stone book." aJunie B. Jones learns some interesting things about the Tooth Fairy when she becomes the first student in Room One to lose an upper tooth. 1aTeethxFiction. 1aTooth Fairy (Legendary character)1 aBrunkus, Denise. aLVLcJFkJ Park bLB1p36000000019871r11.95u9499u4891 bMAINdMAINp31000000120954r11.95u327674u4892v2005-03-0801102 2200349 450000100060000000300040000600500170001000800390002701000170006602000270008302000150011003500160012504000200014105000160016108200130017709000150019010000200020524500750022526000540030030000330035450000200038751000140040751000430042152001040046452100340056852100090060265000340061165000130064570000260065894200250068495200430070915812LVL20020920101228.0800314s1980 nyua j 00110 eng a80013038 /AC a0688519555 (lib. bdg.) a0688419550 aflb00091006 aDLCcDLCdICrlF0 aQC385.bS55 a535/.323 c2532d253210aSimon, Seymour.10aMirror magic /cby Seymour Simon ; illustrated by Lisa Campbell Ernst.0 aNew York :bLothrop, Lee & Shepard Books,cc1980. a48 p. :bcol. ill. ;c22 cm. aIncludes index.0 aBooklist.0 aNational Science Teachers Association. aExplains how mirrors work and presents activities to illustrate the scientific principles involved.0 a3.5bFollett Library Book Co.2 aK-3. 0aMirrorsxJuvenile literature. 1aMirrors.10aErnst, Lisa Campbell. aLVLcJNFkJNF 535 Si bMAINp32000000015283r4.45u9500u489300819 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012324501220013626000490025830000360030750000200034365000280036365000270039165000110041873000170042994200220044695200430046895200420051136869LVL20030619172604.0940516s1994 vtua 00100 eng a94020771 a1884943063 a 94020771 c2533d2533 a641.5 Ea04aThe Eating well rush hour cookbook :b60 healthy menus you can make in 60 minutes /cfrom the editors of Eating well.0 aCharlotte, Vt. :bEating Well Books,cc1994. a231 p. :bill. ;c26 cm. ;dpa. aIncludes index. 0aQuick and easy cookery. 0aLow-fat dietxRecipes. 0aMenus.01aEating well. aLVLcNFk641.5 Ea bMAINp32000000057200r8.97u9502u4894 bLB1p33000000022292r8.97u9503u489500920 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000270013724500700016425000120023426000380024630000350028444000240031952001320034365000270047565000270050294200250052995200440055495200440059850907LVL20001215104703.0871002s1988 nyua j 00011 eng a87029378 a0060242027 a 87029378 c2534d2534 aE McCully1 aMcCully, Emily Arnold.14aThe grandma mix-up /cstory and pictures by Emily Arnold McCully. a1st ed. aNew York :bHarperTrophy,cc1988. a[64] p. :bcol. ill. ;c23 cm. 3aAn I can read book. aYoung Pip doesn't know what to do when two very different grandmothers come to baby sit, each with her own way of doing things. 1aBaby sittersxFiction. 1aGrandmothersxFiction. aLVLcEASYkE McCully bMAINp32000000037205r11.69u9504u4896 bMAINp32000000082550r11.95u9505u489701035 2200289 4500001000700000003000400007005001700011007000300028008004100031010001300072020002100085035001600106040001800122043001200140090001500152100002100167245010700188260007900295300002600374500010600400650005200506650005100558650003000609700002200639942002400661952006000685171227LVL20030321074626.0ta990302s20021998azu 000 0 eng d a99090249 a0967050707 (pa.) anpl30002203 aCGPcCGPdDLC an-us--- c2535d25351 aGlasser, Howard.10aTransforming the difficult child :bthe nurtured heart approach /cHoward Glasser and Jennifer Easley. aTucson, Ariz. :bCenter for the Difficult Child Publications,c2002,c1998. axii, 272 p. :c23 cm. a"Shifting the intense child to new patterns of success and strengthening all children on the inside." 0aProblem childrenxCounseling ofzUnited States. 0aBehavior disorders in childrenzUnited States. 0aParentingzUnited States.1 aEasley, Jennifer. aLVLcNFk649.153 Gl bLB1dLB1p33000000055229r22.95u9506u4898v2003-09-0100734 2200241 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200180012510000250014324500530016826000470022130000280026894200260029695200430032295200420036595200430040795200420045015813LVL19990331000000.0920603c19921948nyu 00011 eng d a88045965 a0060923008 a 88045965 c2536d2536 aM Went- worth10aWentworth, Patricia.10aMiss Silver comes to stay /cPatricia Wentworth.0 aNew York :bHarperPerennial,c1992, c1948. a260 p. ;c21 cm. ;dpa. aLVLcMYSkM Wentworth bMAINp32000000033708r4.64u9507u4899 bLB2p34000000006754r4.64u9508u4900 bMAINp31000000039470r4.64u9509u4901 bLB1p33000000012820r4.64u9510u490201176 2200373 450000100060000000300040000600500170001000800390002701000170006602000360008303500160011903900180013504000200015304100110017305000230018408200160020709000150022310000200023824000330025824500390029126000440033030000420037444000390041650000450045552000930050052100340059352100090062765000310063665000100066765000100067794200290068795200430071695200430075922832LVL19990327000000.0840730s1985 mnuac j 00010 eng a84017466 /AC a0876142323 (lib. bdg.) :c$5.95 aflb003398110 a2b3c3d3e3 aDLCcDLCdICrlF1 aengger0 aTN900.bM5813 19850 219a553.6/3 c2537d253710aMitgutsch, Ali.10aVom Meer zum Salz.lEnglish.10aFrom sea to salt /cAli Mitgutsch.0 aMinneapolis :bCarolrhoda Books,c1985. a[18] p. :bcol. ill., port. ;c16 cm. 2aA Carolrhoda start to finish book. aRev. English text of: Vom Meer zum Salz. aDescribes the methods used to extract salt from the sea and from deep underground mines.0 a2.7bFollett Library Book Co.2 aK-3. 0aSaltxJuvenile literature. 1aSalt. 7aSalt. aLVLcJNFkJNF 553.63 MIT bMAINp32000000015262r6.95u9511u4903 bMAINp31000000006923r5.57u9512u490400913 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000280013724500780016526000390024330000290028244000350031150000200034650400260036660000300039265000460042294200240046895200440049295200440053695200430058036870LVL20000911190701.0870921s1988 nyua j b 00110beng a87027662 a1555466362 a 87027662 c2538d2538 aJB Addams10aKittredge, Mary,d1949-10aJane Addams /cMary Kittredge ; [introductory essay by Matina S. Horner].0 aNew York :bChelsea House,cc1988. a111 p. :bill. ;c25 cm. 0aAmerican women of achievement. aIncludes index. aBibliography: p. 106.10aAddams, Jane,d1860-1935. 0aSocial workersxBiography.zUnited States aLVLcJNFkJB Addams bMAINp32000000058329r17.06u9513u4905 bMAINp31000000055059r17.06u9514u4906 bLB1p33000000022962r17.06u9515u490700513 2200205 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000190013724500320015626000320018830000210022094200230024195200430026450908LVL20030310095122.0920917s1993 nyu 00011 eng a92036604 a0525935037 a 92036604 c2539d2539 aAF Straub10aStraub, Peter.14aThe throat /cPeter Straub.0 aNew York :bDutton,cc1993. a689 p. ;c24 cm. aLVLcAFkAF Straub bLB1p33000000015186r14.16u9516u490801049 2200277 4500001000700000003000400007005001700011007000300028008004100031010001500072020001500087035001600102040001300118090001500131100002700146245007300173246002400246260003400270300002100304650001100325856008800336856023600424942002300660952004400683952004400727171228LVL20030321074701.0ta021007s2003 flu 000 0 eng d a2002038715 a0151008426 anpl30002204 aDLCcDLC c2540d25401 aSimic, Charles,d1938-14aThe voice at 3 a.m. :bselected late and new poems /cCharles Simic.3 aVoice at three a.m. aNew York :bHarcourt,cc2003. a177 p. ;c22 cm. 0aPoems.0 3Publisher descriptionuhttp://www.loc.gov/catdir/description/har031/2002038715.html0 3cover artiInput this URL in a browser to get GIF cover art data.qGIFuhttp://firstsearch.oclc.org/WebZ/DCARead?standardNoType=1&standardNo=0151008426:srcdbname=WorldCat:fromExternal=true&sessionid=0xOCLC ECxwidth=124 height=187 aLVLcNFk811.54 Si bMAINp32000000134327r25.00u9517u4909 bMAINp31000000105999r25.00u9518u491000376 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000510009824500200014994200240016995200370019329852LVL19990323000000.0920602s19xx xxu 00010 eng d a0060236957 c2541d25411 aAndersen, H. C.d1805-1875.q(Hans Christian),14aThe snow queen. aLVLcJFkJ Andersen bMAINp32000000021425u9519u491100997 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010810000190012324501840014226000380032630000420036450000510040650400510045765000260050870000200053470000200055471000330057494200250060795200440063295200430067636871LVL20010824153427.0941024s1995 nyua b 00110 eng a94039831 a0688123856 a 94039831 c2542d254210aFried, John J.14aThe American druggist's complete family guide to prescriptions, pills, and drugs /cby John J. Fried and Sharon Petska ; editors, Gerard Cooney, Howard Levine, Herbert I. Mandlin.0 aNew York :bHearst Books,cc1995. aviii, 526 p. :bill. ;c28 cm. ;dpa. a"Produced by G.S. Sharpe Communications, Inc." aIncludes bibliographical references and index. 0aDrugsxPopular works.10aPetska, Sharon.10aCooney, Gerard.20aG. S. Sharpe Communications. aLVLcREFkREF 615 Fr bMAINp35000000001178r11.48u9520u4912 bLB2p34000000016107r11.48u9521u491300291 2200121 450000100060000000300040000600500170001000800410002709000150006824500270008394200160011095200430012643890LVL19990317000000.0941224s19uu 000 0 eng d c2543d254310aCOBBLESTONE NOV. 1984. aLVLcPERkJ bMAINp32000000022113r2.25u9522u491400348 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000160009824500240011494200210013895200430015950909LVL19990313000000.0941128s19xx xxu 00010 eng d a0373075871 c2544d254410aWind, Ruth.10aBreaking the rules. aLVLcAFkPB Wind bMAINp32000000053266r3.50u9523u491501219 2200229 4500020001500000035001600015090001500031100002500046245003900071246011100110250001200221260008300233300003200316520042200348650001500770650003200785650002200817650002700839942002000866952004200886952006100928 a006103083X anpl30002205 c2545d25451 aSears, Barry,d1947-12aA week in the zone /cBarry Sears.13aJoin the low-carb revolution! Spend a week in the zone :ba quick course in the healthiest diet for you... a1st ed. aNew York, N.Y. :bRegan Books, an imprint of HarperCollins Publishers,cc2000. ax, 244 p. :bill. ;c18 cm. a"Join the low-carb revolution! Spend a week in the zone : a quick course in the healthiest diet for you ; 7 days that will change your life forever ; lose weight permanently ; prevent disease and increase longevity ; control insulin and blood sugar ; including why popular high-protein diets don't work ; delicious, easy recipes for breakfast, lunch and dinner ; helpful shopping lists ; hints for dining out"--Cover. 0aLongevity. 0aAgingxNutritional aspects. 0aLow-calorie diet. 0aLow-carbohydrate diet. aLVLcNFk613 Se bLB1p36000000019874r6.99u9524u4916 bLB1dLB1p33000000064950r7.50u317232u4917v2004-10-2501321 2200421 450000100060000000300040000600500170001000800390002701000210006602000360008703500160012303900180013904000200015705000240017708200180020109000150021910000180023424501130025226000520036530000350041744000190045252000710047152100340054252100090057665000280058565000290061365000270064265000110066965000130068065000110069365000130070465000190071770000240073674000340076074000380079494200240083295200430085615815LVL19990331000000.0811209s1982 mnua j 00010 eng a81020861 /AC/r85 a0822509814 (lib. bdg.) :c$5.95 aflb006163080 a2b3c3d3e3 aDLCcDLCdICrlF1 aPN6231.F3bS34 19820 219a818/.5402 c2546d254610aSchultz, Sam.10a101 family jokes :bguaranteed to make your whole family giggle /cby Sam Schultz ; pictures by Joan Hanson.0 aMinneapolis :bLerner Publications Co.,cc1982. a[48] p. :bcol. ill. ;c16 cm. 0aMake me laugh. aA collection of 101 jokes about families and family relationships.0 a3.2bFollett Library Book Co.2 aK-3. 0aFamilyxJuvenile humor. 0aWit and humor, Juvenile. 1aFamilyxWit and humor. 1aJokes. 1aRiddles. 7aJokes. 7aRiddles. 7aFamilyxJokes.11aHanson, Joan,eill.01aOne hundred one family jokes.01aOne hundred and one family jokes. aLVLcNFk818.54 SCH bMAINp31000000008617r5.95u9525u491800917 2200313 450000100060000000300040000600500170001000800390002701000170006602000150008302000220009803500160012004000200013605000160015608200130017209000150018510000190020024500480021926000350026730000350030251000140033752000820035152100340043352100090046765000380047665000170051494200290053195200430056029853LVL20021010080927.0790102s1979 nyua j 00010 eng a78031756 /AC a002735640X a0020432100 (pbk.) aflb00845206 aDLCcDLCdICrlF0 aTR149.bF67 a770/.282 c2547d254710aForbes, Robin.10aClick, a first camera book /cRobin Forbes.0 aNew York :bMacmillan,cc1979. a[48] p. :bill. ;c29 x 24 cm.0 aBooklist. aSimple instructions for those learning to handle a camera for the first time.0 a5.4bFollett Library Book Co.2 a3-6. 0aPhotographyxJuvenile literature. 1aPhotography. aLVLcJNFkJNF 770.282 Fo bMAINp32000000015851r5.59u9526u491900821 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000210013724500480015826000480020630000280025465000780028265000500036065000500041065000410046094200240050195200420052536872LVL20030414135756.0950622r19961993nyu 00011 eng a95032891 a0671890921 a 95032891 c2548d2548 aM Goddard10aGoddard, Robert.10aClosed circle :ba novel /cRobert Goddard.0 aNew York :bWashington Square Press,c1996. a331 p. ;c21 cm. ;dpa. 0aSwindlers and swindlingxHistoryxFiction.y20th centuryzEnglandzLondon 0aConspiraciesxHistoryxFiction.y20th century 0aProfiteeringxHistoryxFiction.y20th century 0aAmericansxFiction.zEnglandzLondon aLVLcMYSkM Goddard bLB2p34000000012597r7.08u9527u492000789 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000220013824500560016026000390021630000330025552001920028865000110048094200250049195200430051650910LVL19990313000000.0901029s1992 nyua j 00010 eng a90022779 a0531085392 a 90022779 c2549d2549 aJNF 634 Mi1 aMicucci, Charles.14aThe Life and times of the apple /cCharles Micucci. aNew York :bOrchard Books,cc1992. a32 p. :bcol. ill. ;c24 cm. aPresents a variety of facts about apples, including how they grow, crossbreeding and grafting techniques, harvesting practices, and the uses, varieties, and history of this popular fruit. 1aApple. aLVLcJNFkJNF 634 Mi bMAINp32000000039708r8.90u9528u492100725 2200241 4500001000700000003000400007005001700011007000300028008004100031020002100072035001600093040001300109090001500122100002000137240001800157245006500175260003500240300003600275500005200311651005500363942002200418952004300440171230LVL20030321074809.0ta951222r19961994nyua 000 1 eng d a0440217989 (pa.) anpl30002206 aCLEcCLE c2550d25501 aBrite, Poppy Z.10aSwamp foetus.10aWormwood :ba collection of short stories /cPoppy Z. Brite. aNew York :bDell,c1996,c1994. axxvii, 225 p. :bill. ;c18 cm. aPreviously published under title: Swamp foetus. 0aSouthern StatesxSocial life and customsxFiction. aLVLcAFkAF Brite bMAINp31000000105993r6.99u9529u492200533 2200205 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009409000150011009200130012510000230013824500340016126000420019530000250023794200230026295200420028515816LVL20030106110240.0921014c19911958nyu 00011 eng a91092068 a0380711222 aonv90003459 c2551d2551 aM McBain10aMcBain, Ed,d1926-10aEven the wicked /cEd McBain.0 aNew York :bAvon Books,c1991, c1958. a117 p. pa. :c18 cm. aLVLcMYSkM McBain bLB2p37000000008174r2.72u9530u492300336 2200133 450000100060000000300040000600500170001000800410002709000150006810000280008324500180011194200290012995200440015829854LVL19990323000000.0920707s19xx xxu 00010 eng d c2552d2552 aColumbus Museum Of Art.10aMade in Ohio. aLVLcNFkREF 749.2771 Co bMAINp32000000000559r20.00u9531u492401094 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000260013824501210016426000500028530000340033544000250036950400600039452001140045465100170056865100170058565100190060265100180062170000280063994200250066795200440069295200440073636873LVL19990320000000.0941214s1995 nyuab j b 00110 eng a94045825 a0791033988 a 94045825 c2553d2553 aJNF 974 Ay 0aAylesworth, Thomas G.10aSouthern New England :bConnecticut, Massachusetts, Rhode Island /cby Thomas G. Aylesworth, Virginia L. Aylesworth.0 aNew York :bChelsea House Publishers,cc1996. a96 p. :bill. ; map ;c21 cm. 0aDiscovering America. aIncludes bibliographical references: p. (94) and index. aDiscusses the geographical, historical, and cultural aspects of Connecticut, Massachusetts, and Rhode Island. 1aNew England. 1aConnecticut. 1aMassachusetts. 1aRhode Island.10aAylesworth, Virginia L. aLVLcJNFkJNF 974 Ay bMAINp32000000064914r18.95u9532u4925 bMAINp31000000060176r18.95u9533u492600700 2200229 4500001000700000003000400007005001700011007000300028008004100031020001500072035001600087040001800103090001500121100003200136245008800168260003700256300002600293500005200319650003600371942002000407952004300427171231LVL20030321074835.0ta021004r20022001nyu 000 0 eng d a0743467078 anpl30002207 aLKRcLKRdWIQ c2554d25541 aRushnell, Squire D.,d1938-10aWhen God winks :bhow the power of coincidence guides your life /cSquire Rushnell. aNew York :bAtria Books,c[2002] axxi, 162 p. ;c19 cm. aOriginal published in 2001 by Beyond Words Pub. 0aCoincidencexReligious aspects. aLVLcNFk122 Ru bLB2p34000000029642r16.00u9535u492700801 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200190012324500820014226000400022430000360026450400370030065000410033765000340037865000320041271000360044494200230048095200440050315817LVL20000911194126.0950508s1995 nyuab b 00100 eng a95009354 a0028974514 a 95009354 c2555d2555 aRef. 940.43 Hi00aHistorical atlas of the Holocaust /cUnited States Holocaust Memorial Museum.0 aNew York :bMacMillan Pub.,cc1995. a252 p. :bill. ; maps ;c29 cm. aIncludes bibliography and index. 0aHolocaust, Jewish (1939-1945)xMaps. 0aHolocaust, Jewish (1939-1945) 0aHistorical geographyxMaps.20aU.S. Holocaust Memorial Museum. aLVLcNFk940.53 Hi bMAINp32000000061188r23.97u9536u492800366 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000220009824500170012094200220013795200610015929855LVL19990324000000.0930415s19xx xxu 00010 eng d a0553279513 c2556d25561 aPascal, Francine.10aSay goodbye. aLVLcJFkJ Pascal bMAINdMAINp32000000025309r1.74u9537u4929v2003-09-0100636 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000170013624500600015325000120021326000490022530000210027494200230029595200440031895200440036236874LVL19990320000000.0960216s1996 meu 00011 eng a96006301 a0786206578 a 96006301 c2557d2557 aW Savage10aSavage, Les.10aMedicine wheel :ba western story /cby Les Savage, Jr. a1st ed.0 aThorndike, Me. :bFive Star Western,cc1996. a218 p. ;c22 cm. aLVLcWESkW Savage bMAINp32000000066208r16.95u9538u4930 bMAINp31000000061218r16.95u9539u493100350 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000270009824500120012594200230013795200440016043893LVL19990317000000.0930422s19xx xxu 00010 eng d a0385411715 c2558d2558 aCooper, J. California.10aFamily. aLVLcAFkAF Cooper bMAINp32000000029646r11.18u9540u493201026 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012324501450013825000400028326000450032330000250036850001180039365000290051165000460054070000690058694200200065595200430067595200420071850912LVL19990313000000.0880414s1988 nyu d 00000 eng a88014279 a0139492313 a 88014279 c2559d2559 aREF 004 We00aWebster's New World dictionary of computer terms /cprepared under the supervision of the editorial staff of Webster's New World dictionary. a3rd ed., Completely rev. & updated.0 aNew York :bWebster's New World,cc1988. avi, 412 p. ;c18 cm. aRev. ed. of: Webster's New World dictionary of computer terms / compiled by Laura Darcy and Louise Boston. c1983. 0aComputersxDictionaries. 0aElectronic data processingxDictionaries.11aDarcy, Laura.tWebster's New World dictionary of computer terms. aLVLcNFk004 We bMAINp32000000040391r6.95u9541u4933 bLB2p34000000014107r6.95u9542u493400355 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000200009824500330011894200210015195200370017257931LVL20010815084430.0950323s19uu 000 0 eng d a0448095017 c2560d25601 aKeene, Carolyn.14aThe secret of the old clock. aLVLcJFkJ Keene bMAINp31000000006619u9543u493501673 2200313 4500001000700000003000400007005001700011007000300028008004100031010001500072020001500087035001600102040001900118043001200137090001500149100002600164245015200190260004800342300003600390504006600426505037600492650006600868650006000934650003900994700002201033856023601055942002401291952004401315171232LVL20030321074918.0ta020813s2003 ctua b 001 0 eng d a2002012966 a0300097417 anpl30002208 aDLCcDLCdCdP an-us--- c2561d25611 aTroen, Vivian,d1940-10aWho's teaching your children? :bwhy the teacher crisis is worse than you think and what can be done about it /cVivian Troen & Katherine C. Boles. aNew Haven :bYale University Press,cc2003. axviii, 222 p. :bill. ;c23 cm. aIncludes bibliographical references (p. [205]-210) and index.0 aYour children aren't getting the teachers they deserve -- How teaching got to be this way -- Teacher training : how bad is it? -- Mammas, don't let your babies grow up to be teachers -- Band-aids and boondoggles : the myths and realities of "education reform" -- The Millennium School : a total approach to solving the fundamental problems of elementary school education. 0aElementary school teachersxSocial conditions.zUnited States 0aElementary school teachersxTraining ofzUnited States. 0aEducational changezUnited States.1 aBoles, Katherine.0 3cover artiInput this URL in a browser to get GIF cover art data.qGIFuhttp://firstsearch.oclc.org/WebZ/DCARead?standardNoType=1&standardNo=0300097417:srcdbname=WorldCat:fromExternal=true&sessionid=0xOCLC ECxwidth=125 height=187 aLVLcNFk372.110 Tr bMAINp32000000134329r24.95u9544u493601309 2200409 450000100060000000300040000600500170001000800390002701000250006602000250009103400060011603500160012204000250013805000220016308200120018509000150019710000260021224500720023825500190031026000450032930000540037450000690042850000680049750000200056551000140058552000770059952100340067652100090071065000130071965000130073265000130074570000250075871000250078374000220080894200260083095200430085615818LVL19990331000000.0870305s1987 nyuab j 001 0 eng a87675188 /MAP/AC/r91 a081601745X :c$12.950 aa aflb01586003 aDLCcDLCdDLCdICrlF00aG1021.bW686 198700219a912 c2562d25621 aWright, David,d1939-14aThe Facts on File children's atlas /cDavid Wright and Jill Wright. aScales differ. aNew York, N.Y. :bFacts on File,cc1987. a1 atlas (96 p.) :bcol. ill., col. maps ;c30 cm. a"Maps copyright 1987 by George Philip & Son Limited"--Verso t.p. a"First published in Great Britain by George Philip"--Verso t.p. aIncludes index.0 aBooklist. aText, maps, and activities introduce regions and countries of the world.0 a6.0bFollett Library Book Co.2 a3-6. 0aAtlases. 1aAtlases. 7aAtlases.10aWright, Jill,d1942-20aGeorge Philip & Son.01aChildren's atlas. aLVLcJNFkJNF 912 WRI bMAINp32000000017513r7.64u9545u493700728 2200253 450000100060000000300040000600500170001000800390002701000210006603500220008704000130010905000190012208200100014109000150015110000320016624500560019825000140025426000350026830000270030360000380033063000390036894200230040795200440043022837LVL19990327000000.0730220s1959 maua 000 0beng a58011443 /L/r892 a 58011443 /L/r892 aDLCcDLC0 aPN4874.R65bT5 a920.5 c2563d25631 aThurber, James,d1894-1961.14aThe years with Ross .cWith drawings by the author. a[1st ed.] aBoston,bLittle, Brownc[1959] a310 p.billus.c22 cm.10aRoss, Harold Wallace,d1892-1951.00aNew Yorker (New York, N.Y. : 1925) aLVLcNFk920.5 THU bMAINp32000000013036r20.95u9546u493800783 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009409000150011009200160012510000260014124500510016725000260021826000450024430000400028950000200032965000190034965100390036894200250040795200430043295200420047550913LVL20010702153217.0930819c19931988nyua 00110 eng a88014464 a0020091303 anpl93000904 c2564d2564 a641.5959 Va00aVatcharin Bhumichitr.14aThe taste of Thailand /cVatcharin Bhumichitr. a1st Collier Books ed.0 aNew York :bCollier Books,c1993, c1988. a220 p. :bcol. ill. ;c27 cm. ; pa. aIncludes index. 0aCookery, Thai. 0aThailandxSocial life and customs. aLVLcNFk641.5959 Va bMAINp32000000041602r8.85u9547u4939 bLB2p37000000017293r8.85u9548u494001021 2200337 4500001000700000003000400007005001700011007000300028008004100031010001500072020001500087035001600102040001800118043001200136090001500148100002600163245003400189250001200223260006600235300002100301650004800322650003200370650002900402650002200431651005300453651003700506655003800543655003500581942002300616952004400639171233LVL20030321075003.0ta020910s2003 nyu 000 1 eng d a2002032501 a0312304293 anpl30002209 aDLCcDLCdCLE an-us-ca c2565d25651 aDaniel, David,d1945-10aWhite rabbit /cDavid Daniel. a1st ed. aNew York :bThomas Dunne Books/St. Martin's Minotaur,cc2003. a320 p. ;c22 cm. 0aPolicexFiction.zCaliforniazSan Francisco 0aWomen journalistsxFiction. 0aSerial murdersxFiction. 0aHippiesvFiction. 0aHaight-Ashbury (San Francisco, Calif.)vFiction. 0aSan Francisco (Calif.)xFiction. 72gsafdaHistorical fiction.y2003. 72gsafdaMystery fiction.y2003. aLVLcMYSkM Daniel bMAINp32000000134328r25.95u9550u494100700 2200205 4500010001300000020001500013090001500028100002700043245006200070250002100132260004400153300002100197942002200218952004300240952004400283952003700327952004300364952004400407952004300451 a92036567 a0399138307 c2566d2566 aBraun, Lilian Jackson. aThe cat who went into the closet /cLilian Jackson Braun. a1st American ed. aNew York :bG.P. Putnam's Sons,cc1993. a235 p. ;c22 cm. aLVLcMYSkM Braun bLB2p37000000001705r14.57u9551u4942 bMAINp32000000038920r14.57u9552u4943 bMAINp35000000009329u9553u4944 bLB2p34000000006140r14.57u9554u4945 bMAINp31000000042668r14.57u9555u4946 bLB1p33000000015300r14.57u9556u494700365 2200145 450000100060000000300040000600500170001000800410002702000150006809000150008310000200009824500370011894200210015595200430017629857LVL19990324000000.0941224s19uu 000 0 eng d a0671692828 c2567d25671 aKeene, Carolyn.14aThe mystery at Magnolia Mansion. aLVLcJFkJ Keene bMAINp32000000031731r3.50u9557u494800356 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000210009624500260011794200240014395200430016757933LVL19990220000000.0950323s19uu 000 0 eng d a89030157 c2568d25681 aChesney, Marion.10aEnlightening Delilah. aLVLcAFkAF Chesney bMAINp31000000011648r8.82u9558u494900993 2200337 4500001000700000003000400007005001700011007000300028008004100031010001500072020001500087035001600102040001800118043001200136090001500148100002000163245003300183260003800216300002900254650002300283650002600306650002900332650003400361650004100395651002100436655005100457655003500508942002400543952004400567952004400611171234LVL20030321075032.0ta021025s2003 nyub 000 1 eng d a2002191004 a0446531227 anpl30002210 aDLCcDLCdCLE af------ c2569d25691 aBarnes, Steven.10aZulu heart /cSteven Barnes. aNew York :bWarner Books,cc2003. a463 p. :bmaps ;c24 cm. 0aFreedmenvFiction. 0aImperialismvFiction. 0aRace relationsxFiction. 0aDruids and DruidismxFiction. 0aAristocracy (Social class)vFiction. 0aAfricaxFiction. 72gsafdaAlternative histories (Fiction).y2003. 72gsafdaFantasy fiction.y2003. aLVLcSCIkSF Barnes bMAINp32000000134330r24.95u9559u4950 bMAINp31000000105997r24.95u9560u495100632 2200169 4500010001300000020001500013090001500028100002500043245007800068260004800146300003700194650006200231650004300293942002000336952004400356952006200400 a95008016 a0870697374 c2570d257010aBonner, Mike,d1951-10aCollecting football cards :ba complete guide with prices /cMike Bonner.0 aRadnor, Penn. :bWallace-Homestead,cc1995. aviii, 216 p. :bill. ;c23 cm. ; 0aFootball cardsxCollectors and collectingzUnited States. 0aFootball cardsxPriceszUnited States. aLVLcNFk796 Bo bMAINp32000000060649r15.95u9561u4952 bMAINdMAINp31000000005827r15.95u9562u4953v2004-12-2100981 2200337 4500001000700000003000400007005001700011007000300028008004100031010001500072020001500087035001600102040001800118043001200136090001500148100002300163245004200186250002000228260005300248300002100301650002400322650002200346651002000368655003200388655002600420942002300446952004300469952004400512952004400556952004300600171235LVL20030321075057.0tb021011r20032002meu d 000 1 eng d a2002075042 a0786249862 anpl30002211 aDLCcDLCdCBL ae-it--- c2571d25711 aFeehan, Christine.10aLair of the lion /cChristine Feehan. aLarge print ed. aWaterville, Me. :bThorndike Press,c2003,c2002. a595 p. ;c23 cm. 0aPrisonersxFiction. 0aLarge type books. 0aItalyxFiction. 72gsafd.aHistorical fiction. 72gsafd.aLove stories. aLVLcLPkLP Feehan bLB2p37000000024600r28.95u9563u4954 bMAINp32000000134338r28.95u9564u4955 bMAINp31000000105998r28.95u9565u4956 bLB1p33000000055230r28.95u9566u495701316 2200397 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009404000250011004300120013505000210014708200240016809000150019210000200020724501120022726000380033930000210037750000260039850400500042452000660047452100170054065000370055765000460059465000470064065000360068765000170072365000290074065000310076965000340080070000170083494200230085195200440087429859LVL20020909135928.0890411s1989 nyu b 000 0 eng a89006812 a0553057006 aflb01134506 aDLCcDLCdDLCdICrlF an-us---00aHV699.bF66 198900220a362.82/928/0973 c2572d25721 aForward, Susan.10aToxic parents :bovercoming their hurtful legacy and reclaiming your life /cSusan Forward with Craig Buck. aNew York :bBantam Books,cc1989. a326 p. ;c24 cm. aErrata slip inserted. aIncludes bibliographical references (p. 326). aProvides advice for adult children of dysfunctional families.2 aYoung Adult. 0aProblem familieszUnited States. 0aAdult child abuse victimszUnited States. 0aCo-dependence (Psychology)zUnited States. 0aAbusive parentszUnited States. 7aFamily life. 7aChild abusexPsychology. 7aCo-dependence (Psychology) 7aParent and childxPsychology.10aBuck, Craig. aLVLcNFk362.82 Fo bMAINp32000000066183r18.95u9567u495801036 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000220013824500840016025000120024426000450025630000280030150000800032965000290040965000410043865000410047965000450052070000490056570000540061494200240066895200420069243897LVL19990317000000.0821201s1986 nyu d 00010 eng a82021129 a0816015937 a 82021129 c2573d2573 a616.075 Pi10aPinckney, Cathey.14aThe patient's guide to medical tests /cCathey Pinckney and Edward R. Pinckney. a3rd ed.0 aNew York, N.Y. :bFacts on File,cc1986. axliii, 385 p. ;c24 cm. aRev. ed. of: The encyclopedia of medical tests. Rev. and updated ed. c1982. 0aDiagnosisxDictionaries. 0aDiagnosis, LaboratoryxDictionaries. 2aDiagnosis, LaboratoryxDictionaries. 2aDiagnostic tests, RoutinexDictionaries.10aPinckney, Edward R.d1924-q(Edward Robert),11aPinckney, Cathey.tEncyclopedia of medical tests. aLVLcNFk616.075 Pi bLB2p34000000005188r7.64u9568u495900916 2200325 4500001000700000003000400007005001700011007000300028008004100031010001500072020001500087035001600102040001300118043002100131090001500152100002000167245004100187250002000228260005000248300002100298650002800319650002400347650002200371651002600393651002000419655003900439942002400478952004400502952004400546171236LVL20030321075114.0tb021003r20032002meu d 000 1 eng d a2002033154 a1587243652 anpl30002212 aDLCcDLC an-us-ctan-us-tx c2574d25741 aNeggers, Carla.10aStonebrook Cottage /cCarla Neggers. aLarge print ed. aWaterville, Me. :bWheeler Pub.,c2003,c2002. a437 p. ;c24 cm. 0aWomen lawyersxFiction. 0aGovernorsvFiction. 0aLarge type books. 0aConnecticutxFiction. 0aTexasxFiction. 72gsafd.aRomantic suspense fiction. aLVLcLPkLP Neggers bMAINp32000000134334r29.95u9569u4960 bMAINp31000000106004r29.95u9570u496101032 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200170012310000250014024501190016525000120028426000430029630000330033950000450037252001530041765000170057065000280058770000300061573000260064594200270067195200440069815822LVL19990331000000.0921223s1991 nyua j 00010 eng a89026903 a0060216638 a 89026903 c2575d2575 aJNF 398.2 Wi1 aWinthrop, Elizabeth.10aVasilissa the beautiful :ba Russian folktale /cadapted by Elizabeth Winthrop ; illustrated by Alexander Koshkin. a1st ed. aNew York, NY :bHarperCollins,cc1991. a40 p. :bcol. ill. ;c29 cm. aAdaptation of: Vasilisa prekrasnakila. aA retelling of the old Russian fairy tale in which beautiful Vasilissa uses the help of her doll to escape from the clutches of the witch Baba Yaga. 1aFairy tales. 1aFolklorezSoviet Union.11aKoshkin, Alexander,eill.01aVasilisa prekrasnaia. aLVLcJNFkJNF 398.2 Wi bMAINp32000000036433r14.30u9571u496200843 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009404000200011005000270013008200160015709000150017310000350018824500430022326000320026630000210029851000290031952001500034852100110049894200240050995200440053322841LVL20020311094150.0861020s1987 nyu 00011 eng a86025496 a0399132619 aflb00498611 aDLCcDLCdICrlF0 aPS3569.A5125bT56 19870 219a813/.54 c2576d257610aSanders, Lawrence,d1920-1998.14aThe Timothy files /cLawrence Sanders.0 aNew York :bPutnam,cc1987. a380 p. ;c24 cm.0 aFiction Catalog (Wilson) aTimothy Cone, a Vietnam vet who is an operative for a Wall Street detective firm, finds big time trouble even in his most routine investigations.2 aAdult. aLVLcAFkAF Sanders bMAINp32000000038188r11.18u9572u496300636 2200241 450000100060000000300040000600500170001000800390002701000130006602000240007903500140010303900180011704000130013505000260014808200170017409000150019110000250020624500320023126000440026330000210030794200230032895200430035136879LVL19990320000000.0811203s1982 nyu 000 1 eng a81021419 a0312471874 :c$9.95 a 810214190 a2b3c3d3e3 aDLCcDLC0 aPR6053.L3248bL3 19820 219a823/.914 c2577d25771 aClarke, Anna,d1919-10aLast voyage /cAnna Clarke. aNew York :bSt. Martin's Press,cc1982. a192 p. ;c22 cm. aLVLcMYSkM Clarke bMAINp32000000001660r5.00u9573u496400878 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009403900180011004000200012805000270014808200160017509000150019110000240020624500610023026000640029130000210035551000140037652001240039052100170051494200260053195200430055743898LVL19990317000000.0820305s1982 nyu 00011 eng a82002504 a0440081955 aflb011295030 a2b3c3d3e3 aDLCcDLCdICrlF0 aPS3503.R2736bS58 19820 219a813/.54 c2578d257810aBrautigan, Richard.10aSo the wind won't blow it all away /cRichard Brautigan.0 aNew York, N.Y. :bDelacorte Press/Seymour Lawrence,cc1982. a131 p. ;c21 cm.0 aBooklist. aA portrait of a young boy who grew up in the 1940s and now remembers the tender, doomed past that died with television.2 aYoung Adult. aLVLcAFkAF Brautigan bMAINp32000000001264r7.77u9574u496500797 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000210013724500920015825000120025026000350026230000210029765000350031865000240035394200230037795200440040095200440044495200430048850917LVL20001005105023.0930720s1994 nyu b 00110 eng a93029956 a038542194X a 93029956 c2579d2579 a616.85 Cr10aCronkite, Kathy.10aOn the edge of darkness :bconversations about conquering depression /cKathy Cronkite. a1st ed.0 aNew York :bDoubleday,cc1994. a352 p. ;c24 cm. 0aDepressed personsxInterviews. 0aDepression, Mental. aLVLcNFk616.85 Cr bMAINp32000000108706r13.28u9575u4966 bMAINp31000000046909r13.28u9576u4967 bLB1p33000000017910r13.28u9577u496801024 2200349 4500001000700000003000400007005001700011007000300028008004100031010001500072020001500087035001600102040001300118043001200131090001500143100003400158245003100192250002000223260005300243300002100296650002700317650002600344650002400370650002200394651002200416655003900438942002300477952004300500952004400543952004400587952004300631171237LVL20030321075134.0tb021011r20032002meu d 000 1 eng d a2002192572 a0786249889 anpl30002213 aDLCcDLC an-us-vt c2580d25801 aStuart, Anneq(Anne Kristine)10aStill lake /cAnne Stuart. aLarge print ed. aWaterville, Me. :bThorndike Press,c2003,c2002. a431 p. ;c22 cm. 0aHotelkeepersxFiction. 0aMass murderxFiction. 0aStrangersvFiction. 0aLarge type books. 0aVermontxFiction. 72gsafd.aRomantic suspense fiction. aLVLcLPkLP Stuart bLB2p37000000024599r28.95u9578u4969 bMAINp32000000134337r28.95u9579u4970 bMAINp31000000106007r28.95u9580u4971 bLB1p33000000055122r28.95u9581u497200902 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000320013724500750016926000380024430000210028250000800030365000550038394200240043895200440046295200430050695200440054995200430059315823LVL19990331000000.0911115r19921951nyu 00011 eng a91043760 a055308349X a 91043760 c2581d2581 aW L'Amour10aL'Amour, Louis,d1908-1988.14aThe trail to Seven Pines :ba Hopalong Cassidy novel /cLouis L'Amour.0 aNew York :bBantam Books,cc1992. a244 p. ;c24 cm. aPreviously published: Hopalong Cassidy and the trail to Seven Pines. c1951. 0aCassidy, Hopalong (Fictitious character)xFiction. aLVLcWESkW L'Amour bMAINp32000000048387r11.21u9583u4973 bLB2p34000000004630r11.21u9584u4974 bMAINp31000000042110r11.21u9585u4975 bLB1p33000000014883r11.21u9586u497601310 2200385 450000100060000000300040000600500170001000800390002701000130006602000320007902000250011103500160013605000230015208200120017509000150018710000200020224501090022225000120033126000370034330000420038050400500042252000890047252100110056165000320057265000270060465000290063165000320066065000270069265000290071970000210074874000470076994200210081695200440083795200430088129861LVL19990324000000.0891013s1990 maua 00110 eng a89063627 a0316697966 (pbk.) :c$17.95 a0316697974 :c$29.95 aflb0164740500aQE366.8.bP45 199000220a552 c2582d258210aPellant, Chris.10aRocks, minerals & fossils of the world /cChris Pellant ; photographs by Roger Phillips & Chris Pellant. a1st ed.0 aBoston :bLittle, Brown,cc1990. a175 p. :bchiefly col. ill. ;c30 cm. aIncludes bibliographical references (p. 172). aAn illustrated guide to the rocks, minerals, and fossils found throughout the world.2 aAdult. 0aMineralogyxIdentification. 0aRocksxIdentification. 0aFossilsxIdentification. 7aMineralogyxIdentification. 7aRocksxIdentification. 7aFossilsxIdentification.10aPhillips, Roger.01aRocks, minerals, and fossils of the world. aLVLcNFk549 PEL bMAINp32000000027845r10.30u9587u4977 bLB1p33000000001447r10.30u9588u497800357 2200145 450000100060000000300040000600500170001000800410002701000130006809000150008110000190009624500370011594200220015295200370017436880LVL19990320000000.0940701s19xx xxu 00010 eng d a88000010 c2583d2583 aBentley, Judi.10aArchbishop Tutu of South Africa. aLVLcJNFkJB Tutu bMAINp32000000025719u9589u497900821 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000180013724500670015525000120022226000510023430000410028550000200032650400300034665000390037670000190041594200230043495200430045795200430050043899LVL19990317000000.0830606s1983 njua b 00110 eng a83061594 a0915590336 a 83061594 c2584d2584 a746.46 Wi10aWiss, Audrey.10aFolk quilts and how to recreate them /cAudrey & Douglas Wiss. a1st ed.0 aPittstown, N.J. :bMain Street Press ;cc1983. a143 p. :bill. (some col.) ;c26 cm. aIncludes index. aBibliography: p. 141-142. 0aQuiltingxPatterns.zUnited States10aWiss, Douglas. aLVLcNFk746.9 WIS bMAINp32000000011719r7.64u9590u4980 bLB1p33000000020952r20.00u9591u498100964 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000230013624500760015925000120023526000550024730000480030250000200035050400300037065000150040065100550041594200220047095200430049295200420053595200430057795200420062050918LVL19990313000000.0881213s1989 vauabc b 00110 eng a88034971 a1558701117 a 88034971 c2585d2585 a929.1 Cr10aCroom, Emily Anne.10aUnpuzzling your past :ba basic guide to genealogy /cEmily Anne Croom. a2nd ed.0 aWhite Hall, Va. :bBetterway Publications,cc1989. a184 p. :bill., map, port. ;c28 cm. ;dpa. aIncludes index. aBibliography: p. 116-119. 0aGenealogy. 0aUnited StatesxGenealogyxHandbooks, manuals, etc. aLVLcNFk929.1 Cr bMAINp32000000046166r8.95u9592u4982 bLB2p34000000002482r8.95u9593u4983 bMAINp31000000038143r9.95u9594u4984 bLB1p33000000011770r9.95u9595u498500846 2200289 450000100060000000300040000600500170001000800390002701000190006602000110008504000130009604300120010905000160012108200140013709000150015124500690016626000480023530000290028350000200031250400300033265000270036265100340038970000330042371000290045694200280048595200430051357937LVL20000910174430.0781121s1979 ohua b 00100 eng a78060505 //r86 c$17.95 aDLCcDLC an-us-oh1 aF491.bO398 a500.9/771 c2586d258600aOhio's natural heritage /cMichael B. Lafferty, editor-in-chief.0 aColumbus :bOhio Academy of Science,c1979. a324 p. :bill. ;c31 cm. aIncludes index. aBibliography: p. 314-315. 0aNatural historyzOhio. 0aOhioxDescription and travel.10aLafferty, Michael B.,d1947-20aOhio Academy of Science. aLVLcLHkLH 500.9771 La bMAINp31000000019153r7.50u9596u498600949 2200325 4500001000700000003000400007005001700011007000300028008004100031010001500072020002100087035001600108040001300124043001200137090001500149100001900164245003800183250002000221260005200241300001900293650004900312650003800361650002200399651002000421655002900441942002200470952004400492952004400536952004300580171238LVL20030321075202.0tb021018r20031994meu d 000 1 eng d a2002072892 a0786250259 (pa.) anpl30002214 aDLCcDLC an-us-me c2587d25871 aMeier, Leslie.10aTippy-toe murder /cLeslie Meier. aLarge print ed. aWaterville, ME :bThorndike Press,c2003,c1994. a339 p. ;22 cm. 0aStone, Lucy (Fictitious character)xFiction. 0aWomen detectivesxFiction.zMaine 0aLarge type books. 0aMainexFiction. 72gsafd.aMystery fiction. aLVLcLPkLP Meier bMAINp32000000134336r24.95u9597u4987 bMAINp31000000106006r24.95u9598u4988 bLB1p33000000055151r24.95u9599u498901122 2200349 4500001000700000003000400007005001700011007000300028008004100031010001500072020001500087035001600102040001800118043001200136090001500148100002100163245003200184250002000216260005300236300002100289600009500310650003100405650002600436650002200462651006000484655003200544942002200576952004300598952004400641952004400685952004300729171239LVL20030321075222.0tb021011r20032002meu d 000 1 eng d a2002075026 a0786249870 anpl30002215 aDLCcDLCdCBL ae-uk--- c2588d25881 aSmall, Bertrice.10aRosamund /cBertrice Small. aLarge print ed. aWaterville, Me. :bThorndike Press,c2003,c2002. a663 p. ;c23 cm.00aCatharine,cof Aragon, Queen, consort of Henry VIII, King of England,d1485-1536vFiction. 0aWomen landownersvFiction. 0aLand tenurevFiction. 0aLarge type books. 0aGreat BritainxHistoryxFiction.yHenry VIII, 1509-1547 72gsafd.aHistorical fiction. aLVLcLPkLP Small bLB2p37000000024598r28.95u9602u4990 bMAINp32000000134335r28.95u9603u4991 bMAINp31000000106005r28.95u9604u4992 bLB1p33000000055141r28.95u9605u499300327 2200133 450000100060000000300040000600500170001000800410002709000150006810000200008324500320010394200210013595200370015622844LVL19990327000000.0940601s19xx xxu 00010 eng d c2589d25891 aRich, Virginia.14aThe Nantucket diet murders. aLVLcMYSkM Rich bMAINp32000000022702u9606u499400723 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000260013524500390016126000370020030000410023744000360027865000210031465000260033594200230036195200430038495200420042729863LVL19990324000000.0901102s1991 nyua j 00011 eng a90085542 a0307115208 a 90085542 c2590d2590 aE Mayer10aMayer, Mercer,d1943-10aWhen I grow up /cby Mercer Mayer.0 aNew York :bGolden Book,cc1991. a[24] p. :bcol. ill. ;c16 cm. ; pa. 2aA Golden little look-look book. 1aGrowthxFiction. 1aOccupationsxFiction. aLVLcEASYkE Mayer bMAINp32000000058194r2.00u9607u4995 bLB1p33000000021142r2.00u9608u499600983 2200301 450000100060000000300040000600500170001000800390002701000130006602000250007902000220010403900180012604000130014405000230015708200210018009000150020110000210021624501410023726000370037830000330041550000200044850400310046865000390049965000580053870000180059694200240061495200430063857939LVL20010716091333.0820303s1983 nyua b 00110 eng a82015355 a0070260850 :c$29.95 a0070260869 (pbk.)0 a2b3c3d3e3 aDLCcDLC0 aTH4817.bH325 19830 219a690/.83/0288 c2591d259110aHanson, Shirley.10aPreserving and maintaining the older home /cShirley Hanson, Nancy Hubby ; illustrations by Betty Anderson ; photographs by Nancy Hubby.0 aNew York :bMcGraw-Hill,cc1983. axi, 237 p. :bill. ;c29 cm. aIncludes index. aBibliography: p. 223-[224] 0aDwellingsxMaintenance and repair. 0aArchitecture, DomesticxConservation and restoration.10aHubby, Nancy. aLVLcNFk690.83 HAN bLB2p37000000017474r11.77u9609u499700914 2200313 4500001000700000003000400007005001700011007000300028008004100031010001500072020002100087035001600108040001300124090001500137100001900152245003600171250002000207260005300227300002100280650002900301650003900330650002400369650002200393655002900415942002500444952004400469952004400513952004300557171240LVL20030321075248.0tb021018r20032002meu d 000 1 eng d a2002072890 a0786250267 (pa.) anpl30002216 aDLCcDLC c2592d25921 aGoldring, Kat.10aDeath medicine /cKat Goldring. aLarge print ed. aWaterville, Me. :bThorndike Press,c2003,c2002. a360 p. ;c22 cm. 0aWomen teachersxFiction. 0aIndians of North AmericaxFiction. 0aBlizzardsxFiction. 0aLarge type books. 72gsafd.aMystery fiction. aLVLcLPkLP Goldring bMAINp32000000134333r25.95u9610u4998 bMAINp31000000106003r25.95u9611u4999 bLB1p33000000055131r25.95u9612u500001170 2200337 450000100060000000300040000600500170001000700090002700800410003603500160007709000150009309200170010824501170012526000530024230000530029551100840034852100160043253800170044865000210046570000210048670000180050770000220052570000210054770000210056894200250058995200440061495200430065895200440070195200430074595200440078815826LVL20021022142030.0vf cbaho930713m19842956cau095 g vleng d avid93000267 c2593d2593 aAV Good- bye00aGood-bye my ladycWarner Home Video ; a Batjack Production, directed by William A. Wellman..h[videorecording] /0 aBurbank, CA :bWarner Home Video,c1984, c1956.. a1 videocassette : (95 min.)bsd., B&W ;c1/2 in.1 aWalter Brennan, Phil Harris, Brandon de Wilde, Sidney Poitier, William Hopper.. aNot Rated.. aVHS Format.. 0aFeature Films. .11aBrennan, Walter.11aHarris, Phil.11adeWilde, Brandon.11aPoitier, Sidney.11aHopper, William. aLVLcAVkAV Good-bye bMAINp32000000031849r47.99u9613u5001 bLB1p36000000005587r11.21u9614u5002 bMAINp35000000000376r15.99u9615u5003 bLB2p34000000011948r11.21u9616u5004 bMAINp31000000037329r15.99u9617u500501063 2200277 450000100060000000300040000600500170001000800390002701000210006602000150008703500220010204000130012405000170013708200100015409000150016410000350017924500800021426000400029430000270033452001810036165100690054265100600061170000480067194200230071995200430074222845LVL19990327000000.0740424s1974 nyua j 000 1 eng a74008350 /AC/r85 a0590073397 a 74008350 /AC/r85 aDLCcDLC0 aPZ7.C678bMy a[Fic] c2594d25941 aCollier, James Lincoln,d1928-10aMy brother Sam is deadc[by] James Lincoln Collier and Christopher Collier. aNew York,bFour Winds Pressc[1974] a216 p.billus.c21 cm. aRecounts the tragedy that strikes the Meeker family during the Revolution when one son joins the rebel forces while the rest of the family tries to stay neutral in a Tory town. 0aUnited StatesxHistoryxJuvenile fiction.y1775-1783, Revolution 1aUnited StatesxHistoryxFiction.y1775-1783, Revolution10aCollier, Christopher,d1930-ejoint author. aLVLcJFkJ Collier bMAINp32000000019101r4.88u9618u500600965 2200265 4500010001900000020001700019082001200036090001500048100001800063245004300081250001200124260004200136300002100178490002200199520015000221650002900371800001800400942002100418952004300439952004400482952004300526952004300569952004400612952004300656 a90038330 //r91 a0517580497 :00a813/.54 c2595d25951 aAuel, Jean M.14aThe plains of passage /cJean M. Auel. a1st ed. aNew York :bCrown Publishers,cc1990. a760 p. ;c25 cm.1 aEarth's children. aAs Ayla and Jondalar travel across Ice Age Europe they encounter savage enemies and brave friends in their search for a place they can call home. 0aMan, PrimitivexFiction.1 aAuel, Jean M. aLVLcAFkAF Auel bLB2p37000000019091r24.95u9619u5007 bMAINp32000000029244r14.72u9620u5008 bLB1p36000000001106r14.72u9621u5009 bLB2p34000000002846r14.72u9622u5010 bMAINp31000000080978r24.95u9623u5011 bLB1p33000000007155r14.72u9624u501200862 2200301 4500001000700000003000400007005001700011007000300028008004100031010001500072020002100087035001600108040001800124090001500142100002200157245004200179250002000221260005200241300002100293650002300314650002100337650002200358655002600380942002300406952004400429952004400473952004300517171241LVL20030321075308.0tb021106r20031994meu d 000 1 eng d a2002043130 a0786250283 (pa.) anpl30002217 aDLCcDLCdIDO c2596d25961 aKorbel, Kathleen.12aA soldier's heart /cKathleen Korbel. aLarge print ed. aWaterville, ME :bThorndike Press,c2003,c1994. a379 p. ;c22 cm. 0aSoldiersxFiction. 0aNursesxFiction. 0aLarge type books. 72gsafd.aLove stories. aLVLcLPkLP Korbel bMAINp32000000134332r25.95u9625u5013 bMAINp31000000106002r25.95u9626u5014 bLB1p33000000055121r25.95u9627u501500772 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009409000150011009200170012510000190014224500340016126000390019530000460023452001460028065000230042665000110044994200270046095200430048715827LVL19990331000000.0820927s1983 nyua j 00010 eng a82015851 a0823407098 anpl93000997 c2597d2597 aJNF 387.2 Gi1 aGibbons, Gail.10aBoat book /cby Gail Gibbons. aNew York :bHoliday House,cc1983. a[32] p. :ball col. ill. ;c21 x 23 cm.;. aIntroduces many kinds of boats and ships, including rowboats, canoes, sailboats, speedboats, cruise ships, submarines, tugboats, and tankers. 1aBoats and boating. 1aShips. aLVLcJNFkJNF 387.2 Gi bMAINp32000000041959r3.57u9628u501600857 2200301 450000100060000000300040000600500170001000800390002701000190006602000150008503500200010004000130012004300210013305000180015408200180017209000150019010000200020524500430022526000350026830000340030360000200033765000270035765000350038465100390041965100360045894200240049495200370051829865LVL19990324000000.0801120s1981 nyub 000 0aeng a80039649 //r85 a0025475908 a 80039649 //r85 aDLCcDLC aa-is---aa-jo---0 aDS107.4.bH260 219a956.94/05 c2598d25981 aHalsell, Grace.10aJourney to Jerusalem /cGrace Halsell. aNew York :bMacmillan,cc1981. aviii, 193 p. :bmap ;c22 cm.10aHalsell, Grace. 0aJewish-Arab relations. 0aJournalistsxBiography.zTexas 0aWest BankxDescription and travel. 0aIsraelxDescription and travel. aLVLcNFk956.94 HAL bMAINp32000000012756u9630u501700673 2200229 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200130011410000170012724500420014426000400018630000210022694200220024795200440026995200430031395200440035695200430040036884LVL19990320000000.0950818s1995 nyu 00011 eng d a1556114656 anpl95001106 c2599d2599 aAF Jaffe10aJaffe, Rona.14aThe cousins :ba novel /cRona Jaffe.0 aNew York :bDonald I. Fine,cc1995. a265 p. ;c25 cm. aLVLcAFkAF Jaffe bMAINp32000000065319r13.54u9631u5018 bLB2p34000000008190r13.54u9632u5019 bMAINp31000000055510r13.54u9633u5020 bLB1p33000000023275r13.54u9634u502101113 2200301 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200150011210000210012724500900014826000460023830000350028452001430031965000210046265000210048370000270050494200250053195200430055695200430059995200420064295200430068495200420072795200420076950922LVL19991215000000.0810615c19941982nyua j 00010 eng a0688136354 anpl94001882 c2600d2600 aJNF 811 Pr10aPrelutsky, Jack.14aThe sheriff of Rottenshot :bpoems /cby Jack Prelutsky ; pictures by Victoria Chess.0 aNew York :bMulberry Books,c1994, c1982. a48 p. :bill. ;c21 cm. ;dpa. aA collection of sixteen humorous poems including "The Sheriff of Rottenshot," "The Soggy Frog," and "The Ghostly Grocer of Grumble Grove." 1aAmerican poetry. 1aHumorous poetry.11aChess, Victoria,eill. aLVLcJNFkJNF 811 Pr bLB2p37000000006780r12.87u9636u5022 bMAINp32000000050695r2.87u9637u5023 bLB1p36000000002965r2.87u9638u5024 bMAINp35000000002252r2.87u9639u5025 bLB2p34000000009155r2.87u9640u5026 bLB1p33000000020485r2.87u9641u502700912 2200301 4500001000700000003000400007005001700011007000300028008004100031010001500072020002100087035001600108040001800124090001500142100002800157245006200185250002000247260005200267300002100319650004200340650002200382655002900404700002300433942002300456952004400479952004400523952004300567171242LVL20030321075329.0tb021018r20031957meu d 000 1 eng d a2002072894 a0786250453 (pa.) anpl30002218 aDLCcDLCdIDO c2601d26011 aLoomis, Noel M.,d1905-10aHang the men high /cby Noel Loomis and Paul Leslie Peil. aLarge print ed. aWaterville, ME :bThorndike Press,c2003,c1957. a352 p. ;c22 cm. 0aExecutions and executionersvFiction. 0aLarge type books. 72gsafd.aWestern stories.1 aPeil, Paul Leslie. aLVLcLPkLP Loomis bMAINp32000000134331r24.95u9642u5028 bMAINp31000000106001r24.95u9643u5029 bLB1p33000000055220r24.95u9644u503000688 2200229 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200130011410000180012724500350014526000450018030000280022550000540025394200230030795200430033095200420037395200430041522847LVL20011115165349.0930505c19921957nyu 00011 eng d a0425076806 anpl93000028 c2602d2602 aW Le May10aLe May, Alan.14aThe unforgiven /cAlan Le May.0 aNew York :bBerkley Books,c1992, c1957. a294 p. ;c18 cm. ;dpa. aReprint of the ed. published by Harper, New York. aLVLcWESkW Le May bMAINp32000000039201r2.66u9645u5031 bLB2p34000000004711r2.66u9646u5032 bMAINp31000000042805r2.66u9647u503301046 2200301 450000100060000000300040000600500170001000800390002701000130006603500160007904000200009505000280011508200130014309000150015610000270017124500810019826000400027930000190031935000100033850000310034851000480037951000230042752001810045052100170063174000280064894200250067695200430070129866LVL19990324000000.0690415s1969 nyu 00001 eng a69011929 aflb01129501 aDLCcDLCdICrlF0 aPZ4.V948aPS3572.O5bSl a813/.5/4 c2603d2603 0aVonnegut, Kurt,d1922-10aSlaughterhouse-five :bor, The children's crusade : a duty-dance with death.0 a[New York]bDelacorte Pressc[1969] a186 p.c22 cm. a5.95. a"A Seymour Lawrence book."0 aSenior High School Library Catalog (Wilson)0 aALA Notable Books. aBilly Pilgrim serves as a chaplain's assistant in the Second World War, is captured by the Germans, and survives the fire bombing of Dresden to contemplate the human condition.2 aYoung Adult.41aThe children's crusade. aLVLcAFkAF Vonnegut bMAINp32000000008306r3.97u9649u503400626 2200217 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200150011410000190012924500330014826000430018130000300022494200260025495200430028095200420032395200430036543904LVL20020124141351.0920310s1975 nyua j 00011 eng d a1559870028 aonv90002289 c2604d2604 aE Fujikawa10aFujikawa, Gyo.10aLet's play! /cGyo Fujikawa.0 aNew York, N.Y. :bSunny Books,cc1975. a[16] p. :bill. ;c21 cm. aLVLcEASYkE Fujikawa bMAINp32000000032821r3.98u9650u5035 bLB2p34000000010263r3.98u9651u5036 bMAINp31000000038438r3.98u9652u503700659 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000190013724500910015626000410024730000260028865000260031465000220034094200230036295200440038550923LVL19990313000000.0791011s1980 nyu 00010 eng a79023281 a0440052645 a 79023281 c2605d2605 a301.41 Fr1 aFriday, Nancy.10aMen in love :bmen's sexual fantasies : the triumph of love over rage /cNancy Friday. aNew York :bDelacorte Press,cc1980. axii, 527 p. ;c24 cm. 0aMenxSexual behavior. 0aSexual fantasies. aLVLcNFk301.41 Fr bMAINp32000000052306r12.95u9653u503800862 2200313 4500001000700000003000400007005001700011007000300028008004100031010001500072020001500087035001600102040001300118043001200131090001500143100002700158245003600185250002000221260005000241300002100291650002500312650002200337651002200359655003200381655002600413942002100439952004400460952004400504171243LVL20030321075350.0tb021021r20032002meu d 000 1 eng d a2002191006 a1587243741 anpl30002219 aDLCcDLC ae-uk-en c2606d26061 aRice, Patricia,d1949-10aMust be magic /cPatricia Rice. aLarge print ed. aWaterville, Me. :bWheeler Pub.,c2003,c2002. a432 p. ;c24 cm. 0aScientistsxFiction. 0aLarge type books. 0aEnglandxFiction. 72gsafd.aHistorical fiction. 72gsafd.aLove stories. aLVLcLPkLP Rice bMAINp32000000134339r29.95u9654u5039 bMAINp31000000106008r29.95u9655u504000802 2200265 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000260013824500440016426000620020830000450027044000240031550400510033965100110039070000220040194200250042395200440044895200440049215829LVL19990331000000.0940408s1995 njuab j b 001 0 eng a94015994 a0811427870 a 94015994 c2607d2607 aJNF 954 Ga10aGaneri, Anita,d1961-10aIndia /cAnita Ganeri, Jonardon Ganeri.0 aAustin, Tex. :bRaintree Steck-Vaughn Publishers,cc1995. a45 p. :bcol. ill. ; col. maps ;c29 cm. 0aCountry fact files. aIncludes bibliographical references and index. 1aIndia.10aGaneri, Jonardon. aLVLcJNFkJNF 954 Ga bMAINp32000000060366r16.13u9656u5041 bMAINp31000000056949r16.13u9657u504201064 2200325 450000100060000000300040000600500170001000800390002701000170006602000240008303500160010704000200012305000220014308200080016509000150017310000220018824500830021026000380029330000350033149000290036652001270039552100340052252100090055665000470056565000130061270000230062570000220064894200250067095200430069522848LVL20010905132821.0780117s1977 nyua j 00010 eng a76027609 /AC a0307118347 :c$0.95 aflb00617603 aDLCcDLCdICrlF0 aQL49.bD3245 1977 a591 c2608d260810aDaly, Kathleen N.10aUnusual animals /cby Kathleen N. Daly ; pictures by Tim and Greg Hildebrandt.0 aNew York :bGolden Press,cc1977. a[24] p. :bcol. ill. ;c21 cm.0 aA Golden look-look book. aEasy-to-read text describes the characteristics of eighteen unusual animals including the platypus, cowbird, and seahorse.0 a3.5bFollett Library Book Co.2 aK-3. 0aAnimalsxMiscellaneaxJuvenile literature. 1aAnimals.10aHildebrandt, Greg.10aHildebrandt, Tim. aLVLcJNFkJNF 591 Da bMAINp31000000007661r4.29u9658u504300849 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009404000130010805000330012108200130015409000150016710000350018224500660021726000420028330000230032535000120034850501730036094200250053395200370055829867LVL19990324000000.0711115s1971 mau 000 1 eng a74162005 a0395127122 a 74162005 aDLCcDLC0 aPZ3.C3639aPS3505.H3224bMi5 a813/.5/2 c2609d26091 aChandler, Raymond,d1888-1959.14aThe midnight Raymond Chandler.cWith an introd. by Joan Kahn. aBoston,bHoughton Mifflin Co.,c1971. axi, 734 p.c22 cm. a$10.00.0 aRaymond Chandler introduces the simple art of murder.--Red wine.--Trouble is my business.--Blackmailers don't shoot.--The pencil.--The little sister.--The long goodbye. aLVLcMYSkM Chandler bMAINp32000000001628u9659u504401767 2200421 4500001000700000003000400007005001700011007001000028008004100038020001500079024001700094028002900111035001600140090001500156245008400171260004600255300006200301440001800363440001700381520039900398521002800797538002500825546002200850650003100872650003000903650003300933650003000966655002700996655002701023655002901050655002801079655005401107710002601161710002901187942002301216952006201239952004401301171244LVL20030321075418.0vf cbahos030312s2002 cau045 g vaeng d a0790769646 a79405170293700aW7029bWarner Home Video anpl30002221 c2610d261004aThe star of Christmasc[presented by] Big Idea Productions.h[videorecording] / aBurbank, CA :bWarner Home Video,cc2002. a1 videocassette (approx. 45 min.) :bsd., col. ;c1/2 in. 0aVeggie Tales. 0aVeggieTales. aIt's 1880's London and Cavis and Millward are putting the finishing touches on their first Christmas musical. Filled with spectacle and more electric lights than London has ever seen. Unfortunately, a church pageant is opening the same night, right down the street, featuring a priceless artifact that hasn't been seen in 80 years! Just how far will Cavis go to make sure his show opens on top?8 aMPAA rating: Not rated. aVHS, stereo., Hi-fi. aClosed-captioned. 0aChristmasvJuvenile drama. 0aPageantsvJuvenile drama. 0aAntiquitiesvJuvenile drama. 0aMusicalsvJuvenile drama. 72gsafd.aFeature films. 72lcsh.aAnimated films. 72lcsh.aChildren's films. 72lcsh.aChristmas films. 72lcsh.aVideo recordings for the hearing impaired.2 aBig Idea Productions.2 aWarner Home Video (Firm) aLVLcAVJkAVJ Star bMAINdMAINp32000000134517r11.99u9661u5045v2003-09-01 bMAINp31000000106264r11.99u9662u504600608 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200160012310000210013924500420016025000200020226000450022230000210026765000220028894200250031095200430033515830LVL20030321152816.0901204r19911969mau d 00011 eng a90026887 a0816150141 a 90026887 c2611d2611 aLP Johnston10aJohnston, Velda.10aI came to a castle /cVelda Johnston. aLarge print ed.0 aBoston, Mass. :bG.K. Hall & Co.,c1991. a314 p. ;c25 cm. 0aLarge type books. aLVLcLPkLP Johnston bMAINp31000000044632r4.98u9663u504700712 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000270013724500670016426000400023130000480027160000270031965000380034670000200038494200230040495200430042722849LVL20030624101953.0950607s1995 nyuaf 00110aeng a95024197 a0688142729 a 95024197 c2612d2612 a791.45 An10aAnderson, Loni,d1945-10aMy life in high heels /cby Loni Anderson, with Larkin Warren.0 aNew York :bWilliam Morrow,cc1995. ax, 306, [16] p. of plates :bill. ;c24 cm.10aAnderson, Loni,d1945- 0aActorsxBiography.zUnited States10aWarren, Larkin. aLVLcNFk791.45 An bLB2p34000000009936r13.28u9665u504800438 2200145 4500010001300000020001500013090001500028100003200043245003300075260003800108300004700146600003100193650004700224942002100271 a91018126 a0671749099 c2613d261310aAmis, Kingsley,d1922-1995.10aMemoirs /cby Kingsley Amis.0 aNew York :bSummit Books,cc1991. a346 p., [6] p. of plates :bill. ;c25 cm.10aAmis, KingsleyxBiography. 0aAuthors, EnglishxBiography.y20th century aLVLcBIOkB Amis00649 2200241 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200120011410000190012624500480014526000360019330000310022944000160026065000200027665000200029665000250031694200230034195200430036450925LVL19990313000000.0940630s1979 nyua j 00011 eng d a0590317784 anpl94002663 c2614d2614 aE Lobel1 aLobel, Arnold.10aDays with Frog and Toad /cby Arnold Lobel. aNew York :bScholastic,cc1979. a64 p. :bill. ;c21 cm. ;. 0aI can read. 1aFrogsxFiction. 1aToadsxFiction. 1aFriendshipxFiction. aLVLcEASYkE Lobel bMAINp32000000054798r2.95u9667u504901071 2200277 450000100060000000300040000600500170001000800390002701000210006604000130008705000190010008200140011909000150013310000270014824500870017526000440026230000320030649000350033852001670037360000630054060000450060370000330064883000420068194200270072395200430075057944LVL19990220000000.0690812s1968 inua j 00001beng a68055146 /AC/r89 aDLCcDLC0 aPZ7.M51595bHe a811/.3aB c2615d261510aMelin, Grace Hathaway.10aHenry Wadsworth Longfellow, gifted young poet.cIllustrated by William K. Plummer.0 aIndianapolis,bBobbs-Merril Co.c[1968] a200 p.bcol. illus.c20 cm.1 aChildhood of famous Americans. aA biography concentrating on the boyhood of one of the major American poets of the nineteenth century whose works include "Hiawatha" and "The Village Blacksmith."10aLongfellow, Henry Wadsworth,d1807-1882xJuvenile fiction.11aLongfellow, Henry Wadsworth,d1807-1882.11aPlummer, William K.,eillus. 0aChildhood of famous Americans series. aLVLcJBkJB Longfellow bMAINp31000000009597r3.11u9668u505001187 2200301 4500001000700000003000400007005001700011007001000028008004100038020001500079024001700094035001600111090001500127245003500142246005200177260005300229300005400282440001800336500005000354520025400404538000900658651004700667655003300714700002200747710004300769942002900812952004400841171245LVL20030321075502.0vf cbahou030320s2002 cau050 vleng d a1900979659 a637101120155 anpl30002222 c2616d261600aNew Orleansh[videorecording].1 aPilot guide to New OrleansiTitle on container. aLos Angeles, Calif. :bPilot Productions,c2002. a1 videocassette (50 min.) :bsd., col. ;c1/2 in. 0aPilot guides. a"Travel and experience the world"--Container. aFounded by the French in 1718, New Orleans was populated with Africans, given to the Spanish and sold to the Americans. Follow traveler Justine Shapiro and get a feel for this multicultural city famous for its jazz music and its Mardi Gras carnival. aVHS. 0aNew Orleans (La.)xDescription and travel. 72lcshaVideocassettes.y2002.1 aShapiro, Justine.2 aPilot Film and Television Productions. aLVLcAVNFkAV 976.335 Ne bMAINp32000000134509r19.95u9669u505100523 2200193 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200140011410000240012824500420015226000420019430000280023694200230026495200420028715831LVL20030517132811.0940314s1986 nyu 00011 eng d a0373483007 anpl94000212 c2617d2617 aAF Miller10aMiller, Linda Lael.10aRagged rainbows /cLinda Lael Miller.0 aNew York :bSilhouette Books,cc1986. a250 p. ;c18 cm. ;dpa. aLVLcAFkAF Miller bLB2p37000000002752r2.61u9670u505201069 2200337 450000100060000000300040000600500170001000800390002701000170006602000380008302000310012103500160015203900180016804000200018605000180020608200120022409000150023610000210025124500680027226000460034030000350038649000160042152001170043752100340055452100090058865000320059765000110062970000230064094200250066395200430068836888LVL19990320000000.0810707s1982 njua j 00010 eng a81011412 /AC a0893756571 (pbk.) :c$1.25 (est.) a0893756563 :c$7.95 (est.) aflb005951100 a2b3c3d3e3 aDLCcDLCdICrlF0 aQL676.2.bK830 219a598 c2618d261810aKuchalla, Susan.10aBirds /cwritten by Susan Kuchalla ; illustrated by Gary Britt.0 aMahwah, N.J. :bTroll Associates,cc1982. a[32] p. :bcol. ill. ;c24 cm.0 aNow I know. aSimple text and illustrations introduce some of the common and individual characteristics of a variety of birds.0 a1.5bFollett Library Book Co.2 aK-3. 0aBirdsxJuvenile literature. 7aBirds.10aBritt, Gary,eill. aLVLcJNFkJNF 598 Ku bMAINp31000000007620r9.89u9673u505301544 2200457 450000100060000000300040000600500170001000800390002701000210006602000220008702000360010902000250014503500160017003900180018604000200020405000210022408200170024509000150026210000350027724501290031225000120044126000330045330000290048650000200051551000480053551000140058351000280059752000880062552100340071352100090074765000470075665000460080365000250084965000250087465000250089965000200092470000290094494200270097395200430100095200430104343907LVL20021108082635.0820414s1982 nyua j 00110 eng a82045187 /AC/r83 a0690043198 (pbk.) a0690043155 (lib. bdg.) :c$8.89 a0690043147 :c$10.95 aflb001596080 a2b3c3d3e3 aDLCcDLCdICrlF0 aTX823.bG45 19820 219a641.5/78 c2619d261910aGeorge, Jean Craighead,d1919-14aThe wild, wild cookbook :ba guide for young wild-food foragers /cby Jean Craighead George ; illustrated by Walter Kessell. a1st ed.0 aNew York :bCrowell,cc1982. a182 p. :bill. ;c22 cm. aIncludes index.0 aJunior High School Library Catalog (Wilson)0 aBooklist.0 aSchool Library Journal. aA field guide for finding, harvesting, and cooking wild plants, arranged by season.0 a6.0bFollett Library Book Co.2 a5-8. 0aCookery (Wild foods)xJuvenile literature. 0aWild plants, EdiblexJuvenile literature. 1aWild plants, Edible. 1aCookeryxWild foods. 7aCookeryxWild foods. 7aPlants, Edible.20aGaffney-Kessell, Walter. aLVLcJNFkJNF 641.5 Ge bMAINp31000000008076r1.89u9675u5054 bMAINp31000000008077r6.09u9676u505500678 2200241 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200150012310000200013824500340015826000310019230000210022350000370024494200240028195200440030595200440034995200430039350926LVL19990313000000.0950403s1995 nyu 00011 eng a95012548 a0312850921 a 95012548 c2620d2620 aAF Hagberg10aHagberg, David.10aHigh flight /cDavid Hagberg.0 aNew York :bForge,cc1995. a639 p. ;c24 cm. a"A Tom Doherty Associates book." aLVLcAFkAF Hagberg bMAINp32000000058747r14.97u9677u5056 bMAINp31000000055368r14.97u9678u5057 bLB1p33000000023175r14.97u9679u505801647 2200325 4500001000700000003000400007005001700011007001000028008004100038020001500079024001700094028003800111035001600149090001500165245009900180260007300279300005400352440003500406500001600441500004800457508013000505511005800635520042500693650003901118650004701157700002301204710002201227942002801249952004401277171246LVL20030321075540.0vfucbahou030320p19961985xxu058 vleng d a0780608119 a79405432413642aB3241VbTurner Home Entertainment anpl30002223 c2621d262104aThe Statue of Libertyca film by Ken Burns, a Florentine Films production.h[videorecording] / a[S.l.] :bPBS Home Video :bTurner Home Entertainment,c1996, c1985. a1 videocassette (58 min.) :bsd., col. ;c1/2 in. 0aKen Burns' America collection. aVHS format. aClosed captioned for the hearing impaired.. aProduced by Buddy Squires and Ken Burns, written by Bernard A. Weisberger and Geoffrey C. Ward, narrated by David McCullough.1 aJeremy Irons, Derek Jacobi, Arthur Miller and others. aFeatures archival photographs, paintings and drawings to tell the story of the statue's construction and installation, along with readings from diaries, letters and newspaper accounts. Part 2 includes interviews with New York Governor Mario Cuomo, writers James Baldwin and Jerzy Kosinski and musician Ray Charles. Film clips show Charlie Chaplin, Jimmy Stuart and Charleton Heston in Hollywood episodes with the statue. 0aStatue of Liberty (New York, N.Y.) 0aVideo recordings for the hearing impaired.1 aBurns, Ken,d1953-2 aFlorentine Films. aLVLcAVNFkAV 974.71 St bMAINp32000000134518r11.99u9680u505901524 2200409 450000100060000000300040000600500170001000800390002701000170006602000250008303500160010803900180012404000200014205000240016208200120018609000150019810000170021324500810023026000530031130000350036450001460039951000320054551000520057751000140062952001420064352100340078552100090081965000340082865000350086265000300089765000300092765000350095770000250099273000310101794200230104895200430107143908LVL19990317000000.0840514c19841974nyua j 000 1 eng a84011009 /AC a0027111008 :c$10.95 aflb007964070 a2b3c3d3e3 aDLCcDLCdICrlF0 aPZ7.B6265bPai 19840 219a[E] c2622d26221 aBlume, Judy.14aThe pain and the great one /cby Judy Blume ; illustrations by Irene Trivas. aScarsdale, N.Y. :bBradbury Press,c1984, c1974. a[32] p. :bcol. ill. ;c24 cm. aText originally appeared in: Free to be ... you and me / conceived by Marlo Thomas ; developed and edited by Carole Hart ... [et al.], c1974.0 aChildren's Catalog (Wilson)0 aElementary School Library Collection (Bro-Dart)0 aBooklist. aA six-year-old (The Pain) and his eight-year-old sister (The Great One) see each other as troublemakers and the best-loved in the family.0 a2.5bFollett Library Book Co.2 a3-6. 0aChildren's stories, American. 1aBrothers and sistersxFiction. 1aSibling rivalryxFiction. 7aSibling rivalryxFiction. 7aBrothers and sistersxFiction.11aTrivas, Irene,eill.01aFree to be ... you and me. aLVLcEASYkE Blume bMAINp32000000005341r9.56u9683u506000855 2200277 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000300013624500540016625000120022026000410023230000210027365000490029465000450034365000420038865000370043094200220046795200440048995200440053350927LVL20010328153853.0950404s19965 nyu 00011 eng a95016109 a0679444521 a 95016109 c2623d2623 aAF Adams10aAdams, Alice,d1926-1999.12aA southern exposure :ba novel /cby Alice Adams. a1st ed.0 aNew York :bAlfred A. Knopf,cc1995. a305 p. ;c22 cm. 0aCity and town lifexFiction.zNorth Carolina 0aNew EnglandersxFiction.zNorth Carolina 0aDepressionsxFiction.zNorth Carolina 0aFamilyxFiction.zNorth Carolina aLVLcAFkAF Adams bMAINp32000000060155r13.50u9684u5061 bMAINp31000000056764r13.50u9685u506202536 2200553 4500024001700000028003100017035001600048090001500064245019500079246004400274260011500318300005400433440001800487440001700505500005300522511012300575520053900698538000901237650001801246650001801264650001101282650001901293650002001312650002201332650004701354700001901401700001901420700002301439700001601462700001901478700002101497700001901518700002101537700001601558700002001574700002101594700001901615700001901634700002001653700001901673710002601692710002701718710003801745942002401783952004401807952004401851952004401895952004301939 a01223613452742a13452bBig Idea Production anpl30002225 c2624d262400aJonahba VeggieTales movie /cBig Idea Productions presents in association with FHE Pictures ; producer, Ameake Owens ; written & directed by Phil Vischer, Mike Nawrocki.h[videorecording] :0 aBig Idea's Jonah :ba VeggieTales movie aSanta Monica, Calif. :a[United States] :bArtisan Home Entertainment,bBig Idea Productions ;c[2003], c2002. a1 videocassette (82 min.) :bsd., col. ;c1/2 in. 0aVeggie Tales. 0aVeggieTales. aOriginally produced as a motion picture in 2002.0 aVoices: Phil Vischer, Mike Nawrocki, Tim Hodge, Lisa Vischer, Shelby Vischer, Dan Anderson, Kristin Bleger, Jim Poole. aArchibald Asparagus stars as Jonah, who is chosen by God to help spread his message to the world. Unfortunately, his first stop on his evangelical tour is the city of Nineveh, where the residents while away their days bingeing on cheese snacks and arguing. Circumstances force Jonah to set sail across the ocean, where he's assisted by Khalil, and pirates who are led by the well-meaning but lethargic Mr. Lunt, Pa Grape, and Larry the Cucumber. However, Jonah's mission gets a bit of a setback when a mammoth whale changes his plans. aVHS. 0aBible stories 0aSailing ships 0aWhales 0aFeature films. 0aAnimated films. 0aChildren's films. 0aVideo recordings for the hearing impaired.1 aOwens, Ameake.1 aVischer, Phil.1 aNawrocki, Michael.1 aHodge, Tim.1 aVischer, Lisa.1 aVischer, Shelby.1 aAnderson, Dan.1 aBleger, Kristin.1 aPoole, Jim.1 aArnett, Andrew.1 aBarrett, Justin.1 aDanen, Thomas.1 aSapulich, Joe.1 aHeinecke, Kurt.1 aVulcano, Marc.2 aBig Idea Productions.2 aF.H.E. Pictures (Firm)2 aArtisan Home Entertainment (Firm) aLVLcAVJkAVJ Jonah bMAINp32000000134519r14.99u9686u5063 bMAINp32000000136974r10.00u9687u5064 bMAINp31000000106265r14.99u9688u5065 bLB1p33000000055170r14.99u9689u506600617 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000270013524500430016226000290020530000210023450000370025565000290029294200220032195200440034315833LVL19990331000000.0940107s1994 nyu 00011 eng a94002350 a0312856431 a 94002350 c2625d2625 aSF Pohl 0aPohl, Frederik,d1919-14aThe voices of heaven /cFrederik Pohl.0 aNew York :bTOR,cc1994. a347 p. ;c22 cm. a"A Tom Doherty Associates book." 0aSpace coloniesxFiction. aLVLcSCIkSF Pohl bMAINp32000000047338r12.95u9690u506700756 2200217 4500010001700000020001500017082001500032090001500047100002000062245003600082260004100118300003300159440001700192500002000209520011600229650004900345650002800394650002800422942002600450952006200476 a89031556 /AC a0531171647 a599.0909/1 c2626d2626 aBender, Lionel. aPolar animals /cLionel Bender. aNew York :bGloucester Press,c1989. a31 p. :bcol. ill. ;c29 cm. aFirst sight. aIncludes index. aDescribes the animals inhabiting the polar regions of the world and how they have adapted to the climate there. aZoologyxJuvenile literature.zPolar regions aZoologyzPolar regions. aZoologyxPolar regions. aLVLcJNFkJNF 599 BEN bMAINdMAINp32000000027298r11.90u9692u5068v2003-09-0101078 2200313 450000100060000000300040000600500170001000800390002701000130006602000150007903500160009409000150011009200150012510000200014024500390016025000120019926000410021130000550025244000430030750400660035060000530041661000560046965000420052565000450056765100470061294200240065995200370068395200440072036890LVL20020911073006.0901004s1990 nyuaf b 00110beng a82047811 a0394528352 aonv90003313 c2627d2627 a973.923 Ca1 aCaro, Robert A.10aMeans of ascent /cRobert A. Caro. a1st ed. aNew York :bAlfred A. Knopf,cc1990. axxxiv, 506 p., [32] p. of plates :bill. ;c24 cm. 4aThe years of Lyndon Johnson ;vvol. 2. aIncludes bibliographical references (p. [426]-432) and index.10aJohnson, Lyndon B.d1908-1973.q(Lyndon Baines),10aUnited States.bCongress.bSenatexElections, 1948. 0aPresidentsxBiography.zUnited States 0aElectionsxHistoryy20th century.zTexas 0aTexasxPolitics and governmenty1865-1950. aLVLcNFk973.923 Ca bMAINp32000000028043u9693u5069 bMAINp32000000072800r10.00u9694u507001034 2200325 450000100060000000300040000600500170001000800390002701000210006602000350008703500160012204000200013805000170015808200080017509000150018310000240019824500420022226000340026430000300029851000280032852001170035652100340047352100090050765000320051665000220054865000320057065000390060294200240064195200430066543909LVL19990317000000.0780130s1978 nyua j 000 1 eng a78001547 /AC/r82 a0684155834blib. bdg. :c$6.95 aflb00379502 aDLCcDLCdICrlF0 aPZ7.P753bMr a[E] c2628d2628 aPoliti, Leo,d1908-10aMr. Fong's toy shop /cby Leo Politi. aNew York :bScribner,cc1978. a[32] p. :bill. ;c26 cm.0 aSchool Library Journal. aA toymaker and his young friends prepare a shadow puppet play for the Moon Festival in Chinatown in Los Angeles.0 a4.4bFollett Library Book Co.2 aK-3. 1aChinese AmericansxFiction. 1aPuppetsxFiction. 7aChinese AmericansxFiction. 7aPuppets and puppet playsxFiction. aLVLcEASYkE Politi bMAINp32000000011685r5.56u9695u507101050 2200301 4500001000700000003000400007005001700011007000300028008003900031010001300070020001500083035001600098040001300114090001500127100002700142245011500169246002900284260005900313300003400372500002900406520012600435650003100561650001400592700001900606730003600625942002500661952006200686171248LVL20030325064436.0ta980520s1998 wiua j 000 0 eng a98024817 a1562476661 anpl30002226 aDLCcDLC c2629d26291 aSchaefer, Valorie Lee.14aThe care & keeping of you :bthe body book for girls /cby Valorie Lee Schaefer ; illustrated by Norm Bendell.3 aCare and keeping of you. aMiddleton, WI :bPleasant Company Publications,c1998. a104 p. :bcol. ill. ;c28 cm. a"American girl library." aA preteen girl's guide to basic health and hygiene--from braces to bras, pimples to periods, hair care to healthy eating. 1aGirlsxHealth and hygiene. 1aGrooming.1 aBendell, Norm.0 aAmerican girl (Middleton, Wis.) aLVLcJNFkJNF 613 Sc bMAINdMAINp31000000106009r18.40u9696u5072v2003-09-0100599 2200217 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200140012310000230013724500510016026000440021130000310025570000270028694200250031395200430033815834LVL19990331000000.0940620s1966 ohua j 00010 eng a67001288 a0813650534 a 67001288 c2630d2630 aE Hillert1 aHillert, Margaret.14aThe magic beans.cIllustrated by Mel Pekarsky. aCleveland :bModern Curriculum,cc1966. a28 p.bcol. illus.c21 cm.11aPekarsky, Mel,eillus. aLVLcEASYkE Hillert bMAINp32000000048100r7.69u9697u507300667 2200229 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000300013624500680016626000410023430000310027565000230030694200220032995200430035195200430039429872LVL19990324000000.0941114s1995 nyua 00010 eng a94025257 a1573220132 a 94025257 c2631d2631 a636.8 Mi10aMichaels, Leonard,d1933-12aA cat /cby Leonard Michaels ; illustrations by Frances Lerner.0 aNew York :bRiverhead Books,cc1995. a[128] p. :bill. ;c19 cm. 0aCatsxMiscellanea. aLVLcNFk636.8 Mi bMAINp32000000060436r8.97u9699u5074 bMAINp31000000057006r8.97u9700u507500818 2200265 450000100060000000300040000600500170001000800410002701000130006803500140008109000150009509200150011010000220012524500550014726000490020230000300025165000140028165000130029594200260030895200430033495200440037795200440042195200440046595200430050943910LVL19990317000000.0920713s1990 nyua j 00011 eng d a89046577 a 89046577 c2632d2632 aE Morozumi1 aMorozumi, Atsuko.10aOne gorilla :ba counting book /cAtsuko Morozumi. aNew York :bFarrar, Straus & Giroux,cc1990. a[26] p. :bill. ;c26 cm. 1aCounting. 1aAnimals. aLVLcEASYkE Morozumi bMAINp32000000034037r8.23u9701u5076 bMAINp32000000038790r13.50u9702u5077 bMAINp32000000038791r13.50u9703u5078 bMAINp32000000056612r12.75u9704u5079 bMAINp31000000039842r8.23u9705u508000925 2200301 450000100060000000300040000600500170001000800410002702000150006803500160008309000150009909200120011410000200012624500420014626000380018830000280022644000240025450000230027865000210030165000260032294200210034895200420036995200430041195200420045495200430049695200420053995200420058150929LVL20000817000000.0960618s1996 nyu j 00011 eng d a0671545167 anpl96001125 c2633d2633 aJ Estes10aEstes, Allison.10aBlue ribbon friends /cAllison Estes.0 aNew York :bPocket Books,cc1996. a135 p. ;c19 cm. ;dpa. 0aShort Stirrup Club. a"A Minstrel Book." 1aHorsesxFiction. 1aHorse showsxFiction. aLVLcJFkJ Estes bLB2p37000000006295r2.31u9706u5081 bMAINp32000000065284r2.31u9707u5082 bLB1p36000000001488r2.31u9708u5083 bMAINp35000000002124r2.31u9709u5084 bLB2p34000000013976r2.31u9710u5085 bLB1p33000000026025r2.31u9711u508601507 2200289 4500001000700000003000400007005001700011007000300028008003900031020002100070035001600091040003400107043001200141090001500153245010600168246002300274260005100297300003500348504005100383505058500434650003901019650004801058700002601106700001801132942002401150952004301174171249LVL20030325064522.0ta020510s2002 nyua b s001 0 eng a0814716288 (pa.) anpl30002228 aDLCcDLCdUKMdCdPdXLMdSYB an-us--- c2634d263400aCollateral language :ba user's guide to America's new war /cedited by John Collins and Ross Glover.30aAmerica's new war. aNew York :bNew York University Press,cc2002. aviii, 230 p. :bill. ;c24 cm. aIncludes bibliographical references and index.00rJohn Collins and Ross Glover --rR. Danielle Egan --rPatricia M. Thornton and Thomas F. Thornton --rMarina A. Llorente --rR. Danielle Egan --rLaura J. Rediehs --rAndrew D. Van Alstyne --rLeah Renold --rKenneth Church --rErin McCarthy --rPhilip T. Neisser --rJohn Collins --rEve Walsh Stoddard and Grant H. Cornwell --rNatalia Rachel Singer /rRoss Glover.tIntroduction /tAnthrax /tBlowback /tCivilization versus barbarism /tCowardice /tEvil /tFreedom /tFundamentalism /tJihad /tJustice /tTargets /tTerrorism /tUnity /tVital interests /tThe war on ---- / 0aWar on Terrorism, 2001-xLanguage. 0aRhetoricxPolitical aspectszUnited States.1 aCollins, John Martin.1 aGlover, Ross. aLVLcNFk973.931 Co bLB1p33000000055130r16.95u9712u508701034 2200301 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200120012310000210013524500360015625000120019226000540020430000350025844000320029352001420032565000220046780000500048994200230053995200430056295200420060595200430064795200420069015835LVL19990331000000.0911024s1992 nyua j 00011 eng a91041600 a0803711778 a 91041600 c2635d2635 aE Wells10aWells, Rosemary.10aMoss pillows /cRosemary Wells. a1st ed.0 aNew York :bDial Books for Young Readers,cc1992. a[24] p. :bcol. ill. ;c14 cm. 0aVoyage to the Bunny Planet. aRobert's visit to relatives is disastrous, but a visit to the Bunny Planet cheers him up as he experiences the day that should have been. 1aRabbitsxFiction.1 aWells, Rosemary.tVoyage to the Bunny Planet. aLVLcEASYkE Wells bMAINp32000000049082r7.48u9713u5088 bLB2p34000000011379r2.51u9714u5089 bMAINp31000000050399r2.51u9715u5090 bLB1p33000000000179r2.51u9716u509100800 2200265 450000100060000000300040000600500170001000800410002701000130006802000150008103500140009609000150011009200150012524500360014025000120017626000510018830000300023950400510026965000390032065000390035965000380039871000290043694200250046595200440049022854LVL19990327000000.0911118s1991 paua bf 00100 eng c a91005213 a0874343887 a 91005213 c2636d2636 aREF 616 Pr00aProfessional guide to diseases. a4th ed.0 aSpringhouse, Pa. :bSpringhouse Corp.,cc1991. a1311 p. :bill. ;c22 cm. aIncludes bibliographical references and index. 0aMedicinexHandbooks, manuals, etc. 0aDiseasesxHandbooks, manuals, etc. 0aNursingxHandbooks, manuals, etc.20aSpringhouse Corporation. aLVLcREFkREF 616 Pr bMAINp32000000033218r32.95u9717u509200909 2200253 450000100060000000300040000600500170001000800390002701000190006602000150008503500160010004000200011605000260013608200160016209000150017810000350019324500480022826000320027630000210030852002470032952100110057694200240058795200440061136892LVL20020311093912.0851016s1986 nyu 00011 eng a85025642 //r88 a0399131256 aflb01160804 aDLCcDLCdICrlF0 aPS3569.A5125bE5 19860 219a813/.54 c2637d263710aSanders, Lawrence,d1920-1998.14aThe eighth commandment /cLawrence Sanders.0 aNew York :bPutnam,cc1986. a381 p. ;c24 cm. aWhen a priceless ancient Greek coin is lost while being transported to the auction house, Mary Lou Dunk, the supervisor of the transfer comes under suspicion. An insurance sleuth and a cop, both rivals for her heart, aid in clearing her name.2 aAdult. aLVLcAFkAF Sanders bMAINp32000000038187r10.00u9719u509300978 2200301 450000100060000000300040000600500170001000800390002701000190006602000150008503500160010004000200011605000250013608200160016109000150017710000290019224500380022125000120025926000330027130000210030451000290032551000210035452001890037552100110056465000350057594200220061095200440063243911LVL19990317000000.0860624s1987 nyu 000 1 eng a86015222 //r88 a0805000534 aflb01662802 aDLCcDLCdICrlF0 aPS3552.U723bN4 19870 219a813/.54 c2638d26381 aBurke, James Lee,d1936-14aThe neon rain /cJames Lee Burke. a1st ed. aNew York :bH. Holt,cc1987. a248 p. ;c22 cm.0 aFiction Catalog (Wilson)0 aLibrary Journal. aDave Robicheaux, a homicide cop, is told there is a contract out on his life. Set up by a ring of drug dealers and left for dead, Robicheaux survives but no one will believe his story.2 aAdult. 7aMystery and detective stories. aLVLcMYSkM Burke bMAINp32000000030253r10.00u9720u509401048 2200289 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200190012310000230014224501160016526000390028130000470032044000230036750000200039052001690041065000140057965000160059370000340060980000430064394200290068695200430071550930LVL19990313000000.0920116s1992 nyua j 00110 eng a92001177 a0812047346 a 92001177 c2639d2639 aJNF 629.133 Ca10aCarlisle, Madelyn.10aLet's investigate beautiful, bouncy balloons /cMadelyn Wood Carlisle ; illustrations by Yvette Santiago Banek.0 aHauppauge, NY :bBarron's,cc1992. a32 p. :bill. (some col.) ;c27 cm. ;dpa. 0aLet's investigate. aIncludes index. aTraces the history of ballooning from the eighteenth century to the present and discusses different kinds of balloons and their uses in science, travel, and sports. 1aBalloons. 1aBallooning.11aBanek, Yvette Santiago,eill.10aCarlisle, Madelyn.tLet's investigate. aLVLcJNFkJNF 629.133 Ca bMAINp32000000066477r2.95u9721u509500954 2200301 4500020001500000024001800015028002400033035001600057090001500073100002100088245005400109250001600163260004400179300004900223500001600272511002300288650002800311650002900339651003700368655002200405655001800427655001600445700001600461942002200477952004800499952006200547952004300609 a0736690468 a978073669046102a6120bBooks on Tape anpl30002227 c2640d26401 aSteel, Danielle.10aDating gamecDanielle Steel.h[sound recording] / aLibrary ed. aSanta Ana, CA :bBooks on Tape,cp2003. a7 sound cassettes (ca. 10.5 hrs.) :banalog. aUnabridged.0 aRead by Sam Freed. 0aDating (Social customs) 0aDivorced womenxFiction. 0aSan Francisco (Calif.)xFiction. 7aHumorous fiction. 7aLove stories. 7aAudiobooks.1 aFreed, Sam. aLVLcACkAC Steel bLB1dLB1p36000000006094r64.00u9722u5096 bMAINdMAINp31000000106268r64.00u9723u5097v2003-09-01 bLB1p33000000055180r64.00u9724u509800828 2200253 450000100060000000300040000600500170001000800390002702000150006603500160008109000150009709200180011210000180013024501180014826000410026630000420030765000130034965000310036270000260039394200280041995200430044795200420049095200420053215836LVL19990331000000.0931102s1996 nyua j b 00110 eng a0679873929 anpl96000725 c2641d2641 aJNF 305.23 Ju10aJukes, Mavis.10aIt's a girl thing :bhow to stay healthy, safe, and in charge /cby Mavis Jukes ; illustrations by Debbie Tilley.0 aNew York :bAlfred A. Knopf,cc1996. aviii, 135 p. :bill. ;c23 cm. ;dpa. 1aPuberty. 1aSex instruction for girls.11aTilley, Debbie,eill. aLVLcJNFkJNF 305.23 Ju bMAINp32000000063665r7.08u9725u5099 bLB2p34000000013464r7.08u9726u5100 bLB1p33000000025288r7.08u9728u510100842 2200229 4500010001300000020001500013090001500028100001700043245003300060260005200093300002200145440004100167942002200208952004200230952004300272952004300315952004300358952004400401952004300445952006100488952006300549 a89034341 a0310669510 c2642d2642 aPeart, Jane. aValiant bride /cJane Peart. aGrand Rapids, Mich. :bZondervan,c1989, c1985. a191 p. ;c21 cm.. aBrides of Montclair series ;vbk. 1. aLVLcAFkAF Peart bLB2p37000000021334r4.63u9729u5102 bMAINp32000000055009r4.63u9730u5103 bLB1p36000000017373r15.99u9731u5104 bLB2p34000000026866r15.99u9732u5105 bMAINp31000000095994r15.99u9733u5106 bLB1p33000000047374r15.99u9734u5107 bLB2dLB2p34000000003687r4.63u288580u5108v2004-01-23 bMAINdMAINp35000000000948r4.63u321438u5109v1992-06-1801259 2200373 450000100060000000300040000600500170001000800390002701000220006602000310008802000380011903500160015704000200017304300120019305000230020508200280022809000150025610000210027124500950029226000460038730000280043352000670046152100340052852100090056260000540057160000330062560000330065865000630069165000160075465000160077070000310078694200250081795200430084229874LVL19990324000000.0820805s1983 njua j 000 0beng a82015987 /AC/r872 a0893758396 :c$6.45 (est.) a089375840X (pbk.) :c$1.95 (est.) aflb00527908 aDLCcDLCdICrlF an-us---0 aTL540.E3bS23 19830 219a629.13/092/4aBa92 c2643d26431 aSabin, Francene.10aAmelia Earhart :badventure in the sky /cby Francene Sabin ; illustrated by Karen Milone. aMahwah, N.J. :bTroll Associates,cc1983. a48 p. :bill. ;c24 cm. aA biography of an aviation pioneer, emphasizing her childhood.0 a5.1bFollett Library Book Co.2 a3-6.10aEarhart, Amelia,d1897-1937xJuvenile literature.11aEarhart, Amelia,d1897-1937.17aEarhart, Amelia,d1897-1937. 0aAir pilotsxBiographyxJuvenile literature.zUnited States 1aAir pilots. 7aAir pilots.21aMilone-Dugan, Karen,eill. aLVLcJNFkJB Earhart bMAINp32000000029723r6.30u9735u511000671 2200253 450000100060000000300040000600500170001000800390002701000130006602000150007903500140009409000150010809200130012310000200013624500410015625000210019726000430021830000330026150000200029450400260031465000110034094200220035195200440037343912LVL19990317000000.0880627r1989 nyua b 00110 eng a88022376 a0393026639 a 88022376 c2644d2644 a523.8 Mo1 aMoore, Patrick.10aAstronomers' stars /cPatrick Moore. a1st American ed. aNew York :bW.W. Norton,c1989, c1987. aix, 164 p. :bill. ;c24 cm. aIncludes index. aBibliography: p. 159. 0aStars. aLVLcNFk523.8 Mo bMAINp32000000034906r10.00u9736u511101263 2200349 4500001000700000003000400007005001700011007000300028008003900031010001500070020001500085035001600100040002300116043001200139090001500151100002500166245010000191260004100291300002600332504006400358600001600422600007000438600004500508650004700553650006300600650005300663650005500716651005500771700001900826942002400845952004400869171251LVL20030325064640.0ta030205s2003 nju b 001 0deng a2003001701 a0471423270 anpl30002229 aDLCcDLCdYDXdWIQ an-us--- c2645d26451 aMoore, James,d1951-10aBush's brain :bhow Karl Rove made George W. Bush presidential /cJames Moore and Slater Wayne. aHoboken, N.J. :bJohn Wiley,cc2003. axiv, 395 p. ;c24 cm. aIncludes bibliographical references (p. 349-382) and index.10aRove, Karl.10aBush, George W.d1946-q(George Walker),xFriends and associates.10aBush, George W.d1946-q(George Walker), 0aPresidentsxElectiony2000.zUnited States 0aPolitical campaignsxHistoryy20th century.zUnited States 0aPolitical consultantsxBiography.zUnited States 0aPresidential candidatesxBiography.zUnited States 0aUnited StatesxPolitics and governmenty1993-2001.1 aWayne, Slater. aLVLcNFk973.931 Mo bMAINp32000000134342r27.95u9737u511200114 2200073 4500020001500000090000900015090000900024942000700033 a0141381647 c2646 d2646 cAB \ No newline at end of file diff --git a/misc/sql-datas/english/sample_usmarc.readme b/misc/sql-datas/english/sample_usmarc.readme new file mode 100644 index 0000000000..2106c8f62c --- /dev/null +++ b/misc/sql-datas/english/sample_usmarc.readme @@ -0,0 +1,12 @@ +The included sample_usmarc.mrc can be used to demonstrate +import of a set of MARC21 (iso2709) records. The set includes +about 3K records. Note that if you want holdings to work +correctly you'll have to tweak the records to match your +local configuration. To import the records use the +bulkmarcimport tool in misc/migration_tools/ + +If you have questions feel free to ask them on the list +or email me directly. + +Joshua Ferraro +jmf at liblime dot com -- 2.20.1