-
Notifications
You must be signed in to change notification settings - Fork 3
/
Peribo Onix 0408.xml
executable file
·17051 lines (17049 loc) · 877 KB
/
Peribo Onix 0408.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE ONIXMessage SYSTEM "http://www.editeur.org/onix/2.1/02/reference/onix-international.dtd">
<ONIXMessage>
<Header>
<FromCompany>Peribo Pty Ltd</FromCompany>
<SentDate>20080122</SentDate>
</Header>
<Product>
<RecordReference>9781853409523</RecordReference>
<NotificationType>03</NotificationType>
<ProductIdentifier>
<ProductIDType>15</ProductIDType>
<IDValue>9781853409523</IDValue>
</ProductIdentifier>
<ProductForm>BC</ProductForm>
<Title>
<TitleType>01</TitleType>
<TitleText>Do Secrets Count as Sabotage?</TitleText>
</Title>
<Contributor>
<ContributorRole>A01</ContributorRole>
<PersonNameInverted>SALTER HELEN</PersonNameInverted>
</Contributor>
<BICMainSubject>YF</BICMainSubject>
<Imprint>
<ImprintName>Piccadilly Press</ImprintName>
</Imprint>
<OtherText>
<TextTypeCode>07</TextTypeCode>
<Text>The third hilarious book about Holly Stockwell's accident-prone life, which girls everywhere will identify with << Holly's got a boyfriend! But she's keeping him a secret from her boy-phobic mum, pretending she is doing homework with her best friend Poppy when she is really going out with Luke. Meanwhile, Holly's friendship with Poppy is really put to the test when Holly accidently neglects Poppy for Luke. Holly and Poppy argue, and Claudia spots the perfect chance to move in again on Holly's friendship with Poppy - and maybe even on Luke, too! Holly learns that lying is fraught with problems, and that nothing is more important than friendship. << AUTHOR: Helen Salter works in marketing department of an IT company. She grew up in South London, but didn't really grow up at all, and still firmly belives she will one day live next door to a chocolate factory with Jude Law. Before writing, Helen had a variety of jobs, including selling aerial photographs door-to-door in the Chicago suburbs, teaching English to teenagers in Paris and working as a tour guide for American students in Europe. Helen nows likes sitting croos-legged writing on her lap-top, pretending she is Carrie Bradshaw form Sex in the City (but in East Croyden not New York)</Text>
</OtherText>
<Publisher>
<PublishingRole>01</PublishingRole>
<PublisherName>Piccadilly Press</PublisherName>
</Publisher>
<PublicationDate>20080401</PublicationDate>
<SupplyDetail>
<SupplierName>Peribo Pty Ltd</SupplierName>
<ProductAvailability>10</ProductAvailability>
<Stock>
<OnHand>No Stock</OnHand>
<OnOrder>No</OnOrder>
</Stock>
<Price>
<PriceTypeCode>02</PriceTypeCode>
<PriceAmount>24.95</PriceAmount>
</Price>
</SupplyDetail>
</Product>
<Product>
<RecordReference>9781598694208</RecordReference>
<NotificationType>03</NotificationType>
<ProductIdentifier>
<ProductIDType>15</ProductIDType>
<IDValue>9781598694208</IDValue>
</ProductIdentifier>
<ProductForm>BC</ProductForm>
<Title>
<TitleType>01</TitleType>
<TitleText>Jump the Curve</TitleText>
</Title>
<Contributor>
<ContributorRole>A01</ContributorRole>
<PersonNameInverted>ULDRICH JACK</PersonNameInverted>
</Contributor>
<BICMainSubject>KJ</BICMainSubject>
<Imprint>
<ImprintName>Adams Media</ImprintName>
</Imprint>
<OtherText>
<TextTypeCode>07</TextTypeCode>
<Text>Today’s explosive and emerging economy is every business executive’s biggest opportunity—and most pressing threat. In the next decade, exponential trends in computers, bandwidth, gene sequencing, nanotechnology, and other fields will transform the global economy. However, many companies won’t realize the impact of these trends until their products and services become obsolete—almost overnight. Jump the Curve describes the 50 essential strategies managers and organizations must adopt to stay ahead of the curve. While other books such as The World Is Flat and The Tipping Point have explained the effect of accelerating technologies, Jump the Curve explains how to use exponential change to expand markets and create new products. It’s the book every product or service provider needs to stay ahead of the competition. AUTHOR: Jack Uldrich (Minneapolis, MN) is the president of The NanoVeritas Group, a leading international consultancy on business and technology. Clients include leading venture capital firms, state governments, and Fortune 100 companies. Uldrich’s work has appeared in the Wall Street Journal, Investor’s Business Daily, BusinessWeek, The Futurist and The Motley Fool. He is also a frequent commentator on CNN, MSNBC, and National Public Radio.</Text>
</OtherText>
<Publisher>
<PublishingRole>01</PublishingRole>
<PublisherName>Adams</PublisherName>
</Publisher>
<PublicationDate>20080415</PublicationDate>
<SupplyDetail>
<SupplierName>Peribo Pty Ltd</SupplierName>
<ProductAvailability>10</ProductAvailability>
<Stock>
<OnHand>No Stock</OnHand>
<OnOrder>Yes</OnOrder>
</Stock>
<Price>
<PriceTypeCode>02</PriceTypeCode>
<PriceAmount>32.95</PriceAmount>
</Price>
</SupplyDetail>
</Product>
<Product>
<RecordReference>9781598694413</RecordReference>
<NotificationType>03</NotificationType>
<ProductIdentifier>
<ProductIDType>15</ProductIDType>
<IDValue>9781598694413</IDValue>
</ProductIdentifier>
<ProductForm>BC</ProductForm>
<Title>
<TitleType>01</TitleType>
<TitleText>Long-Distance Dad, The</TitleText>
</Title>
<Contributor>
<ContributorRole>A01</ContributorRole>
<PersonNameInverted>ASHLEY STEVEN</PersonNameInverted>
</Contributor>
<BICMainSubject>VF</BICMainSubject>
<Imprint>
<ImprintName>Adams Media</ImprintName>
</Imprint>
<OtherText>
<TextTypeCode>07</TextTypeCode>
<Text>Divorce. Work. Military deployment. There are many reasons fathers are not present in their children’s daily lives. But that doesn’t mean they have to be completely absent. This practical handbook, by the founder of the Divorced Fathers Network, tackles the challenges long-distance fathers face and offers solutions on how to maintain healthy, loving, and close relationships. It includes ways to: • Communicate via phone, e-mail, IM, Web cams, etc. • Create daily, weekly, monthly rituals of their very own • Stay involved in homework, sports, and school activities • Make the most of summer vacations, holidays, and vacations • Develop good working relationships with ex-spouses, coaches, teachers, etc. The bad news: Over the next century, 50 million American children will go to sleep without being tucked in at night by their fathers. The good news: The world grows smaller every day. With The Long-Distance Dad, fathers will find that it’s easier than ever to keep connected to their kids!<<AUTHOR: Steven Ashley (Santa Cruz, CA) is the founder of the Divorced Fathers Network and www.divorcedfathers.com. The author of the self-published Fathers Are Forever: A Co-Parenting Guide for the 21st Century, Mr. Ashley has helped hundreds of men and women create cooperative relationships with their former spouses for the benefit of the children. Ashley is a sought-after speaker and consultant to the media on behalf of fathers and their important contributions as parents.</Text>
</OtherText>
<Publisher>
<PublishingRole>01</PublishingRole>
<PublisherName>Adams</PublisherName>
</Publisher>
<PublicationDate>20080415</PublicationDate>
<SupplyDetail>
<SupplierName>Peribo Pty Ltd</SupplierName>
<ProductAvailability>10</ProductAvailability>
<Stock>
<OnHand>No Stock</OnHand>
<OnOrder>Yes</OnOrder>
</Stock>
<Price>
<PriceTypeCode>02</PriceTypeCode>
<PriceAmount>22.95</PriceAmount>
</Price>
</SupplyDetail>
</Product>
<Product>
<RecordReference>9781598695526</RecordReference>
<NotificationType>03</NotificationType>
<ProductIdentifier>
<ProductIDType>15</ProductIDType>
<IDValue>9781598695526</IDValue>
</ProductIdentifier>
<ProductForm>BC</ProductForm>
<Title>
<TitleType>01</TitleType>
<TitleText>Everything Baby Shower Book, The</TitleText>
</Title>
<Contributor>
<ContributorRole>A01</ContributorRole>
<PersonNameInverted>HILL SABRINA & RUSSELL JONI</PersonNameInverted>
</Contributor>
<BICMainSubject>VF</BICMainSubject>
<Imprint>
<ImprintName>Adams Media</ImprintName>
</Imprint>
<OtherText>
<TextTypeCode>07</TextTypeCode>
<Text>Diapers. New clothes. Toys. Furniture. Babies can be expensive! Friends and family can help out by throwing a baby shower to help new moms cope with the rising cost of raising a baby. And with The Everything® Baby Shower Book, 2nd Edition, there will never be another dull, boring baby shower again! Completely updated and revised with new ideas for parties, party favors, food and games, this newly designed book offers information on: • Saving money while hosting a festive event • Creating themes for the party • Managing the baby shower registry • Honoring the mother-to-be • Gift-buying ideas that are useful as well as fun and cute Packed with even more creative cost-saving ideas, The Everything® Baby Shower Book, 2nd Edition is a survival guide for anyone planning a memorable event for the mother-to-be! AUTHOR: Sabrina Hill and Joni Russell (Saratoga, CA) are both mothers who have owned and run their own event planning business for more than 20 years, working with corporate and private clients. They have also planned birthday parties, bridal showers, weddings, and countless baby showers. Their Event and Meeting Planning Fundamentals course and Bridal Boot Camp have become increasingly popular.</Text>
</OtherText>
<Publisher>
<PublishingRole>01</PublishingRole>
<PublisherName>Adams</PublisherName>
</Publisher>
<PublicationDate>20080415</PublicationDate>
<SupplyDetail>
<SupplierName>Peribo Pty Ltd</SupplierName>
<ProductAvailability>20</ProductAvailability>
<Stock>
<OnHand>In stock</OnHand>
<OnOrder>No</OnOrder>
</Stock>
<Price>
<PriceTypeCode>02</PriceTypeCode>
<PriceAmount>22.95</PriceAmount>
</Price>
</SupplyDetail>
</Product>
<Product>
<RecordReference>9781598692143</RecordReference>
<NotificationType>03</NotificationType>
<ProductIdentifier>
<ProductIDType>15</ProductIDType>
<IDValue>9781598692143</IDValue>
</ProductIdentifier>
<ProductForm>BC</ProductForm>
<Title>
<TitleType>01</TitleType>
<TitleText>Complexity Crisis, The</TitleText>
</Title>
<Contributor>
<ContributorRole>A01</ContributorRole>
<PersonNameInverted>MARIOTTI JOHN</PersonNameInverted>
</Contributor>
<BICMainSubject>KJ</BICMainSubject>
<Imprint>
<ImprintName>Adams Media</ImprintName>
</Imprint>
<OtherText>
<TextTypeCode>07</TextTypeCode>
<Text>Mercedes has made a recent move to cut complexity: Designers who were previously allowed to design cars from the ground up are now required to choose from a common set of modules (BusinessWeek, Nov. 2, 2006) • Wal*Mart has recently exited Korea and Germany, citing its inability to deal with the many differences in the retail environment there • The business community is starting to realize that simplicity, not complexity, is marketable—as evidenced by the phenomenal success of the iPod and Google’s search engine. << Many companies today are in crisis. Most troubling of all is that many of them aren’t even aware they are in jeopardy. In their quest to attain double-digit growth in single digit markets, companies have frantically created more products, customers, markets, suppliers, services, and locations. Yet all of this complexity adds costs. Thus, as topline revenues go up, bottomline profits go down—often precipitously. Worse yet, none of today’s accounting systems identify complexity costs until a company is on the edge—without understanding how they got there. The Complexity Crisis, by John L. Mariotti—the former president of Rubbermaid Office Products Group—shows readers how to track complexity and reduce or eliminate it—or alter processes to accommodate complexity that truly adds value to the business. Filled with examples of companies who have successfully conquered complexity, The Complexity Crisis shows readers how to institute new metrics and modifications to existing cost and management control systems so they can choose when to cut complexity out and when to capitalize on it. AUTHOR: John L. Mariotti (Powell, OH) is the President/CEO & Founder of The Enterprise Group, a coalition of timeshared executive advisors, which he founded in 1994. Prior to this, Mr. Mariotti was President of Rubbermaid Office Products Group. Before joining Rubbermaid, Mariotti led Huffy Bicycles as its President, to the preeminent position of industry leader in the U.S. He was Management Columnist and a Contributing Editor for IndustryWeek magazine for five years. Articles and interviews about his business career have been featured in the Wall Street Journal, Fortune, Boardroom Reports, IndustryWeek, BusinessWeek, and many more. He’s been a guest on CNBC’s Today’s Business and Power Lunch shows.</Text>
</OtherText>
<Publisher>
<PublishingRole>01</PublishingRole>
<PublisherName>Adams</PublisherName>
</Publisher>
<PublicationDate>20080415</PublicationDate>
<SupplyDetail>
<SupplierName>Peribo Pty Ltd</SupplierName>
<ProductAvailability>10</ProductAvailability>
<Stock>
<OnHand>No Stock</OnHand>
<OnOrder>Yes</OnOrder>
</Stock>
<Price>
<PriceTypeCode>02</PriceTypeCode>
<PriceAmount>32.95</PriceAmount>
</Price>
</SupplyDetail>
</Product>
<Product>
<RecordReference>9781598694505</RecordReference>
<NotificationType>03</NotificationType>
<ProductIdentifier>
<ProductIDType>15</ProductIDType>
<IDValue>9781598694505</IDValue>
</ProductIdentifier>
<ProductForm>BC</ProductForm>
<Title>
<TitleType>01</TitleType>
<TitleText>Everything Coaching & Mentoring Book, The</TitleText>
</Title>
<Contributor>
<ContributorRole>A01</ContributorRole>
<PersonNameInverted>NIGRO NICHOLAS</PersonNameInverted>
</Contributor>
<BICMainSubject>KJ</BICMainSubject>
<Imprint>
<ImprintName>Adams Media</ImprintName>
</Imprint>
<OtherText>
<TextTypeCode>07</TextTypeCode>
<Text>One of the best ways to ensure success in employees is to start a mentoring program. The Everything® Coaching & Mentoring Book, 2nd Edition guides managers and aspiring managers through implementing a successful coaching and mentoring program both in the workplace and in life. From delegating responsibility to expanding knowledge base and skill level, this completely revised and updated handbook provides a complete overview of this trend sweeping through corporate America. The Everything® Coaching & Mentoring Book, 2nd Edition also takes readers beyond the workplace and provides insights into extending their newfound knowledge in all areas of life— including at home and in social settings. New in this edition: • Time management: how to be a mentor and do your job at the same time • The legacy of coaching and mentoring: passing on knowledge before the Baby Boomers retire • Updated case studies. <<AUTHOR: Nicholas Nigro (New York) is the author of the first edition of The Everything® Coaching and Mentoring Book, as well as The Everything® Success Book. In addition to writing, Mr. Nigro has run his own publishing company and managed a successful online auction business.</Text>
</OtherText>
<Publisher>
<PublishingRole>01</PublishingRole>
<PublisherName>Adams</PublisherName>
</Publisher>
<PublicationDate>20080415</PublicationDate>
<SupplyDetail>
<SupplierName>Peribo Pty Ltd</SupplierName>
<ProductAvailability>10</ProductAvailability>
<Stock>
<OnHand>No Stock</OnHand>
<OnOrder>Yes</OnOrder>
</Stock>
<Price>
<PriceTypeCode>02</PriceTypeCode>
<PriceAmount>22.95</PriceAmount>
</Price>
</SupplyDetail>
</Product>
<Product>
<RecordReference>9781840222708</RecordReference>
<NotificationType>03</NotificationType>
<ProductIdentifier>
<ProductIDType>15</ProductIDType>
<IDValue>9781840222708</IDValue>
</ProductIdentifier>
<ProductForm>BC</ProductForm>
<Title>
<TitleType>01</TitleType>
<TitleText>Wordsworth Collection of Classic Short Stories, The</TitleText>
</Title>
<Contributor>
<ContributorRole>A01</ContributorRole>
<PersonNameInverted>GRAY ROSEMARY (SELECTED)</PersonNameInverted>
</Contributor>
<BICMainSubject>C</BICMainSubject>
<Imprint>
<ImprintName>Words Special Editions</ImprintName>
</Imprint>
<OtherText>
<TextTypeCode>07</TextTypeCode>
<Text>POIGNANT, WRY, CHILLING, CHALLENGING, amusing, thought-provoking and always intriguing, these accomplished tales from the pens of great writers are object-lessons in the art of creating a literary masterpiece on a small canvas. From the straightforwardly anecdotal to the more analytical of human behaviour, all are guaranteed to capture the imagination, stir the emotions, linger in the memory and whet the reader's appetite for more. In this book, Wordsworth Editions presents the modern reader with a rich variety of short stories by a host of towering literary figures ranging from Arnold Bennett to Virginia Woolf. This disparate and distinguished company of writers has rarely - if ever - met within the pages of one volume: the result is a positive feast.</Text>
</OtherText>
<Publisher>
<PublishingRole>01</PublishingRole>
<PublisherName>Wordsworth Editions</PublisherName>
</Publisher>
<PublicationDate>20070109</PublicationDate>
<SupplyDetail>
<SupplierName>Peribo Pty Ltd</SupplierName>
<ProductAvailability>20</ProductAvailability>
<Stock>
<OnHand>In stock</OnHand>
<OnOrder>Yes</OnOrder>
</Stock>
<Price>
<PriceTypeCode>02</PriceTypeCode>
<PriceAmount>19.95</PriceAmount>
</Price>
</SupplyDetail>
</Product>
<Product>
<RecordReference>9783791338842</RecordReference>
<NotificationType>03</NotificationType>
<ProductIdentifier>
<ProductIDType>15</ProductIDType>
<IDValue>9783791338842</IDValue>
</ProductIdentifier>
<ProductForm>BC</ProductForm>
<Title>
<TitleType>01</TitleType>
<TitleText>Pimp London: The Guide</TitleText>
</Title>
<Contributor>
<ContributorRole>A01</ContributorRole>
<PersonNameInverted>QUESTED BRIONY</PersonNameInverted>
</Contributor>
<BICMainSubject>W</BICMainSubject>
<Imprint>
<ImprintName>Prestel Verlag</ImprintName>
</Imprint>
<OtherText>
<TextTypeCode>07</TextTypeCode>
<Text>Within hours after hitting the streets, the bimonthly edition of PIMP is already in the hands of Britain's cool hunters looking to find out about the latest guerrilla artist, fashion style, underground club, or hot new band. Now the staff of PIMP offers unrivalled access to one of the world's most exciting cities. For young style-setters on the move who want to find the coolest art, music and fashion haunts in London, the PIMP guide book offers immediate knowledge of 200 of the best boutiques, art spaces, cafes, bars, and clubs in the city frequented by the most discerning hipsters. The book guides you straight to the heart of the most exciting and hard-to-find spots, from the underground music hangouts and boutiques to the hidden art spaces run by notorious graffiti artists. Available in a portable format, PIMP London: The Guide is an insightful, informative and definitive guide to the city produced by a magazine team who are an integral part of the scenes they are writing about. Along with cutting edge art direction, maps and travel tips, Pimp London: The Guide, like the magazine itself, includes works by infamous local street artists and fascinating interviews. As cool as it is useful, this is one travel guide thta won't stay hidden in your backpack. 140 colour illustrations.</Text>
</OtherText>
<Publisher>
<PublishingRole>01</PublishingRole>
<PublisherName>Prestel</PublisherName>
</Publisher>
<PublicationDate>20080420</PublicationDate>
<SupplyDetail>
<SupplierName>Peribo Pty Ltd</SupplierName>
<ProductAvailability>10</ProductAvailability>
<Stock>
<OnHand>No Stock</OnHand>
<OnOrder>Yes</OnOrder>
</Stock>
<Price>
<PriceTypeCode>02</PriceTypeCode>
<PriceAmount>39.95</PriceAmount>
</Price>
</SupplyDetail>
</Product>
<Product>
<RecordReference>9781906155094</RecordReference>
<NotificationType>03</NotificationType>
<ProductIdentifier>
<ProductIDType>15</ProductIDType>
<IDValue>9781906155094</IDValue>
</ProductIdentifier>
<ProductForm>BC</ProductForm>
<Title>
<TitleType>01</TitleType>
<TitleText>Eco-Chic: The Fashion Paradox</TitleText>
</Title>
<Contributor>
<ContributorRole>A01</ContributorRole>
<PersonNameInverted>BLACK SANDY</PersonNameInverted>
</Contributor>
<BICMainSubject>AC</BICMainSubject>
<Imprint>
<ImprintName>Black Dog Publishing</ImprintName>
</Imprint>
<OtherText>
<TextTypeCode>07</TextTypeCode>
<Text>In a comprehensive survey of this highly pertinent subject, leading academic Sandy Black examines the way the fashion industry is changing to accommodate the environmental concerns of the twenty first century. She exposes the naked truth behind the clothes we wear, exploring alternate practices and assessing their feasibility. << Using case studies of designers from the catwalks and the high street, including Katherine Hamnett, Marks and Spencer and Linda Loudermilk, the book illustrates how these processes are finding their way into the industry, and shows how ethical fashion has moved on from its traditional connotations of hemp shirts and rope sandals. Fashion and environmental awareness are two concerns that do not comfortably sit side by side. Over the past ten years, high street fashion, led by global chains, has become ever more affordable and disposable. The sourcing of materials, the manufacture and the distribution of clothes have become the dirty secrets of the beautiful industry. Eco-Chic continues Black Dog’s commitment to the environment and to responsible design. Lavishly illustrated, it is a timely publication that will appeal equally to the fashion conscious and environmentally aware. 300 colour & b/w illustrations</Text>
</OtherText>
<Publisher>
<PublishingRole>01</PublishingRole>
<PublisherName>Black Dog Publishing</PublisherName>
</Publisher>
<PublicationDate>20080415</PublicationDate>
<SupplyDetail>
<SupplierName>Peribo Pty Ltd</SupplierName>
<ProductAvailability>10</ProductAvailability>
<Stock>
<OnHand>No Stock</OnHand>
<OnOrder>Yes</OnOrder>
</Stock>
<Price>
<PriceTypeCode>02</PriceTypeCode>
<PriceAmount>75.00</PriceAmount>
</Price>
</SupplyDetail>
</Product>
<Product>
<RecordReference>9781906155049</RecordReference>
<NotificationType>03</NotificationType>
<ProductIdentifier>
<ProductIDType>15</ProductIDType>
<IDValue>9781906155049</IDValue>
</ProductIdentifier>
<ProductForm>BC</ProductForm>
<Title>
<TitleType>01</TitleType>
<TitleText>Tarkovsky</TitleText>
</Title>
<Contributor>
<ContributorRole>A01</ContributorRole>
<PersonNameInverted>DUNNE NATHAN</PersonNameInverted>
</Contributor>
<BICMainSubject>AP</BICMainSubject>
<Imprint>
<ImprintName>Black Dog Publishing</ImprintName>
</Imprint>
<OtherText>
<TextTypeCode>07</TextTypeCode>
<Text>Tarkovsky provides a collection of accessible academic essays by leading film studies professionals. A challenging, broadly illustrated book that fully captures the essence of this cinematic pioneer. “Juxtaposing a person with an environment that is boundless, collating him with a countless number of people passing by close to him and far away, relating a person to the whole world, that is the meaning of cinema.” Andrei Tarkovsky Andrei Tarkovsky is the most influential Soviet filmmaker of the post-war era, and one of the world’s most renowned cinematic geniuses. He created spiritual, existential films of incredible beauty, repeatedly returning to themes of memory, dreams, childhood and Christianity. His films, such as Solaris, Mirror, Nostalghia and The Sacrifice make use of long, unedited shots and wide angles in uncompromisingly formalistic statements that are as striking today as they were when they were first made. AUTHOR: Nathan Dunne studied art history ay Cambridge University. He is currently working on a history of artist run galleries at the London Consortium. << 350 colour & b/w illustrations</Text>
</OtherText>
<Publisher>
<PublishingRole>01</PublishingRole>
<PublisherName>Black Dog Publishing</PublisherName>
</Publisher>
<PublicationDate>20080415</PublicationDate>
<SupplyDetail>
<SupplierName>Peribo Pty Ltd</SupplierName>
<ProductAvailability>10</ProductAvailability>
<Stock>
<OnHand>No Stock</OnHand>
<OnOrder>Yes</OnOrder>
</Stock>
<Price>
<PriceTypeCode>02</PriceTypeCode>
<PriceAmount>90.00</PriceAmount>
</Price>
</SupplyDetail>
</Product>
<Product>
<RecordReference>9781906155179</RecordReference>
<NotificationType>03</NotificationType>
<ProductIdentifier>
<ProductIDType>15</ProductIDType>
<IDValue>9781906155179</IDValue>
</ProductIdentifier>
<ProductForm>BB</ProductForm>
<Title>
<TitleType>01</TitleType>
<TitleText>Celia Scott</TitleText>
</Title>
<Contributor>
<ContributorRole>A01</ContributorRole>
<PersonNameInverted>COLQUHOUN ALAN</PersonNameInverted>
</Contributor>
<BICMainSubject>AF</BICMainSubject>
<Imprint>
<ImprintName>Black Dog Publishing</ImprintName>
</Imprint>
<OtherText>
<TextTypeCode>07</TextTypeCode>
<Text>Celia Scott profiles some of the artist’s best-known heads, from Eduardo Paolozzi to Colin St. John Wilson, with both a rigorous discussion of their aesthetic nature, and the engaging narrative surrounding their creation. Celia Scott attempts to rescue public sculpture from its exclusively classical connotations, while at the same time employing the visual and formal language of classical method. The resulting work sets itself apart from the current architectural and artistic landscape, highlighting moments in the collective memory against the backdrop of modern experience. This classical approach chooses strange subjects, indeed most of Scott’s sitters were influenced by, and influential in, the modernist movement in architecture. Alan Colquhoun opens this volume with a critical look at public sculpture and Scott’s place within, and outside of, its limits. In a characteristically robust analysis, Colquhoun examines the psychological and physical origins of Scott’s practice, and relates her work to the history and meaning of public sculpture. AUTHOR: Alan Colquhoun is Professor Emeritus of Architecture at Princeton University, and one of the most important voices in ar chitectural theory of the last 50 years. << 200 colour & b/w illustrations</Text>
</OtherText>
<Publisher>
<PublishingRole>01</PublishingRole>
<PublisherName>Black Dog Publishing</PublisherName>
</Publisher>
<PublicationDate>20080415</PublicationDate>
<SupplyDetail>
<SupplierName>Peribo Pty Ltd</SupplierName>
<ProductAvailability>10</ProductAvailability>
<Stock>
<OnHand>No Stock</OnHand>
<OnOrder>Yes</OnOrder>
</Stock>
<Price>
<PriceTypeCode>02</PriceTypeCode>
<PriceAmount>90.00</PriceAmount>
</Price>
</SupplyDetail>
</Product>
<Product>
<RecordReference>9781906155216</RecordReference>
<NotificationType>03</NotificationType>
<ProductIdentifier>
<ProductIDType>15</ProductIDType>
<IDValue>9781906155216</IDValue>
</ProductIdentifier>
<ProductForm>BB</ProductForm>
<Title>
<TitleType>01</TitleType>
<TitleText>Trevor Dannatt: Works and Words</TitleText>
</Title>
<Contributor>
<ContributorRole>A01</ContributorRole>
<PersonNameInverted>STONEHOUSE ROGER</PersonNameInverted>
</Contributor>
<BICMainSubject>AM</BICMainSubject>
<Imprint>
<ImprintName>Black Dog Publishing</ImprintName>
</Imprint>
<OtherText>
<TextTypeCode>07</TextTypeCode>
<Text>In Trevor Dannatt: works and words, Professor Roger Stonehouse examines the full breadth of Dannatt’s architecture, ranging from the domestic and academic, such as the combination room for Trinity Hall College, University of Cambridge; to social buildings, such as the Victoria Gate at Kew; to international projects, such as the British Embassy buildings and King Feisal Conference Centre in Riyadh, Saudi Arabia. Trevor Dannatt, Royal Academician and former Professor of Architecture at the University of Manchester, was part of the wave of architects who qualified soon after the Second World War. Known both for his practical building work and his involvement, alongside contemporary and friend Colin St John Wilson, in the debate around the language of Modernism and the development of ‘humanist’ architecture, Dannatt began his career under Maxwell Fry and Jane Drew, leaving in 1948 to join the Festival Hall Group under Leslie Martin and former tutor Peter Moro. Illustrated by superb photographs and reproductions of original drawings, Trevor Dannatt: words and works will appeal to everyone interested in the order and elegance of Dannatt’s architecture, as well as his underlying philosophy AUTHOR: Roger Stonehouse is Professor Emeritus at The University of Manchester . << 200 volour & b/w illustrations</Text>
</OtherText>
<Publisher>
<PublishingRole>01</PublishingRole>
<PublisherName>Black Dog Publishing</PublisherName>
</Publisher>
<PublicationDate>20080415</PublicationDate>
<SupplyDetail>
<SupplierName>Peribo Pty Ltd</SupplierName>
<ProductAvailability>10</ProductAvailability>
<Stock>
<OnHand>No Stock</OnHand>
<OnOrder>No</OnOrder>
</Stock>
<Price>
<PriceTypeCode>02</PriceTypeCode>
<PriceAmount>90.00</PriceAmount>
</Price>
</SupplyDetail>
</Product>
<Product>
<RecordReference>9781906040024</RecordReference>
<NotificationType>03</NotificationType>
<ProductIdentifier>
<ProductIDType>15</ProductIDType>
<IDValue>9781906040024</IDValue>
</ProductIdentifier>
<ProductForm>BC</ProductForm>
<Title>
<TitleType>01</TitleType>
<TitleText>Sun King Rises, The: A Tale of Intrigue at the Court of Louis XIV</TitleText>
</Title>
<Contributor>
<ContributorRole>A01</ContributorRole>
<PersonNameInverted>JEGO YVES & LEPEE DENIS</PersonNameInverted>
</Contributor>
<BICMainSubject>FF</BICMainSubject>
<Imprint>
<ImprintName>Gallic Books</ImprintName>
</Imprint>
<OtherText>
<TextTypeCode>07</TextTypeCode>
<Text>1661 is a year of destiny for France and its young king, Louis XIV. Cardinal Mazarin, the prime minister who has governed throughout the king's early years, lies dying. As a fierce power struggle develops to succeed him, a religious brotherhood, guardian of a centuries old secret, also sees its chance to influence events. >> Gabriel de Pontbriand, a young actor, becomes unwittingly involved when documents stolen from Mazarin's palace fall into his hands. The coded papers will alter Gabriel's life for ever, and their explosive contents have the power to change the course of history for France and Louis XIV. << Fact and fiction combine in a fast-moving story of intrigue, conspiracy and love set in seventeenth century France. >>AUTHOR: Yves Jego is a member of the French Parliament and is spokesman for Nicolas Sarkozy's party, UMP. << Denis Lepee is a local politician and environmental advisor, he is the author of essays on Ernest Hemingway and Winston Churchill.<<SELLING POINTS:<< Best-selling French novel with sales in France of 20,000 in hardback and 60,000 in paperback. << A suspense-filled mystery, a cross between the Three Musketeers and the Da Vinci Code. << Vividly portrays Louis XIV 's court and his rise to power. << Fictional characters mingle with Moliere, La Fontaine and Colbert.</Text>
</OtherText>
<Publisher>
<PublishingRole>01</PublishingRole>
<PublisherName>Gallic Books</PublisherName>
</Publisher>
<PublicationDate>20080415</PublicationDate>
<SupplyDetail>
<SupplierName>Peribo Pty Ltd</SupplierName>
<ProductAvailability>10</ProductAvailability>
<Stock>
<OnHand>No Stock</OnHand>
<OnOrder>Yes</OnOrder>
</Stock>
<Price>
<PriceTypeCode>02</PriceTypeCode>
<PriceAmount>19.95</PriceAmount>
</Price>
</SupplyDetail>
</Product>
<Product>
<RecordReference>9781846890031</RecordReference>
<NotificationType>03</NotificationType>
<ProductIdentifier>
<ProductIDType>15</ProductIDType>
<IDValue>9781846890031</IDValue>
</ProductIdentifier>
<ProductForm>BB</ProductForm>
<Title>
<TitleType>01</TitleType>
<TitleText>Breeding Working Dogs</TitleText>
</Title>
<Contributor>
<ContributorRole>A01</ContributorRole>
<PersonNameInverted>BRANDER MICHAEL</PersonNameInverted>
</Contributor>
<BICMainSubject>WN</BICMainSubject>
<Imprint>
<ImprintName>Swan Hill Press</ImprintName>
</Imprint>
<OtherText>
<TextTypeCode>07</TextTypeCode>
<Text>If you are fortunate enough to own a good working bitch and wish to breed from her, experienced working dog breeder Michael Brander has written this book for you. He guides the novice step-by-step through the basic procedures for rearing a litter of sound working pups. He gives first-hand advice on assessing your bitch's suitability, choosing the potential sire, arranging the mating and, if all goes according to plan, care of the pregnant bitch. In readiness for the birth, the author runs through the preparations for whelping and gives reassuring advice on what to expect and how to cope with the arrival of the puppies. Aftercare of the bitch and her pups is included, and there are helpful notes on how to go about selling puppies to good homes. First-time breeders will find this book particularly helpful. The Author Michael Brander is a professional author and now trains and breeds dogs for his own pleasure. Michael has shot over, bred and trained his own pointer-retrievers for over forty years and is the Kennel Club's Senior Hunt, Point & Retrieve Field Trial Judge. His Dunpender strain has been the foundation of many well-known kennels in the UK and overseas. He is the author of Training the Pointer-Retriever Gundog << Colour throughout</Text>
</OtherText>
<Publisher>
<PublishingRole>01</PublishingRole>
<PublisherName>Quiller Publishing</PublisherName>
</Publisher>
<PublicationDate>20080420</PublicationDate>
<SupplyDetail>
<SupplierName>Peribo Pty Ltd</SupplierName>
<ProductAvailability>10</ProductAvailability>
<Stock>
<OnHand>No Stock</OnHand>
<OnOrder>No</OnOrder>
</Stock>
<Price>
<PriceTypeCode>02</PriceTypeCode>
<PriceAmount>59.95</PriceAmount>
</Price>
</SupplyDetail>
</Product>
<Product>
<RecordReference>9781853409639</RecordReference>
<NotificationType>03</NotificationType>
<ProductIdentifier>
<ProductIDType>15</ProductIDType>
<IDValue>9781853409639</IDValue>
</ProductIdentifier>
<ProductForm>BC</ProductForm>
<Title>
<TitleType>01</TitleType>
<TitleText>Sprite Sisters, The</TitleText>
</Title>
<Contributor>
<ContributorRole>A01</ContributorRole>
<PersonNameInverted>WINN SHERIDAN</PersonNameInverted>
</Contributor>
<BICMainSubject>YF</BICMainSubject>
<Imprint>
<ImprintName>Piccadilly Press</ImprintName>
</Imprint>
<OtherText>
<TextTypeCode>07</TextTypeCode>
<Text>'I've got a magic trick!' said Ariel. 'Watch!' She pointed her finger at Flame's purple bra. It lifted off the chair and hovered in the air. Marina and Ash Laughed. << W=Each of the Sprite sisters, aged between nine and thirteen, has a magical power related to one of the four elements - earth, water, fire or air. When Ariel discovers her power on her ninth birthday, their circle is complete. The girls' magic must be kept secret, and used only for good; if not, the consequences could be dire. << The Sprites' bog house in the country is full of laughter and sunshine, but a shadow is falling. Everything the Sprite sisters hold dear will soon be shattered by the arrival of someone who is intent on destroying their power...</Text>
</OtherText>
<Publisher>
<PublishingRole>01</PublishingRole>
<PublisherName>Piccadilly Press</PublisherName>
</Publisher>
<PublicationDate>20080420</PublicationDate>
<SupplyDetail>
<SupplierName>Peribo Pty Ltd</SupplierName>
<ProductAvailability>10</ProductAvailability>
<Stock>
<OnHand>No Stock</OnHand>
<OnOrder>No</OnOrder>
</Stock>
<Price>
<PriceTypeCode>02</PriceTypeCode>
<PriceAmount>19.95</PriceAmount>
</Price>
</SupplyDetail>
</Product>
<Product>
<RecordReference>9781844157129</RecordReference>
<NotificationType>03</NotificationType>
<ProductIdentifier>
<ProductIDType>15</ProductIDType>
<IDValue>9781844157129</IDValue>
</ProductIdentifier>
<ProductForm>BB</ProductForm>
<Title>
<TitleType>01</TitleType>
<TitleText>Samurai Swordsman, The: Master of War</TitleText>
</Title>
<Contributor>
<ContributorRole>A01</ContributorRole>
<PersonNameInverted>TURNBULL STEPHEN</PersonNameInverted>
</Contributor>
<BICMainSubject>JW</BICMainSubject>
<Imprint>
<ImprintName>Frontline</ImprintName>
</Imprint>
<OtherText>
<TextTypeCode>07</TextTypeCode>
<Text>Samurai tells the story of the courageous and highly disciplined fighting men of this time, showing how they evolved from the promitive fighters o fthe seventh century into an invicible military caste with a fearsome reputation. << In the early seventh century, the samurai rose to prominence during the struggles between the empror and the military leaders (shogun). They took part in the invasion of Korea, as well as helping to keep Japan free from foreign influence. From the Heian period through to the Onin wars, the history of the samurai is replete with tales of heroism and bloodshed. << Although the samurai is most famous for his use of the sword, he also used a wide variety of other weapons, such as the crossbow, the dagger and the spear. Samurai armour and costume were constantly evolving, and by the twelfth century most samurai were wearing the box-like yoroi armour. Samurai examines samurai fighting tactics, as well as acts such as ritual suicide (hari-kiri) and the taking of enemy heads as trophies. << AUTHOR: Stephen Turnbull is an Honorary Fellow at the Department of East Asian Studies at Leeds University. He is the author of more than fifty books on the military history of Europe and the Far EAst. He lives in Horsforth, Yorkshire. <<SELLINg POINTS: Tells the story of these courageous and highly disciplined warriors. << Exmaines samurai weaponry and fighting tactics. << Highly illustrated, shows development of costume and armour. << Samurai provides a fascinating insight into the ways of the ancient warriors who led the military in Japan from the seventh century to the nineteenth century. Illustrated throughout</Text>
</OtherText>
<Publisher>
<PublishingRole>01</PublishingRole>
<PublisherName>Pen and Sword</PublisherName>
</Publisher>
<PublicationDate>20080420</PublicationDate>
<SupplyDetail>
<SupplierName>Peribo Pty Ltd</SupplierName>
<ProductAvailability>10</ProductAvailability>
<Stock>
<OnHand>No Stock</OnHand>
<OnOrder>No</OnOrder>
</Stock>
<Price>
<PriceTypeCode>02</PriceTypeCode>
<PriceAmount>75.00</PriceAmount>
</Price>
</SupplyDetail>
</Product>
<Product>
<RecordReference>9781906094393</RecordReference>
<NotificationType>03</NotificationType>
<ProductIdentifier>
<ProductIDType>15</ProductIDType>
<IDValue>9781906094393</IDValue>
</ProductIdentifier>
<ProductForm>BB</ProductForm>
<Title>
<TitleType>01</TitleType>
<TitleText>Quick and Easy Container Gardening</TitleText>
</Title>
<Contributor>
<ContributorRole>A01</ContributorRole>
<PersonNameInverted>EVELEGH TESSA & PATTERSON DEBBIE</PersonNameInverted>
</Contributor>
<BICMainSubject>WM</BICMainSubject>
<Imprint>
<ImprintName>Cico Books</ImprintName>
</Imprint>
<OtherText>
<TextTypeCode>07</TextTypeCode>
<Text>Whether your garden is large or small, city or country, traditional or modern in style, you will always be able to find a space for plants in pots. Container gardening is the ideal way to bring instant colour to a garden, to provide interest in a dark corner, and to grow plants taht have specific soil, sun, shade, or watering needs. And if you have a balcony or roof terrace, containers allow you to garden to your heart's content. << Quick and Easy Conatiner Gsardener is packed with ideas and inspiration. As well as all the basic techniques you need for successful planting in pots, there are 20 step-by-step projects, showing you how to recreatethe pots shown in the photographs. There are ideas for unusual contaienrs, such as plastic water bottles, gift bags, and kitchenware. If you wish to grow-your-own, a chapter on "crops in pots" shows how to grow fruit, herbs, and vegetables on a small scale. There are ideas fro decorating the garden with pots for summer parties, and advice on choosing the right plants and pots for specific locations. <, Whether you are a novice needing advice and techniques or a seasoned gardn=ener looking for new ideas and inspiration, Quick and Easy Container Gardening will provide the answers. <<AUTHOR: Tessa Evelegh is a writer/author specializing in interiors and gardens. Following a career in magazine publishing, she became a freelance writer-stylist with a regular garden styling feature in Practical Gardening magazine. She has translated that knowledge into books, and over the past 15 years has written and styled over 20 books, including Colorful Baskets and Other Containers and Decorate Your Garden. She lives in London with her architect husband, two teenage daughters, and a large dog. << Debbie Patterson has been taking evocative natural-light photographs for leading magazines, such as Country Living and Homes and Gardens, for many years. She has also photographed award-winning cookery books and has been the chosen photographer for household names including Linda McCartney and Delia Smith. << 300 colour photos</Text>
</OtherText>
<Publisher>
<PublishingRole>01</PublishingRole>
<PublisherName>Cico Books</PublisherName>
</Publisher>
<PublicationDate>20080420</PublicationDate>
<SupplyDetail>
<SupplierName>Peribo Pty Ltd</SupplierName>
<ProductAvailability>10</ProductAvailability>
<Stock>
<OnHand>No Stock</OnHand>
<OnOrder>Yes</OnOrder>
</Stock>
<Price>
<PriceTypeCode>02</PriceTypeCode>
<PriceAmount>34.95</PriceAmount>
</Price>
</SupplyDetail>
</Product>
<Product>
<RecordReference>9781906094317</RecordReference>
<NotificationType>03</NotificationType>
<ProductIdentifier>
<ProductIDType>15</ProductIDType>
<IDValue>9781906094317</IDValue>
</ProductIdentifier>
<ProductForm>BB</ProductForm>
<Title>
<TitleType>01</TitleType>
<TitleText>Living With Light: Decorate the Scandinavian Way</TitleText>
</Title>
<Contributor>
<ContributorRole>A01</ContributorRole>
<PersonNameInverted>ABBOTT GAIL</PersonNameInverted>
</Contributor>
<BICMainSubject>AK</BICMainSubject>
<Imprint>
<ImprintName>Cico Books</ImprintName>
</Imprint>
<OtherText>
<TextTypeCode>07</TextTypeCode>
<Text>Light has an amazing influence on mood. It can change the whole ambience of a room, from uplifting and energizing to calming and relaxing. Living with Light takes its inspiration from the northern hemisphere where winters are long and light at a premium, and techniques have been developed to make the most of every available second. << The style of Scandinavian interiors has evolved from the people's connection to the seasons and nature. This ethos never goes out of fashion and, all over the world, is as popular today as it has ever been. Pale, painted rooms with bleached floors reflect as much light as possible, even in winter when deep snow acts as a reflector during the short hours of daylight. Windows are solidly triplegalzed to keep the heat in so, with no need for heavy curtains, they can be simply swathed with fine fabric. In the summer, windows are thrown open and the light and air of the great outdoors wafts inside. << Chapter by chapter, Living with Light elaborates on creative ideas for decorating the Scandinavian way, using pastel colors as well as the traditional muted palette, unusual fabrics, and display techniques that focus on everything from flowers to kitchenware. The homes featured in these pages are traditional, or crisply contemporary, and some have interprested the look in a uniquely personal way, but all are based on a central theme of making spaces light and airy. <<Living with Light is the perfect companion for anyone to give theire home a spacious feel, the Scandinavian way. <<AUTHOR: Gail Abbott is an established interior designer, stylist, and writer with over twenty years' experinece. Gail contributes regularly to home-style magazines, including Homes & Gardens and Ideal Home, and was instrumental in setting up Angel + Blume, the Cambridge-based interior design company. This is her sixth book; the others include Shoestring Chic and So Simple Window Style. Gail lives in Cambridge. << PHOTOGRAPHER: Mark Scott is a London-based lifestyle photographer specializing in interiors, gaardens, food and travel. His relaxed style and fresh lighting have earned him commissions from numerous magazines, book publishers, design groups and advertising agencies. <<300 colour photos</Text>
</OtherText>
<Publisher>
<PublishingRole>01</PublishingRole>
<PublisherName>Cico Books</PublisherName>
</Publisher>
<PublicationDate>20080420</PublicationDate>
<SupplyDetail>
<SupplierName>Peribo Pty Ltd</SupplierName>
<ProductAvailability>10</ProductAvailability>
<Stock>
<OnHand>No Stock</OnHand>
<OnOrder>Yes</OnOrder>
</Stock>
<Price>
<PriceTypeCode>02</PriceTypeCode>
<PriceAmount>39.95</PriceAmount>
</Price>
</SupplyDetail>
</Product>
<Product>
<RecordReference>9782759401673</RecordReference>
<NotificationType>03</NotificationType>
<ProductIdentifier>
<ProductIDType>15</ProductIDType>
<IDValue>9782759401673</IDValue>
</ProductIdentifier>
<ProductForm>BB</ProductForm>
<Title>
<TitleType>01</TitleType>
<TitleText>Glass House, The</TitleText>
</Title>
<Contributor>
<ContributorRole>A01</ContributorRole>
<PersonNameInverted>MACLEAR CHRISTY</PersonNameInverted>
</Contributor>
<BICMainSubject>AM</BICMainSubject>
<Imprint>
<ImprintName>Assouline</ImprintName>
</Imprint>
<OtherText>
<TextTypeCode>07</TextTypeCode>
<Text>60 colour & b/w photos The Philip Johnson Glass House was built in 1949 and is considered one of America's iconic modernist structures. Over the course of nearly 50 years, Philip Johnson and David Whitney's 47 acre site in New Canaan, CT, became a canvas for their innovation in the fields of architecture, art and landscape design. In each decade new structures were built, artwork acquired and landscape sculptured to showcase the ideas and thoughts that were central to the conversations brought about by friends, colleagues and guests who were among the most famous leaders in these worlds. The Glass House, which Johnson bequeathed to The National Trust and opens to the public in the fall of 2007, is set to become a center point and catalyst for the preservation of Modern architecture, landscape and art. In the words of The Trust, "...a canvas for inspiration, experimentation and cultivation honoring the legacy of philip Johnson and David Whitney". The book will serve as a virtual visit of the house as well as a celebration of one of modern architecture's most famous creations.</Text>
</OtherText>
<Publisher>
<PublishingRole>01</PublishingRole>
<PublisherName>Assouline</PublisherName>
</Publisher>
<PublicationDate>20080415</PublicationDate>
<SupplyDetail>
<SupplierName>Peribo Pty Ltd</SupplierName>
<ProductAvailability>10</ProductAvailability>
<Stock>
<OnHand>No Stock</OnHand>
<OnOrder>No</OnOrder>
</Stock>
<Price>
<PriceTypeCode>02</PriceTypeCode>
<PriceAmount>36.95</PriceAmount>
</Price>
</SupplyDetail>
</Product>
<Product>
<RecordReference>9781842751954</RecordReference>
<NotificationType>03</NotificationType>
<ProductIdentifier>
<ProductIDType>15</ProductIDType>
<IDValue>9781842751954</IDValue>
</ProductIdentifier>
<ProductForm>BC</ProductForm>
<Title>
<TitleType>01</TitleType>
<TitleText>Blood of the Earth: The Battle for the World's Vanishing Oil Resources</TitleText>
</Title>
<Contributor>
<ContributorRole>A01</ContributorRole>
<PersonNameInverted>HIRO DILIP</PersonNameInverted>
</Contributor>
<BICMainSubject>JP</BICMainSubject>
<Imprint>
<ImprintName>Politico's Publishing</ImprintName>
</Imprint>
<OtherText>
<TextTypeCode>07</TextTypeCode>
<Text>A highly topical book about the geopolitics of oil. 'Hiro's detail-packed prose lends an immediacy to events' Tribune China is now the world's second largest energy consumer, trailing only behind America. And India has moved up into the fourth place behind Russia, after overtaking Japan in 2001. Dramatically changing the geopolitics of oil in the new century, China and India are rapidly expanding their navies as they become increasingly dependent on lines of oil tankers from the Middle East, posing the beginning of an eventual challenge to American hegemony in the Indian Ocean and the South China Sea. But while competition for oil sharpens — the world is approaching the projected peak oil output in 2012 — the number of countries able to export the commodity is shrinking. Those countries will be largely Muslim, or like Hugo Chavez's Venezuela, hostile to Western interests. The potential shortage of oil sets the stage for the coming oil wars of the 21st century. About Dilip Hiro Dilip Hiro is the author of Secrets and Lies: The True Story of the Iraq War and most recently Iran Today. He is a celebrated journalist, commentator and the author of over fifteen books on the Middle East. Other titles by Dilip Hiro Iran Today Secrets and Lies</Text>
</OtherText>
<Publisher>
<PublishingRole>01</PublishingRole>
<PublisherName>Methuen publishing</PublisherName>
</Publisher>
<PublicationDate>20080420</PublicationDate>
<SupplyDetail>
<SupplierName>Peribo Pty Ltd</SupplierName>
<ProductAvailability>10</ProductAvailability>
<Stock>
<OnHand>No Stock</OnHand>
<OnOrder>No</OnOrder>
</Stock>
<Price>
<PriceTypeCode>02</PriceTypeCode>
<PriceAmount>29.95</PriceAmount>
</Price>
</SupplyDetail>
</Product>
<Product>
<RecordReference>9789058562296</RecordReference>
<NotificationType>03</NotificationType>
<ProductIdentifier>
<ProductIDType>15</ProductIDType>
<IDValue>9789058562296</IDValue>
</ProductIdentifier>
<ProductForm>BB</ProductForm>
<Title>
<TitleType>01</TitleType>
<TitleText>Marcel Wanders: Interiors</TitleText>
</Title>
<Contributor>
<ContributorRole>A01</ContributorRole>
<PersonNameInverted>WANDERS MARCEL & LOVINE JULIE</PersonNameInverted>
</Contributor>
<BICMainSubject>AC</BICMainSubject>
<Imprint>
<ImprintName>Stichting Kunstboek</ImprintName>
</Imprint>
<OtherText>
<TextTypeCode>07</TextTypeCode>
<Text>The influential young Dutch designer Marcel Wenders, named Designer of the Year by the international home style magazine, Elle Decor for 2006, has produced many of the most iconic designs of the past two decades, including his famous Knotted Chair, the Egg Vase, Tableau Vivant and Patchwork plates. These works have earned international acclaim and continue to be produced by the biggest European contemporary design manufacturers, including B&B Italia, Bisazza, Poliform, Moroso, Flos, Boffi and Cappellini. Originally affiliated with the early-90s Droog Design collective, along with such other major international stars as Richard Hutton, Hella Jongerius and Jurgen Bey, over the years Wanders has broadened his horizons, so that nowadays he runs Moooi, a studio of multidisciplinary design that also incorporates architecture and the interiors that are the subject of this substantial new volume. Featured projects include the new Villa Moda store in Bahrain, which opened in February of 2007, and upcoming hotels in Miami and Los Angeles, as well as a villa in Jakarta. Other completed projects include the Lute suites in Amsterdam, the Blits restaurant in Rotterdam and the celbrated restaurant Thor at the Hotel on Rivington in New York. Text in English and Arabic << 250 colour illustrations</Text>
</OtherText>
<Publisher>
<PublishingRole>01</PublishingRole>
<PublisherName>Antique Collectors Agencies</PublisherName>
</Publisher>
<PublicationDate>20070701</PublicationDate>
<SupplyDetail>
<SupplierName>Peribo Pty Ltd</SupplierName>
<ProductAvailability>10</ProductAvailability>
<Stock>
<OnHand>No Stock</OnHand>
<OnOrder>Yes</OnOrder>
</Stock>
<Price>
<PriceTypeCode>02</PriceTypeCode>
<PriceAmount>130.00</PriceAmount>
</Price>
</SupplyDetail>
</Product>
<Product>
<RecordReference>9789058562241</RecordReference>
<NotificationType>03</NotificationType>
<ProductIdentifier>
<ProductIDType>15</ProductIDType>
<IDValue>9789058562241</IDValue>
</ProductIdentifier>
<ProductForm>BB</ProductForm>
<Title>
<TitleType>01</TitleType>
<TitleText>Flowers in Love II</TitleText>
</Title>
<Contributor>
<ContributorRole>A01</ContributorRole>
<PersonNameInverted>BERGHE & DEKEYZER</PersonNameInverted>
</Contributor>
<BICMainSubject>AC</BICMainSubject>
<Imprint>
<ImprintName>Stichting Kunstboek</ImprintName>
</Imprint>
<OtherText>
<TextTypeCode>07</TextTypeCode>
<Text>200 colour illustrations After having finished training in painting, ceramics and sculpture, Moniek Vanden Berghe focused on floral art. Her style is conemporary-modern. One of her main specialities is bridal work. With an eye for stunning detail, she designs, with great accuracy, bridal bouquets, floral purses, corsages, hair claps and tiaras...She also decorates the bridal table, the cars, the church and the bridesmaids in an elegant and harmonious way. This book offers ‘bridal ideas’ to florists and is an inspiration for anyone who’s soon to be married and wants to have a flourishing party. This is an excellent addition to Moniek’s first bestseller on the theme of love and marriage. Text in English/French/Dutch Flowers in Love ISBN 9789058561619 More than 25,000 copies sold! Wedding Emotions ISBN 9789058561756 Brides in Bloom ISBN 9789058561190</Text>
</OtherText>
<Publisher>
<PublishingRole>01</PublishingRole>
<PublisherName>Antique Collectors Agencies</PublisherName>
</Publisher>
<PublicationDate>20070601</PublicationDate>
<SupplyDetail>
<SupplierName>Peribo Pty Ltd</SupplierName>
<ProductAvailability>20</ProductAvailability>
<Stock>
<OnHand>In stock</OnHand>
<OnOrder>No</OnOrder>
</Stock>
<Price>
<PriceTypeCode>02</PriceTypeCode>
<PriceAmount>69.95</PriceAmount>
</Price>
</SupplyDetail>
</Product>
<Product>
<RecordReference>9780752429212</RecordReference>
<NotificationType>03</NotificationType>
<ProductIdentifier>
<ProductIDType>15</ProductIDType>
<IDValue>9780752429212</IDValue>
</ProductIdentifier>
<ProductForm>BC</ProductForm>
<Title>
<TitleType>01</TitleType>
<TitleText>Brian Boru</TitleText>
</Title>
<Contributor>
<ContributorRole>A01</ContributorRole>
<PersonNameInverted>MHAONAIGH MAIRE NI</PersonNameInverted>
</Contributor>
<BICMainSubject>BG</BICMainSubject>
<Imprint>
<ImprintName>Tempus Publishing</ImprintName>
</Imprint>
<OtherText>
<TextTypeCode>07</TextTypeCode>
<Text>The first-ever biography of the most famous of Ireland's High Kings. Brian Boru king of Munster, was among the most successful of all medieval Irish monarchs. Succeeding to the kingship of Dal Cais on the death of his brother Mathgamain in 976, he managed in the course of his long reign, by a combination of military skill and political astuteness, to enforce his authority over much of the country. In so doing, he became the first ruler outside the Ui Neill to make a bid for the overlordship of Ireland, thereby indicating that the high kingship was in fact a prize to be won by the most powerful claimant. Brian fought Vikings, subdued other Irish kingdoms too, but was finally slain at the battle of Clontarf in 1014. His power largely died with him. Nevertheless, his descendents continued for generations to bask in his glory. How and why Brian acquired the legendary reputation he did in the thousand or so years following his death is the first step in understanding one of Ireland's great heroes, allowing us to come closer to the historical Brian.</Text>
</OtherText>
<Publisher>
<PublishingRole>01</PublishingRole>
<PublisherName>Tempus Publishing</PublisherName>
</Publisher>
<PublicationDate>20080420</PublicationDate>
<SupplyDetail>
<SupplierName>Peribo Pty Ltd</SupplierName>
<ProductAvailability>10</ProductAvailability>
<Stock>
<OnHand>No Stock</OnHand>
<OnOrder>Yes</OnOrder>
</Stock>
<Price>
<PriceTypeCode>02</PriceTypeCode>
<PriceAmount>44.95</PriceAmount>
</Price>
</SupplyDetail>
</Product>
<Product>
<RecordReference>9781905377060</RecordReference>
<NotificationType>03</NotificationType>
<ProductIdentifier>
<ProductIDType>15</ProductIDType>
<IDValue>9781905377060</IDValue>
</ProductIdentifier>
<ProductForm>BB</ProductForm>
<Title>
<TitleType>01</TitleType>
<TitleText>Flowers of the Amazon Forests: The Botanical Art of Margaret Mee</TitleText>
</Title>
<Contributor>
<ContributorRole>A01</ContributorRole>
<PersonNameInverted>MARGARET MEE</PersonNameInverted>
</Contributor>
<BICMainSubject>A</BICMainSubject>
<Imprint>
<ImprintName>Natural Wonders Press</ImprintName>
</Imprint>
<OtherText>
<TextTypeCode>07</TextTypeCode>
<Text>Margaret Mee must rank as one of the most remarkable women of the twentieth century. She was an intrepid explorer of the Brazilian rainforest and an outstanding botanical artist, acclaimed by botanists and art critics worldwide. At the age of 47, Mee started exploring the Amazon in the footsteps of great British explorers such as Richard Spruce and Henry Walter Bates travelling throughout the wildest parts of Amazonia for the next thirty years. Mee learned to live with the forest and its plants, animals and people and learnt much from the Indians about the trees and plants she so meticulously painted. Mee initially sketched the plants in the forest and then worked on the large illustrations of the entire plant in her studio in Rio de Janeiro. Nine of these plants recorded by Mee, previously unknown to science, are now named after her. "Flowers of the Amazon Forests: The Botanical Art of Margaret Mee" illustrates more than sixty of Mee's major works with additional sketches painted whilst in the forest. The text is taken directly from the diaries she kept whilst travelling giving a wonderful insight into the Amazon - something very few people have actually seen. Mee was an ardent conservationist and was well known for her outspoken views on the destructive exploitation of the Amazon forests. This book is a small tribute to her great work. 200 colour illustrations</Text>
</OtherText>
<Publisher>
<PublishingRole>01</PublishingRole>
<PublisherName>Antique Collectors Club</PublisherName>