agent_cooper 0.0.5 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +1 -1
- data/README.md +13 -4
- data/Rakefile +0 -3
- data/agent_cooper.gemspec +12 -13
- data/features/finder.feature +4 -6
- data/features/merchandiser.feature +1 -2
- data/features/shopper.feature +2 -2
- data/features/support/env.rb +5 -5
- data/features/support/vcr.rb +10 -0
- data/lib/agent_cooper.rb +17 -4
- data/lib/agent_cooper/config.rb +3 -9
- data/lib/agent_cooper/nokogiri_decorator.rb +47 -0
- data/lib/agent_cooper/request.rb +36 -13
- data/lib/agent_cooper/requests/finder.rb +25 -0
- data/lib/agent_cooper/requests/merchandiser.rb +25 -0
- data/lib/agent_cooper/requests/shopper.rb +23 -0
- data/lib/agent_cooper/response.rb +3 -4
- data/lib/agent_cooper/synchrony.rb +34 -0
- data/lib/agent_cooper/version.rb +1 -1
- data/spec/agent_cooper/request_spec.rb +91 -6
- data/spec/agent_cooper/requests/finder_spec.rb +13 -0
- data/spec/agent_cooper/requests/merchandiser_spec.rb +13 -0
- data/spec/agent_cooper/requests/shopper_spec.rb +13 -0
- data/spec/agent_cooper/response_spec.rb +51 -1
- data/spec/agent_cooper_spec.rb +12 -0
- data/spec/fixtures/cassettes/finder/find_items_advanced/d49218a9522a4a055e31fc6b88c3a2b5.yml +528 -0
- data/spec/fixtures/cassettes/finder/find_items_by_category/85e07de9993e68d09e895f1b01234c5a.yml +463 -0
- data/spec/fixtures/cassettes/finder/find_items_by_keywords/91d7d9b4b62b82877604465a20f9ffa9.yml +668 -0
- data/spec/fixtures/cassettes/finder/find_items_by_product/59ee1391b6dfc2a93e30c8911942fc71.yml +744 -0
- data/spec/fixtures/cassettes/finder/find_items_in_ebay_stores/c7d658804b6353fda03809c21b183af2.yml +472 -0
- data/spec/fixtures/cassettes/finder/get_histograms/80bd04d96cd529af4148866a2d28f079.yml +46 -0
- data/spec/fixtures/cassettes/finder/get_search_keywords_recommendation/ec96bf3af091373de08550ff46f86c87.yml +41 -0
- data/spec/fixtures/cassettes/merchandiser/get_most_watched_items/3c0cb6fb7bb94b384cae15be175e9640.yml +51 -0
- data/spec/fixtures/cassettes/merchandiser/get_related_category_items/c949e90fb2bd975020df657a4348328d.yml +41 -0
- data/spec/fixtures/cassettes/merchandiser/get_similar_items/56c2c41a60135db83d359053778a065f.yml +41 -0
- data/spec/fixtures/cassettes/merchandiser/get_top_selling_products/a82dcb1f094754e54f2a5de191818c3f.yml +53 -0
- data/spec/fixtures/cassettes/shopper/find_half_products/77ad8a2ade8e4efadef07346677e43a9.yml +55 -0
- data/spec/fixtures/cassettes/shopper/find_popular_items/532fcb32fee187bdc6cc5fb7e4336992.yml +258 -0
- data/spec/fixtures/cassettes/shopper/find_popular_searches/6db9b375ea610e870e7a4ca4e20974ec.yml +45 -0
- data/spec/fixtures/cassettes/shopper/find_products/3fd6d6000037cd409ab1ef18a6075257.yml +52 -0
- data/spec/fixtures/cassettes/shopper/find_reviews_and_guides/8586a984e122cb84136d3cc0bb8bec77.yml +174 -0
- data/spec/fixtures/cassettes/shopper/get_item_status/f34cf10c602f9fec7a388297888b4299.yml +45 -0
- data/spec/fixtures/cassettes/shopper/get_multiple_items/c1183c23add6cad9afbb73f986c2692e.yml +46 -0
- data/spec/fixtures/cassettes/shopper/get_shipping_costs/e7de18031f266637414155639797c097.yml +45 -0
- data/spec/fixtures/cassettes/shopper/get_single_item/d4a895de6b214907c47a0b32ab630b9a.yml +44 -0
- data/spec/fixtures/cassettes/shopper/get_user_profile/dccabbf426bfeba4d898ca546e17dd4b.yml +47 -0
- data/spec/{support → fixtures}/ebay.yml.sample +0 -0
- data/spec/spec_helper.rb +4 -0
- metadata +141 -177
- data/lib/agent_cooper/finder.rb +0 -21
- data/lib/agent_cooper/merchandiser.rb +0 -24
- data/lib/agent_cooper/shopper.rb +0 -22
- data/spec/agent_cooper/config_spec.rb +0 -21
- data/spec/agent_cooper/finder_spec.rb +0 -19
- data/spec/agent_cooper/merchandiser_spec.rb +0 -18
- data/spec/agent_cooper/shopper_spec.rb +0 -18
data/spec/fixtures/cassettes/finder/find_items_by_product/59ee1391b6dfc2a93e30c8911942fc71.yml
ADDED
@@ -0,0 +1,744 @@
|
|
1
|
+
---
|
2
|
+
- !ruby/struct:VCR::HTTPInteraction
|
3
|
+
request: !ruby/struct:VCR::Request
|
4
|
+
method: :get
|
5
|
+
uri: http://svcs.ebay.com:80/services/search/FindingService/v1?OPERATION-NAME=findItemsByProduct&RESPONSE-DATA-FORMAT=XML&REST-PAYLOAD=&SECURITY-APPNAME=YOUR-APP-ID&SECURITY-VERSION=1.9.0&productId=53039031&productId.@type=ReferenceID
|
6
|
+
body: !!null
|
7
|
+
headers: !!null
|
8
|
+
response: !ruby/struct:VCR::Response
|
9
|
+
status: !ruby/struct:VCR::ResponseStatus
|
10
|
+
code: 200
|
11
|
+
message: OK
|
12
|
+
headers:
|
13
|
+
content-type:
|
14
|
+
- text/xml;charset=UTF-8
|
15
|
+
server:
|
16
|
+
- Apache-Coyote/1.1
|
17
|
+
x-ebay-esb-endpointurl:
|
18
|
+
- /Root/ESBFunctions/Services/Ports/7003/profile/search/v1/FindingService/destination_default/address_synapse
|
19
|
+
x-ebay-esb-guid:
|
20
|
+
- urn:uuid:14EB01C54D7CDDC2FA1311501193776
|
21
|
+
x-ebay-soa-locale-list:
|
22
|
+
- en-US_US
|
23
|
+
x-ebay-soa-message-protocol:
|
24
|
+
- NONE
|
25
|
+
x-ebay-soa-operation-name:
|
26
|
+
- findItemsByProduct
|
27
|
+
x-ebay-soa-request-id:
|
28
|
+
- 131583e6-7dd0-a0aa-1354-4d94fff6903f!FindingService!10.10.161.53!v3apifindingcore[!FindItemService!10.10.161.53!v3apifindingcore[]!FindItemService!10.10.161.53!v3apifindingcore[]]
|
29
|
+
x-ebay-soa-response-data-format:
|
30
|
+
- XML
|
31
|
+
x-ebay-soa-service-name:
|
32
|
+
- ! '{http://www.ebay.com/marketplace/search/v1/services}FindingService'
|
33
|
+
x-ebay-soa-service-version:
|
34
|
+
- 1.11.0
|
35
|
+
date:
|
36
|
+
- Sat, 23 Jul 2011 18:25:09 GMT
|
37
|
+
transfer-encoding:
|
38
|
+
- chunked
|
39
|
+
body: ! '<?xml version=''1.0'' encoding=''UTF-8''?><findItemsByProductResponse
|
40
|
+
xmlns="http://www.ebay.com/marketplace/search/v1/services"><ack>Success</ack><version>1.11.0</version><timestamp>2011-07-23T18:25:10.375Z</timestamp><searchResult
|
41
|
+
count="100"><item><itemId>280713638295</itemId><title>The Little Mermaid (DVD,
|
42
|
+
2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
43
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/2807136382954040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/280713638295?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
44
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>32118</postalCode><location>Daytona
|
45
|
+
Beach,FL,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
46
|
+
currencyId="USD">0.0</shippingServiceCost><shippingType>Free</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
47
|
+
currencyId="USD">9.91</currentPrice><convertedCurrentPrice currencyId="USD">9.91</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT5H33M13S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-22T23:59:23.000Z</startTime><endTime>2011-07-23T23:58:23.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
48
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>140576307037</itemId><title>The
|
49
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><subtitle>Sameday
|
50
|
+
shipping.</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
51
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/1405763070374040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/140576307037?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
52
|
+
type="ReferenceID">53039031</productId><autoPay>false</autoPay><postalCode>10009</postalCode><location>New
|
53
|
+
York,NY,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
54
|
+
currencyId="USD">0.0</shippingServiceCost><shippingType>Free</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
55
|
+
currencyId="USD">12.99</currentPrice><convertedCurrentPrice currencyId="USD">12.99</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P18DT9H8M19S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-12T03:28:29.000Z</startTime><endTime>2011-08-11T03:33:29.000Z</endTime><listingType>FixedPrice</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
56
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>320732340038</itemId><title>The
|
57
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><subtitle>NEW/SEALED-
|
58
|
+
FREE SHIPPING- US SELLER- 100% FEEDBACK</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
59
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/3207323400384040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/320732340038?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
60
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>21502</postalCode><location>Cumberland,MD,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
61
|
+
currencyId="USD">0.0</shippingServiceCost><shippingType>Free</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
62
|
+
currencyId="USD">22.5</currentPrice><convertedCurrentPrice currencyId="USD">22.5</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT5H1M15S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>true</buyItNowAvailable><buyItNowPrice
|
63
|
+
currencyId="USD">25.0</buyItNowPrice><convertedBuyItNowPrice currencyId="USD">25.0</convertedBuyItNowPrice><startTime>2011-07-22T23:26:25.000Z</startTime><endTime>2011-07-23T23:26:25.000Z</endTime><listingType>AuctionWithBIN</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
64
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>220818124692</itemId><title>The
|
65
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><subtitle>NEW/SEALED-
|
66
|
+
FREE SHIPPING- US SELLER- 100% FEEDBACK</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
67
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/2208181246924040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/220818124692?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
68
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>21502</postalCode><location>Cumberland,MD,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
69
|
+
currencyId="USD">0.0</shippingServiceCost><shippingType>Free</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
70
|
+
currencyId="USD">22.5</currentPrice><convertedCurrentPrice currencyId="USD">22.5</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT5H1M58S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>true</buyItNowAvailable><buyItNowPrice
|
71
|
+
currencyId="USD">25.0</buyItNowPrice><convertedBuyItNowPrice currencyId="USD">25.0</convertedBuyItNowPrice><startTime>2011-07-22T23:27:08.000Z</startTime><endTime>2011-07-23T23:27:08.000Z</endTime><listingType>AuctionWithBIN</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
72
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>260814066459</itemId><title>The
|
73
|
+
Little Mermaid (DVD, VISA & MASTERCARD ONLY </title><globalId>EBAY-US</globalId><subtitle>get
|
74
|
+
it fast ! NO PAYPAL</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
75
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/2608140664594040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-VISA-MASTERCARD-ONLY-/260814066459?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
76
|
+
type="ReferenceID">53039031</productId><autoPay>false</autoPay><postalCode>10314</postalCode><location>Staten
|
77
|
+
Island,NY,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
78
|
+
currencyId="USD">0.0</shippingServiceCost><shippingType>Free</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
79
|
+
currencyId="USD">13.99</currentPrice><convertedCurrentPrice currencyId="USD">13.99</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P13DT6H48M52S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-07T01:14:02.000Z</startTime><endTime>2011-08-06T01:14:02.000Z</endTime><listingType>FixedPrice</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
80
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>320732340542</itemId><title>The
|
81
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><subtitle>NEW/SEALED-
|
82
|
+
FREE SHIPPING- US SELLER- 100% FEEDBACK</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
83
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/3207323405424040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/320732340542?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
84
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>21502</postalCode><location>Cumberland,MD,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
85
|
+
currencyId="USD">0.0</shippingServiceCost><shippingType>Free</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
86
|
+
currencyId="USD">22.5</currentPrice><convertedCurrentPrice currencyId="USD">22.5</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT5H3M11S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>true</buyItNowAvailable><buyItNowPrice
|
87
|
+
currencyId="USD">25.0</buyItNowPrice><convertedBuyItNowPrice currencyId="USD">25.0</convertedBuyItNowPrice><startTime>2011-07-22T23:28:21.000Z</startTime><endTime>2011-07-23T23:28:21.000Z</endTime><listingType>AuctionWithBIN</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
88
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>130549700855</itemId><title>The
|
89
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
90
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/1305497008554040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/130549700855?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
91
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>46404</postalCode><location>Gary,IN,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
92
|
+
currencyId="USD">0.0</shippingServiceCost><shippingType>Free</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
93
|
+
currencyId="USD">6.5</currentPrice><convertedCurrentPrice currencyId="USD">6.5</convertedCurrentPrice><bidCount>6</bidCount><sellingState>Active</sellingState><timeLeft>P0DT22H43M9S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-19T19:08:30.000Z</startTime><endTime>2011-07-24T17:08:19.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>4000</conditionId><conditionDisplayName>Very
|
94
|
+
Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>220818125648</itemId><title>The
|
95
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><subtitle>NEW/SEALED-
|
96
|
+
SLIP COVER- FREE SHIP- US SELLER- 100% FB</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
97
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/2208181256484040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/220818125648?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
98
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>21502</postalCode><location>Cumberland,MD,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
99
|
+
currencyId="USD">0.0</shippingServiceCost><shippingType>Free</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
100
|
+
currencyId="USD">24.5</currentPrice><convertedCurrentPrice currencyId="USD">24.5</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT5H6M1S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>true</buyItNowAvailable><buyItNowPrice
|
101
|
+
currencyId="USD">27.0</buyItNowPrice><convertedBuyItNowPrice currencyId="USD">27.0</convertedBuyItNowPrice><startTime>2011-07-22T23:31:11.000Z</startTime><endTime>2011-07-23T23:31:11.000Z</endTime><listingType>AuctionWithBIN</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
102
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>250850470673</itemId><title>The
|
103
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><subtitle>USA
|
104
|
+
Seller!</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
105
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/2508504706734040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/250850470673?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
106
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>10306</postalCode><location>Staten
|
107
|
+
Island,NY,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
108
|
+
currencyId="USD">0.0</shippingServiceCost><shippingType>Free</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
109
|
+
currencyId="USD">14.99</currentPrice><convertedCurrentPrice currencyId="USD">14.99</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P12DT3H50M32S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-05T22:15:42.000Z</startTime><endTime>2011-08-04T22:15:42.000Z</endTime><listingType>FixedPrice</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
110
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>320731260769</itemId><title>The
|
111
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><subtitle>SPECIAL
|
112
|
+
EDITION</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
113
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/3207312607694040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/320731260769?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
114
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>true</autoPay><postalCode>33813</postalCode><location>Lakeland,FL,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
115
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
116
|
+
currencyId="USD">9.99</currentPrice><convertedCurrentPrice currencyId="USD">9.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT2H0M18S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>true</buyItNowAvailable><buyItNowPrice
|
117
|
+
currencyId="USD">10.99</buyItNowPrice><convertedBuyItNowPrice currencyId="USD">10.99</convertedBuyItNowPrice><startTime>2011-07-20T20:25:28.000Z</startTime><endTime>2011-07-23T20:25:28.000Z</endTime><listingType>AuctionWithBIN</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>2750</conditionId><conditionDisplayName>Like
|
118
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>130551265993</itemId><title>The
|
119
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Slipcover!</title><globalId>EBAY-US</globalId><subtitle>100%
|
120
|
+
feedback! Slip cover included! Ships out quickly!</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
121
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/1305512659934040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Slipcover-/130551265993?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
122
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>14228</postalCode><location>Buffalo,NY,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
123
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
124
|
+
currencyId="USD">7.0</currentPrice><convertedCurrentPrice currencyId="USD">7.0</convertedCurrentPrice><bidCount>6</bidCount><sellingState>Active</sellingState><timeLeft>P0DT5H29M14S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-22T23:54:24.000Z</startTime><endTime>2011-07-23T23:54:24.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>2750</conditionId><conditionDisplayName>Like
|
125
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>230649955172</itemId><title>The
|
126
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
127
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/2306499551724040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/230649955172?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
128
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>37745</postalCode><location>Greeneville,TN,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
129
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
130
|
+
currencyId="USD">12.5</currentPrice><convertedCurrentPrice currencyId="USD">12.5</convertedCurrentPrice><bidCount>5</bidCount><sellingState>Active</sellingState><timeLeft>P0DT1H48M24S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-20T20:14:35.000Z</startTime><endTime>2011-07-23T20:13:34.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
131
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>160606934280</itemId><title>The
|
132
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
133
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/1606069342804040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/160606934280?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
134
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>18344</postalCode><location>Mount
|
135
|
+
Pocono,PA,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
136
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
137
|
+
currencyId="USD">8.97</currentPrice><convertedCurrentPrice currencyId="USD">8.97</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P26DT7H53M39S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-06-20T02:13:49.000Z</startTime><endTime>2011-08-19T02:18:49.000Z</endTime><listingType>FixedPrice</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>2750</conditionId><conditionDisplayName>Like
|
138
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>260822704976</itemId><title>The
|
139
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
140
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/2608227049764040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/260822704976?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
141
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>91352</postalCode><location>Sun
|
142
|
+
Valley,CA,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
143
|
+
currencyId="USD">2.99</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
144
|
+
currencyId="USD">10.99</currentPrice><convertedCurrentPrice currencyId="USD">10.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT3H26M35S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-22T21:52:46.000Z</startTime><endTime>2011-07-23T21:51:45.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>2750</conditionId><conditionDisplayName>Like
|
145
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>320732332896</itemId><title>The
|
146
|
+
Little Mermaid (DVD, 2006, 2-Disc Platinum Edition)</title><globalId>EBAY-US</globalId><subtitle>New/Sealed-
|
147
|
+
BV STAMP/SLIPCOVER FREE Shipping US Seller</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
148
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/3207323328964040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Platinum-Edition-/320732332896?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
149
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>21502</postalCode><location>Cumberland,MD,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
150
|
+
currencyId="USD">0.0</shippingServiceCost><shippingType>Free</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
151
|
+
currencyId="USD">28.0</currentPrice><convertedCurrentPrice currencyId="USD">28.0</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT4H40M38S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>true</buyItNowAvailable><buyItNowPrice
|
152
|
+
currencyId="USD">32.0</buyItNowPrice><convertedBuyItNowPrice currencyId="USD">32.0</convertedBuyItNowPrice><startTime>2011-07-22T23:05:48.000Z</startTime><endTime>2011-07-23T23:05:48.000Z</endTime><listingType>AuctionWithBIN</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
153
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>260794862632</itemId><title>The
|
154
|
+
Little Mermaid DVD 2006 2-Disc Set Platinum Edition</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
155
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/2607948626324040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-Edition-/260794862632?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
156
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>43527</postalCode><location>Holgate,OH,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
157
|
+
currencyId="USD">0.0</shippingServiceCost><shippingType>FlatDomesticCalculatedInternational</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
158
|
+
currencyId="USD">19.99</currentPrice><convertedCurrentPrice currencyId="USD">19.99</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P9DT6H7M4S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>true</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-06-03T00:27:14.000Z</startTime><endTime>2011-08-02T00:32:14.000Z</endTime><listingType>StoreInventory</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>2750</conditionId><conditionDisplayName>Like
|
159
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>290588095543</itemId><title>The
|
160
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><subtitle>Slipcover
|
161
|
+
Included * 100% Satisfaction Guaranteed * </subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
162
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/2905880955434040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/290588095543?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
163
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>07304</postalCode><location>Jersey
|
164
|
+
City,NJ,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
165
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>FlatDomesticCalculatedInternational</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
166
|
+
currencyId="USD">14.99</currentPrice><convertedCurrentPrice currencyId="USD">14.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT1H42M55S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-16T20:09:05.000Z</startTime><endTime>2011-07-23T20:08:05.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
167
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>110719058904</itemId><title>The
|
168
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
169
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/1107190589044040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/110719058904?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
170
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>28215</postalCode><location>Charlotte,NC,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
171
|
+
currencyId="USD">0.0</shippingServiceCost><shippingType>Free</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>5</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
172
|
+
currencyId="USD">25.0</currentPrice><convertedCurrentPrice currencyId="USD">25.0</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT10H9M12S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>true</buyItNowAvailable><buyItNowPrice
|
173
|
+
currencyId="USD">27.99</buyItNowPrice><convertedBuyItNowPrice currencyId="USD">27.99</convertedBuyItNowPrice><startTime>2011-07-23T04:35:22.000Z</startTime><endTime>2011-07-24T04:34:22.000Z</endTime><listingType>AuctionWithBIN</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
174
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>290588123268</itemId><title>The
|
175
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><subtitle>Slipcover
|
176
|
+
Included * 100% Satisfaction Guaranteed * </subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
177
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/2905881232684040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/290588123268?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
178
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>07304</postalCode><location>Jersey
|
179
|
+
City,NJ,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
180
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>FlatDomesticCalculatedInternational</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
181
|
+
currencyId="USD">14.99</currentPrice><convertedCurrentPrice currencyId="USD">14.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT2H46M17S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-16T21:12:27.000Z</startTime><endTime>2011-07-23T21:11:27.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
182
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>120748947487</itemId><title>The
|
183
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
184
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/1207489474874040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/120748947487?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
185
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>true</autoPay><postalCode>38041</postalCode><location>Henning,TN,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
186
|
+
currencyId="USD">0.0</shippingServiceCost><shippingType>FlatDomesticCalculatedInternational</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
187
|
+
currencyId="USD">11.0</currentPrice><convertedCurrentPrice currencyId="USD">11.0</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P18DT23H16M21S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-12T17:36:31.000Z</startTime><endTime>2011-08-11T17:41:31.000Z</endTime><listingType>FixedPrice</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>2750</conditionId><conditionDisplayName>Like
|
188
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>260822620512</itemId><title>KIDS
|
189
|
+
DVD LOT Disney The Little Mermaid + Lion King + UP</title><globalId>EBAY-US</globalId><subtitle>+
|
190
|
+
Beauty And The Beast! + Free Priority Mail Shipping!</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
191
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/2608226205124040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/KIDS-DVD-LOT-Disney-Little-Mermaid-Lion-King-UP-/260822620512?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
192
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><location>USA</location><country>US</country><shippingInfo><shippingServiceCost
|
193
|
+
currencyId="USD">0.0</shippingServiceCost><shippingType>Free</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
194
|
+
currencyId="USD">36.0</currentPrice><convertedCurrentPrice currencyId="USD">36.0</convertedCurrentPrice><bidCount>20</bidCount><sellingState>Active</sellingState><timeLeft>P0DT0H52M55S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-22T19:18:05.000Z</startTime><endTime>2011-07-23T19:18:05.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>4000</conditionId><conditionDisplayName>Very
|
195
|
+
Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>150633789545</itemId><title>The
|
196
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
197
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/1506337895454040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/150633789545?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
198
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>76210</postalCode><location>Denton,TX,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
199
|
+
currencyId="USD">0.0</shippingServiceCost><shippingType>Free</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
200
|
+
currencyId="USD">9.99</currentPrice><convertedCurrentPrice currencyId="USD">9.99</convertedCurrentPrice><bidCount>1</bidCount><sellingState>Active</sellingState><timeLeft>P1DT4H22M31S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T22:47:41.000Z</startTime><endTime>2011-07-24T22:47:41.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
201
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>290588190053</itemId><title>The
|
202
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><subtitle>Slipcover
|
203
|
+
Included * 100% Satisfaction Guaranteed * </subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
204
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/2905881900534040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/290588190053?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
205
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>07304</postalCode><location>Jersey
|
206
|
+
City,NJ,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
207
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>FlatDomesticCalculatedInternational</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
208
|
+
currencyId="USD">14.99</currentPrice><convertedCurrentPrice currencyId="USD">14.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT6H19M0S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T00:44:10.000Z</startTime><endTime>2011-07-24T00:44:10.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
209
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>330591742395</itemId><title>The
|
210
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
211
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/3305917423954040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/330591742395?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
212
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>true</autoPay><postalCode>33919</postalCode><location>Fort
|
213
|
+
Myers,FL,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
214
|
+
currencyId="USD">0.0</shippingServiceCost><shippingType>Free</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
215
|
+
currencyId="USD">11.25</currentPrice><convertedCurrentPrice currencyId="USD">11.25</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P1DT8H13M4S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-22T02:38:14.000Z</startTime><endTime>2011-07-25T02:38:14.000Z</endTime><listingType>FixedPrice</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
216
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>270785062852</itemId><title>The
|
217
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><subtitle>NEW
|
218
|
+
in original plastic case, plastic wrap and sleeve</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
219
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/2707850628524040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/270785062852?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
220
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>95819</postalCode><location>Sacramento,CA,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
221
|
+
currencyId="USD">2.99</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
222
|
+
currencyId="USD">3.24</currentPrice><convertedCurrentPrice currencyId="USD">3.24</convertedCurrentPrice><bidCount>2</bidCount><sellingState>Active</sellingState><timeLeft>P0DT21H11M23S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-19T15:36:33.000Z</startTime><endTime>2011-07-24T15:36:33.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
223
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>220815747156</itemId><title>The
|
224
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
225
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/2208157471564040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/220815747156?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
226
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>44135</postalCode><location>Cleveland,OH,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
227
|
+
currencyId="USD">2.05</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
228
|
+
currencyId="USD">3.0</currentPrice><convertedCurrentPrice currencyId="USD">3.0</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P1DT4H17M15S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T22:43:25.000Z</startTime><endTime>2011-07-24T22:42:25.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>4000</conditionId><conditionDisplayName>Very
|
229
|
+
Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>330591770872</itemId><title>The
|
230
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><subtitle>Ships
|
231
|
+
With 24 Hours Of Order. Free Shipping!</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
232
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/3305917708724040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/330591770872?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
233
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>true</autoPay><postalCode>97405</postalCode><location>Eugene,OR,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
234
|
+
currencyId="USD">0.0</shippingServiceCost><shippingType>Free</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
235
|
+
currencyId="USD">11.26</currentPrice><convertedCurrentPrice currencyId="USD">11.26</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P28DT10H3M7S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-22T04:24:18.000Z</startTime><endTime>2011-08-21T04:28:17.000Z</endTime><listingType>StoreInventory</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
236
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>170671187348</itemId><title>The
|
237
|
+
Little Mermaid DVD 2-Disc Set Platinum Edition</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
238
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/1706711873484040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2-Disc-Set-Platinum-Edition-/170671187348?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
239
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>33809</postalCode><location>Lakeland,FL,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
240
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>AU</shipToLocations><shipToLocations>Americas</shipToLocations><shipToLocations>Europe</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
241
|
+
currencyId="USD">8.5</currentPrice><convertedCurrentPrice currencyId="USD">8.5</convertedCurrentPrice><bidCount>10</bidCount><sellingState>Active</sellingState><timeLeft>P0DT23H6M2S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-21T17:31:12.000Z</startTime><endTime>2011-07-24T17:31:12.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>4000</conditionId><conditionDisplayName>Very
|
242
|
+
Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>220815789576</itemId><title>The
|
243
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
244
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/2208157895764040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/220815789576?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
245
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>33713</postalCode><location>Saint
|
246
|
+
Petersburg,FL,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
247
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
248
|
+
currencyId="USD">2.0</currentPrice><convertedCurrentPrice currencyId="USD">2.0</convertedCurrentPrice><bidCount>2</bidCount><sellingState>Active</sellingState><timeLeft>P1DT6H24M36S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-18T00:50:47.000Z</startTime><endTime>2011-07-25T00:49:46.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>2750</conditionId><conditionDisplayName>Like
|
249
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>270783938721</itemId><title>The
|
250
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
251
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/2707839387214040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/270783938721?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
252
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>89136</postalCode><location>Las
|
253
|
+
Vegas,NV,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
254
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
255
|
+
currencyId="USD">7.5</currentPrice><convertedCurrentPrice currencyId="USD">7.5</convertedCurrentPrice><bidCount>10</bidCount><sellingState>Active</sellingState><timeLeft>P1DT0H43M42S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T19:08:52.000Z</startTime><endTime>2011-07-24T19:08:52.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
256
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>230650310035</itemId><title>The
|
257
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><subtitle>Brand
|
258
|
+
New FREE USPS 2-3 day Delivery! GREAT DEAL! BUY!</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
259
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/2306503100354040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/230650310035?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
260
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>52544</postalCode><location>Centerville,IA,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
261
|
+
currencyId="USD">0.0</shippingServiceCost><shippingType>Free</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
262
|
+
currencyId="USD">11.3</currentPrice><convertedCurrentPrice currencyId="USD">11.3</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P7DT23H15M16S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-21T17:40:26.000Z</startTime><endTime>2011-07-31T17:40:26.000Z</endTime><listingType>FixedPrice</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><galleryPlusPictureURL>http://galleryplus.ebayimg.com/ws/web/230650310035_1_0_1.jpg</galleryPlusPictureURL><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
263
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>220815645191</itemId><title>Disney
|
264
|
+
The Little Mermaid DVD New/Sealed 2006</title><globalId>EBAY-US</globalId><subtitle>2-Disc
|
265
|
+
Set, Special Edition - DVD Platinum Collection</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
266
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/2208156451914040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Disney-Little-Mermaid-DVD-New-Sealed-2006-/220815645191?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
267
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>29608</postalCode><location>Greenville,SC,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
268
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
269
|
+
currencyId="USD">7.5</currentPrice><convertedCurrentPrice currencyId="USD">7.5</convertedCurrentPrice><bidCount>7</bidCount><sellingState>Active</sellingState><timeLeft>P1DT1H33M25S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T19:58:35.000Z</startTime><endTime>2011-07-24T19:58:35.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
270
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>160622221417</itemId><title>
|
271
|
+
NEW The Little Mermaid (DVD, 2006,Platinum)</title><globalId>EBAY-US</globalId><subtitle>Factory
|
272
|
+
sealed... AUTHENTIC BUENA VISTA STAMP</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
273
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/1606222214174040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/NEW-Little-Mermaid-DVD-2006-Platinum-/160622221417?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
274
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>00784</postalCode><location>Guayama,Puerto
|
275
|
+
Rico,USA</location><country>US</country><shippingInfo><shippingServiceCost currencyId="USD">0.0</shippingServiceCost><shippingType>Calculated</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
276
|
+
currencyId="USD">20.51</currentPrice><convertedCurrentPrice currencyId="USD">20.51</convertedCurrentPrice><bidCount>7</bidCount><sellingState>Active</sellingState><timeLeft>P1DT6H20M43S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-18T00:46:53.000Z</startTime><endTime>2011-07-25T00:45:53.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
277
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>270786448612</itemId><title>NEW!
|
278
|
+
The Little Mermaid 2-Disc DVD Platinum Edition</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
279
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/2707864486124040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/NEW-Little-Mermaid-2-Disc-DVD-Platinum-Edition-/270786448612?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
280
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><location>USA</location><country>US</country><shippingInfo><shippingServiceCost
|
281
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>10</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
282
|
+
currencyId="USD">3.32</currentPrice><convertedCurrentPrice currencyId="USD">3.32</convertedCurrentPrice><bidCount>1</bidCount><sellingState>Active</sellingState><timeLeft>P1DT7H17M8S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-22T01:42:18.000Z</startTime><endTime>2011-07-25T01:42:18.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
283
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>320731685435</itemId><title>The
|
284
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><subtitle>BRAND
|
285
|
+
NEW : INCLUDES: SLIP-COVER, INSERTS, 2DISC DVD!!!</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
286
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/3207316854354040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/320731685435?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
287
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>true</autoPay><postalCode>52001</postalCode><location>Dubuque,IA,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
288
|
+
currencyId="USD">0.0</shippingServiceCost><shippingType>Free</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
289
|
+
currencyId="USD">12.3</currentPrice><convertedCurrentPrice currencyId="USD">12.3</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P27DT23H40M35S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-21T18:05:45.000Z</startTime><endTime>2011-08-20T18:05:45.000Z</endTime><listingType>FixedPrice</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
290
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>170669548678</itemId><title>The
|
291
|
+
Little Mermaid (DVD, 2006, 2-Disc Platinum Edition)</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
292
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/1706695486784040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Platinum-Edition-/170669548678?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
293
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>90275</postalCode><location>Rancho
|
294
|
+
Palos Verdes,CA,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
295
|
+
currencyId="USD">2.95</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
296
|
+
currencyId="USD">9.95</currentPrice><convertedCurrentPrice currencyId="USD">9.95</convertedCurrentPrice><bidCount>1</bidCount><sellingState>Active</sellingState><timeLeft>P1DT0H40M54S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T19:06:04.000Z</startTime><endTime>2011-07-24T19:06:04.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>2750</conditionId><conditionDisplayName>Like
|
297
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>150633817381</itemId><title>Disney
|
298
|
+
THE LITTLE MERMAID DVD 2-Disc Platinum Ed *MINT*</title><globalId>EBAY-US</globalId><subtitle>AUTHENTIC *BUENA
|
299
|
+
VISTA* Over 70 DISNEY DVDS Listed!!!</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
300
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/1506338173814040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Disney-LITTLE-MERMAID-DVD-2-Disc-Platinum-Ed-MINT-/150633817381?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
301
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>32765</postalCode><location>Oviedo,FL,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
302
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
303
|
+
currencyId="USD">5.5</currentPrice><convertedCurrentPrice currencyId="USD">5.5</convertedCurrentPrice><bidCount>14</bidCount><sellingState>Active</sellingState><timeLeft>P1DT6H4M31S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-18T00:29:41.000Z</startTime><endTime>2011-07-25T00:29:41.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>2750</conditionId><conditionDisplayName>Like
|
304
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>170669689229</itemId><title>The
|
305
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
306
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/1706696892294040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/170669689229?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
307
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>92626</postalCode><location>Costa
|
308
|
+
Mesa,CA,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
309
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>FlatDomesticCalculatedInternational</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
310
|
+
currencyId="USD">6.05</currentPrice><convertedCurrentPrice currencyId="USD">6.05</convertedCurrentPrice><bidCount>7</bidCount><sellingState>Active</sellingState><timeLeft>P1DT6H25M5S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-18T00:50:15.000Z</startTime><endTime>2011-07-25T00:50:15.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>4000</conditionId><conditionDisplayName>Very
|
311
|
+
Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>250860529369</itemId><title>The
|
312
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
313
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/2508605293694040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/250860529369?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
314
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>30134</postalCode><location>Douglasville,GA,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
315
|
+
currencyId="USD">0.0</shippingServiceCost><shippingType>Free</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
316
|
+
currencyId="USD">12.95</currentPrice><convertedCurrentPrice currencyId="USD">12.95</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P9DT23H5M2S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-23T17:31:12.000Z</startTime><endTime>2011-08-02T17:30:12.000Z</endTime><listingType>FixedPrice</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
317
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>260822559409</itemId><title>Disney
|
318
|
+
The Little Mermaid NEW dvd 2-Disc Set, Platinum</title><globalId>EBAY-US</globalId><subtitle>**
|
319
|
+
FREE Shipping ! **</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
320
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/2608225594094040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Disney-Little-Mermaid-NEW-dvd-2-Disc-Set-Platinum-/260822559409?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
321
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>true</autoPay><location>USA</location><country>US</country><shippingInfo><shippingServiceCost
|
322
|
+
currencyId="USD">0.0</shippingServiceCost><shippingType>Free</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
323
|
+
currencyId="USD">8.27</currentPrice><convertedCurrentPrice currencyId="USD">8.27</convertedCurrentPrice><bidCount>2</bidCount><sellingState>Active</sellingState><timeLeft>P1DT23H10M17S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-22T17:35:27.000Z</startTime><endTime>2011-07-25T17:35:27.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
324
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>290588440598</itemId><title>The
|
325
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><subtitle>Slipcover
|
326
|
+
Included * 100% Satisfaction Guaranteed * </subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
327
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/2905884405984040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/290588440598?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
328
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>07304</postalCode><location>Jersey
|
329
|
+
City,NJ,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
330
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>FlatDomesticCalculatedInternational</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
331
|
+
currencyId="USD">14.99</currentPrice><convertedCurrentPrice currencyId="USD">14.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT23H34M11S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T18:00:22.000Z</startTime><endTime>2011-07-24T17:59:21.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
332
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>342222853684</itemId><title>The
|
333
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum Edition) (DVD, 2006)</title><globalId>EBAY-US</globalId><subtitle>shrink
|
334
|
+
is off-never played</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
335
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/3422228536844040_0.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-Edition-DVD-2006-/342222853684?pt=LH_DefaultDomain_0</viewItemURL><productId
|
336
|
+
type="ReferenceID">53039031</productId><autoPay>false</autoPay><location>USA</location><country>US</country><shippingInfo><shippingServiceCost
|
337
|
+
currencyId="USD">2.99</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><shipToLocations>None</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
338
|
+
currencyId="USD">11.97</currentPrice><convertedCurrentPrice currencyId="USD">11.97</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P9121DT19H28M51S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-20T13:54:01.000Z</startTime><endTime>2036-07-13T13:54:01.000Z</endTime><listingType>FixedPrice</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>2750</conditionId><conditionDisplayName>Like
|
339
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>160622601911</itemId><title>The
|
340
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><subtitle>Comes
|
341
|
+
with Slip Cover</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
342
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/1606226019114040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/160622601911?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
343
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>62273</postalCode><location>Pierron,IL,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
344
|
+
currencyId="USD">0.0</shippingServiceCost><shippingType>Free</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
345
|
+
currencyId="USD">10.5</currentPrice><convertedCurrentPrice currencyId="USD">10.5</convertedCurrentPrice><bidCount>11</bidCount><sellingState>Active</sellingState><timeLeft>P1DT23H16M11S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-18T17:42:22.000Z</startTime><endTime>2011-07-25T17:41:21.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
346
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>280712277773</itemId><title>The
|
347
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><subtitle>BRAND
|
348
|
+
NEW!!!!!!</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
349
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/2807122777734040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/280712277773?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
350
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>95370</postalCode><location>Sonora,CA,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
351
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
352
|
+
currencyId="USD">6.99</currentPrice><convertedCurrentPrice currencyId="USD">6.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P1DT8H40M26S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-20T03:05:36.000Z</startTime><endTime>2011-07-25T03:05:36.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
353
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>170669674965</itemId><title>*
|
354
|
+
OOP * Disney''s THE LITTLE MERMAID - Platinum Edition</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
355
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/1706696749654040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/OOP-Disneys-LITTLE-MERMAID-Platinum-Edition-/170669674965?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
356
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>77356</postalCode><location>Montgomery,TX,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
357
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>5</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
358
|
+
currencyId="USD">10.5</currentPrice><convertedCurrentPrice currencyId="USD">10.5</convertedCurrentPrice><bidCount>5</bidCount><sellingState>Active</sellingState><timeLeft>P1DT5H21M3S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-17T23:46:13.000Z</startTime><endTime>2011-07-24T23:46:13.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>4000</conditionId><conditionDisplayName>Very
|
359
|
+
Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>342218482799</itemId><title>The
|
360
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum Edition) (DVD, 2006)</title><globalId>EBAY-US</globalId><subtitle>missing
|
361
|
+
dust cover</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
362
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/3422184827994040_0.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-Edition-DVD-2006-/342218482799?pt=LH_DefaultDomain_0</viewItemURL><productId
|
363
|
+
type="ReferenceID">53039031</productId><autoPay>false</autoPay><location>USA</location><country>US</country><shippingInfo><shippingServiceCost
|
364
|
+
currencyId="USD">2.99</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><shipToLocations>None</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
365
|
+
currencyId="USD">11.98</currentPrice><convertedCurrentPrice currencyId="USD">11.98</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P9120DT0H51M5S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-18T19:16:15.000Z</startTime><endTime>2036-07-11T19:16:15.000Z</endTime><listingType>FixedPrice</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>2750</conditionId><conditionDisplayName>Like
|
366
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>270787146431</itemId><title>Disney
|
367
|
+
The Little Mermaid (DVD 2-Disc Platinum Edition)</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
368
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/2707871464314040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Disney-Little-Mermaid-DVD-2-Disc-Platinum-Edition-/270787146431?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
369
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>02903</postalCode><location>Providence,RI,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
370
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
371
|
+
currencyId="USD">19.95</currentPrice><convertedCurrentPrice currencyId="USD">19.95</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P0DT22H3M29S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>true</buyItNowAvailable><buyItNowPrice
|
372
|
+
currencyId="USD">29.95</buyItNowPrice><convertedBuyItNowPrice currencyId="USD">29.95</convertedBuyItNowPrice><startTime>2011-07-23T16:28:39.000Z</startTime><endTime>2011-07-24T16:28:39.000Z</endTime><listingType>AuctionWithBIN</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
373
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>110718643885</itemId><title>The
|
374
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
375
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/1107186438854040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/110718643885?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
376
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>84115</postalCode><location>Salt
|
377
|
+
Lake City,UT,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
378
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
379
|
+
currencyId="USD">9.99</currentPrice><convertedCurrentPrice currencyId="USD">9.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P1DT8H38M37S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-22T03:04:48.000Z</startTime><endTime>2011-07-25T03:03:47.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>4000</conditionId><conditionDisplayName>Very
|
380
|
+
Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>290588600698</itemId><title>The
|
381
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><subtitle>Slipcover
|
382
|
+
Included * 100% Satisfaction Guaranteed * </subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
383
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/2905886006984040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/290588600698?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
384
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>07304</postalCode><location>Jersey
|
385
|
+
City,NJ,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
386
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>FlatDomesticCalculatedInternational</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
387
|
+
currencyId="USD">14.99</currentPrice><convertedCurrentPrice currencyId="USD">14.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P1DT6H24M15S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-18T00:50:26.000Z</startTime><endTime>2011-07-25T00:49:25.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
388
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>110666010758</itemId><title>The
|
389
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
390
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/1106660107584040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/110666010758?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
391
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>84115</postalCode><location>Salt
|
392
|
+
Lake City,UT,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
393
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
394
|
+
currencyId="USD">11.99</currentPrice><convertedCurrentPrice currencyId="USD">11.99</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P28DT23H25M56S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-03-24T17:46:06.000Z</startTime><endTime>2011-08-21T17:51:06.000Z</endTime><listingType>StoreInventory</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>4000</conditionId><conditionDisplayName>Very
|
395
|
+
Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>290589320765</itemId><title>The
|
396
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><subtitle>Slipcover
|
397
|
+
Included * 100% Satisfaction Guaranteed * </subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
398
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/2905893207654040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/290589320765?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
399
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>07304</postalCode><location>Jersey
|
400
|
+
City,NJ,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
401
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>FlatDomesticCalculatedInternational</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
402
|
+
currencyId="USD">14.99</currentPrice><convertedCurrentPrice currencyId="USD">14.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P1DT8H48M53S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-20T03:15:04.000Z</startTime><endTime>2011-07-25T03:14:03.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
403
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>150633843513</itemId><title>Disney
|
404
|
+
THE LITTLE MERMAID DVD 2-Disc Plat. Ed. *SEALED*</title><globalId>EBAY-US</globalId><subtitle>*BUENA
|
405
|
+
VISTA STAMPED* Over 70 DISNEY DVDS Listed!!!</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
406
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/1506338435134040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Disney-LITTLE-MERMAID-DVD-2-Disc-Plat-Ed-SEALED-/150633843513?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
407
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>32765</postalCode><location>Oviedo,FL,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
408
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
409
|
+
currencyId="USD">17.77</currentPrice><convertedCurrentPrice currencyId="USD">17.77</convertedCurrentPrice><bidCount>8</bidCount><sellingState>Active</sellingState><timeLeft>P1DT7H20M27S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-18T01:45:37.000Z</startTime><endTime>2011-07-25T01:45:37.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
410
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>250860505381</itemId><title>The
|
411
|
+
Little Mermaid (Two-Disc Platinum Edition) DVD, Ren</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
412
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/2508605053814040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-Two-Disc-Platinum-Edition-DVD-Ren-/250860505381?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
413
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>true</autoPay><postalCode>08043</postalCode><location>Voorhees,NJ,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
414
|
+
currencyId="USD">0.0</shippingServiceCost><shippingType>Free</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
415
|
+
currencyId="USD">22.99</currentPrice><convertedCurrentPrice currencyId="USD">22.99</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P29DT22H13M56S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-23T16:39:06.000Z</startTime><endTime>2011-08-22T16:39:06.000Z</endTime><listingType>FixedPrice</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>2750</conditionId><conditionDisplayName>Like
|
416
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>230648762235</itemId><title>The
|
417
|
+
Little Mermaid Disney 2-Disc w/Buena Vista stamp</title><globalId>EBAY-US</globalId><subtitle>Many
|
418
|
+
rare 100% authentic Disney dvds starting at .99!</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
419
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/2306487622354040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-Disney-2-Disc-w-Buena-Vista-stamp-/230648762235?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
420
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>64155</postalCode><location>Kansas
|
421
|
+
City,MO,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
422
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
423
|
+
currencyId="USD">18.25</currentPrice><convertedCurrentPrice currencyId="USD">18.25</convertedCurrentPrice><bidCount>5</bidCount><sellingState>Active</sellingState><timeLeft>P1DT7H5M15S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-18T01:30:25.000Z</startTime><endTime>2011-07-25T01:30:25.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
424
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>230650650438</itemId><title>The
|
425
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
426
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/2306506504384040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/230650650438?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
427
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>37745</postalCode><location>Greeneville,TN,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
428
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
429
|
+
currencyId="USD">5.99</currentPrice><convertedCurrentPrice currencyId="USD">5.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P1DT19H58M22S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>true</buyItNowAvailable><buyItNowPrice
|
430
|
+
currencyId="USD">11.99</buyItNowPrice><convertedBuyItNowPrice currencyId="USD">11.99</convertedBuyItNowPrice><startTime>2011-07-22T14:24:33.000Z</startTime><endTime>2011-07-25T14:23:32.000Z</endTime><listingType>AuctionWithBIN</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
431
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>320731209453</itemId><title>The
|
432
|
+
Little Mermaid (DVD, 2006, 2-Disc Platinum Edition)</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
433
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/3207312094534040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Platinum-Edition-/320731209453?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
434
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>34286</postalCode><location>North
|
435
|
+
Port,FL,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
436
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>US</shipToLocations><shipToLocations>CA</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
437
|
+
currencyId="USD">7.5</currentPrice><convertedCurrentPrice currencyId="USD">7.5</convertedCurrentPrice><bidCount>4</bidCount><sellingState>Active</sellingState><timeLeft>P0DT0H12M34S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-20T18:37:44.000Z</startTime><endTime>2011-07-23T18:37:44.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
438
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>180693189801</itemId><title>The
|
439
|
+
Little Mermaid DVD 2006 2-Disc Set Platinum Edition</title><globalId>EBAY-US</globalId><subtitle>Fast
|
440
|
+
Free Shipping!!!!</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
441
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/1806931898014040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-Edition-/180693189801?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
442
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><location>USA</location><country>US</country><shippingInfo><shippingServiceCost
|
443
|
+
currencyId="USD">0.0</shippingServiceCost><shippingType>Free</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
444
|
+
currencyId="USD">13.99</currentPrice><convertedCurrentPrice currencyId="USD">13.99</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P15DT0H40M32S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-08T19:06:42.000Z</startTime><endTime>2011-08-07T19:05:42.000Z</endTime><listingType>FixedPrice</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
445
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>150634266678</itemId><title>The
|
446
|
+
Little Mermaid 1 2 Return to the Sea (DVD, Disney)</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
447
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/1506342666784040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-1-2-Return-Sea-DVD-Disney-/150634266678?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
448
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>55303</postalCode><location>Anoka,MN,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
449
|
+
currencyId="USD">2.95</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
450
|
+
currencyId="USD">6.5</currentPrice><convertedCurrentPrice currencyId="USD">6.5</convertedCurrentPrice><bidCount>4</bidCount><sellingState>Active</sellingState><timeLeft>P2DT5H15M10S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-18T23:41:21.000Z</startTime><endTime>2011-07-25T23:40:20.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>2750</conditionId><conditionDisplayName>Like
|
451
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>270786636619</itemId><title>The
|
452
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
453
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/2707866366194040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/270786636619?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
454
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>92307</postalCode><location>Apple
|
455
|
+
Valley,CA,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
456
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
457
|
+
currencyId="USD">6.06</currentPrice><convertedCurrentPrice currencyId="USD">6.06</convertedCurrentPrice><bidCount>13</bidCount><sellingState>Active</sellingState><timeLeft>P0DT7H34M51S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-23T02:00:01.000Z</startTime><endTime>2011-07-24T02:00:01.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
458
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>290588791096</itemId><title>The
|
459
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><subtitle>Slipcover
|
460
|
+
Included * 100% Satisfaction Guaranteed * </subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
461
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/2905887910964040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/290588791096?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
462
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>07304</postalCode><location>Jersey
|
463
|
+
City,NJ,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
464
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>FlatDomesticCalculatedInternational</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
465
|
+
currencyId="USD">14.99</currentPrice><convertedCurrentPrice currencyId="USD">14.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P1DT22H46M8S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-18T17:11:19.000Z</startTime><endTime>2011-07-25T17:11:18.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
466
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>120752148926</itemId><title>The
|
467
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><subtitle>Authenic,Factory
|
468
|
+
Sealed w/Slipcover--100 Percent Guarat</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
469
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/1207521489264040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/120752148926?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
470
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>true</autoPay><postalCode>46902</postalCode><location>Kokomo,IN,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
471
|
+
currencyId="USD">2.99</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
472
|
+
currencyId="USD">12.88</currentPrice><convertedCurrentPrice currencyId="USD">12.88</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P3DT8H16M28S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>true</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-20T02:41:38.000Z</startTime><endTime>2011-07-27T02:41:38.000Z</endTime><listingType>StoreInventory</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>4000</conditionId><conditionDisplayName>Very
|
473
|
+
Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>230649175361</itemId><title>New
|
474
|
+
DISNEY The Little Mermaid Platinum Edition DVD</title><globalId>EBAY-US</globalId><subtitle>Authentic
|
475
|
+
Factory Sealed with Buena Vista Stamp</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
476
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/2306491753614040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/New-DISNEY-Little-Mermaid-Platinum-Edition-DVD-/230649175361?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
477
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>15214</postalCode><location>Pittsburgh,PA,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
478
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>FlatDomesticCalculatedInternational</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
479
|
+
currencyId="USD">7.5</currentPrice><convertedCurrentPrice currencyId="USD">7.5</convertedCurrentPrice><bidCount>6</bidCount><sellingState>Active</sellingState><timeLeft>P2DT7H5M48S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-19T01:30:58.000Z</startTime><endTime>2011-07-26T01:30:58.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
480
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>160623171332</itemId><title>The
|
481
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><subtitle>Comes
|
482
|
+
with Slip Cover</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
483
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/1606231713324040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/160623171332?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
484
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>62273</postalCode><location>Pierron,IL,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
485
|
+
currencyId="USD">0.0</shippingServiceCost><shippingType>Free</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
486
|
+
currencyId="USD">6.5</currentPrice><convertedCurrentPrice currencyId="USD">6.5</convertedCurrentPrice><bidCount>8</bidCount><sellingState>Active</sellingState><timeLeft>P3DT3H7M50S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-19T21:34:01.000Z</startTime><endTime>2011-07-26T21:33:00.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
487
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>250860221001</itemId><title>Walt
|
488
|
+
Disney The Little Mermaid (DVD 2-Disc Set NEW</title><globalId>EBAY-US</globalId><subtitle>~~~~~~~~~~~FREE
|
489
|
+
SHIPPING~~~~~~~~~~~~BRAND NEW~~~~~~~~~~</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
490
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/2508602210014040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Walt-Disney-Little-Mermaid-DVD-2-Disc-Set-NEW-/250860221001?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
491
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>true</autoPay><postalCode>46256</postalCode><location>Indianapolis,IN,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
492
|
+
currencyId="USD">0.0</shippingServiceCost><shippingType>Free</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
493
|
+
currencyId="USD">14.95</currentPrice><convertedCurrentPrice currencyId="USD">14.95</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P6DT8H8M9S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-23T02:33:19.000Z</startTime><endTime>2011-07-30T02:33:19.000Z</endTime><listingType>StoreInventory</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
494
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>330591375967</itemId><title>The
|
495
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><subtitle>LIKE
|
496
|
+
NEW! VIEWED ONLY ONCE! FAST SHIPPING! 2 DISC SET</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
497
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/3305913759674040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/330591375967?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
498
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>55427</postalCode><location>Minneapolis,MN,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
499
|
+
currencyId="USD">2.25</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
500
|
+
currencyId="USD">8.0</currentPrice><convertedCurrentPrice currencyId="USD">8.0</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P2DT10H57M38S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-21T05:22:48.000Z</startTime><endTime>2011-07-26T05:22:48.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>2750</conditionId><conditionDisplayName>Like
|
501
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>290588893106</itemId><title>The
|
502
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><subtitle>Slipcover
|
503
|
+
Included * 100% Satisfaction Guaranteed * </subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
504
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/2905888931064040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/290588893106?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
505
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>07304</postalCode><location>Jersey
|
506
|
+
City,NJ,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
507
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>FlatDomesticCalculatedInternational</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
508
|
+
currencyId="USD">14.99</currentPrice><convertedCurrentPrice currencyId="USD">14.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P2DT3H54M40S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-18T22:20:50.000Z</startTime><endTime>2011-07-25T22:19:50.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
509
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>140581917990</itemId><title>The
|
510
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
511
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/1405819179904040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/140581917990?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
512
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>95354</postalCode><location>Modesto,CA,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
513
|
+
currencyId="USD">2.99</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
514
|
+
currencyId="USD">0.99</currentPrice><convertedCurrentPrice currencyId="USD">0.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P2DT22H21M43S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>true</buyItNowAvailable><buyItNowPrice
|
515
|
+
currencyId="USD">9.0</buyItNowPrice><convertedBuyItNowPrice currencyId="USD">9.0</convertedBuyItNowPrice><startTime>2011-07-23T16:46:53.000Z</startTime><endTime>2011-07-26T16:46:53.000Z</endTime><listingType>AuctionWithBIN</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
516
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>280713840733</itemId><title>The
|
517
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
518
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/2807138407334040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/280713840733?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
519
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>34758</postalCode><location>Kissimmee,FL,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
520
|
+
currencyId="USD">0.0</shippingServiceCost><shippingType>Free</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
521
|
+
currencyId="USD">14.99</currentPrice><convertedCurrentPrice currencyId="USD">14.99</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P6DT21H34M36S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-23T15:59:46.000Z</startTime><endTime>2011-07-30T15:59:46.000Z</endTime><listingType>FixedPrice</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
522
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>230649459070</itemId><title>The
|
523
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
524
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/2306494590704040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/230649459070?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
525
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>13413</postalCode><location>New
|
526
|
+
Hartford,NY,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
527
|
+
currencyId="USD">1.99</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
528
|
+
currencyId="USD">3.25</currentPrice><convertedCurrentPrice currencyId="USD">3.25</convertedCurrentPrice><bidCount>5</bidCount><sellingState>Active</sellingState><timeLeft>P2DT23H23M11S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-19T17:49:22.000Z</startTime><endTime>2011-07-26T17:48:21.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>2750</conditionId><conditionDisplayName>Like
|
529
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>290589287715</itemId><title>THE
|
530
|
+
LITTLE MERMAID 2-DISC SPECIAL EDITION LIKE NEW OOP</title><globalId>EBAY-US</globalId><subtitle>MANY
|
531
|
+
PICS INCLUDED! FLAWLESS CONDITION! W/SLIPCOVER!!!</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
532
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/2905892877154040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/LITTLE-MERMAID-2-DISC-SPECIAL-EDITION-LIKE-NEW-OOP-/290589287715?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
533
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>23185</postalCode><location>Williamsburg,VA,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
534
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
535
|
+
currencyId="USD">0.99</currentPrice><convertedCurrentPrice currencyId="USD">0.99</convertedCurrentPrice><bidCount>1</bidCount><sellingState>Active</sellingState><timeLeft>P3DT6H45M51S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-20T01:11:01.000Z</startTime><endTime>2011-07-27T01:11:01.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>2750</conditionId><conditionDisplayName>Like
|
536
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>150635179922</itemId><title>The
|
537
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><subtitle>Comes
|
538
|
+
with Slip Cover</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
539
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/1506351799224040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/150635179922?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
540
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>62273</postalCode><location>Pierron,IL,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
541
|
+
currencyId="USD">0.0</shippingServiceCost><shippingType>Free</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
542
|
+
currencyId="USD">7.0</currentPrice><convertedCurrentPrice currencyId="USD">7.0</convertedCurrentPrice><bidCount>12</bidCount><sellingState>Active</sellingState><timeLeft>P4DT5H24M45S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-20T23:50:56.000Z</startTime><endTime>2011-07-27T23:49:55.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
543
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>180694597090</itemId><title>The
|
544
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
545
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/1806945970904040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/180694597090?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
546
|
+
type="ReferenceID">53039031</productId><paymentMethod>CashOnPickup</paymentMethod><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>02724</postalCode><location>Fall
|
547
|
+
River,MA,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
548
|
+
currencyId="USD">0.0</shippingServiceCost><shippingType>Calculated</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
549
|
+
currencyId="USD">18.0</currentPrice><convertedCurrentPrice currencyId="USD">18.0</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P17DT21H1M30S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>true</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-11T15:21:40.000Z</startTime><endTime>2011-08-10T15:26:40.000Z</endTime><listingType>StoreInventory</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>5000</conditionId><conditionDisplayName>Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>270785317563</itemId><title>The
|
550
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-ENCA</globalId><subtitle>free
|
551
|
+
shipping, low starting bid</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
552
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/2707853175634040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/270785317563?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
553
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>L3V3E9</postalCode><location>Canada</location><country>CA</country><shippingInfo><shippingServiceCost
|
554
|
+
currencyId="USD">0.0</shippingServiceCost><shippingType>Free</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>US</shipToLocations><shipToLocations>CA</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
555
|
+
currencyId="USD">12.0</currentPrice><convertedCurrentPrice currencyId="USD">12.0</convertedCurrentPrice><bidCount>9</bidCount><sellingState>Active</sellingState><timeLeft>P3DT5H56M58S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-20T00:22:08.000Z</startTime><endTime>2011-07-27T00:22:08.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
556
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>290589263280</itemId><title>The
|
557
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><subtitle>Slipcover
|
558
|
+
Included * 100% Satisfaction Guaranteed * </subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
559
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/2905892632804040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/290589263280?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
560
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>07304</postalCode><location>Jersey
|
561
|
+
City,NJ,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
562
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>FlatDomesticCalculatedInternational</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
563
|
+
currencyId="USD">14.99</currentPrice><convertedCurrentPrice currencyId="USD">14.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P3DT5H8M34S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-19T23:34:45.000Z</startTime><endTime>2011-07-26T23:33:44.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
564
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>250860264517</itemId><title>The
|
565
|
+
Little Ariel Sea Mermaid DVD 1 2 3 Movie Lot Set</title><globalId>EBAY-US</globalId><subtitle>Lot
|
566
|
+
3 Walt Disney Complete DVD Movie Trilogy Set</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
567
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/2508602645174040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Ariel-Sea-Mermaid-DVD-1-2-3-Movie-Lot-Set-/250860264517?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
568
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>85224</postalCode><location>Chandler,AZ,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
569
|
+
currencyId="USD">0.0</shippingServiceCost><shippingType>Free</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>4</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
570
|
+
currencyId="USD">6.5</currentPrice><convertedCurrentPrice currencyId="USD">6.5</convertedCurrentPrice><bidCount>7</bidCount><sellingState>Active</sellingState><timeLeft>P4DT10H7M3S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-23T04:32:13.000Z</startTime><endTime>2011-07-28T04:32:13.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>4000</conditionId><conditionDisplayName>Very
|
571
|
+
Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>270786409823</itemId><title>The
|
572
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
573
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/2707864098234040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/270786409823?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
574
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>92173</postalCode><location>San
|
575
|
+
Ysidro,CA,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
576
|
+
currencyId="USD">2.09</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
577
|
+
currencyId="USD">8.99</currentPrice><convertedCurrentPrice currencyId="USD">8.99</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P28DT5H50M1S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-22T00:10:11.000Z</startTime><endTime>2011-08-21T00:15:11.000Z</endTime><listingType>FixedPrice</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>2750</conditionId><conditionDisplayName>Like
|
578
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>260822638257</itemId><title>The
|
579
|
+
Little Ariel Sea Mermaid DVD 1 2 3 Movie Lot Set</title><globalId>EBAY-US</globalId><subtitle>Lot
|
580
|
+
3 Walt Disney Complete DVD Movie Trilogy Set</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
581
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/2608226382574040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Ariel-Sea-Mermaid-DVD-1-2-3-Movie-Lot-Set-/260822638257?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
582
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>85224</postalCode><location>Chandler,AZ,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
583
|
+
currencyId="USD">0.0</shippingServiceCost><shippingType>Free</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>4</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
584
|
+
currencyId="USD">16.5</currentPrice><convertedCurrentPrice currencyId="USD">16.5</convertedCurrentPrice><bidCount>10</bidCount><sellingState>Active</sellingState><timeLeft>P4DT1H22M57S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-22T19:48:07.000Z</startTime><endTime>2011-07-27T19:48:07.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>4000</conditionId><conditionDisplayName>Very
|
585
|
+
Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>350479468627</itemId><title>The
|
586
|
+
Little Mermaid: Special Edition DVD Set</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
587
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/3504794686274040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-Special-Edition-DVD-Set-/350479468627?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
588
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>89503</postalCode><location>Reno,NV,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
589
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
590
|
+
currencyId="USD">4.99</currentPrice><convertedCurrentPrice currencyId="USD">4.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P1DT22H9M31S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-22T16:34:41.000Z</startTime><endTime>2011-07-25T16:34:41.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>2750</conditionId><conditionDisplayName>Like
|
591
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>190542802481</itemId><title>The
|
592
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
593
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/1905428024814040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/190542802481?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
594
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>32141</postalCode><location>Edgewater,FL,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
595
|
+
currencyId="USD">2.99</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
596
|
+
currencyId="USD">18.99</currentPrice><convertedCurrentPrice currencyId="USD">18.99</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P14DT9H26M11S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-06-08T03:46:21.000Z</startTime><endTime>2011-08-07T03:51:21.000Z</endTime><listingType>FixedPrice</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
597
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>350479468649</itemId><title>The
|
598
|
+
Littel Mermaid: Platinum Edition DVD Set</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
599
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/3504794686494040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Littel-Mermaid-Platinum-Edition-DVD-Set-/350479468649?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
600
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>89503</postalCode><location>Reno,NV,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
601
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
602
|
+
currencyId="USD">4.99</currentPrice><convertedCurrentPrice currencyId="USD">4.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P1DT22H9M35S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-22T16:34:45.000Z</startTime><endTime>2011-07-25T16:34:45.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>2750</conditionId><conditionDisplayName>Like
|
603
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>290589565230</itemId><title>The
|
604
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
605
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/2905895652304040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/290589565230?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><charityId>1212</charityId><productId
|
606
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>89801</postalCode><location>Elko,NV,USA</location><country>US</country><shippingInfo><shippingType>Calculated</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
607
|
+
currencyId="USD">3.25</currentPrice><convertedCurrentPrice currencyId="USD">3.25</convertedCurrentPrice><bidCount>5</bidCount><sellingState>Active</sellingState><timeLeft>P4DT1H56M51S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-20T20:22:01.000Z</startTime><endTime>2011-07-27T20:22:01.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
608
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>140579352676</itemId><title>The
|
609
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><subtitle>disney
|
610
|
+
dvd, no reserve, complete with case and booklet!</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
611
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/1405793526764040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/140579352676?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
612
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>32937</postalCode><location>Satellite
|
613
|
+
Beach,FL,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
614
|
+
currencyId="USD">2.95</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
615
|
+
currencyId="USD">3.75</currentPrice><convertedCurrentPrice currencyId="USD">3.75</convertedCurrentPrice><bidCount>3</bidCount><sellingState>Active</sellingState><timeLeft>P4DT7H43M41S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-18T02:08:51.000Z</startTime><endTime>2011-07-28T02:08:51.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>5000</conditionId><conditionDisplayName>Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>320730664338</itemId><title>The
|
616
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
617
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/3207306643384040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/320730664338?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
618
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>true</autoPay><postalCode>39817</postalCode><location>Bainbridge,GA,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
619
|
+
currencyId="USD">0.0</shippingServiceCost><shippingType>Free</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>15</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
620
|
+
currencyId="USD">21.0</currentPrice><convertedCurrentPrice currencyId="USD">21.0</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P25DT21H42M15S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>true</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-19T16:02:26.000Z</startTime><endTime>2011-08-18T16:07:25.000Z</endTime><listingType>FixedPrice</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>4000</conditionId><conditionDisplayName>Very
|
621
|
+
Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>330591319809</itemId><title>New
|
622
|
+
DISNEY The Little Mermaid Platinum Edition DVD</title><globalId>EBAY-US</globalId><subtitle>Authentic
|
623
|
+
Factory Sealed with Buena Vista Stamp</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
624
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/3305913198094040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/New-DISNEY-Little-Mermaid-Platinum-Edition-DVD-/330591319809?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
625
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>15214</postalCode><location>Pittsburgh,PA,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
626
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>FlatDomesticCalculatedInternational</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
627
|
+
currencyId="USD">5.51</currentPrice><convertedCurrentPrice currencyId="USD">5.51</convertedCurrentPrice><bidCount>3</bidCount><sellingState>Active</sellingState><timeLeft>P4DT6H36M47S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-21T01:01:57.000Z</startTime><endTime>2011-07-28T01:01:57.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
628
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>230650825004</itemId><title>Disney''s
|
629
|
+
The Little Mermaid (DVD, 2006, 2-Disc Set)</title><globalId>EBAY-US</globalId><subtitle>A
|
630
|
+
Disney Classic</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
631
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/2306508250044040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Disneys-Little-Mermaid-DVD-2006-2-Disc-Set-/230650825004?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
632
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>37745</postalCode><location>Greeneville,TN,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
633
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
634
|
+
currencyId="USD">5.99</currentPrice><convertedCurrentPrice currencyId="USD">5.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P2DT6H39M27S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>true</buyItNowAvailable><buyItNowPrice
|
635
|
+
currencyId="USD">14.99</buyItNowPrice><convertedBuyItNowPrice currencyId="USD">14.99</convertedBuyItNowPrice><startTime>2011-07-23T01:04:37.000Z</startTime><endTime>2011-07-26T01:04:37.000Z</endTime><listingType>AuctionWithBIN</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
636
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>290590170406</itemId><title>The
|
637
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><subtitle>Slipcover
|
638
|
+
Included * 100% Satisfaction Guaranteed * </subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
639
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/2905901704064040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/290590170406?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
640
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>07304</postalCode><location>Jersey
|
641
|
+
City,NJ,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
642
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>FlatDomesticCalculatedInternational</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
643
|
+
currencyId="USD">14.99</currentPrice><convertedCurrentPrice currencyId="USD">14.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P3DT22H11M4S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-22T16:36:14.000Z</startTime><endTime>2011-07-27T16:36:14.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
644
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>320681114565</itemId><title>Disney
|
645
|
+
THE LITTLE MERMAID 2-Disc Platinum Edition DVD</title><globalId>EBAY-US</globalId><subtitle>Authentic
|
646
|
+
Walt Disney DVD from US Seller</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
647
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/3206811145654040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Disney-LITTLE-MERMAID-2-Disc-Platinum-Edition-DVD-/320681114565?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
648
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>34748</postalCode><location>Leesburg,FL,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
649
|
+
currencyId="USD">2.99</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
650
|
+
currencyId="USD">19.99</currentPrice><convertedCurrentPrice currencyId="USD">19.99</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P10DT12H36M21S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-04-05T06:56:31.000Z</startTime><endTime>2011-08-03T07:01:31.000Z</endTime><listingType>StoreInventory</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>4000</conditionId><conditionDisplayName>Very
|
651
|
+
Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>270785685450</itemId><title>The
|
652
|
+
Little Mermaid DVD, 2006, 2-Disc Set, Platinum Ed.</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
653
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/2707856854504040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-Ed-/270785685450?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
654
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>85383</postalCode><location>Peoria,AZ,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
655
|
+
currencyId="USD">2.5</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>US</shipToLocations><shipToLocations>CA</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
656
|
+
currencyId="USD">16.0</currentPrice><convertedCurrentPrice currencyId="USD">16.0</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P3DT23H2M39S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>true</buyItNowAvailable><buyItNowPrice
|
657
|
+
currencyId="USD">18.0</buyItNowPrice><convertedBuyItNowPrice currencyId="USD">18.0</convertedBuyItNowPrice><startTime>2011-07-20T17:27:49.000Z</startTime><endTime>2011-07-27T17:27:49.000Z</endTime><listingType>AuctionWithBIN</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>4000</conditionId><conditionDisplayName>Very
|
658
|
+
Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>250859002131</itemId><title>Little
|
659
|
+
Mermaid 2-Disc & Ariel''s Beginning 1-Disc DVDs</title><globalId>EBAY-US</globalId><subtitle>Out
|
660
|
+
of Print</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
661
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/2508590021314040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-2-Disc-Ariels-Beginning-1-Disc-DVDs-/250859002131?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
662
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>98106</postalCode><location>Seattle,WA,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
663
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
664
|
+
currencyId="USD">15.99</currentPrice><convertedCurrentPrice currencyId="USD">15.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P4DT2H8M21S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>true</buyItNowAvailable><buyItNowPrice
|
665
|
+
currencyId="USD">17.99</buyItNowPrice><convertedBuyItNowPrice currencyId="USD">17.99</convertedBuyItNowPrice><startTime>2011-07-20T20:33:31.000Z</startTime><endTime>2011-07-27T20:33:31.000Z</endTime><listingType>AuctionWithBIN</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>5000</conditionId><conditionDisplayName>Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>342228638643</itemId><title>The
|
666
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum Edition) (DVD, 2006)</title><globalId>EBAY-US</globalId><subtitle>UD</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
667
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/3422286386434040_0.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-Edition-DVD-2006-/342228638643?pt=LH_DefaultDomain_0</viewItemURL><productId
|
668
|
+
type="ReferenceID">53039031</productId><autoPay>false</autoPay><location>USA</location><country>US</country><shippingInfo><shippingServiceCost
|
669
|
+
currencyId="USD">2.99</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>0</handlingTime><shipToLocations>None</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
670
|
+
currencyId="USD">10.5</currentPrice><convertedCurrentPrice currencyId="USD">10.5</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P9124DT13H13M58S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-23T07:39:08.000Z</startTime><endTime>2036-07-16T07:39:08.000Z</endTime><listingType>FixedPrice</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>4000</conditionId><conditionDisplayName>Very
|
671
|
+
Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>150635228690</itemId><title>The
|
672
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
673
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/1506352286904040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/150635228690?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
674
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><location>USA</location><country>US</country><shippingInfo><shippingServiceCost
|
675
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
676
|
+
currencyId="USD">9.99</currentPrice><convertedCurrentPrice currencyId="USD">9.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P4DT8H36M40S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-21T03:01:50.000Z</startTime><endTime>2011-07-28T03:01:50.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>2750</conditionId><conditionDisplayName>Like
|
677
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>290590306813</itemId><title>The
|
678
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><subtitle>Slipcover
|
679
|
+
Included * 100% Satisfaction Guaranteed * </subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
680
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/2905903068134040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/290590306813?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
681
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>07304</postalCode><location>Jersey
|
682
|
+
City,NJ,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
683
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>FlatDomesticCalculatedInternational</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
684
|
+
currencyId="USD">11.99</currentPrice><convertedCurrentPrice currencyId="USD">11.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P4DT6H52M36S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-23T01:17:46.000Z</startTime><endTime>2011-07-28T01:17:46.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
685
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>290589660763</itemId><title>Walt
|
686
|
+
Disney The Little Mermaid 1 2 3 DVD LOT *MINT*</title><globalId>EBAY-US</globalId><subtitle>Return
|
687
|
+
to the Sea & Ariel''s Beginning All w/ Slipcovers</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
688
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/2905896607634040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Walt-Disney-Little-Mermaid-1-2-3-DVD-LOT-MINT-/290589660763?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
689
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>19606</postalCode><location>Reading,PA,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
690
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
691
|
+
currencyId="USD">12.5</currentPrice><convertedCurrentPrice currencyId="USD">12.5</convertedCurrentPrice><bidCount>6</bidCount><sellingState>Active</sellingState><timeLeft>P2DT8H11M34S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-21T02:36:44.000Z</startTime><endTime>2011-07-26T02:36:44.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><galleryPlusPictureURL>http://galleryplus.ebayimg.com/ws/web/290589660763_1_0_1.jpg</galleryPlusPictureURL><condition><conditionId>2750</conditionId><conditionDisplayName>Like
|
692
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>390300088725</itemId><title>Disney''s
|
693
|
+
Little Mermaid 2-Disc Platinum Edition DVD</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
694
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/3903000887254040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Disneys-Little-Mermaid-2-Disc-Platinum-Edition-DVD-/390300088725?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
695
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>34208</postalCode><location>Bradenton,FL,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
696
|
+
currencyId="USD">2.99</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>US</shipToLocations><shipToLocations>CA</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
697
|
+
currencyId="USD">21.24</currentPrice><convertedCurrentPrice currencyId="USD">21.24</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P27DT19H45M36S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-03-23T14:05:46.000Z</startTime><endTime>2011-08-20T14:10:46.000Z</endTime><listingType>StoreInventory</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>4000</conditionId><conditionDisplayName>Very
|
698
|
+
Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>220817163153</itemId><title>NEW
|
699
|
+
DISNEY THE LITTLE MERMAID PLATINUM EDITION DVD OOP</title><globalId>EBAY-US</globalId><subtitle>BUENA
|
700
|
+
VISTA STAMP...SLIPCOVER...BRAND NEW</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
701
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/2208171631534040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/NEW-DISNEY-LITTLE-MERMAID-PLATINUM-EDITION-DVD-OOP-/220817163153?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
702
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>96789</postalCode><location>Mililani,HI,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
703
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
704
|
+
currencyId="USD">29.99</currentPrice><convertedCurrentPrice currencyId="USD">29.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P4DT4H16M21S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>true</buyItNowAvailable><buyItNowPrice
|
705
|
+
currencyId="USD">32.99</buyItNowPrice><convertedBuyItNowPrice currencyId="USD">32.99</convertedBuyItNowPrice><startTime>2011-07-20T22:41:31.000Z</startTime><endTime>2011-07-27T22:41:31.000Z</endTime><listingType>AuctionWithBIN</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
706
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>110718578069</itemId><title>The
|
707
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
708
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs2.ebaystatic.com/pict/1107185780694040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/110718578069?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
709
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>98282</postalCode><location>Camano
|
710
|
+
Island,WA,USA</location><country>US</country><shippingInfo><shippingType>Calculated</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
711
|
+
currencyId="USD">9.99</currentPrice><convertedCurrentPrice currencyId="USD">9.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P5DT4H20M59S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-21T22:46:09.000Z</startTime><endTime>2011-07-28T22:46:09.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>2750</conditionId><conditionDisplayName>Like
|
712
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>320731764572</itemId><title>The
|
713
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><subtitle>Combined
|
714
|
+
Shipping 50%Off Discount & More (See Below)</subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
715
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs1.ebaystatic.com/pict/3207317645724040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/320731764572?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
716
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><location>USA</location><country>US</country><shippingInfo><shippingServiceCost
|
717
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>2</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
718
|
+
currencyId="USD">12.99</currentPrice><convertedCurrentPrice currencyId="USD">12.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P5DT2H10M56S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>true</buyItNowAvailable><buyItNowPrice
|
719
|
+
currencyId="USD">14.45</buyItNowPrice><convertedBuyItNowPrice currencyId="USD">14.45</convertedBuyItNowPrice><startTime>2011-07-21T20:36:07.000Z</startTime><endTime>2011-07-28T20:36:06.000Z</endTime><listingType>AuctionWithBIN</listingType><gift>false</gift></listingInfo><returnsAccepted>false</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
720
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>150618239239</itemId><title>The
|
721
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum)</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
722
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/1506182392394040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/150618239239?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
723
|
+
type="ReferenceID">53039031</productId><paymentMethod>CashOnPickup</paymentMethod><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>49503</postalCode><location>Grand
|
724
|
+
Rapids,MI,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
725
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>false</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>5</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
726
|
+
currencyId="USD">11.99</currentPrice><convertedCurrentPrice currencyId="USD">11.99</convertedCurrentPrice><sellingState>Active</sellingState><timeLeft>P19DT3H50M6S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-06-13T04:10:31.000Z</startTime><endTime>2011-08-11T22:15:16.000Z</endTime><listingType>FixedPrice</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>4000</conditionId><conditionDisplayName>Very
|
727
|
+
Good</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>320731884307</itemId><title>The
|
728
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
729
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs4.ebaystatic.com/pict/3207318843074040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/320731884307?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
730
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>29644</postalCode><location>Fountain
|
731
|
+
Inn,SC,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
732
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>Flat</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>3</handlingTime><shipToLocations>US</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
733
|
+
currencyId="USD">8.99</currentPrice><convertedCurrentPrice currencyId="USD">8.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P3DT8H9M43S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>true</buyItNowAvailable><buyItNowPrice
|
734
|
+
currencyId="USD">15.0</buyItNowPrice><convertedBuyItNowPrice currencyId="USD">15.0</convertedBuyItNowPrice><startTime>2011-07-22T02:35:54.000Z</startTime><endTime>2011-07-27T02:34:53.000Z</endTime><listingType>AuctionWithBIN</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
735
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item><item><itemId>290589957642</itemId><title>The
|
736
|
+
Little Mermaid (DVD, 2006, 2-Disc Set, Platinum ...</title><globalId>EBAY-US</globalId><subtitle>Slipcover
|
737
|
+
Included * 100% Satisfaction Guaranteed * </subtitle><primaryCategory><categoryId>617</categoryId><categoryName>DVD,
|
738
|
+
HD DVD & Blu-ray</categoryName></primaryCategory><galleryURL>http://thumbs3.ebaystatic.com/pict/2905899576424040_1.jpg</galleryURL><viewItemURL>http://cgi.ebay.com/Little-Mermaid-DVD-2006-2-Disc-Set-Platinum-/290589957642?pt=US_DVD_HD_DVD_Blu_ray</viewItemURL><productId
|
739
|
+
type="ReferenceID">53039031</productId><paymentMethod>PayPal</paymentMethod><autoPay>false</autoPay><postalCode>07304</postalCode><location>Jersey
|
740
|
+
City,NJ,USA</location><country>US</country><shippingInfo><shippingServiceCost
|
741
|
+
currencyId="USD">3.0</shippingServiceCost><shippingType>FlatDomesticCalculatedInternational</shippingType><expeditedShipping>true</expeditedShipping><oneDayShippingAvailable>false</oneDayShippingAvailable><handlingTime>1</handlingTime><shipToLocations>Worldwide</shipToLocations></shippingInfo><sellingStatus><currentPrice
|
742
|
+
currencyId="USD">14.99</currentPrice><convertedCurrentPrice currencyId="USD">14.99</convertedCurrentPrice><bidCount>0</bidCount><sellingState>Active</sellingState><timeLeft>P5DT5H42M37S</timeLeft></sellingStatus><listingInfo><bestOfferEnabled>false</bestOfferEnabled><buyItNowAvailable>false</buyItNowAvailable><startTime>2011-07-22T00:07:48.000Z</startTime><endTime>2011-07-29T00:07:47.000Z</endTime><listingType>Auction</listingType><gift>false</gift></listingInfo><returnsAccepted>true</returnsAccepted><condition><conditionId>1000</conditionId><conditionDisplayName>Brand
|
743
|
+
New</conditionDisplayName></condition><isMultiVariationListing>false</isMultiVariationListing></item></searchResult><paginationOutput><pageNumber>1</pageNumber><entriesPerPage>100</entriesPerPage><totalPages>2</totalPages><totalEntries>156</totalEntries></paginationOutput><itemSearchURL>http://www.ebay.com/ctg/53039031?_ddo=1&_ipg=100&_pgn=1</itemSearchURL></findItemsByProductResponse>'
|
744
|
+
http_version: '1.1'
|