fletcher 0.4.2 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile CHANGED
@@ -12,4 +12,6 @@ group :development do
12
12
  gem "rspec"
13
13
  gem "factory_girl"
14
14
  gem "i18n"
15
+ gem "vcr"
16
+ gem "fakeweb"
15
17
  end
@@ -7,6 +7,7 @@ GEM
7
7
  diff-lcs (1.1.3)
8
8
  factory_girl (2.6.4)
9
9
  activesupport (>= 2.3.9)
10
+ fakeweb (1.3.0)
10
11
  git (1.2.5)
11
12
  hashie (1.2.0)
12
13
  i18n (0.6.0)
@@ -31,6 +32,7 @@ GEM
31
32
  diff-lcs (~> 1.1.2)
32
33
  rspec-mocks (2.7.0)
33
34
  shoulda (2.11.3)
35
+ vcr (2.2.5)
34
36
 
35
37
  PLATFORMS
36
38
  ruby
@@ -38,6 +40,7 @@ PLATFORMS
38
40
  DEPENDENCIES
39
41
  bundler
40
42
  factory_girl
43
+ fakeweb
41
44
  hashie
42
45
  i18n
43
46
  jeweler (~> 1.6.4)
@@ -46,3 +49,4 @@ DEPENDENCIES
46
49
  rcov
47
50
  rspec
48
51
  shoulda
52
+ vcr
data/README.md CHANGED
@@ -1,7 +1,8 @@
1
1
  # Fletcher
2
- [![Build Status](http://travis-ci.org/hulihanapplications/fletcher.png)](http://travis-ci.org/hulihanapplications/fletcher)
2
+ [![Build Status](https://travis-ci.org/hulihanapplications/fletcher.png)](http://travis-ci.org/hulihanapplications/fletcher)
3
3
 
4
4
 
5
+
5
6
  Fletcher is a cross-website product/model information fetcher. Give fletcher a product url and you'll get back a nice, simple object that's easy to work with.
6
7
 
7
8
  ## Features
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.4.2
1
+ 0.5.0
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "fletcher"
8
- s.version = "0.4.2"
8
+ s.version = "0.5.0"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Dave Hulihan", "Hulihan Applications"]
12
- s.date = "2012-08-17"
12
+ s.date = "2012-10-14"
13
13
  s.description = "Easily fetch product/model information from third party websites such as Amazon, eBay, etc."
14
14
  s.email = "dave@hulihanapplications.com"
15
15
  s.extra_rdoc_files = [
@@ -35,6 +35,7 @@ Gem::Specification.new do |s|
35
35
  "lib/fletcher/models/gamecouk.rb",
36
36
  "lib/fletcher/models/googleshopping.rb",
37
37
  "lib/fletcher/models/playcom.rb",
38
+ "lib/fletcher/models/steam.rb",
38
39
  "lib/fletcher/models/thinkgeek.rb",
39
40
  "lib/fletcher/nokogiri.rb",
40
41
  "lib/fletcher/string.rb",
@@ -47,11 +48,15 @@ Gem::Specification.new do |s|
47
48
  "spec/lib/fletcher/models/gamecouk_spec.rb",
48
49
  "spec/lib/fletcher/models/googleshopping_spec.rb",
49
50
  "spec/lib/fletcher/models/playcom_spec.rb",
51
+ "spec/lib/fletcher/models/steam_spec.rb",
50
52
  "spec/lib/fletcher/models/thinkgeek_spec.rb",
51
53
  "spec/lib/fletcher/nokogiri_spec.rb",
52
54
  "spec/lib/fletcher_spec.rb",
53
55
  "spec/spec_helper.rb",
54
56
  "spec/support/benchmark.rb",
57
+ "spec/support/vcr.rb",
58
+ "spec/vcr/ebay_fetch.yml",
59
+ "spec/vcr/ebay_model.yml",
55
60
  "test/helper.rb",
56
61
  "test/test_fletcher.rb"
57
62
  ]
@@ -75,6 +80,8 @@ Gem::Specification.new do |s|
75
80
  s.add_development_dependency(%q<rspec>, [">= 0"])
76
81
  s.add_development_dependency(%q<factory_girl>, [">= 0"])
77
82
  s.add_development_dependency(%q<i18n>, [">= 0"])
83
+ s.add_development_dependency(%q<vcr>, [">= 0"])
84
+ s.add_development_dependency(%q<fakeweb>, [">= 0"])
78
85
  else
79
86
  s.add_dependency(%q<hashie>, [">= 0"])
80
87
  s.add_dependency(%q<nokogiri>, [">= 0"])
@@ -86,6 +93,8 @@ Gem::Specification.new do |s|
86
93
  s.add_dependency(%q<rspec>, [">= 0"])
87
94
  s.add_dependency(%q<factory_girl>, [">= 0"])
88
95
  s.add_dependency(%q<i18n>, [">= 0"])
96
+ s.add_dependency(%q<vcr>, [">= 0"])
97
+ s.add_dependency(%q<fakeweb>, [">= 0"])
89
98
  end
90
99
  else
91
100
  s.add_dependency(%q<hashie>, [">= 0"])
@@ -98,6 +107,8 @@ Gem::Specification.new do |s|
98
107
  s.add_dependency(%q<rspec>, [">= 0"])
99
108
  s.add_dependency(%q<factory_girl>, [">= 0"])
100
109
  s.add_dependency(%q<i18n>, [">= 0"])
110
+ s.add_dependency(%q<vcr>, [">= 0"])
111
+ s.add_dependency(%q<fakeweb>, [">= 0"])
101
112
  end
102
113
  end
103
114
 
@@ -27,6 +27,8 @@ module Fletcher
27
27
  model = :playcom
28
28
  elsif host =~ Fletcher::Model::Thinkgeek.regexp
29
29
  model = :thinkgeek
30
+ elsif host =~ Fletcher::Model::Steam.regexp
31
+ model = :steam
30
32
  else
31
33
  model = :unknown
32
34
  raise ArgumentError, "Fletcher doesn't support #{host} yet."
@@ -20,6 +20,8 @@ module Fletcher
20
20
  model = Fletcher::Model::Googleshopping.new
21
21
  when :gamecouk
22
22
  model = Fletcher::Model::Gamecouk.new
23
+ when :steam
24
+ model = Fletcher::Model::Steam.new
23
25
  when :playcom
24
26
  model = Fletcher::Model::Playcom.new
25
27
  end
@@ -16,7 +16,7 @@ module Fletcher
16
16
  self.name = doc.xpath("//div[@id='item-title']/h1").first_string
17
17
 
18
18
  # Get Description
19
- self.description = doc.xpath("//div[@id='item-description']/div[@class='section-content']").first_string
19
+ self.description = doc.xpath("//div[@id='item-description']/div[contains(@class,'section-content')]").first_string
20
20
 
21
21
  # Get Price
22
22
  parse_price(doc.xpath("//div[@class='item-amount']").first_string)
File without changes
File without changes
File without changes
@@ -0,0 +1,30 @@
1
+ module Fletcher
2
+ module Model
3
+ class Steam < Fletcher::Model::Base
4
+ # A regular expression for determining if a url comes from a specific service/website
5
+ def self.regexp
6
+ /store\.steampowered\.com/
7
+ end
8
+
9
+ # Parse data and look for object attributes to give to object
10
+ def parse(data)
11
+ super(data)
12
+ case doc
13
+ when Nokogiri::HTML::Document
14
+ # Get Name
15
+ self.name = doc.css('div#main_content div.apphub_AppName').first_string
16
+
17
+ # Get Description
18
+ self.description = doc.css("div#main_content div#game_area_description").first_string
19
+
20
+ # Get Price
21
+ parse_price( doc.css('div.leftcol.game_description_column div.game_purchase_price.price').first_string )
22
+
23
+ # Get Images
24
+ self.images = doc.css('div.screenshot_holder a[@href]').attribute_array.collect{|img| img[:href] }
25
+ self.image = images.first
26
+ end
27
+ end
28
+ end
29
+ end
30
+ end
@@ -23,7 +23,7 @@ FactoryGirl.define do
23
23
  end
24
24
 
25
25
  factory :amazon, :parent => :base do
26
- url "http://www.amazon.com/Kindle-Fire-Amazon-Tablet/dp/B0051VVOB2"
26
+ url "http://www.amazon.com/gp/product/B004HZYA6E/"
27
27
  end
28
28
 
29
29
  # This may need to be updated if the item is expired/deleted
@@ -50,4 +50,9 @@ FactoryGirl.define do
50
50
  factory :playcom, :parent => :base do
51
51
  url "http://www.play.com/DVD/DVD/4-/14805648/-/Product.html"
52
52
  end
53
+
54
+ factory :steam, :parent=> :base do
55
+ url "http://store.steampowered.com/app/212580/"
56
+ end
57
+
53
58
  end
@@ -8,7 +8,7 @@ describe Fletcher::Data do
8
8
  end
9
9
 
10
10
  describe "read" do
11
- it "should return a valid document" do
11
+ it "should return a valid document", :vcr do
12
12
  doc = Fletcher::Data.read(Factory(:valid).url)
13
13
  end
14
14
 
@@ -1,7 +1,7 @@
1
1
  require 'spec_helper'
2
2
 
3
3
  describe Fletcher::Model::Amazon do
4
- describe "parse" do
4
+ describe "parse", :vcr do
5
5
  context "with valid data" do
6
6
  it "should return correct model info" do
7
7
  model = described_class.new
@@ -9,7 +9,7 @@ describe Fletcher::Model::Base do
9
9
  end
10
10
  end
11
11
 
12
- describe "parse_price" do
12
+ describe "parse_price", :vcr do
13
13
  it "should return a price float and currency" do
14
14
  model = Factory.build(:sample)
15
15
  model.parse_price(model.raw_price)
@@ -1,16 +1,16 @@
1
1
  require 'spec_helper'
2
2
 
3
- describe Fletcher::Model::Ebay do
3
+ describe Fletcher::Model::Ebay, :vcr => { :cassette_name => "ebay_model" } do
4
4
  describe "parse" do
5
5
  context "with valid data" do
6
6
  # Diable Realtime Test, too inconsistent
7
- # it "should return correct model info" do
8
- # model = described_class.new
9
- # model.parse Fletcher::Data.read(Factory(:ebay).url)
10
- # model.name.should_not be_nil
11
- # model.price.should_not be_nil
12
- # model.image.should_not be_nil
13
- # end
7
+ it "should return correct model info" do
8
+ model = described_class.new
9
+ model.parse Fletcher::Data.read(Factory(:ebay).url)
10
+ model.name.should_not be_nil
11
+ model.price.should_not be_nil
12
+ model.image.should_not be_nil
13
+ end
14
14
  end
15
15
  end
16
16
  end
@@ -1,7 +1,7 @@
1
1
  require 'spec_helper'
2
2
 
3
- describe Fletcher::Model::Etsy do
4
- describe "parse" do
3
+ describe Fletcher::Model::Etsy, :vcr do
4
+ describe "parse" do
5
5
  context "with valid data" do
6
6
  it "should return correct model info" do
7
7
  model = described_class.new
@@ -1,6 +1,6 @@
1
1
  require 'spec_helper'
2
2
 
3
- describe Fletcher::Model::Gamecouk do
3
+ describe Fletcher::Model::Gamecouk, :vcr do
4
4
  describe "parse" do
5
5
  context "with valid data" do
6
6
  it "should return correct model info" do
@@ -1,6 +1,6 @@
1
1
  require 'spec_helper'
2
2
 
3
- describe Fletcher::Model::Googleshopping do
3
+ describe Fletcher::Model::Googleshopping, :vcr do
4
4
  describe "parse" do
5
5
  context "with valid data" do
6
6
  it "should return correct model info" do
@@ -1,6 +1,6 @@
1
1
  require 'spec_helper'
2
2
 
3
- describe Fletcher::Model::Playcom do
3
+ describe Fletcher::Model::Playcom, :vcr do
4
4
  describe "parse" do
5
5
  context "with valid data" do
6
6
  it "should return correct model info" do
@@ -0,0 +1,20 @@
1
+ require 'spec_helper'
2
+
3
+ describe Fletcher::Model::Steam, :vcr do
4
+ describe "parse" do
5
+ context "with valid data" do
6
+ it "should return correct model info" do
7
+ model = described_class.new
8
+ model.parse Fletcher::Data.read(Factory(:steam).url)
9
+ model.doc = nil
10
+ model.description = ''
11
+ model.name.should_not be_nil
12
+ model.description.should_not be_nil
13
+ model.description.class.should == String
14
+ model.price.should_not be_nil
15
+ model.image.should_not be_nil
16
+ model.images.should_not be_empty
17
+ end
18
+ end
19
+ end
20
+ end
@@ -1,6 +1,6 @@
1
1
  require 'spec_helper'
2
2
 
3
- describe Fletcher::Model::Thinkgeek do
3
+ describe Fletcher::Model::Thinkgeek, :vcr do
4
4
  describe "parse" do
5
5
  context "with valid data" do
6
6
  it "should return correct model info" do
@@ -4,12 +4,12 @@ describe Fletcher::Nokogiri::HTML::Document do
4
4
 
5
5
  end
6
6
 
7
- describe Fletcher::Nokogiri::XML::NodeSet do
7
+ describe Fletcher::Nokogiri::XML::NodeSet, :vcr do
8
8
  before :each do
9
9
  @doc = Fletcher::Data.read(Factory(:valid).url)
10
10
  end
11
11
 
12
- describe "first_string" do
12
+ describe "first_string", :vcr do
13
13
  it "should return a valid string" do
14
14
  nodeset = @doc.xpath(Factory(:valid).title_xpath)
15
15
  string = nodeset.first_string
@@ -17,7 +17,7 @@ describe Fletcher::Nokogiri::XML::NodeSet do
17
17
  end
18
18
  end
19
19
 
20
- describe "attribute_array" do
20
+ describe "attribute_array", :vcr do
21
21
  it "should return an array of attribute hashes" do
22
22
  nodeset = @doc.xpath(Factory(:valid).images_xpath)
23
23
  attribute_array = nodeset.attribute_array
@@ -1,8 +1,8 @@
1
1
  require 'spec_helper'
2
2
 
3
- describe Fletcher do
3
+ describe Fletcher, :vcr do
4
4
  context :models do
5
- describe :identify_model do
5
+ describe :identify_model, :vcr do
6
6
  it "should raise an error when using an unsupported domain" do
7
7
  lambda{described_class.identify_model(Factory(:invalid).url)}.should raise_error
8
8
  end
@@ -14,7 +14,7 @@ describe Fletcher do
14
14
  end
15
15
  end
16
16
 
17
- describe :fetch do
17
+ describe :fetch, :vcr do
18
18
  # for model in Fletcher.models
19
19
  # it "should return valid data for #{model} model" do
20
20
  # item = described_class.fetch(Factory(model).url)
@@ -32,11 +32,11 @@ describe Fletcher do
32
32
  end
33
33
 
34
34
  # Disable ebay fetch test, since auctions always end
35
- # it "should fetch ebay product" do
36
- # item = described_class.fetch(Factory(:ebay).url)
37
- # item.should_not be_nil
38
- # item.name.should_not be_nil
39
- # end
35
+ it "should fetch ebay product", :vcr => { :cassette_name => "ebay_fetch" } do
36
+ item = described_class.fetch(Factory(:ebay).url)
37
+ item.should_not be_nil
38
+ item.name.should_not be_nil
39
+ end
40
40
 
41
41
  it "should fetch etsy product" do
42
42
  item = described_class.fetch(Factory(:etsy).url)
@@ -71,7 +71,7 @@ describe Fletcher do
71
71
  item.should_not be_nil
72
72
  item.name.should_not be_nil
73
73
  item.description.should_not be_nil
74
- end
74
+ end
75
75
  end
76
76
  end
77
77
 
@@ -2,6 +2,7 @@ require File.expand_path("../../lib/fletcher", __FILE__)
2
2
 
3
3
  # Include Factories
4
4
  require "factory_girl"
5
+ require 'vcr'
5
6
  Dir["#{File.dirname(__FILE__)}/factories/**/*.rb"].each {|f| require f}
6
7
 
7
8
  Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}
@@ -0,0 +1,8 @@
1
+ VCR.configure do |c|
2
+ c.cassette_library_dir = ["spec", "vcr"].join('/')
3
+ c.hook_into :fakeweb
4
+ c.configure_rspec_metadata!
5
+ end
6
+ RSpec.configure do |c|
7
+ c.treat_symbols_as_metadata_keys_with_true_values = true
8
+ end
@@ -0,0 +1,1849 @@
1
+ ---
2
+ recorded_with: VCR 2.2.5
3
+ http_interactions:
4
+ - request:
5
+ method: get
6
+ uri: http://www.ebay.com/itm/Franklin-Library-3V-ESSAYS-MONTAIGNE-Leather-Great-Books-1979-Donald-Frame-/190654183378
7
+ body:
8
+ string: ""
9
+ headers:
10
+ user-agent:
11
+ - Ruby/1.8.7
12
+ accept:
13
+ - "*/*"
14
+ response:
15
+ status:
16
+ code: 200
17
+ message: OK
18
+ headers:
19
+ transfer-encoding:
20
+ - chunked
21
+ content-type:
22
+ - text/html;charset=UTF-8
23
+ set-cookie:
24
+ - JSESSIONID=37696193AA5B15BE82D60A2C5CDBB721; Path=/
25
+ - ebay=%5Esbf%3D%23%5E;Domain=.ebay.com;Path=/
26
+ - dp1=bu1p/QEBfX0BAX19AQA**525b3062^bl/GB543c63e2^;Domain=.ebay.com;Expires=Mon, 13-Oct-2014 23:44:34 GMT;Path=/
27
+ - s=CgAD4ACBQe05iNWM4M2QzMTMxM2EwYTU2YTBmMjc3YTE3ZmZmZWQ4ZmGohcBO;Domain=.ebay.com;Path=/; HttpOnly
28
+ - nonsession=CgAAIABxQoYniMTM1MDE3MTg3NHgxOTA2NTQxODMzNzh4MHgyTgDLAAFQegPqMQDKACBZ3/5iNWM4M2QzMTMxM2EwYTU2YTBmMjc3YTE3ZmZmZWQ4ZmHYDXA3;Domain=.ebay.com;Expires=Sun, 13-Oct-2013 23:44:34 GMT;Path=/
29
+ - lucky9=2356859;Domain=.ebay.com;Expires=Thu, 12-Oct-2017 23:44:34 GMT;Path=/
30
+ date:
31
+ - Sat, 13 Oct 2012 23:44:34 GMT
32
+ content-language:
33
+ - en-US
34
+ server:
35
+ - Apache-Coyote/1.1
36
+ rlogid:
37
+ - t6ulcpjqcj9%3Fvo%7B2d71f%2B%3E20g-13a5c83d31c-0x10f
38
+ body:
39
+ string: |-
40
+ <!DOCTYPE html>
41
+ <html xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://opengraphprotocol.org/schema/">
42
+ <head>
43
+ <!-- fix for IE freezing. -->
44
+ <style type="text/css">
45
+ body #Body .btn, body #Body c-std {
46
+ filter:none;
47
+ -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#0079bc',endColorstr='#00509d')";
48
+ }
49
+ </style>
50
+ <meta name="layout" content="main" />
51
+ <!-- Use ?ForceSiteSpeedGauge=true for forcing -->
52
+ <script>var oGaugeInfo = {sUrl:"http://sofe.ebay.com/ws/web/SojPagePerf?cmdname=ViewItemPageRaptor&st1=1350171874077",iST:(new Date()).getTime()};</script>
53
+ <title> Franklin Library 3V ESSAYS OF MONTAIGNE Leather Great Books 1979 Donald Frame | eBay</title>
54
+ <meta name="y_key" content="acf32e2a69cbc2b0"></meta>
55
+ <meta name="description" content="Franklin Library 3V ESSAYS OF MONTAIGNE Leather Great Books 1979 Donald Frame in Books, Antiquarian & Collectible | eBay"></meta>
56
+ <meta property="og:type" content="ebay-objects:item"></meta>
57
+ <meta property="og:site_name" content="eBay"></meta>
58
+ <meta name="google-site-verification" content="8kHr3jd3Z43q1ovwo0KVgo_NZKIEMjthBxti8m8fYTg"></meta>
59
+ <meta name="msvalidate.01" content="31154A785F516EC9842FC3BA2A70FB1A"></meta>
60
+ <meta property="og:url" content="http://www.ebay.com/itm/Franklin-Library-3V-ESSAYS-OF-MONTAIGNE-Leather-Great-Books-1979-Donald-Frame-/190654183378"></meta>
61
+ <meta property="og:title" content="Franklin Library 3V ESSAYS OF MONTAIGNE Leather Great Books 1979 Donald Frame"></meta>
62
+ <meta property="og:description" content="Franklin Library 3V ESSAYS OF MONTAIGNE Leather Great Books 1979 Donald Frame in Books, Antiquarian & Collectible | eBay"></meta>
63
+ <meta name="keywords" content="Franklin Library 3V ESSAYS OF MONTAIGNE Leather Great Books 1979 Donald Frame , Books, Antiquarian & Collectible"></meta>
64
+ <meta property="og:image" content="http://thumbs3.ebaystatic.com/m/m-PgbjucPVLBAyxAyfAjMZg/96.jpg"></meta>
65
+ <meta property="fb:app_id" content="102628213125203"></meta>
66
+ <link rel="canonical"
67
+
68
+ href="http://www.ebay.com/itm/Franklin-Library-3V-ESSAYS-OF-MONTAIGNE-Leather-Great-Books-1979-Donald-Frame-/190654183378"> </link>
69
+ <!--[if IE]><link/><![endif]-->
70
+ <!--[if lt IE 8]>
71
+ <![endif]-->
72
+ <link href="http://ir.ebaystatic.com/z/qr/2baf5yrduiyrblwvn3w45ethg.css" type="text/css" rel="stylesheet"><link rel="stylesheet" type="text/css" href="http://gh.ebaystatic.com/header/css/all.min?combo=53&rvr=67&app=RAPTOR&siteid=0&factor=REFRESHER"/><!-- Merch CSS -->
73
+
74
+ </head>
75
+ <body>
76
+ <div id="Head">
77
+ </div>
78
+ <div id="Body" class="sz940 " itemscope="itemscope" itemtype="http://schema.org/Product">
79
+ <div id="TopPanelDF"><div id="Top">
80
+ <div id="TopPanel">
81
+ <a class="gh-hdn" href="#mainContent">Skip to main content</a><div id=gh class="gh-post1010 gh-w gh-site-0"><table class=gh-tbl><tr><td class=gh-td><a id="gh-la" _sp="m570.l2586" class="iclg" href="http://www.ebay.com">eBay<img alt="" src="http://p.ebaystatic.com/aw/pics/s.gif" id="gh-logo" class="gspr iclg" border="0"></a></td><td class=gh-td><div id=gh-shop><a id="gh-shop-a" href="http://www.ebay.com/sch/allcategories/all-categories?_trksid=m570.l3694">Browse by<span id=gh-shop-e>category<i id=gh-shop-ei ></i></span></a></div></td></td><td class=gh-td-s><form action="http://www.ebay.com/sch/i.html" method=get id=gh-f class="lftd l-shad"><input type=hidden value=m570.l3201 name=_trksid><table class=gh-tbl2><tr><td class=gh-td-s><div id=gh-ac-box><div id=gh-ac-box2><label class="gh-hdn g-hdn" for="gh-ac">Enter your search keyword</label><input autocomplete=on name=_nkw id=gh-ac title="Enter your search keyword" maxlength=300 size=50 class=gh-tb type=text ></div></div></td><td class=gh-td><div id="gh-cat-box"><select name=_sacat id=gh-cat size=1 class=gh-sb title="Select a category for search"><option value="0" selected="selected">All Categories </option></select></div></td> <td class=gh-td><input value="Search" id=gh-btn class="btn btn-ter" type=submit _sp="m570.l1313"/></td><td class=gh-td><div id=gh-as><a title="Advanced Search" id="gh-as-a" _sp="m570.l2614" class="thrd" href="http://www.ebay.com/sch/ebayadvsearch/?rt=nc">Advanced</a></div></td> </tr></table></form></td></tr></table><div id=gh-top><noscript class=gh-t id=_nkw>Welcome, (<a class="gh-a" href="https://signin.ebay.com/ws/eBayISAPI.dll?SignIn&_trksid=m570.l3348">Sign in</a> to bid or buy)</noscript><ul id=gh-topl><li id=gh-eb-u class=gh-t></li><li class=gh-t><a id="gh-p1" _sp="m570.l3188" href="http://deals.ebay.com/">Daily Deals</a></li></ul><ul id=gh-eb class=gh-clearfix><li class=gh-eb-li id=gh-eb-My><a _sp="m570.l2919" class="gh-eb-li-a" href="http://my.ebay.com/ws/eBayISAPI.dll?MyEbay&amp;gbh=1">My eBay</a></li><li class=gh-eb-li id=gh-eb-Sell><a _sp="m570.l1528" class="gh-eb-li-a" href="http://cgi5.ebay.com/ws/eBayISAPI.dll?aidZ153=&MfcISAPICommand=SellHub3">Sell</a></li><li class=gh-eb-li id=gh-eb-Comm><a _sp="m570.l1540" class="gh-eb-li-a" href="http://community.ebay.com">Community</a></li><li class=gh-eb-li id=gh-eb-Cust><a _sp="m570.l1545" class="gh-eb-li-a" href="http://ocs.ebay.com/ws/eBayISAPI.dll?CustomerSupport">Customer Support</a></li><li class=gh-eb-li id=gh-cart><a _sp="m570.l2633" class="gh-eb-li-a" href="http://cart.payments.ebay.com/sc/view"><i class="gspr icsc"></i>Cart</a></li></ul></div></div><a name="mainContent"></a> <!--ts:2012.10.12.17:46--><!--rq:--><table width="100%" class="vi-bc-topM"><tr><td>
82
+ <div class="bc-cnt" style="width:100%">
83
+ <div class="u-flL" id="vi-bcrumb-smb" style="width:100%">
84
+ <table>
85
+ <tr>
86
+ <td class="vi-bc-valignT" id="vi-bc-smbTd">
87
+ <span class="smbHead" style="white-space:nowrap;">
88
+ <a href="http://www.ebay.com" title="Click to Go Back to home page" id="smtBackToAnchor">
89
+ <img src="http://p.ebaystatic.com/aw/pics/icon/iconLtArrow_20x20.gif" height="20" width="20" border="0" align="middle" alt="Click to Go Back to home page" >
90
+ <span>Back to home page</span>
91
+ </a>
92
+ </span>
93
+ </td>
94
+ <td class="vi-bc-valignT">
95
+ <span id="vi_pg_brdcrmb_pipe">
96
+ <div class="u-flL bc-pipe" id="vi-bcrumb-pipe">&nbsp;|&nbsp;</div>
97
+ </span>
98
+ </td>
99
+ <td id="vi-bcrumb1">
100
+ <span id="vi_pg_brdcrmb">
101
+ <div class="bc-lbl u-flL">Listed in category:</div>
102
+ <ul class="bc-ul u-flL">
103
+ <li>
104
+ <span class="bc-w">
105
+ <a href="http://www.ebay.com/sch/Books-/267/i.html">Books</a>
106
+ <span class="bc-ar">&gt;</span>
107
+ <span class="bc-sel"><a href="http://www.ebay.com/sch/Antiquarian-Collectible-/29223/i.html">Antiquarian & Collectible</a></span>
108
+ </span>
109
+ </li>
110
+ </ul>
111
+ </span>
112
+ </td></tr>
113
+ </table>
114
+ </div>
115
+ </div>
116
+ </td>
117
+ <td class="vi-bc-svyTd" id="vi-bcrumb-survy">
118
+ <div class="vi-bc-svySpn">
119
+ <link href="http://ir.ebaystatic.com/z/mf/duovypg5ae2rldwccbldg1thl.css" type="text/css" rel="stylesheet"><a rel="nofollow" id="surveylink" href="javascript:void(0)"></a>
120
+ </div>
121
+ </td></tr></table>
122
+ </div>
123
+ </div>
124
+ </div><div id="CenterPanelDF"><div id="CenterPanel">
125
+ <!-- msgType.code eq 3 -->
126
+ <div class="tmpnl">
127
+ <div id="msgPanel" class="pnl u-dspn">
128
+ <div class="msg ">
129
+ <div class="msgPad ">
130
+ <span id="w1-4-_msg" class="msgTextAlign" ></span>
131
+ <span id="listPanel">
132
+ <span id="w1-5-_lmsgC" class="u-dspn" >
133
+ <span id="w1-5-_lmsg"></span>
134
+
135
+ <span id="w1-5-_rmvC">
136
+ <span class="addSpace">|</span>
137
+ <a id="w1-5-_rmv" class="vi_lst_tpm_rmv" href="javascript:;"></a>
138
+ </span>
139
+ <div id="w1-5-_lstP" class="lpnl " >
140
+ <div class="scroll" >
141
+ <div id="w1-5-_lstC" class="listC" >
142
+ <!-- <a>list name 1 </a>
143
+ <a>list name 1 </a>
144
+ <a>list name 1 </a>
145
+ <a>list name 1 </a>
146
+ <a>list name 1 </a>
147
+ <a>list name 1 </a>
148
+ <a>list name 1 </a> -->
149
+ </div>
150
+ </div>
151
+ </div>
152
+ </span>
153
+
154
+ <!-- TODO: set myebay url -->
155
+
156
+ </span>
157
+ </div>
158
+
159
+ </div>
160
+ </div><div id="listingHistory"></div><div id="otherMsg"></div></div>
161
+
162
+ <div id="vi_sme_prmts_bnr_cntr"></div>
163
+
164
+ <!-- Placement 100011 && 100012 -->
165
+ <div id="PicturePanel" class="pp-c">
166
+ <div class="pp-ic pp-ic300">
167
+ <div class=" img img300">
168
+ <table class="img img300">
169
+ <tbody>
170
+ <tr>
171
+ <td class="img img300">
172
+ <div id="picturePanelIcon"><img id="freeShip" src="http://pics.ebaystatic.com/aw/pics/images/spacer.gif" alt="FREE shipping" class="picIcon freeShip" style="left:255px;display:none;" />
173
+ </div><div id="test"><!-- test --></div><a href="javascript:;" style="display: block; cursor: default;">
174
+ <div id="mainImgHldr" style="width:300px" title="Franklin-Library-3V-ESSAYS-OF-MONTAIGNE-Leather-Great-Books-1979-Donald-Frame">
175
+ <!-- <span id="mainImgHldr" style="display: inline-block;"> -->
176
+ <img id="icThrImg"
177
+ class="img img300 vi-hide-mImgThr" src="http://p.ebaystatic.com/aw/pics/globalAssets/imgLoading_30x30.gif" imgsel="0" alt="Franklin-Library-3V-ESSAYS-OF-MONTAIGNE-Leather-Great-Books-1979-Donald-Frame" /> <img id="icImg" class="img img300" itemprop="image" src="http://i.ebayimg.com/t/Franklin-Library-3V-ESSAYS-OF-MONTAIGNE-Leather-Great-Books-1979-Donald-Frame-/00/$(KGrHqIOKiYE2of1(,woBN2CSp3Mm!~~_35.JPG" style="display:none;" clk="" alt="" />
178
+ <!-- </span> -->
179
+ </div>
180
+ </a>
181
+ <span id="imgNATxt" class="imgNa">Image not available</span>
182
+ <span id="varImgNATxt" class="imgNa" style="display:none">Photos not available for this variation</span>
183
+ <noscript><style type="text/css">.vi-hide-mImgThr {display: none;}</style><img id="icImg" class="img img300" itemprop="image" src="http://i.ebayimg.com/t/Franklin-Library-3V-ESSAYS-OF-MONTAIGNE-Leather-Great-Books-1979-Donald-Frame-/00/$(KGrHqIOKiYE2of1(,woBN2CSp3Mm!~~_35.JPG" style="" clk="" /></noscript>
184
+ <script type="text/javascript">
185
+ function picOnLoad(isSetClkId){
186
+ var elem = document.getElementById('icThrImg');
187
+ var pic = document.getElementById('icImg');
188
+ elem.style.display = 'none';
189
+ pic.style.display = '';
190
+ if(isSetClkId) {
191
+ pic.setAttribute('clk', elem.getAttribute('imgsel'));
192
+ }
193
+ document.getElementById('imgNATxt').style.display = 'none';
194
+ return;
195
+ }
196
+ function picOnError(){
197
+ var elemThr = document.getElementById('icThrImg');
198
+ var pic = document.getElementById('icImg');
199
+ elemThr.src='http://pics.ebaystatic.com/aw/pics/cmp/icn/iconImgNA_96x96.gif';
200
+ elemThr.style.display = '';
201
+ pic.style.display = 'none';
202
+ pic.setAttribute('clk', elemThr.getAttribute('imgsel'));
203
+ document.getElementById('imgNATxt').style.display = 'block';
204
+ return;
205
+ }
206
+ var image = document.createElement('img');
207
+ image.src= 'http://i.ebayimg.com/t/Franklin-Library-3V-ESSAYS-OF-MONTAIGNE-Leather-Great-Books-1979-Donald-Frame-/00/$(KGrHqIOKiYE2of1(,woBN2CSp3Mm!~~_35.JPG';
208
+ if(image.complete || image.readyState === 4){
209
+ picOnLoad(true);
210
+ }else{
211
+ image.onload = function(){
212
+ picOnLoad(true);
213
+ };
214
+ image.onerror = function(){
215
+ picOnError();
216
+ };
217
+ }
218
+ image.onerror = function(){
219
+ picOnError();
220
+ };
221
+ </script>
222
+ </td>
223
+ </tr>
224
+ </tbody>
225
+ </table>
226
+ </div>
227
+ <div class="spr"></div>
228
+ <div class="pt-p" style="visibility:hidden;" id="zoom_enlarge_msg_cnt">
229
+ <a class="pt-i pt-tx " id="zoom_enlarge_msg" href="javascript:;"></a>
230
+ </div>
231
+
232
+ <div class="oly_upnl" id="vi_pic_enlarge_oly"><div id="enlarge_panel" class="vi_en_panel">
233
+ <div id="enlarge_img_panel" class="vi_en_img" >
234
+ <table class="en_img_tbl">
235
+ <tbody>
236
+ <tr>
237
+ <td class="en_img_tbl">
238
+ <div id="en_img_span" style="overflow:hidden; display:inline-block; position: relative;">
239
+ <div id="en_img_span_cnt" style="top:0; left:0; position:absolute;display: inline;"><img id="en_img_id" style="display: none;" alt="" src="http://pics.ebaystatic.com/aw/pics/spacer.gif" clk=""></div>
240
+ <span id="en_layer_selector"></span>
241
+ </div>
242
+ </td>
243
+ </tr>
244
+ </tbody>
245
+ </table>
246
+ </div>
247
+ <div id="enlarge_img_fs" class="vi_en_fs">
248
+ <ul id="en_fs_ul" class="lst icon">
249
+ </ul>
250
+ </div>
251
+ </div>
252
+ </div>
253
+ </div>
254
+ <div class="vi-pbh">
255
+ <center>
256
+ <table width="">
257
+ <tr>
258
+ <td width="100%" style="text-align:center">
259
+ <a class="vi-slt " rel="nofollow" href="http://cgi5.ebay.com/ws/eBayISAPI.dll?SellLikeItem&_trksid=p2047675.l2567&rt=nc&item=190654183378">
260
+ <b></b>
261
+ Sell one like this</a>
262
+ </td>
263
+ </tr>
264
+ </table>
265
+ </center>
266
+ </div>
267
+ </div>
268
+
269
+ <div >
270
+ <h1 class="it-ttl" itemprop="name" id="itemTitle">Franklin Library 3V ESSAYS OF MONTAIGNE Leather Great Books 1979 Donald Frame </h1>
271
+ <div ></div>
272
+ <div class="sig-ht20" style="display:inline"><span id="ebay-scjs-div" ><eb:fbLikeWantOwn spid="2047675" url="http://www.ebay.com/itm/Franklin-Library-3V-ESSAYS-MONTAIGNE-Leather-Great-Books-1979-Donald-Frame-/190654183378" /></span>
273
+ </div>
274
+ <span class="watchPipe" style="position:relative;top:5px;visibility:hidden">|</span>
275
+ <!-- DO NOT change linkToTagId="rwid" as the catalog response has this ID set -->
276
+ </div>
277
+ <div class="it-rlBr it-rlBr300 "></div>
278
+ <div id="RightSummaryPanel" class="rsp-c">
279
+ <div class="share si-cnt no-flt" style="">
280
+ <table align="right" class=" ">
281
+ <tr>
282
+ <td>
283
+ <div style="float:right;width:100px;">
284
+ <div id="ebay-scShare-div" data-imageUrl="" data-share=" " data-url="http://www.ebay.com/itm/Franklin-Library-3V-ESSAYS-MONTAIGNE-Leather-Great-Books-1979-Donald-Frame-/190654183378" data-language="en_US" data-spid="2047675" data-destinations="email,facebook,twitter,pinterest" class="eb:share" ></div>
285
+ </div>
286
+ </td>
287
+ <td>
288
+ <div class="watchLnk">
289
+ <span id="linkTopAct" class="watchlinkSpan " style="display: ">
290
+ <span class="watchPipe">|</span>
291
+ <span>
292
+ <a href="http://cgi1.ebay.com/ws/eBayISAPI.dll?MakeTrack&_trksid=p2047675.l1359&rt=nc&item=190654183378&tagId=-99&sourcePage=4340&ssPageName=VIP:watchlink:top:en&wt=ef297dee67fe2674d8a7786e802c309b&etn=Watch list" class=" " id="watchLink" title="" rel="nofollow">Add to Watch list</a></span>
293
+ </span>
294
+ </div>
295
+ </td>
296
+ </tr>
297
+ </table>
298
+ </div>
299
+ <div class="si-cnt si-cnt-eu">
300
+ <div >
301
+ <div class="si-inner">
302
+ <div class="si-content">
303
+ <h2 class="si-ttl">
304
+ Seller information</h2>
305
+ <div class="bdg-90">
306
+ <div class="mbg">
307
+ <a href="http://myworld.ebay.com/zedsbooks?_trksid=p2047675.l2559" title="zedsbooks"> <span class="mbg-nw">zedsbooks</span></a>
308
+
309
+ <span class="mbg-l">
310
+
311
+ (<a href="http://feedback.ebay.com/ws/eBayISAPI.dll?ViewFeedback&userid=zedsbooks&iid=190654183378&ssPageName=VIP:feedback&ftab=FeedbackAsSeller&rt=nc&_trksid=p2047675.l2560" title="Feedback Score: 10769 ">10769</a>
312
+ <img
313
+ alt="Feedback Score: 10769 "
314
+ title="Feedback Score: 10769 "
315
+ src="http://pics.ebaystatic.com/aw/pics/star-11.gif"">)
316
+ &nbsp;</span>
317
+ <span class="mbg-l">
318
+ </span>
319
+
320
+ </div>
321
+ <div id="si-fb" >100%&nbsp;Positive feedback</div>
322
+ </div>
323
+ <div class="si-rlDot"></div>
324
+ <div class="si-bdg si-pd-eu">
325
+ <div class="si-pd-a">
326
+ <a href="http://my.ebay.com/ws/eBayISAPI.dll?AcceptSavedSeller&mode=0&preference=0&sellerid=zedsbooks&rt=nc&ru=http%3A%2F%2Fcgi.ebay.com%2Fws%2FeBayISAPI.dll%3FViewItemNext%26item%3D190654183378&ssPageName=STRK:MEFS:ADDVI&_trksid=p2047675.l2561" rel="nofollow">Save this seller</a>
327
+ </div>
328
+ <div class="si-pd-a">
329
+ <a href="http://www.ebay.com/sch/zedsbooks/m.html?item=190654183378&rt=nc&_trksid=p2047675.l2562">See other items</a>
330
+ </div>
331
+ </div>
332
+ <div id="storeSeller" style="display:inline;"><div class="si-ss-eu">
333
+ <div class="u-flL si-ss-lbl " id="">
334
+ Visit store:</div><a href="http://stores.ebay.com/Zeds-Books?_trksid=p2047675.l2563" alt="Zeds Books" title="Zeds Books"><img src="http://pics.ebaystatic.com/aw/pics/s.gif" alt="Ebay Stores" height="1" width="1" class="si-ss-spr" /> Zeds Books</a>
335
+ </div>
336
+ </div></div>
337
+ </div>
338
+ </div>
339
+ </div><div id="rtm_html_1527"></div>
340
+ </div>
341
+ <!--[if IE 7]><style type="text/css">.lsp-c{min-width: 380px!important;}</style><![endif]-->
342
+
343
+ <div id="LeftSummaryPanel" class="lsp-c lsp-cRight lsp-cL300 ">
344
+ <div class="is " style="overflow:hidden;">
345
+ <form action="http://offer.ebay.com/ws/eBayISAPI.dll?BinController&_trksid=p2047675.l1356&rev=5&item=190654183378&fromPage=2047675&quantity=1&fb=1&gch=1" method="post" name="viactiondetails">
346
+ <div class="nonActPanel">
347
+ <div>
348
+ <div class="u-flL lable">Item condition:</div>
349
+ <div class="u-flL condText">--</div>
350
+ </div>
351
+
352
+ <div class="u-cb" style="height: 6px;"></div>
353
+
354
+ <div class="u-cb spcr"></div>
355
+ <div class="u-cb spcr"></div>
356
+ </div>
357
+ <div class="actPanel">
358
+ <!-- //TODO : remove hardcoded ID for Shipping cost -->
359
+
360
+ <div class="u-cb spcr"></div>
361
+
362
+ <div class="u-cb">
363
+ <div class="u-flL lable binLable" id="prcIsum-lbl">Price:</div>
364
+ <div class="u-flL w29 vi-price" itemprop="offers" itemscope="itemscope"
365
+ itemtype="http://schema.org/Offer">
366
+ <span id="prcIsum" itemprop="price">US $250.00</span>
367
+ <span itemprop="availability" content="http://schema.org/OnlineOnly"></span>
368
+ <span itemprop="priceCurrency" content="USD"></span>
369
+ <!--Added for VAT message - DE site. Show VAT included msg just below the price. Converted price message should come after this message.-->
370
+ <!-- Vat Excluded message -->
371
+ </div>
372
+ <div class="u-flL">
373
+ <span class="vib s bl vibs1" >
374
+ <input style="" id="binBtn_btn" class="bt" type="submit" onclick="javascript:return false;" value="Buy It Now"
375
+ title="" />
376
+ </span>
377
+ </div>
378
+ </div>
379
+ <div class="u-cb spcr"></div>
380
+ <div class="u-cb">
381
+ <div class="u-flL lable">&nbsp</div>
382
+ <div class="u-flL w29">&nbsp</div>
383
+ <span>
384
+ <!--[if lt IE 8]><style type="text/css">.vib #isCartBtn_btn{padding-top:6px !important;} .vib.s #isCartBtn_btn{padding-top:3px !important;} .atc-icon-ie{display: inline-block !important; padding-left: 4px !important;}</style><![endif]-->
385
+ <span class="vib s bl vibs1" >
386
+ <a style="" id="isCartBtn_btn" class="bt" title="" href="http://payments.ebay.com/ws/eBayISAPI.dll?ShopCartProcessor&_trksid=p2047675.l1473&atc=true&item=190654183378&ssPageName=CART:ATC&quantity=1" >
387
+ Add to cart&nbsp;<span class='atc-icon atc-icon-ie'></span></a>
388
+ </span>
389
+ </span>
390
+ </div>
391
+ <div class="u-cb spcr"></div>
392
+ <!--[if lt IE 8]>
393
+ <style>
394
+ .sz980 .vi-VR-qmarkAlgn, .sz1200 .vi-VR-qmarkAlgn{
395
+ vertical-align:top;
396
+ position:relative;
397
+ top:10px;
398
+ padding-left:5px;
399
+ }
400
+ body span.vi-VR-splitFrndsBubble {
401
+ display:inline-block;
402
+ width:12px;
403
+ vertical-align:top;
404
+ }
405
+ </style>
406
+ <![endif]-->
407
+ <div class="sprtr"></div>
408
+ <div class="u-cb spcr"></div>
409
+ <div class="u-cb">
410
+ <div class="u-flL lable">Best Offer:</div>
411
+ <div class="u-flL w29">&nbsp</div>
412
+ <div class="u-flL">
413
+ <span class="vib s bl vibs1" >
414
+ <a style="" id="boBtn_btn" class="bt" title="" href="http://offer.ebay.com/ws/eBayISAPI.dll?MakeBestOffer&rev=5&itemId=190654183378" >
415
+ Make Offer</a>
416
+ </span>
417
+ <div class="oly_upnl" id="e1"><div class="bo-olp">
418
+ <div id="_BO_CNT_ID">
419
+ </div>
420
+ <div id="_BO_TRBR_ID" class="bo-trbr">
421
+ <div>Loading... </div>
422
+ <div class="bo-trbr-txt"><a href="http://offer.ebay.com/ws/eBayISAPI.dll?MakeBestOffer&amp;rev=5&amp;itemId=190654183378&amp;_trksid=p2047675.l3239">Resume making your offer</a>, if the page does not update immediately. </div>
423
+ </div>
424
+ </div>
425
+ </div>
426
+ </div>
427
+ </div>
428
+ <div class="u-cb spcr"></div>
429
+ </div>
430
+
431
+ <wrty:Warranty model="com.ebay.raptor.viewitem.pres.model.WarrantyModel@2b3a2b3a" cssSlot="page-css" jsSlot="body-js" configModel=""/>
432
+ <!--[if lt IE 8]>
433
+ <style>
434
+ body .sz980 .vi-VR-qmarkAlgn{
435
+ vertical-align:top;
436
+ position:relative;
437
+ top:10px;
438
+ padding-left:5px;
439
+ }
440
+
441
+ </style>
442
+ <![endif]-->
443
+ <div class="watchListCmp">
444
+ <div class="u-flL lable">&nbsp;</div>
445
+ <div class="u-flL w29">&nbsp;</div>
446
+ <div class="u-flL">
447
+ <div class="drpdwnCmp">
448
+ <span id="atl_btn" class="drpdwnBtn vi-VR-lst-L" >
449
+ <a id="atl_btn_lnk" i="-99" n="Watch list" href="javascript:;">Add to Watch list</a>
450
+ </span>
451
+ <span id="atl_arr" class="drpdwnIn btn-split-m vi-VR-lstIcon-L" >
452
+ <a href="javascript:;" class=""></a>
453
+ </span>
454
+ </div><div id="addToListDropdown"><div id="atl_drpdwnLayerId" class="drpdwnLayer " style="display:none; min-width:150px;">
455
+ <div id="atl_drpdwnListId">
456
+ <ul class="addToList">
457
+ <li>
458
+ <a i="-99" n="Watch list" id="atl_-99" href="javascript:;">Add to Watch list</a>
459
+ </li>
460
+ <li>
461
+ <a t='wish' i="-97" n="Wish list" id="atl_-97" href="javascript:;">Add to Wish list</a>
462
+ </li>
463
+ </ul>
464
+ </div>
465
+ <div class="drpdwnBrk"></div>
466
+ <div id="atl_atnId" class="vi_list_atn">
467
+ <a n="addtolist" id="atl_addtolist" href="https://signin.ebay.com/ws/eBayISAPI.dll?SignIn&ru=http%3A%2F%2Fcgi.ebay.com%2Fws%2FeBayISAPI.dll%3FViewItem%26actionType%3Dsinginformore%26item%3D190654183378">Sign in for more lists</a>
468
+ </div>
469
+ </div>
470
+
471
+ <!-- adding to new list overlay -->
472
+ </div></div>
473
+ <div class="u-cb spcr"></div>
474
+ <div id="atl_status_msg" class="atlstatusMsg"><div class="atlStatusMasgSpr">&nbsp;</div><span id="atl_status_msg_content" ></span></div>
475
+ </div><!--[if IE ]>
476
+ <style>
477
+ body div#eBayNectarMsg {
478
+ height:100%;
479
+ }
480
+ </style>
481
+ <![endif]-->
482
+ <div class="u-cb spcr"></div><div id="incentiveDiv" class="">
483
+ <div class="incContDiv">
484
+ <div id="bmlDiv">
485
+ <div style="">
486
+ <table>
487
+ <tbody>
488
+ <tr>
489
+ <td valign="top" class="vi-VR-firstcol">
490
+ <img width="77" height="18" alt="BillMeLater" src="http://pics.ebaystatic.com/aw/pics/payments/bml/logoBML_77x18.gif">
491
+ </td>
492
+ <td style="padding-top:4px;" class="vi-VR-scndcol">
493
+ <span class="bmlDispMsg"><span style=" font-family:Arial, Helvetica, sans-serif; font-size:13px; color:#333333"> <strong>Spend $99 -$498 and get 6 months to pay</strong></span><br><span style=" font-family:Arial, Helvetica, sans-serif; font-size:13px; color:#333333">Subject to credit approval.</span></span>
494
+ <span style="padding-left:5px">
495
+ <a target="_blank" class="bmlDispLink" href="https://www.billmelater.com/cm/paypal/landers/12ebaybmlappNBk.html">See terms</a>
496
+ </span>
497
+ </td>
498
+ </tr>
499
+ </tbody>
500
+ </table>
501
+ </div>
502
+ </div>
503
+ </div>
504
+ </div>
505
+
506
+ <div id="shippingSummary"><div class="u-cb spcr"></div>
507
+ <div id="sh-gspLogoWrapper" style="display:none;">
508
+ <div class="u-cb spcr"></div>
509
+ <div class="sh-gspShadow">
510
+ <div class="sh-gspLeftShadow"></div>
511
+ <div class="sh-gspRightShadow"></div>
512
+ </div>
513
+ <div class="u-flL lable">
514
+ <div class="sh-gspLogo"></div>
515
+ </div>
516
+ <div class="u-flL sh-col">
517
+ <div class="sh-gspFirstLine">No additional charges at delivery!</div>
518
+ <div class="sh-gspSecondLine" >
519
+ This item will be shipped through the Global Shipping Program and includes international tracking. <a href="http://pages.ebay.com/help/buy/shipping-globally.html" target="_blank">Learn more</a></div>
520
+ <div class="sh-gspDashedBorder"></div>
521
+ </div>
522
+ </div>
523
+
524
+
525
+ <div>
526
+ <div class="u-flL lable">Shipping:</div>
527
+ <div class="u-flL sh-col">
528
+ <span id="shSummary">
529
+ <!-- TODO:check whether to display none or not -->
530
+ <span id="fshippingCost" class="sh-cst">
531
+ <span>$7.39</span>
532
+ </span>
533
+ <span id="fShippingSvc">
534
+ Economy Shipping<!-- GSP -->
535
+ </span>
536
+ <span> | </span>
537
+ <span>
538
+ <a id="e2" href="#shId" class="si-pd sh-nwr"> See details </a>
539
+ </span>
540
+ </span>
541
+ <!-- Build Estimated delivery and CBT message -->
542
+ </div>
543
+ <div class="clear"></div>
544
+ </div>
545
+ </div><div class="lable u-flL">&nbsp;</div>
546
+ <div class="u-flL iti-w75">
547
+ <div class="iti-eu-txt iti-spacing">
548
+ <div class="iti-eu-label u-flL" id="">
549
+ Item location:</div><div class="iti-eu-bld-gry">Springfield, Virginia, United States</div>
550
+ <div class="clear"></div>
551
+ </div>
552
+ </div>
553
+ <div class="u-cb"></div>
554
+ <div id="shipsTo"><div class="lable u-flL">&nbsp;</div>
555
+ <div class="u-flL iti-w75">
556
+ <div class="iti-eu-txt iti-spacing">
557
+ <div class="iti-eu-label u-flL">Ships to: </div>
558
+ <div class="iti-eu-bld-gry vi-shp-pdg-rt">
559
+ Worldwide</div>
560
+ </div>
561
+ </div>
562
+ </div><div id="deliverySummary"><div class="u-cb spcr"></div>
563
+ <div id="impchSummary" style="display: none;">
564
+ <div class="u-flL lable">Import charges:</div>
565
+ <div class="u-flL sh-col">
566
+ <div>
567
+ <span id="impch_show" style="display: none;">
568
+ <span id="impchCost" class="sh-impchCost"></span>
569
+ (amount confirmed at checkout) </span>
570
+ <span id="impch_xo" style="">To be provided at checkout </span>
571
+ <span class="sh-bubble">
572
+ <a id="imprthlp" class="sh-qmark" href="javascript:;">&nbsp;</a>
573
+ </span>
574
+ <div class="oly_upnl" id="imprtoly"><div class="vi-shp-shpolay">
575
+ This amount includes applicable customs duties, taxes, brokerage and other fees. This amount is subject to change until you make payment. For additional information, see the Global Shipping Program <a href="http://pages.ebay.com/shipping/globalshipping/buyer-tnc.html" target="_blank">terms and conditions</a></div>
576
+ </div>
577
+ </div>
578
+ </div>
579
+ <div class="u-cb spcr"></div>
580
+ </div><div class="u-flL lable">Delivery:</div>
581
+ <div class="u-flL sh-col">
582
+ <span id="delSummary">
583
+ <!-- Fi rst shipping service's cost -->
584
+ <!-- PC 5555 cases -->
585
+ <div role="alert" class="sh-del-frst ">
586
+ Estimated between <span><b>Wed. Oct. 17 and Wed. Oct. 24</b></span><span class="sh-bubble">
587
+ <a id="hldhlp" class="sh-qmark" href="javascript:;">&nbsp;</a>
588
+ </span>
589
+ <div class="oly_upnl" id="w1-23-overlay"><div class="vi-shp-shpolay">
590
+ <a href="http://pages.ebay.com/help/buy/contextual/estimated-delivery.html" target="_blank">Estimated delivery dates <b class="g-hdn">[newWindowTxt]</b></a> include seller's handling time, and will depend on shipping service selected and receipt of <a href="http://pages.ebay.com/help/buy/contextual/domestic-handling-time.html" target="_blank">cleared payment<b class="g-hdn">[newWindowTxt]</b></a>. Delivery times may vary, especially during peak periods.</div>
591
+ </div>
592
+ </div>
593
+ </span>
594
+ </div>
595
+ </div><div class="u-cb spcr"></div>
596
+ <div class="u-flL lable" id="">
597
+ Payments:</div><div class="u-flL rpColWid">
598
+ <div id="payDet1">
599
+ <img class="pd-img" src="http://pics.ebaystatic.com/aw/pics/logos/logoPayPal_51x14.gif" alt="PayPal" border="0"/>
600
+ ,&nbsp;Bill Me Later<span>&nbsp;|&nbsp;<a rel="nofollow"></a><a id="e5" href="#payId" class="pd-lnk ">See <b class="u-dspn">payment</b> details</a></span>
601
+ </div>
602
+ </div><div class="u-cb spcr"></div>
603
+ <div>
604
+ <div class="u-flL lable">Returns:</div>
605
+ <div class="u-flL rpColWid">
606
+ <table width="100%">
607
+ <tr>
608
+ <td class="rpWrapCol">
609
+ 14 days&nbsp;money back,&nbsp;buyer pays return shipping&nbsp;|&nbsp;<a rel="nofollow"></a><a href="#rpdId" class="si-pd" id="e6">Read details</a>
610
+ </td>
611
+ </tr>
612
+ </table>
613
+ </div>
614
+
615
+ </div>
616
+
617
+ <div class="u-cb spcr"></div>
618
+ <div style="overflow:hidden">
619
+ <table width="100%" class="u-cb spcr" style="width: 100%; overflow: hidden;">
620
+ <tr style="width: 100%; overflow: hidden;"><td style="width: 100%; overflow: hidden;">
621
+ <div class="vi-bg-cpn vi-bg-cm" id="ebpHdr" style="width: 100%; overflow: hidden;">
622
+ <div class="vi-bg-oh vi-bg-cpn" style="width: 100%; overflow: hidden;">
623
+ <div class="vi-bg-crp vi-bg-sh vi-bg-logo"></div>
624
+ <div id="ebpVarWidth" class="vi-bg-bgn vi-bg-cpn vi-bg-oh vi-bg-l65 " style="z-index:0;left: 65px; width: 93% "></div>
625
+ </div>
626
+ <div class="vi-bg-il vi-bg-bdrh vi-bg-crp vi-ebp-raptr">
627
+ <div class="vi-bg-txth"></div>
628
+ <div class="vi-bg-stxt"></div>
629
+ <span class="vi-g-btn">
630
+ <a href="http://pages.ebay.com/coverage/index.html">Learn more<b class="g-hdn">about eBay Buyer Protection - opens in a new window or tab</b></a></span>
631
+ </div>
632
+ </div>
633
+ </td></tr>
634
+ </table>
635
+ </div>
636
+ </form>
637
+ </div>
638
+
639
+
640
+ <!-- The attribute(value) of UseJsTag is null. --></div>
641
+ <div style="clear:both"></div></div>
642
+
643
+ </div><div id="vi_zoomEnl_plc_hldr"></div>
644
+ <div id="BottomPanelDF"><div id="BottomPanel">
645
+ <!-- <h2> Bottom panel for Description </h2> -->
646
+ <!-- Placement 100005 -->
647
+
648
+ <div style="height:20px; width:100%; clear:both; "></div> <!-- TODO:remove this line -->
649
+ <div class="pglv-pr-rep">
650
+ <a href="http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&rt=nc&item=190654183378&si=Fo1C1ZeJUseDU5ewGwuP%2FjeyuDw%3D&print=all&category=29223" class="" target="_blank">Print</a>
651
+
652
+ |
653
+ <a href="http://cgi1.ebay.com/ws/eBayISAPI.dll?ReportThisItemRedirect&_trksid=p2047675.l2566&rt=nc&active=1&itemid=190654183378&seller=zedsbooks" class="" target="_blank">Report item</a>
654
+ </div><div class="tab_wp" id="viTabs">
655
+ <div class="tab g">
656
+ <a id="viTabs_0" class="item sel" href="javascript:;">Description</a>
657
+ <a id="viTabs_1" class="item " href="javascript:;">Shipping and payments</a>
658
+ <div class="tab_clr"></div>
659
+ </div>
660
+ <div id="viTabs_0_cnt" class="content sel">
661
+ <!-- call this inside Tab for Item description -->
662
+ <div class="iti-eu-txt iti-eu-pd u-flR iti-ncntr">
663
+ <div class="u-flR">190654183378</div>
664
+ <div class="iti-lbl u-flR iti-num" id="">
665
+ Item number:</div></div>
666
+ <div id="readMore" class="ds-lgl-txt u-cb">
667
+ Seller assumes all responsibility for this listing.</div><div class="vi-desc-revHistory">
668
+ <div>
669
+ <span class="vi-desc-revHistory-lbl">Last updated on</span>
670
+ &nbsp;Aug 22, 2012 05:37:28 PDT&nbsp;
671
+ <span><a href="http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItemRevisionDetails&_trksid=p2047675.l2569&rt=nc&item=190654183378">View all revisions</a>
672
+ </span>
673
+ </div>
674
+ </div><div class="itemAttr">
675
+ <div class="section">
676
+ <h3>Item specifics</h3>
677
+ <!-- New Item condition bottom of page changes. -->
678
+ <table width="100%" cellspacing="0" cellpadding="0">
679
+ <tr>
680
+ <th>
681
+ Binding: </th>
682
+
683
+ <td width="50.0%">
684
+ Leather</td>
685
+ <th>
686
+ Origin: </th>
687
+
688
+ <td width="50.0%">
689
+ American</td>
690
+ </tr>
691
+ <tr>
692
+ <th>
693
+ Subject: </th>
694
+
695
+ <td width="50.0%">
696
+ Literature & Fiction</td>
697
+ <th>
698
+ Printing Year: </th>
699
+
700
+ <td width="50.0%">
701
+ 1979</td>
702
+ </tr>
703
+ <tr>
704
+ <th>
705
+ Topic: </th>
706
+
707
+ <td width="50.0%">
708
+ Literature, Modern</td>
709
+ <th>
710
+ 3rd Level Category: </th>
711
+
712
+ <td width="50.0%">
713
+ Classics</td>
714
+ </tr>
715
+ <tr>
716
+ <th>
717
+ Special Attributes: </th>
718
+
719
+ <td width="50.0%">
720
+ 1st Edition, Illustrated</td>
721
+ </tr>
722
+ <!-- Added for see review link -->
723
+ </table>
724
+
725
+ </div>
726
+ </div>
727
+ <div class="sh-cnt u-cb">
728
+ <div class="sh-hdr" style='background-color: #006633;'>
729
+ <div class="u-flL" style='color: #E8E5D3;'><h3 class="sh-ttl">Zeds Books</h3></div>
730
+ <div class="sh-vs u-flR" style='color: #E8E5D3;'>
731
+ Visit my eBay store&nbsp;
732
+ <a href="http://stores.ebay.com/Zeds-Books?_trksid=p2047675.l2568"><img class="sh-vs-img" src="http://pics.ebaystatic.com/aw/pics/s.gif" border="0" alt="Zeds Books"></a></div>
733
+ </div>
734
+ <div class="sh-inner" style='background-color: #E8E5D3;'>
735
+ <div>
736
+ <div class="sh-info u-flL">
737
+ <div class="sh-info-lnk">
738
+ <a href="http://my.ebay.com/ws/eBayISAPI.dll?AcceptSavedSeller&linkname=includenewsletter&sellerid=zedsbooks&_trksid=">Sign up for newsletter</a>
739
+ </div>
740
+ </div>
741
+ </div>
742
+ </div>
743
+ </div>
744
+ <table width="100%">
745
+ <tr>
746
+ <td class="ds-cl" id="storeHeader">
747
+ <div class="cl-cnt u-flL">
748
+ <div class="cl-hdr" style='background-color: #006633;'>
749
+ <h3 class="cl-ttl" style='color: #E8E5D3;'>Store Categories</h3>
750
+ </div>
751
+ <div class="cl-lcat" style='background-color: #E8E5D3;'>
752
+ <div class="cl-lcat-ttl">
753
+ <a href="http://stores.ebay.com/Zeds-Books?_trksid=p2047675.l2563">Store home</a>
754
+ </div>
755
+ <ul>
756
+ <li><a href="http://stores.ebay.com/Zeds-Books/Easton-Press-/_i.html?_fsub=2">Easton Press</a><li><a href="http://stores.ebay.com/Zeds-Books/Signed-Easton-Press-/_i.html?_fsub=3">Signed Easton Press</a><li><a href="http://stores.ebay.com/Zeds-Books/Franklin-Library-/_i.html?_fsub=4">Franklin Library</a><li><a href="http://stores.ebay.com/Zeds-Books/First-Editions-/_i.html?_fsub=8">First Editions</a><li><a href="http://stores.ebay.com/Zeds-Books/Stephen-King-/_i.html?_fsub=10">Stephen King</a><li><a href="http://stores.ebay.com/Zeds-Books/Antiquarian-Literature-/_i.html?_fsub=12">Antiquarian Literature</a><li><a href="http://stores.ebay.com/Zeds-Books/Signed-First-Editions-/_i.html?_fsub=1694498014">Signed First Editions</a><li><a href="http://stores.ebay.com/Zeds-Books/Easton-Press-Set-/_i.html?_fsub=1694503014">Easton Press Set</a><li><a href="http://stores.ebay.com/Zeds-Books/Limited-Editions-Club-/_i.html?_fsub=1694528014">Limited Editions Club</a><li><a href="http://stores.ebay.com/Zeds-Books/Military-History-/_i.html?_fsub=1697260014">Military History</a><li><a href="http://stores.ebay.com/Zeds-Books/Science-Fiction-/_i.html?_fsub=1697261014">Science Fiction</a><li><a href="http://stores.ebay.com/Zeds-Books/Fantasy-/_i.html?_fsub=1697262014">Fantasy</a><li><a href="http://stores.ebay.com/Zeds-Books/History-/_i.html?_fsub=1697263014">History</a><li><a href="http://stores.ebay.com/Zeds-Books/Presidents-/_i.html?_fsub=1697264014">Presidents</a><li><a href="http://stores.ebay.com/Zeds-Books/Folio-Society-/_i.html?_fsub=1742077014">Folio Society</a><li><a href="http://stores.ebay.com/Zeds-Books/International-Collectors-Lib-/_i.html?_fsub=1743174014">Internationa<wbr/>l Collector's Lib.</a><li><a href="http://stores.ebay.com/Zeds-Books/Southern-Classics-Library-/_i.html?_fsub=1852070014">Southern Classics Library</a><li><a href="http://stores.ebay.com/Zeds-Books/Other-/_i.html?_fsub=1">Other</a></ul>
757
+ <div class="cl-spc1"></div>
758
+ </div>
759
+ </div>
760
+ </td>
761
+ <td class="ds-dtd">
762
+ <div id="desc_div">
763
+ <table align="center" style="border-spacing: 0px; width: 100%;">
764
+ <tr>
765
+ <td>
766
+ <div><img border="0" src="http://imagehost.vendio.com/img/spacers/pixel.gif">
767
+ <p><!--VGMVAGRVKGEVRGFST--><!-- GVAVLVLVEVRVYV -->
768
+ </p><center>
769
+ <script language="javascript1.1">
770
+ <!--
771
+ var MM_contentVersion = 6;
772
+ var flashplugin = (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]) ?
773
+ navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0;
774
+ if (flashplugin) {
775
+ var words = navigator.plugins["Shockwave Flash"].description.split(" ");
776
+ for(var i=0; i<words.length; ++i) {
777
+ if( isNaN(parseInt(words[i]))) continue;
778
+ var MM_PluginVersion = words[i];
779
+ }
780
+ var MM_FlashCanPlay = MM_PluginVersion >= MM_contentVersion;
781
+ }
782
+ else if (navigator.userAgent && navigator.userAgent.indexOf("MSIE")>=0 && (navigator.appVersion.indexOf("Win") != -1)) {
783
+ document.write('<SCR'+'IPT LANGUAGE=VBScript\>\n');
784
+ document.write('on error resume next\n');
785
+ document.write('MM_FlashCanPlay = ( IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash." & MM_contentVersion)))\n');
786
+ document.write('</SCR'+'IPT\>\n');
787
+ }
788
+ if (MM_FlashCanPlay) {
789
+ document.write('<OBJECT border=0 classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ');
790
+ document.write(' codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" ');
791
+ document.write(' ID="vendio_gallery" width="750" height="210" ALIGN="center">');
792
+ document.write(' <PARAM NAME=movie VALUE="http://imagehost.vendio.com/my/gallery/marquee.swf?cat=29223&SId=1&clink=0x003399&scbkg=0xf5f5f5&ctxt=0x000000&bbkg=0xbdcee7&sbkg=0xfdfae0&vName=zeddicarus"> ');
793
+ document.write(' <PARAM NAME=menu VALUE=false>');
794
+ document.write(' <PARAM NAME=quality VALUE=best>');
795
+ document.write(' <PARAM NAME=scale VALUE=noscale>');
796
+ document.write(' <PARAM NAME=wmode VALUE=transparent>');
797
+ document.write(' <PARAM NAME=salign VALUE=LT>');
798
+ document.write(' <PARAM NAME=bgcolor VALUE=#FFFFFF>');
799
+ document.write(' <EMBED src="http://imagehost.vendio.com/my/gallery/marquee.swf?cat=29223&SId=1&clink=0x003399&scbkg=0xf5f5f5&ctxt=0x000000&bbkg=0xbdcee7&sbkg=0xfdfae0&vName=zeddicarus"');
800
+ document.write(' WMODE="transparent" ALIGN="center" swLiveConnect=FALSE ');
801
+ document.write(' NAME="vendio_gallery" width="750" height="210" ');
802
+ document.write(' TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">');
803
+ document.write(' </EMBED>');
804
+ document.write(' </OBJECT>');
805
+ }
806
+ else {
807
+ document.write(' <table width="450" border=1> ');
808
+ document.write(' <tr><td bgcolor=#eeeeee align=center valign=center><br><font color=#000000 face=Arial size=2> ');
809
+ document.write(' This Vendio Gallery is best viewed with <br><br> <b>Macromedia Flash Player 6</b><br>or higher.<br><br> ');
810
+ document.write(' <a href=http://www.macromedia.com/go/getflashplayer ');
811
+ document.write(' target=_blank>Click here to get the latest<br>Macromedia Flash Player.</a> ');
812
+ document.write(' <br><img src="http://imagehost.vendio.com/my/gallery/pixel_noflash.gif?SId=1&sk=ma&vName=zeddicarus"><br>');
813
+ document.write(' <br><br></td></tr>');
814
+ document.write(' </table>');
815
+ }
816
+ //-->
817
+ </script>
818
+ <noscript></noscript></center><!--VGMVAGRVKGEVRGSND--><!--VGPVRGOVMGOVMGAVRGKVEGRVFST-->
819
+ <center><img vspace="2" src="http://imagehost.vendio.com/img/logos/88x33.gif" width="88" height="33"><br><a href="http://www.vendio.com/bin/ref.x/1272353073" target="_blank"><font color="#0000ff" size="2" face="Verdana, Arial, Helvetica, sans-serif"><b>
820
+ <div id="vgalcredit">Increase Sales by 18% and double your hits - Vendio Gallery</div></b></font></a><br><br></center><!--VGPVRGOVMGOVMGAVRGKVEGRVSND--><b>
821
+ <h3><font color="green">
822
+ <center><big>From the&nbsp;Franklin Library&nbsp;Great Books of the Western World Collection... </big></center></font></h3>
823
+ <p>
824
+ </p><center><big>
825
+ <h2></h2></big></center>
826
+ <p>
827
+ </p><h3></h3>
828
+ <h2>
829
+ <center><big><font color="navy"><font size="6">The Essays of Montaigne</font></font></big></center>
830
+ <center><big><font color="navy"><font size="2"></font></font></big><font color="navy">&nbsp;</font></center>
831
+ <center><big><font color="navy"><font size="5">Translated by Donald Frame</font></font></big></center></h2>
832
+ <h3>
833
+ <p>
834
+ </p><center><big><font color="maroon">Complete&nbsp;Three Volume Set</font></big></center>
835
+ <center><big><font color="maroon"><font size="2"><font size="2"></font></font></font></big><font color="maroon"><font size="2">&nbsp;</font></font></center>
836
+ <center><big><font color="maroon">Copyright&nbsp;1979 by The Franklin Library! </font></big></center>
837
+ <center>&nbsp;</center>
838
+ <center><big><font color="silver">Bound in Premium Full Leather!</font></big></center>
839
+ <center>&nbsp;</center>
840
+ <center>
841
+ <hr>
842
+ </center>
843
+ <center>&nbsp;</center></h3>
844
+ <center>
845
+ <p>
846
+ </p><center><img src="http://www.zedsbooks.com/Franklin/GreatBooks/EssaysMontaigne3VB/EssaysMontaigne1.jpg"> </center>
847
+ <p>
848
+ </p><hr>
849
+
850
+ <p>
851
+ </p><center>These three elusive volumes contain all of the classic Franklin Library trimmings: </center>
852
+ <center>&nbsp;</center>
853
+ <center>
854
+ <table border="0" cellspacing="0" cellpadding="0">
855
+ <tbody>
856
+ <tr>
857
+ <td>
858
+ <ul><b>
859
+ <li>Premium Leather
860
+ </li><li>Silk Moire Endleaves
861
+ </li><li>Distinctive Cover Design
862
+ </li><li>Hubbed Spine, Acccented in&nbsp;Gold
863
+ </li><li>Satin Ribbon Page Marker
864
+ </li><li>Gilded Page Edges
865
+ </li><li>Long-lasting, High Quality Acid-neutral Paper </li></b></ul></td></tr></tbody></table></center></center>
866
+ <center></center>
867
+ <p>
868
+ </p><hr>
869
+
870
+ <p>
871
+ </p><center><img src="http://www.zedsbooks.com/Franklin/GreatBooks/EssaysMontaigne3VB/EssaysMontaigne2.jpg"><img src="http://www.zedsbooks.com/Franklin/GreatBooks/EssaysMontaigne3VB/EssaysMontaigne3.jpg"><img src="http://www.zedsbooks.com/Franklin/GreatBooks/EssaysMontaigne3VB/EssaysMontaigne4.jpg"> </center>
872
+ <p>
873
+ </p><hr>
874
+
875
+ <p>Very scarce titles in any condition, these&nbsp;three volumes are in&nbsp;Excellent condition.&nbsp;&nbsp;The front and back covers are in excellent condition and the gilded page edges show moderate spotting - each contains a previous owners' bookplate affixed to the second page.&nbsp; Volume one shows water damage to the front pages.&nbsp; These books&nbsp;are part of The Great Books of the Western World Collection published by The&nbsp;Franklin Library&nbsp;and would be a beautiful addition to your library.&nbsp; Hopefully you can add this set to your collection and enjoy it in the years to come...
876
+ </p><p>
877
+ </p><hr>
878
+
879
+ <p>
880
+ </p><center><img src="http://www.zedsbooks.com/Franklin/GreatBooks/EssaysMontaigne3VB/EssaysMontaigne5.jpg"></center>
881
+ <p>
882
+ </p><hr>
883
+
884
+ <p>
885
+ </p><center><big>Please Email Me With Any Questions You Might Have!
886
+ <p>For Answers to Frequently Asked Questions, <a href="http://www.zedsbooks.com/FAQs.html">click here </a></p></big></center>
887
+ <center></center>
888
+ <p>
889
+ </p><p>Shipping Info:
890
+ </p><p>
891
+ </p><ul>
892
+ <li>Buyer To Pay Shipping and Handling
893
+ </li><li>International Bidders Pay Extra Shipping
894
+ </li><li>Seller Not Responsible For Uninsured Items Lost or Damaged in Mail </li></ul>
895
+ <p>
896
+ </p><hr>
897
+
898
+ <p>
899
+ </p><center><img src="http://www.zedsbooks.com/Franklin/GreatBooks/EssaysMontaigne3VB/EssaysMontaigne6.jpg"></center>
900
+ <p>
901
+ </p><hr>
902
+
903
+ <p>Forms of Payment Accepted:
904
+ </p><p>
905
+ </p><ul>
906
+ <li>Paypal</li></ul>
907
+ <p><big>
908
+ </big></p><center><big>Good luck and happy bidding!
909
+ <p></p></big></center></b>
910
+ <ul></ul>
911
+ <p><br>
912
+ </p><center><a href="http://pages.ebay.com/selling_manager_pro"><img border="0" src="http://pics.ebay.com/aw/pics/sellingmanager/sellingmanagerPro/smPro_248x50.gif" width="248" height="50"></a></center>
913
+ <p></p>
914
+ <center><img border="0" src="http://pics.ebay.com/aw/pics/sell/templates/images/k2/tagline.gif"> <br><font size="2" face="Arial,Helvetica">Powered by <a href="http://pages.ebay.com/turbo_lister/">eBay Turbo Lister</a> <br>The free listing tool. List your items fast and easy and manage your active items. </font></center></div>
915
+ </td>
916
+ </tr>
917
+ </table>
918
+ </div>
919
+ </td>
920
+ </tr>
921
+ </table>
922
+ <div class="asqMain">
923
+ <div class="asqHeader section-ttl">
924
+ <h3>Questions and answers about this item</h3>
925
+ <div class="rd-sep"></div>
926
+ </div>
927
+ <div class="asqContent">
928
+ No questions or answers have been posted about this item.</div>
929
+ <div class="asqFooter">
930
+ <a href="http://contact.ebay.com/ws/eBayISAPI.dll?ShowSellerFAQ&iid=190654183378&requested=zedsbooks&redirect=0&frm=284&rt=nc&_trksid=p2047675.l1499&ssPageName=PageSellerM2MFAQ_VI" >Ask a question</a>
931
+ </div>
932
+
933
+ </div><div>
934
+ <br/><br/><br/><br/><center>
935
+ <span class="BasicStyle">
936
+ 00175</span></center></div>
937
+ </div>
938
+ <div id="viTabs_1_cnt" class="content">
939
+ <div id="readMore" class="ds-lgl-txt u-cb">
940
+ Seller assumes all responsibility for this listing.</div><!-- Surround by container -->
941
+ <!-- Build Shipping and handling content -->
942
+ <div class="sh-tab-bdr">
943
+ <div id="shipNHadling" class="shippingSection_BottomVI vi-shp">
944
+ <div id="shId" class="sh-shid section-sttl">
945
+ <h3 class="sh-title">
946
+ Shipping and handling</h3>
947
+ </div>
948
+ <div id="shCost-err" class="sh-err-costNotCalculable sh-err-hide">
949
+ <span title="icon"></span>
950
+ Shipping cannot be calculated for your area. You can <a href="http://contact.ebay.com/ws/eBayISAPI.dll?ShowCoreAskSellerQuestion&amp;redirect=0&amp;requested=zedsbooks&amp;iid=190654183378" target="_blank">contact the seller</a> for additional shipping costs and services.</div>
951
+ <div id="shCost-err2" class="sh-err-costNotCalculable sh-err-hide">
952
+ <span title="icon"></span>
953
+ Shipping cost cannot be calculated. Please enter a valid ZIP Code.</div>
954
+ <div>
955
+ <div id="discounts" class="vi-dm" style="padding-left:15px">
956
+ <!-- Discounts Section -->
957
+ <!-- Need to refactor this to use one structure for both cases. But for now porting V4 code -->
958
+ <div id="discount_msg">
959
+ <strong>Save on shipping.</strong> This seller offers shipping discounts on combined purchases for eligible items.</div>
960
+ </div>
961
+ <!-- Local pickup -->
962
+ <div class="sh-loc">
963
+ Item location: Springfield, Virginia, United States</div>
964
+ <!-- ShipsTo -->
965
+ <div class="sh-sLoc">
966
+ Shipping to: Worldwide</div>
967
+ <div style="padding:5px 0px 0px 0px" ></div>
968
+ <!-- Calculate Row -->
969
+ <div class="sh_calcShipPad" id="medium">
970
+ <table width="100%" cellspacing="0" cellpadding="0" border="0">
971
+ <tbody>
972
+ <tr>
973
+ <td width="53%" nowrap="nowrap">
974
+ <div id="shCountryDiv" class="sh-InlCnt ">
975
+ <div id="shCountry-errIcn" class="sh-err-icon sh-err-hide"></div>
976
+ <label class="sh-ShipDtl" for="shCountry">Change country:</label>
977
+ <select name="country" id="shCountry" class="sh-TxtCnt sh-InlCnt" >
978
+ <option value="-99" selected>-Select-</option>
979
+ <option value="4" >Afghanistan</option>
980
+ <option value="5" >Albania</option>
981
+ <option value="6" >Algeria</option>
982
+ <option value="7" >American Samoa</option>
983
+ <option value="8" >Andorra</option>
984
+ <option value="9" >Angola</option>
985
+ <option value="10" >Anguilla</option>
986
+ <option value="11" >Antigua and Barbuda</option>
987
+ <option value="12" >Argentina</option>
988
+ <option value="13" >Armenia</option>
989
+ <option value="14" >Aruba</option>
990
+ <option value="15" >Australia</option>
991
+ <option value="16" >Austria</option>
992
+ <option value="17" >Azerbaijan Republic</option>
993
+ <option value="18" >Bahamas</option>
994
+ <option value="19" >Bahrain</option>
995
+ <option value="20" >Bangladesh</option>
996
+ <option value="21" >Barbados</option>
997
+ <option value="22" >Belarus</option>
998
+ <option value="23" >Belgium</option>
999
+ <option value="24" >Belize</option>
1000
+ <option value="25" >Benin</option>
1001
+ <option value="26" >Bermuda</option>
1002
+ <option value="27" >Bhutan</option>
1003
+ <option value="28" >Bolivia</option>
1004
+ <option value="29" >Bosnia and Herzegovina</option>
1005
+ <option value="30" >Botswana</option>
1006
+ <option value="31" >Brazil</option>
1007
+ <option value="32" >British Virgin Islands</option>
1008
+ <option value="33" >Brunei Darussalam</option>
1009
+ <option value="34" >Bulgaria</option>
1010
+ <option value="35" >Burkina Faso</option>
1011
+ <option value="37" >Burundi</option>
1012
+ <option value="38" >Cambodia</option>
1013
+ <option value="39" >Cameroon</option>
1014
+ <option value="2" >Canada</option>
1015
+ <option value="40" >Cape Verde Islands</option>
1016
+ <option value="41" >Cayman Islands</option>
1017
+ <option value="42" >Central African Republic</option>
1018
+ <option value="43" >Chad</option>
1019
+ <option value="44" >Chile</option>
1020
+ <option value="45" >China</option>
1021
+ <option value="46" >Colombia</option>
1022
+ <option value="47" >Comoros</option>
1023
+ <option value="48" >Congo, Democratic Republic of the</option>
1024
+ <option value="49" >Congo, Republic of the</option>
1025
+ <option value="50" >Cook Islands</option>
1026
+ <option value="51" >Costa Rica</option>
1027
+ <option value="52" >Cote d Ivoire (Ivory Coast)</option>
1028
+ <option value="53" >Croatia, Republic of</option>
1029
+ <option value="55" >Cyprus</option>
1030
+ <option value="56" >Czech Republic</option>
1031
+ <option value="57" >Denmark</option>
1032
+ <option value="58" >Djibouti</option>
1033
+ <option value="59" >Dominica</option>
1034
+ <option value="60" >Dominican Republic</option>
1035
+ <option value="61" >Ecuador</option>
1036
+ <option value="62" >Egypt</option>
1037
+ <option value="63" >El Salvador</option>
1038
+ <option value="64" >Equatorial Guinea</option>
1039
+ <option value="65" >Eritrea</option>
1040
+ <option value="66" >Estonia</option>
1041
+ <option value="67" >Ethiopia</option>
1042
+ <option value="68" >Falkland Islands (Islas Malvinas)</option>
1043
+ <option value="69" >Fiji</option>
1044
+ <option value="70" >Finland</option>
1045
+ <option value="71" >France</option>
1046
+ <option value="72" >French Guiana</option>
1047
+ <option value="73" >French Polynesia</option>
1048
+ <option value="74" >Gabon Republic</option>
1049
+ <option value="75" >Gambia</option>
1050
+ <option value="76" >Georgia</option>
1051
+ <option value="77" >Germany</option>
1052
+ <option value="78" >Ghana</option>
1053
+ <option value="79" >Gibraltar</option>
1054
+ <option value="80" >Greece</option>
1055
+ <option value="81" >Greenland</option>
1056
+ <option value="82" >Grenada</option>
1057
+ <option value="83" >Guadeloupe</option>
1058
+ <option value="84" >Guam</option>
1059
+ <option value="85" >Guatemala</option>
1060
+ <option value="86" >Guernsey</option>
1061
+ <option value="87" >Guinea</option>
1062
+ <option value="88" >Guinea-Bissau</option>
1063
+ <option value="89" >Guyana</option>
1064
+ <option value="90" >Haiti</option>
1065
+ <option value="91" >Honduras</option>
1066
+ <option value="92" >Hong Kong</option>
1067
+ <option value="93" >Hungary</option>
1068
+ <option value="94" >Iceland</option>
1069
+ <option value="95" >India</option>
1070
+ <option value="96" >Indonesia</option>
1071
+ <option value="98" >Iraq</option>
1072
+ <option value="99" >Ireland</option>
1073
+ <option value="100" >Israel</option>
1074
+ <option value="101" >Italy</option>
1075
+ <option value="102" >Jamaica</option>
1076
+ <option value="104" >Japan</option>
1077
+ <option value="105" >Jersey</option>
1078
+ <option value="106" >Jordan</option>
1079
+ <option value="107" >Kazakhstan</option>
1080
+ <option value="108" >Kenya</option>
1081
+ <option value="109" >Kiribati</option>
1082
+ <option value="111" >Korea, South</option>
1083
+ <option value="112" >Kuwait</option>
1084
+ <option value="113" >Kyrgyzstan</option>
1085
+ <option value="114" >Laos</option>
1086
+ <option value="115" >Latvia</option>
1087
+ <option value="116" >Lebanon</option>
1088
+ <option value="117" >Lesotho</option>
1089
+ <option value="118" >Liberia</option>
1090
+ <option value="119" >Libya</option>
1091
+ <option value="120" >Liechtenstein</option>
1092
+ <option value="121" >Lithuania</option>
1093
+ <option value="122" >Luxembourg</option>
1094
+ <option value="123" >Macau</option>
1095
+ <option value="124" >Macedonia</option>
1096
+ <option value="125" >Madagascar</option>
1097
+ <option value="126" >Malawi</option>
1098
+ <option value="127" >Malaysia</option>
1099
+ <option value="128" >Maldives</option>
1100
+ <option value="129" >Mali</option>
1101
+ <option value="130" >Malta</option>
1102
+ <option value="131" >Marshall Islands</option>
1103
+ <option value="132" >Martinique</option>
1104
+ <option value="133" >Mauritania</option>
1105
+ <option value="134" >Mauritius</option>
1106
+ <option value="135" >Mayotte</option>
1107
+ <option value="136" >Mexico</option>
1108
+ <option value="226" >Micronesia</option>
1109
+ <option value="137" >Moldova</option>
1110
+ <option value="138" >Monaco</option>
1111
+ <option value="139" >Mongolia</option>
1112
+ <option value="228" >Montenegro</option>
1113
+ <option value="140" >Montserrat</option>
1114
+ <option value="141" >Morocco</option>
1115
+ <option value="142" >Mozambique</option>
1116
+ <option value="143" >Namibia</option>
1117
+ <option value="144" >Nauru</option>
1118
+ <option value="145" >Nepal</option>
1119
+ <option value="146" >Netherlands</option>
1120
+ <option value="147" >Netherlands Antilles</option>
1121
+ <option value="148" >New Caledonia</option>
1122
+ <option value="149" >New Zealand</option>
1123
+ <option value="150" >Nicaragua</option>
1124
+ <option value="151" >Niger</option>
1125
+ <option value="152" >Nigeria</option>
1126
+ <option value="153" >Niue</option>
1127
+ <option value="154" >Norway</option>
1128
+ <option value="155" >Oman</option>
1129
+ <option value="156" >Pakistan</option>
1130
+ <option value="157" >Palau</option>
1131
+ <option value="158" >Panama</option>
1132
+ <option value="159" >Papua New Guinea</option>
1133
+ <option value="160" >Paraguay</option>
1134
+ <option value="161" >Peru</option>
1135
+ <option value="162" >Philippines</option>
1136
+ <option value="163" >Poland</option>
1137
+ <option value="164" >Portugal</option>
1138
+ <option value="165" >Puerto Rico</option>
1139
+ <option value="166" >Qatar</option>
1140
+ <option value="227" >Reunion</option>
1141
+ <option value="167" >Romania</option>
1142
+ <option value="168" >Russian Federation</option>
1143
+ <option value="169" >Rwanda</option>
1144
+ <option value="170" >Saint Helena</option>
1145
+ <option value="171" >Saint Kitts-Nevis</option>
1146
+ <option value="172" >Saint Lucia</option>
1147
+ <option value="173" >Saint Pierre and Miquelon</option>
1148
+ <option value="174" >Saint Vincent and the Grenadines</option>
1149
+ <option value="175" >San Marino</option>
1150
+ <option value="176" >Saudi Arabia</option>
1151
+ <option value="177" >Senegal</option>
1152
+ <option value="229" >Serbia</option>
1153
+ <option value="178" >Seychelles</option>
1154
+ <option value="179" >Sierra Leone</option>
1155
+ <option value="180" >Singapore</option>
1156
+ <option value="181" >Slovakia</option>
1157
+ <option value="182" >Slovenia</option>
1158
+ <option value="183" >Solomon Islands</option>
1159
+ <option value="184" >Somalia</option>
1160
+ <option value="185" >South Africa</option>
1161
+ <option value="186" >Spain</option>
1162
+ <option value="187" >Sri Lanka</option>
1163
+ <option value="189" >Suriname</option>
1164
+ <option value="191" >Swaziland</option>
1165
+ <option value="192" >Sweden</option>
1166
+ <option value="193" >Switzerland</option>
1167
+ <option value="196" >Taiwan</option>
1168
+ <option value="197" >Tajikistan</option>
1169
+ <option value="198" >Tanzania</option>
1170
+ <option value="199" >Thailand</option>
1171
+ <option value="200" >Togo</option>
1172
+ <option value="201" >Tonga</option>
1173
+ <option value="202" >Trinidad and Tobago</option>
1174
+ <option value="203" >Tunisia</option>
1175
+ <option value="204" >Turkey</option>
1176
+ <option value="205" >Turkmenistan</option>
1177
+ <option value="206" >Turks and Caicos Islands</option>
1178
+ <option value="207" >Tuvalu</option>
1179
+ <option value="208" >Uganda</option>
1180
+ <option value="209" >Ukraine</option>
1181
+ <option value="210" >United Arab Emirates</option>
1182
+ <option value="3" >United Kingdom</option>
1183
+ <option value="1" selected>United States</option>
1184
+ <option value="211" >Uruguay</option>
1185
+ <option value="212" >Uzbekistan</option>
1186
+ <option value="213" >Vanuatu</option>
1187
+ <option value="214" >Vatican City State</option>
1188
+ <option value="215" >Venezuela</option>
1189
+ <option value="216" >Vietnam</option>
1190
+ <option value="217" >Virgin Islands (U.S.)</option>
1191
+ <option value="218" >Wallis and Futuna</option>
1192
+ <option value="219" >Western Sahara</option>
1193
+ <option value="220" >Western Samoa</option>
1194
+ <option value="221" >Yemen</option>
1195
+ <option value="223" >Zambia</option>
1196
+ <option value="224" >Zimbabwe</option>
1197
+ </select>
1198
+ </div>
1199
+ <div id="shQuantity-errTxt" class="sh-err-text sh-err-hide">There are 1 items available. Please enter a number less than or equal to 1.</div>
1200
+ <div id="shCountry-errTxt" class="sh-err-text sh-err-hide">Select a valid country.</div>
1201
+ </td>
1202
+ <td width="47%">
1203
+ <div class="sh-InlCnt sh-float-l " id="shZipCodeDiv">
1204
+ <div id="shZipCode-errIcn" class="sh-err-icon sh-err-hide"></div>
1205
+ <label class="sh-ShipDtl" for="shZipCode" id="shZipCodeTextDiv">ZIP Code:</label>
1206
+ <div class="sh-ZipAln sh-InlCnt">
1207
+ <input type="text" class="sh-TxtCnt" name="zipCode" size="12" id="shZipCode" value="" />
1208
+ </div>
1209
+ <div id="shZipCode-errTxt" class="sh-err-text sh-err-hide">Please enter a valid ZIP Code.</div>
1210
+ <div id="shZipCode-errTxt2" class="sh-err-text sh-err-hide">Please enter 5 or 9 numbers for the ZIP Code.</div>
1211
+ </div>
1212
+ <div id="shGetRatesDiv" class="sh-InlCnt ">
1213
+ <input type="button" class="sh-BtnTxt " name="getRates" id="shGetRates" value="Get Rates" />
1214
+ </div>
1215
+ </td>
1216
+ </tr>
1217
+ </tbody>
1218
+ </table>
1219
+ </div>
1220
+ <!-- Shipping Table -->
1221
+ <div id="shippingSection" aria-live="assertive" style="padding:10px;">
1222
+ <table class="sh-tbl">
1223
+ <thead>
1224
+ <tr>
1225
+ <th><div>Shipping and handling</div></th>
1226
+ <th><div>To</div></th>
1227
+ <th><div>Service</div></th>
1228
+ <th><div>Delivery*</div></th>
1229
+ </tr>
1230
+ </thead>
1231
+ <tbody>
1232
+ <tr>
1233
+ <td>
1234
+ <!-- Column 1 -->
1235
+ <div>
1236
+ US $7.39</div>
1237
+ </td>
1238
+ <!-- Column 2 -->
1239
+ <td>
1240
+ <!-- Column 3 -->
1241
+ <!-- TODO replace this with shipsTo from Shipping service because of each service -->
1242
+ <div>United States</div>
1243
+ </td>
1244
+ <td>
1245
+ <!-- Column 4 -->
1246
+ <div>
1247
+ Economy Shipping (USPS Media Mail<sup>TM</sup>)
1248
+ </div>
1249
+ <div></div>
1250
+ </td>
1251
+ <!-- Column 5 -->
1252
+ <td>
1253
+ <div role="alert" class="sh-del-frst ">
1254
+ Estimated between <span><b>Wed. Oct. 17 and Wed. Oct. 24</b></span></div>
1255
+ </td>
1256
+ <!-- Column 6 -->
1257
+ </tr>
1258
+ <!-- TODO see if colspan if loops are necessary -->
1259
+ </tbody>
1260
+ </table>
1261
+ <!-- Shipping Delivery Transit time Text -->
1262
+ <div id="instrTextTable" style="border-top:1px solid #c4c4c4; padding:5px 10px 15px 18px;font-family:Verdana; font-size:x-small; font-weight:normal; color:#999; margin-left:10px; margin-right:10px">
1263
+ * <a href="http://pages.ebay.com/help/buy/contextual/estimated-delivery.html" target="_blank">Estimated delivery dates</a> include seller's handling time, and will depend on shipping service selected and receipt of <a href="http://pages.ebay.com/help/buy/contextual/domestic-handling-time.html" target="_blank">cleared payment</a>. Delivery times may vary, especially during peak periods. </div>
1264
+ </div>
1265
+ </div>
1266
+ <!-- HandlingTax -->
1267
+ <div class="sh-handTablePos">
1268
+ <table class="sh-tbl">
1269
+ <thead>
1270
+ <tr>
1271
+ <th>
1272
+ <div>
1273
+ Handling time</div>
1274
+ </th>
1275
+ <th>
1276
+ <div>Estimated sales tax</div>
1277
+ </th>
1278
+ </tr>
1279
+ </thead>
1280
+ <tbody>
1281
+ <tr>
1282
+ <td>
1283
+ <div>Will usually ship within 1 business day of <a href="http://pages.ebay.com/help/buy/contextual/domestic-handling-time.html" target="_blank">receiving cleared payment<b class="g-hdn">[newWindowTxt]</b></a>.</div>
1284
+ </td>
1285
+ <td>
1286
+ <div>Seller charges sales tax for items shipped to: VA (5.0%).</div>
1287
+ </td>
1288
+ </tr>
1289
+ </tbody>
1290
+ </table>
1291
+ </div>
1292
+ <!-- GetItFast -->
1293
+ <!-- Vat Shipping Proce -->
1294
+ </div>
1295
+ </div>
1296
+ <div class="rpMainCont">
1297
+ <div>
1298
+ <div id="rpdId" class="rpSubCont">
1299
+ <div class="section-sttl">
1300
+ <h3 class="rpHead">
1301
+ Return policy</h3>
1302
+ </div>
1303
+
1304
+ <table width="99%" cellspacing="0" cellpadding="5" border="0" class="rpTbl" >
1305
+ <tr>
1306
+ <th width="33%">
1307
+ <div>
1308
+ After receiving the item, contact seller within</div>
1309
+ </th>
1310
+
1311
+ <th width="33%">
1312
+ <div>Refund will be given as</div>
1313
+ </th>
1314
+ <th width="33%">
1315
+ <div>Return shipping</div>
1316
+ </th>
1317
+ </tr>
1318
+
1319
+ <tr>
1320
+
1321
+ <td width="33%" class="rpTblColm">
1322
+ <div>
1323
+ 14 days</div>
1324
+ </td>
1325
+
1326
+ <td width="33%" class="rpTblColm">
1327
+ <div>
1328
+ Money back</div>
1329
+ </td>
1330
+ <td width="33%" class="rpTblColm">
1331
+ <div>Buyer pays return shipping</div>
1332
+ </td>
1333
+ </tr>
1334
+ </table>
1335
+ <table width="99%" cellspacing="0" cellpadding="5" border="0" class="rpTbl" >
1336
+ </table>
1337
+
1338
+ <br />
1339
+ <table border="0" width="99%" cellpadding="5" cellspacing="0" class="rpTbl">
1340
+ </table>
1341
+
1342
+ </div>
1343
+ </div>
1344
+ </div>
1345
+ <div class="pd-cnt">
1346
+ <div>
1347
+ <div id="payId" class="pd-inner">
1348
+ <div class="section-sttl"><h3 class="pd-ttl">Payment details</h3></div>
1349
+ <div class="pd-data">
1350
+ <table border="0" cellpadding="0" cellspacing="0" width="99%" class="pd-data-tbl">
1351
+ <thead>
1352
+ <tr class="pd-data-hdr">
1353
+ <th class="pd-data-th">Payment method</th>
1354
+ <th class="pd-data-th">Preferred / Accepted</th>
1355
+ <th class="pd-data-th">&nbsp;</th>
1356
+ </tr>
1357
+ </thead>
1358
+ <tbody>
1359
+ <tr>
1360
+ <td class="pd-data-col pd-data-aLft">
1361
+ <div id="payDet1">
1362
+ <img src="http://pics.ebaystatic.com/aw/pics/paypal/imgECheck.gif" alt="Credit or debit card through PayPal" title="Credit or debit card through PayPal" border="0"/>
1363
+ </div>
1364
+ </td>
1365
+ <td class="pd-data-col pd-data-aLft">
1366
+ <div id="payPref1" class="prefpay">
1367
+ PayPal Preferred</div>
1368
+ </td>
1369
+ <td class="pd-data-col pd-data-aLft">&nbsp;</td>
1370
+ </tr>
1371
+ <tr>
1372
+ <td class="pd-data-col pd-data-aLft">
1373
+ <div id="payDet1">
1374
+ <img src="http://pics.ebaystatic.com/aw/pics/payments/bml/logoBML_114x44.gif" border="0" alt="Bill Me Later" title="Bill Me Later" />
1375
+ </div>
1376
+ </td>
1377
+ <td class="pd-data-col pd-data-aLft">
1378
+ <div id="payPref1">
1379
+ Accepted</div>
1380
+ </td>
1381
+ <td class="pd-data-col pd-data-aLft">&nbsp;</td>
1382
+ </tr>
1383
+ </tbody>
1384
+ </table>
1385
+ </div>
1386
+ </div>
1387
+ </div>
1388
+ </div>
1389
+ </div>
1390
+ </div>
1391
+ <div class="oly_upnl" id="w1-27-_olp"><!-- CurrentBidPrice --><!-- TODO:check a way to organise ID's -->
1392
+ <!-- YourMaxBidPrice for Confirmation -->
1393
+ <!-- YourMaxBidPrice/IncreaseBidPrice InputBox -->
1394
+ <div class="bid pb" style='width:; ' >
1395
+ <!-- Bid Title -->
1396
+ <h2 id="w1-29-_title" class="title" >Place bid</h2>
1397
+ <div class="spcr" ></div>
1398
+
1399
+ <!-- Status Messaging : call as a separate JSP TAG -->
1400
+ <div id="w1-29-_statusMsg_wrp" class="wrapper status" >
1401
+ <div class="vimsg" id="w1-30-_o_container">
1402
+ <div id="w1-30-_o" class="sm-o smm-o smo-c">
1403
+ <div id="w1-30-_m" class="sm-mc cbg">
1404
+ <div class="sm-t">
1405
+ <div id="w1-29-_statusMsg_val" ></div>
1406
+ </div>
1407
+ </div>
1408
+ </div>
1409
+ </div>
1410
+
1411
+ </div>
1412
+
1413
+ <!-- TODO:check if End Date is shown in any scenario? -->
1414
+
1415
+ <!-- Time Left -->
1416
+ <div id="w1-29-_timeLeft_wrp" class="wrapper" >
1417
+ <div class="lable">Time left:</div>
1418
+ <div class="flL defaultText"><span id="w1-29-_timeLeft_val" ></span></div>
1419
+ <div class="spcr " ></div>
1420
+ </div>
1421
+
1422
+ <!-- Current Bid -->
1423
+ <div id="w1-29-_cur_wrp" class="wrapper" >
1424
+ <div class="lable pdT2">Current bid:</div>
1425
+ <div class="flL">
1426
+ <span id="w1-29-_cur_val" class="current" ></span>
1427
+ <span id="w1-29-_cur_invat" class="u-dspn" ></span>
1428
+ <div id="w1-29-_cur_approx" class="u-dspn approx" >(Approximately ##1##)</div>
1429
+ <div id="w1-29-_cur_exvat" class="u-dspn" ></div>
1430
+ </div>
1431
+ <div class="spcr " ></div>
1432
+ </div>
1433
+
1434
+ <!-- Shipping -->
1435
+ <div id="w1-29-_shp_wrp" class="wrapper" >
1436
+ <div class="lable">Shipping:</div>
1437
+ <div class="flL"><span id="w1-29-_shp_val" class="fontB " ></span></div>
1438
+ <div class="spcr" ></div>
1439
+ </div>
1440
+
1441
+
1442
+ <!-- Import charge -->
1443
+ <div id="w1-29-_impCh_wrp" class="wrapper" >
1444
+ <div class="lable">Import charges:</div>
1445
+ <div class="flL">
1446
+ <span id="w1-29-_impCh_val" class="fontB" ></span>
1447
+ <span id="w1-29-_impChBid_val" style="font-size:x-small;display:none;">(estimated and based on max bid)</span>
1448
+ <span id="w1-29-_impChBid_valErr" style="display:none;">To be provided at checkout</span>
1449
+ </div>
1450
+ <div class="spcr " ></div>
1451
+ </div>
1452
+
1453
+ <div id="w1-29-_grey" class="greyBG" >
1454
+ <div class="spcr" ></div>
1455
+ <!-- YourMaxBidPrice for Review -->
1456
+ <div id="w1-29-_review_wrp" class="wrapper" >
1457
+ <div class="lable ">Your max bid:</div>
1458
+ <div class="flL">
1459
+ <span id="w1-29-_review_val" class="fontB " ></span>
1460
+ <span id="w1-29-_review_invat" class="dspn" ></span>
1461
+ <div id="w1-29-_review_approx" class="u-dspn approx" ></div>
1462
+ <div id="w1-29-_review_exvat" class="dspn" ></div>
1463
+ </div>
1464
+ <div class="spcr" style=""></div>
1465
+ </div>
1466
+
1467
+ <!-- YourMaxBidPrice/IncreaseBidPrice InputBox -->
1468
+ <div id="w1-29-_enter_wrp" class="wrapper" >
1469
+ <div id="w1-29-_enter_lbl" class="lable pT3 " >Your max bid:</div>
1470
+ <div class="flL" id="">
1471
+ <span >
1472
+ <span id="w1-29-_enterw1-29-_currency" class="fontB" ></span>
1473
+ <input id="w1-29-_enter_val" type="text" maxlength="10" size="8" ></input>
1474
+ </span>
1475
+ <span id="w1-29-_enter_invat" class="dspn" ></span>
1476
+ <div id="w1-29-_enter_approx" class="dspn approx" ></div>
1477
+ <div id="w1-29-_enter_exvat" class="dspn" ></div>
1478
+ <div id="w1-29-_enter_min" class="note dspn" style=""></div>
1479
+ </div>
1480
+ <div class="spcr" ></div>
1481
+ </div>
1482
+ </div>
1483
+
1484
+
1485
+ <!-- Confirm Bidding Disclaimer -->
1486
+ <div id="w1-29-_disc" class="wrapper disclaimer" >
1487
+ <div class="spcr " ></div>
1488
+ <div class="spcr" ></div>
1489
+ By clicking <b>Confirm bid</b>, you commit to buy this item from the seller if you are the winning bidder.</div>
1490
+ <div id="w1-29-_disc_gsp" class="wrapper disclaimer" >
1491
+ <div class="spcr " ></div>
1492
+ <div class="spcr" ></div>
1493
+ By clicking <b>Confirm bid</b>, you are committing to buy this item from the seller if you are the winning bidder and have read and agree to the Global Shipping Program <a href="http://pages.ebay.com/shipping/globalshipping/buyer-tnc.html">terms and conditions</a>. Import charges previously quoted are subject to change if you increase you maximum bid amount. </div>
1494
+ <div class="spcr " ></div>
1495
+ <table class="btnLnk" >
1496
+ <!-- PlaceBid Button and cancel link -->
1497
+ <tr id="w1-29-_place_wrp" class="wrapper" >
1498
+ <td>
1499
+ <span class="vib s bl vibs1" >
1500
+ <input style="" id="w1-29-_place_btn" class="bt" type="button" value="Place bid"
1501
+ title="" />
1502
+ </span>
1503
+ </td>
1504
+ <td>
1505
+ <span class="lnk" ><a id="w1-29-_place_lnk" href="javascript:;" >Cancel</a></span>
1506
+ </td>
1507
+ </tr>
1508
+ </table>
1509
+ <!-- Loading Throbber -->
1510
+ <div id="w1-29-_loading" class="wrapper" >
1511
+ <div class="throbber" >
1512
+ <div class="loading">Loading...</div>
1513
+ </div>
1514
+ </div>
1515
+
1516
+
1517
+ <!-- Resume Bidding Note -->
1518
+ <div id="w1-29-_resume" class="wrapper resume" >
1519
+ <a href="http://offer.ebay.com/ws/eBayISAPI.dll?MakeBid&amp;item=190654183378&amp;fromPage=2047675&amp;fb=2">Resume bidding</a>, if the page does not update immediately.</div>
1520
+
1521
+
1522
+ <div class="dspn" >
1523
+ <!-- Status messages -->
1524
+ <div id="w1-29-_placeBid">Place bid</div>
1525
+ <div id="w1-29-_reviewYourBid">Review and confirm your bid</div>
1526
+ <div id="w1-29-_bidConfirmation">Bid confirmation</div>
1527
+ <div id="w1-29-_d">d</div>
1528
+ <div id="w1-29-_h">h</div>
1529
+ <div id="w1-29-_m">m</div>
1530
+ <div id="w1-29-_s">s</div>
1531
+ <div id="w1-29-_day">day</div>
1532
+ <div id="w1-29-_hour">hour</div>
1533
+ <div id="w1-29-_hours">hours</div>
1534
+ <div id="w1-29-_freeShipping"><b>FREE shipping</b></div>
1535
+ <div id="w1-29-_shippingDefault">See item description</div>
1536
+ <div id="w1-29-_impChargeDefault"><a id="w1-29-_impChLnk" href="Javascript:;">Calculate</a></div>
1537
+ <div id="w1-29-_approximately">(Approximately ##1##)</div>
1538
+ <div id="w1-29-_minToBid">(Enter ##1## or more)</div>
1539
+ <div id="w1-29-_minToBidHighBidder">(Enter more than ##1##)</div>
1540
+ <div id="w1-29-_yourMaximumBid">Your max bid:</div>
1541
+ <div id="w1-29-_increaseMaxBid">Increase max bid</div>
1542
+ <div id="w1-29-_placeBtnTxt">Place bid</div>
1543
+ <div id="w1-29-_confirmBtnTxt">Confirm bid</div>
1544
+ <div id="w1-29-_increaseBtnTxt">Increase max bid</div>
1545
+ <div id="w1-29-_cancel">Cancel</div>
1546
+ <div id="w1-29-_change">Change bid</div>
1547
+ <div id="w1-29-_close">Close</div>
1548
+
1549
+ <div id="w1-29-_outBid">You've been outbid. Don't let it get away - bid again!</div>
1550
+ <div id="w1-29-_highBid">, you're the highest bidder on this item. Hope you win it!</div>
1551
+ <div id="w1-29-_highBidFrst">You're the first bidder. Hope you win!</div>
1552
+ <div id="w1-29-_highBid1MaxBidAway">You're currently the high bidder, but you're close to getting outbid.</div>
1553
+ <div id="w1-29-_highBid60MinsLeft">This auction is almost over and you're currently the high bidder.</div>
1554
+ <div id="w1-29-_highBidReserveNotMet">You're the high bidder, but the reserve price hasn't been met.</div>
1555
+
1556
+ <div id="w1-29-_decsep">Please enter your bid again.</div>
1557
+ <div id="w1-29-_invalidBid">Please enter a valid number as the bid price.</div>
1558
+ <div id="w1-29-_lowBid">Enter an amount that is equal or greater than the minimum bid required. This can be found under the bid entry box.</div>
1559
+ <div id="w1-29-_invalidHighBid">Maximum bids can't be lowered once they're submitted.</div>
1560
+ <div id="w1-29-_noPaypal">This seller requires the buyer to have a PayPal account to purchase this item. <a href="http://www.paypal.com/us/cgi-bin/webscr?cmd=_registration-run">Get a PayPal account here </a>.</div>
1561
+ <div id="w1-29-_moreThanBin">Your bid is greater than or equal to the Buy It Now price. We recommend you purchase this item via Buy It Now. If you still wish to bid, you may do so below.</div>
1562
+
1563
+ </div>
1564
+
1565
+ <div class="clear"></div>
1566
+ </div>
1567
+
1568
+ <!-- CurrentBidPrice -->
1569
+ <!-- YourMaxBidPrice for Review -->
1570
+ <!-- YourMaxBidPrice/IncreaseBidPrice InputBox -->
1571
+ </div>
1572
+ <div class="oly_upnl" id="w1-32-_olp"><!-- CurrentBidPrice --><!-- TODO:check a way to organise ID's -->
1573
+ <!-- YourMaxBidPrice for Confirmation -->
1574
+ <!-- YourMaxBidPrice/IncreaseBidPrice InputBox -->
1575
+ <div class="bid ocb" style='width:; ' >
1576
+
1577
+ <!-- Status Messaging : call as a separate JSP TAG -->
1578
+ <div id="w1-34-_statusMsg_wrp" class="wrapper dspn" >
1579
+ <div class="vimsg" id="w1-35-_o_container">
1580
+ <div id="w1-35-_o" class="sm-o smi-o smo-c">
1581
+ <div id="w1-35-_m" class="sm-mc cbg">
1582
+ <div class="sm-t">
1583
+ <div id="w1-34-_statusMsg_val" class="status" ></div>
1584
+ </div>
1585
+ </div>
1586
+ </div>
1587
+ </div>
1588
+
1589
+ </div>
1590
+
1591
+ <!-- Time Left -->
1592
+ <div id="w1-34-_timeLeft_wrp" class="wrapper" >
1593
+ <div class="lable">Time left:</div>
1594
+ <div class="flL value"><span id="w1-34-_timeLeft_val" class="redTime" ></span></div>
1595
+ <div class=""><input id="w1-34-_updt_btn" type="button" value="Refresh" ></div>
1596
+ </div>
1597
+
1598
+ <!-- Current Bid -->
1599
+ <div id="w1-34-_cur_wrp" class="wrapper" >
1600
+ <div id="w1-34-_cur_lbl" class="lable pdT2">Current bid:</div>
1601
+ <div class="flL">
1602
+ <span id="w1-34-_cur_val" class="current" ></span>
1603
+ <div id="w1-34-_cur_approx" class="u-dspn approx" >(approximately ##1##)</div>
1604
+ </div>
1605
+ <div class="spcr" ></div>
1606
+ </div>
1607
+
1608
+ <!-- YourMaxBidPrice -->
1609
+ <div id="w1-34-_review_wrp" class="wrapper" >
1610
+ <div class="lable">Your maximum bid:</div>
1611
+ <div class="flL">
1612
+ <span id="w1-34-_review_val" class="fontB" ></span>
1613
+ <div id="w1-34-_review_approx" class="u-dspn approx" >(approximately ##1##)</div>
1614
+ </div>
1615
+ <div class="spcr" ></div>
1616
+ </div>
1617
+ <!-- IncreaseBidPrice InputBox -->
1618
+ <div id="w1-34-_enter_wrp" class="wrapper" >
1619
+ <div id="w1-34-_enter_lbl" class="lable " >Increase your maximum bid:</div>
1620
+ <div class="flL value" id="">
1621
+ <span >
1622
+ <span id="w1-34-_enterw1-34-_currency" class="fontB" ></span>
1623
+ <input id="w1-34-_enter_val" type="text" maxlength="10" size="8" ></input>
1624
+ </span>
1625
+ <div id="w1-34-_enter_approx" class="dspn approx" ></div>
1626
+ </div>
1627
+ <div>
1628
+ <span class="vib s bl vibs1" >
1629
+ <input style="" id="w1-34-_ocb_btn" class="bt" type="button" value="1 Click Bid"
1630
+ title="" />
1631
+ </span>
1632
+ </div>
1633
+ <div class="spcr" ></div>
1634
+ </div>
1635
+
1636
+
1637
+ <!-- Confirm Bidding Disclaimer -->
1638
+ <div id="w1-34-_disc" class="wrapper disclaimer" >
1639
+ <div class="spcr height5" ></div>
1640
+ By clicking <b>1 Click Bid</b>, you commit to buy this item from the seller if you're the winning bidder. <a id="w1-34-_lrn" href="http://pages.ebay.com/help/buy/contextual/fastbidding.html" >Learn more<b class="g-hdn">about 1-click bid - opens in a new window or tab</b></a>
1641
+ </div>
1642
+
1643
+ <div id="w1-34-_cls_wrp" class="wrapper dspn flR" >
1644
+ <div class="clear" ></div>
1645
+ </div>
1646
+
1647
+
1648
+ <div class="dspn" >
1649
+ <!-- Status messages -->
1650
+ <div id="w1-34-_day">day</div>
1651
+ <div id="w1-34-_hour">hour</div>
1652
+ <div id="w1-34-_min">min</div>
1653
+ <div id="w1-34-_sec">sec</div>
1654
+ <div id="w1-34-_days">days</div>
1655
+ <div id="w1-34-_hours">hours</div>
1656
+ <div id="w1-34-_mins">mins</div>
1657
+ <div id="w1-34-_secs">secs</div>
1658
+ <div id="w1-34-_approximately">(approximately ##1##)</div>
1659
+ <div id="w1-34-_win">Winning bid:</div>
1660
+ <div id="w1-34-_start">Starting bid:</div>
1661
+
1662
+ <div id="w1-34-_close">Close</div>
1663
+
1664
+ <div id="w1-34-_aewin">Congrats! The auction has ended and you're the winner.</div>
1665
+ <div id="w1-34-_aenrwin">The auction has ended, but the reserve price was not met.</div>
1666
+ <div id="w1-34-_aeout">Sorry, the auction has ended and you were outbid.</div>
1667
+ <div id="w1-34-_high">Good news, you're the high bidder.</div>
1668
+ <div id="w1-34-_out">Sorry, you've been outbid.</div>
1669
+ <div id="w1-34-_highnr">You're the high bidder, but the reserve price is not met.</div>
1670
+ <div id="w1-34-_errmin">Please enter a higher amount than the current bid.</div>
1671
+ <div id="w1-34-_errhigh">Maximum bids cannot be lowered once submitted.</div>
1672
+ <div id="w1-34-_errmake">Please enter a valid number.</div>
1673
+
1674
+ </div>
1675
+
1676
+ <div class="clear"></div>
1677
+ </div>
1678
+
1679
+ <!-- CurrentBidPrice -->
1680
+ <!-- YourMaxBidPrice for Review -->
1681
+ <!-- YourMaxBidPrice/IncreaseBidPrice InputBox -->
1682
+ </div>
1683
+ </div>
1684
+ <!--[if IE]><style type="text/css">#BottomPanelDF {display: inline-block !important; width: 100%;}</style>
1685
+ <![endif]-->
1686
+ <div id="FootPanel">
1687
+ <!-- Bottom Tool bar -->
1688
+ <div id="merch_html_100009"></div>
1689
+ <div id="merch_html_100010"></div>
1690
+ <div id="rtm_html_11575"></div>
1691
+ <div>
1692
+ <div class="ft-btyle">
1693
+ <span class="ft-rtmStyle">
1694
+ <div id="rtm_html_825"></div>
1695
+ </span>
1696
+ <span class="ft-rtmStyle">
1697
+ <div id="rtm_html_827"></div>
1698
+ </span>
1699
+ <span class="ft-rtmStyle">
1700
+ <div id="rtm_html_829"></div>
1701
+ </span>
1702
+ <div class="u-cb"></div>
1703
+ </div>
1704
+ </div>
1705
+ <div id="merch_html_100047"></div>
1706
+ <div class="vi-btb-blinks">
1707
+ <span>
1708
+ <span class="" style="white-space:nowrap;">
1709
+ <a href="http://www.ebay.com" title="Click to Go Back to home page" id="smtBackToAnchor">
1710
+ <span>Back to home page</span>
1711
+ </a>
1712
+ </span>
1713
+ </span>
1714
+ <a href="#" id="_rtop" class="vi-btb-Rt">Return to top</a>
1715
+ </div>
1716
+ <div id="glbfooter" class="gh-post1010
1717
+ gh-w"><div><div id="rtm_html_1650" style="height: 0px; display: none;"></div><div id="rtm_html_1651" style="height: 0px; display: none;"></div></div><table class="gf-BIG-t" border="0" cellpadding="0" cellspacing="0" width="100%"><tbody><tr><td class="g-pipe" colspan=2><a _sp="m571.l2602" class="thrd" href="http://www.ebayinc.com">About eBay</a> | <a _sp="m571.l3329" class="thrd" href="http://community.ebay.com/index.jspa">Community</a> | <a _sp="m571.l3330" class="thrd" href="http://announcements.ebay.com/">Announcements</a> | <a _sp="m571.l2616" class="thrd" href="http://pages.ebay.com/securitycenter/index.html">Security Center</a> | <a _sp="m571.l2604" class="thrd" href="http://pages.ebay.com/help/policies/overview.html">Policies</a> | <a _sp="m571.l1625" class="thrd" href="http://pages.ebay.com/sitemap.html">Site Map</a> | <a _sp="m571.l2606" class="thrd" href="http://viv.ebay.com/ws/eBayISAPI.dll?EbayTime">eBay official time</a> | <a _sp="m571.l1617" class="thrd" href="http://garden.ebay.com">Preview new features</a> | <a _sp="m571.l2911" class="thrd" href="http://ocs.ebay.com/ws/eBayISAPI.dll?CustomerSupport">Contact us</a> | <a id="gh-surveyLink" _sp="m571.l2628" target="eBaySurvey" class="thrd" rel="nofollow" href="http://qu.ebay.com/survey?srvName=globalheader+%28new-header%29">Tell us what you think</a><form class="gh-hdn g-hdn" target="eBaySurvey" method="post" id="gh-surveyForm" action="http://qu.ebay.com/survey?srvName=globalheader+%28new-header%29"><input value="" name="domContent"></form></td></tr><tr valign="top"><td class="gf-legal">Copyright &copy; 1995-2012 eBay Inc. All Rights Reserved. <a _sp="m571.l2612" class="thrd" href="http://pages.ebay.com/help/policies/user-agreement.html?rt=nc">User Agreement</a> and <a _sp="m571.l2613" class="thrd" href="http://pages.ebay.com/help/policies/privacy-policy.html?rt=nc">Privacy Policy</a>.</td></tr></tbody></table>
1718
+ <div id="cobrandFooter"></div></div><!--ts:2012.10.12.17:47--><!--rq:--></div>
1719
+ </div></div>
1720
+
1721
+
1722
+ <div id="JSDF"><script src="http://ir.ebaystatic.com/z/e2/1x0t00empizvveetlftnr1mxm.js" type="text/javascript"></script><script type="text/javascript" src="http://gh.ebaystatic.com/header/js/rpt.min?combo=53&app=RAPTOR&siteid=0&factor=REFRESHER&rvr=99"></script><script src="http://ir.ebaystatic.com/z/ug/2knrgsuqfa24nfrdmzfdcqjcy.js" type="text/javascript"></script><script src="http://ir.ebaystatic.com/z/ui/pd5kwtm0be3drocrk1bxbfwee.js" type="text/javascript"></script><script type="text/javascript">(function(){
1723
+ raptor.require('raptor.rtm.RtmManager').manage({"ver":5,"jsDependencyURLs":["http://ir.ebaystatic.com/z/yw/4eeyvqbioqzgrdzjxqewsyrtn.js","http://ir.ebaystatic.com/z/yg/ay42dc4xd20q5efg21zp5xc1r.js","http://ir.ebaystatic.com/z/qh/1xqcbqdtby5jxivfcveb1thwq.js","http://ir.ebaystatic.com/z/un/pl31anukri31hlt3o2cfigrud.js","http://ir.ebaystatic.com/z/20/qpl3znc0jm2mden1e21byi4kz.js"],"fallbackBaseURL":"http://srv.ebay.com/ws/eBayISAPI.dll?RtmCmd","placementsInfo":[[1527,1,0,0],[11575,1,0,0],[825,1,0,0],[827,1,0,0],[829,1,0,0]],"baseURL":"http://srx.main.ebayrtm.com/rtm?RtmCmd&a=json&g=5c83d31313a0a56a0f277a17fffed8fa&uf=0&c=1H4sIAAAAAAAAAD2QT0vDQBDF7%2FkUA4IHoTL7J9lsYA6ppkFo2kOqIHjZJkGXxqSu6cFv7yRFT%2FOYeczvzdzUboJ9M4FQIJJM60xpKKvDCk2GCBKFjM4KU9LRWShNMsZ7ZGlZJmYWgtZ%2BaFmZlNbjePp%2BuyCiyIfJf11c8G6AW3gY%2B75rJn%2Fsu%2Bt49sckrZQqanxLQl77Av%2FnWhMDJLNxLuaPzdylkyQkOZzkVCv2SxuTUCLWHHP2I22CG069H2Drj8GFH1AvUNR1%2FlrDfgPVfnfIn8pdAdvOTR9dgDKwgOUGENZYeBwH17fAez474ESpIonaJCbmn6SG3m31nOfFHeP4mOUtloTFhEOkSpk0%2BgX%2FJTR1XwEAAA%3D%3D&ord=1350171874197"});
1724
+
1725
+ $("body").trigger("RTM_REGISTER_PLACEMENTS",{'placementsInfo':[[876,0,0,0],[912,0,0,0],[433,0,0,0],[1650,1,0,0],[1651,1,0,0]]});
1726
+
1727
+ $("body").trigger("RTM_INIT",{'init':0});
1728
+ })();</script><script type="text/javascript">(function(){ if (typeof GH != "undefined" && GH) { GH_config = { siteId:"0", algo:"1349938015", catId:"0", sin:0,pageId:2047675,selectedCatId:'267',notifCfg:{"d":1,"n":0}};GH.init();}
1729
+ $(".bc-w a").click(function(){
1730
+ trackingUtil("Breadcrumb_Links");
1731
+ });
1732
+ if ($.browser.msie) {
1733
+ if ($.browser.version < 8) {
1734
+ $("#vi-bcrumb1").css("vertical-align","text-top");
1735
+ //$("#vi-bcrumb-smb").css("width","120%");
1736
+ if (screen.width <= 1050) {
1737
+ $("span.smbHead").css("padding-right","10px");
1738
+ $("span.smbHead a").css("padding-right","10px");
1739
+ }
1740
+ } else {
1741
+ $("#vi-bcrumb1").css("vertical-align","middle");
1742
+ $("#vi-bcrumb-pipe").css("padding-top","2px");
1743
+ $("#vi-bcrumb-survy").css("padding-top","2px");
1744
+
1745
+ }
1746
+ } else {
1747
+ $("#vi-bcrumb1").css("vertical-align","text-bottom");
1748
+ }
1749
+ $("#e0").click(function(){trackingUtil("ITEM_CONDITION");try{$("#viTabs_0").trigger('click', ['noTabTracking']);}catch(e){$("#viTabs_1").trigger('click', ['noTabTracking']);}});$("#e2").click(function(){trackingUtil("Shipping_See_all_details_ItemSummary");try{$("#viTabs_1")[0].trigger('click', ['noTabTracking']);}catch(e){$("#viTabs_1").trigger('click', ['noTabTracking']);}});$("#expedited_link").click(function(){trackingUtil("OneDayShipping_Link_in_Delivery_Expedited_Shipping");try{$("#viTabs_1")[0].trigger('click', ['noTabTracking']);}catch(e){$("#viTabs_1").trigger('click', ['noTabTracking']);}});$("#e3").click(function(){trackingUtil("Calculate_link_ItemSummary");try{$("#viTabs_1")[0].trigger('click', ['noTabTracking']);}catch(e){$("#viTabs_1").trigger('click', ['noTabTracking']);}});
1750
+ $("#e4").click(function(){
1751
+ try{
1752
+ $("#viTabs_1")[0].trigger('click', ['noTabTracking']);
1753
+ }catch(e){
1754
+ $("#viTabs_1").trigger('click', ['noTabTracking']);
1755
+ }
1756
+ trackingUtil("See_exclusions_itemInfo");
1757
+ });
1758
+
1759
+ $("#e5").click(function(){
1760
+ try{
1761
+ $("#viTabs_1")[0].trigger('click', ['noTabTracking']);
1762
+ }catch(e){
1763
+ $("#viTabs_1").trigger('click', ['noTabTracking']);
1764
+ }
1765
+ trackingUtil("Payments_See_details_Iteminfo");
1766
+ });
1767
+
1768
+ var isBusinessSlr = false;
1769
+
1770
+ if (!isBusinessSlr) {
1771
+
1772
+ $("#e6").click(function(){
1773
+ try{
1774
+ $("#viTabs_1")[0].trigger('click', ['noTabTracking']);
1775
+ }catch(e){
1776
+ $("#viTabs_1").trigger('click', ['noTabTracking']);
1777
+ }
1778
+ trackingUtil("Returns_Read_details");
1779
+ });
1780
+
1781
+ $("#vi-VR-return-deLnk").click(function(){
1782
+ try{
1783
+ $("#viTabs_1")[0].trigger('click', ['noTabTracking']);
1784
+ }catch(e){
1785
+ $("#viTabs_1").trigger('click', ['noTabTracking']);
1786
+ }
1787
+ trackingUtil("Returns_Read_details");
1788
+ });
1789
+
1790
+
1791
+ }
1792
+
1793
+ $("#").click(function(){
1794
+ $("#viTabs_0")[0].click();
1795
+ });
1796
+
1797
+ var ia = raptor.require('com.ebay.raptor.vi.ItemAttributes');
1798
+ <!-- TODO: remove hardcoded ID -->
1799
+ new ia({readMoreId : 'readFull', hiddenContentId : 'hiddenContent'});
1800
+
1801
+
1802
+ $("#viTabs_0").bind('click', function(event, param) {
1803
+ if(param !== 'noTabTracking') {
1804
+ trackingUtil("Description_Tab");
1805
+ }
1806
+ });
1807
+
1808
+ $('ul.nav-tabs-m a').click(function (event) {
1809
+ event.stopPropagation();
1810
+ var id = $(this).parent().index();
1811
+ if ($(this).parent().attr("class") != "item active sel") {
1812
+
1813
+ $('ul.nav-tabs-m li').each(function(index) {
1814
+ $(this).toggleClass("active sel");
1815
+ });
1816
+
1817
+ $('div.tab-content-m div').each(function(index) {
1818
+ $(this).toggleClass("active sel");
1819
+ });
1820
+ }
1821
+ });
1822
+
1823
+
1824
+ $("#viTabs_1").bind('click', function(event, param) {
1825
+ if(param !== 'noTabTracking') {
1826
+ trackingUtil("Shipping_and_Payments_Tab");
1827
+ }
1828
+ });
1829
+
1830
+ $(".rpMainCont a").attr('target','_blank');
1831
+
1832
+ $("#_rtop").click(function(){
1833
+ trackingUtil("Return_to_top");
1834
+ });
1835
+ raptor.require('widgets').initAll(['com.ebay.raptor.vi.isum.smartBackTo','w1-1','smbWidget',{"isBacktoSearch":false,"showIcon":true,"smtBackToAnchorId":"smtBackToAnchor"}],['ui.InlineFeedbackLink','w1-2',null],['com.ebay.raptor.vi.overlayHandler','w1-3','overlayHandelrvire'],['com.ebay.raptor.vi.topmessagepanel.TopMessagePanel','w1-4','sm',{"CHINESE_BUYER_OUTBIDDER_PC_ON":"You've been outbid. ","smId":"w1-4-_msg","dummy":"##n##","CHINESE_BUYER_HIGH_BIDDER_RESERVE_NOT_MET_PC_ON":"You're the highest bidder but the reserve price has not been met. ","CHINESE_BUYER_HIGH_BIDDER_PC_ON":"You're the highest bidder. ","panelId":"msgPanel","autoRefreshSvcId":"AUTO_REFRESH_SVC"}],['com.ebay.raptor.vi.topmessagepanel.ListPanel','w1-5','lPnl',{"isHideStatusMsgPanel":true,"listNamePH":"##1##","msgPanel":"msgPanel","listMsg":"w1-5-_lmsg","listContainer":"w1-5-_lstC","REMOVE":"Remove \u003Ci class=\"u-hdn\">list\u003C\u002Fi> ","remove":"w1-5-_rmv","REMOVE_ALL":"Remove all \u003Ci class=\"u-hdn\">lists\u003C\u002Fi> ","listPanel":"w1-5-_lstP","listCountPH":"##2##","newListCountPH":"##5##","iconCSS":"lPnlHdr","isShowingWatchMsg":false,"isRefresh":false,"ADDEDTO_ONE_LIST_ONE_OTHER":"Added to your \u003Ca href=\"##3##\">##1##\u003C\u002Fa> list and \u003Ca id=\"w1-5-_icn\" href=\"##4##\">\u003Cspan id=\"w1-5-_lstP_li_sp\" class=\"\">1 other list\u003C\u002Fspan>\u003C\u002Fa>","ONLOAD_WATCHLIST":"Saved in your \u003Ca href=\"##3##\">\u003Cspan id=\"w1-5-_lstP_li_sp\" class=\"\">Watch list\u003C\u002Fspan>\u003C\u002Fa>","ADDEDTO_WISHLIST_MULTIPLE_OTHER":"Added to your \u003Ca href=\"##3##\">Wish list\u003C\u002Fa> and \u003Ca id=\"w1-5-_icn\" href=\"##4##\">\u003Cspan id=\"w1-5-_lstP_li_sp\" class=\"\">##2## other lists \u003Cimg src=\"http:\u002F\u002Fpics.ebaystatic.com\u002Faw\u002Fpics\u002Ficons\u002FiconSortdownblue.gif\" alt=\" \" border=\"0\" height=\"5\" width=\"9\"\u002F>\u003C\u002Fspan>\u003C\u002Fa>","ADDEDTO_WATCHLIST_MULTIPLE_OTHER":"Added to your \u003Ca href=\"##3##\">Watch list\u003C\u002Fa> and \u003Ca id=\"w1-5-_icn\" href=\"##4##\">\u003Cspan id=\"w1-5-_lstP_li_sp\" class=\"\">##2## other lists \u003Cimg src=\"http:\u002F\u002Fpics.ebaystatic.com\u002Faw\u002Fpics\u002Ficons\u002FiconSortdownblue.gif\" alt=\" \" border=\"0\" height=\"5\" width=\"9\"\u002F>\u003C\u002Fspan>\u003C\u002Fa>","ADDEDTO_ONE_LIST":"Added to your \u003Ca href=\"##3##\">\u003Cspan id=\"w1-5-_lstP_li_sp\" class=\"\">##1##\u003C\u002Fspan>\u003C\u002Fa> list","removeContainer":"w1-5-_rmvC","triggerRemoveSvcId":"_TRIGGER_REMOVE_SVC_ID","ADDEDTO_WISHLIST_ONE_OTHER":"Added to your \u003Ca href=\"##3##\">Wish list\u003C\u002Fa> and \u003Ca id=\"w1-5-_icn\" href=\"##4##\">1 other list\u003C\u002Fa>","ADDEDTO_WATCHLIST_ONE_OTHER":"Added to your \u003Ca href=\"##3##\">Watch list\u003C\u002Fa> and \u003Ca id=\"w1-5-_icn\" href=\"##4##\">1 other list\u003C\u002Fa>","otherLinkPH":"##4##","ADDEDTO_MULIPLE_NEW_LIST_MULTIPLE_OTHER":"Added to ##5## lists and \u003Ca id=\"w1-5-_icn\" href=\"##4##\">\u003Cspan id=\"w1-5-_lstP_li_sp\" class=\"\">##2## other lists \u003Cimg src=\"http:\u002F\u002Fpics.ebaystatic.com\u002Faw\u002Fpics\u002Ficons\u002FiconSortdownblue.gif\" alt=\" \" border=\"0\" height=\"5\" width=\"9\"\u002F>\u003C\u002Fspan>\u003C\u002Fa>","ADDEDTO_ONE_LIST_MULTIPLE_OTHER":"Added to your \u003Ca href=\"##3##\">##1##\u003C\u002Fa> list and \u003Ca id=\"w1-5-_icn\" href=\"##4##\">\u003Cspan id=\"w1-5-_lstP_li_sp\" class=\"\">##2## other lists \u003Cimg src=\"http:\u002F\u002Fpics.ebaystatic.com\u002Faw\u002Fpics\u002Ficons\u002FiconSortdownblue.gif\" alt=\" \" border=\"0\" height=\"5\" width=\"9\"\u002F>\u003C\u002Fspan>\u003C\u002Fa>","ONLOAD_MULITPLE_LIST":"Saved to \u003Ca href=\"##3##\">\u003Cspan id=\"w1-5-_lstP_li_sp\" class=\"\">##2## lists \u003Cimg src=\"http:\u002F\u002Fpics.ebaystatic.com\u002Faw\u002Fpics\u002Ficons\u002FiconSortdownblue.gif\" alt=\" \" border=\"0\" height=\"5\" width=\"9\"\u002F>\u003C\u002Fspan>\u003C\u002Fa>","ADDEDTO_WATCHLIST":"Added to your \u003Ca href=\"##3##\">Watch list\u003C\u002Fa>","ADDEDTO_WISHLIST":"Added to your \u003Ca href=\"##3##\">Wish list\u003C\u002Fa>","myEBayURL":"javascript:;","listLinkPH":"##3##","msgPanelContentId":"w1-4-_msg","ADDEDTO_MULIPLE_NEW_LIST_ONE_OTHER":"Added to ##5## lists and \u003Ca id=\"w1-5-_icn\" href=\"##4##\">\u003Cspan id=\"w1-5-_lstP_li_sp\" class=\"\">1 other list\u003C\u002Fspan>\u003C\u002Fa>","listAddSvcId":"_LIST_ADD_SVC_ID","icon":"w1-5-_lstP_li_sp","ONLOAD_SINGLE_LIST":"Saved in your \u003Ca href=\"##3##\">\u003Cspan id=\"w1-5-_lstP_li_sp\" class=\"\">##1##\u003C\u002Fspan>\u003C\u002Fa> list","ADDEDTO_MULIPLE_NEW_LIST":"Added to ##5## lists","listMsgContainer":"w1-5-_lmsgC","ONLOAD_WISHLIST":"Saved in your \u003Ca href=\"##3##\">\u003Cspan id=\"w1-5-_lstP_li_sp\" class=\"\">Wish list\u003C\u002Fspan>\u003C\u002Fa>"}],['ebay.viewItem.PicturePanel','w1-6','vi_pic_panel',{"fsImgList":[{"thumbImgUrl":"http:\u002F\u002Fi.ebayimg.com\u002Ft\u002FFranklin-Library-3V-ESSAYS-OF-MONTAIGNE-Leather-Great-Books-1979-Donald-Frame-\u002F00\u002F$(KGrHqIOKiYE2of1(,woBN2CSp3Mm!~~_39.JPG","thumbImgSize":null,"displayImgUrl":"http:\u002F\u002Fi.ebayimg.com\u002Ft\u002FFranklin-Library-3V-ESSAYS-OF-MONTAIGNE-Leather-Great-Books-1979-Donald-Frame-\u002F00\u002F$(KGrHqIOKiYE2of1(,woBN2CSp3Mm!~~_35.JPG","displayImgSize":null,"zoomEnabled":false,"enlargeEnabled":true,"maxImageUrl":"http:\u002F\u002Fi.ebayimg.com\u002Ft\u002FFranklin-Library-3V-ESSAYS-OF-MONTAIGNE-Leather-Great-Books-1979-Donald-Frame-\u002F00\u002F$(KGrHqIOKiYE2of1(,woBN2CSp3Mm!~~_12.JPG"}],"id":"vi_pic_panel"},[['ebay.viewItem.ZoomEnlarge','w1-7','vi_pic_zoomEnlarge',{"zoomEnMsgId":"zoom_enlarge_msg","mainImgId":"icImg","id":"vi_pic_zoomEnlarge","zoomMsg":"Mouse over image to zoom","enlargeMsg":"Click to view larger image","zoomEnMsgCntId":"zoom_enlarge_msg_cnt"},[['ebay.viewItem.Enlarge','w1-8','vi_pic_enlarge',{"en_fs_ul_id":"en_fs_ul","totalThImg":"0","enlargeImgId":"en_img_id","imgSpan":"en_img_span","fsPanelId":"enlarge_img_fs","thWidth":"50.0px","mainImgElmId":"icImg","olyId":"vi_pic_enlarge_oly","enlarge_panel":"enlarge_panel","id":"vi_pic_enlarge","thHeight":"44px","imgSpanCnt":"en_img_span_cnt","imgPanelId":"enlarge_img_panel","imgArr":[{"thumbImgUrl":"http:\u002F\u002Fi.ebayimg.com\u002Ft\u002FFranklin-Library-3V-ESSAYS-OF-MONTAIGNE-Leather-Great-Books-1979-Donald-Frame-\u002F00\u002F$(KGrHqIOKiYE2of1(,woBN2CSp3Mm!~~_39.JPG","thumbImgSize":null,"displayImgUrl":"http:\u002F\u002Fi.ebayimg.com\u002Ft\u002FFranklin-Library-3V-ESSAYS-OF-MONTAIGNE-Leather-Great-Books-1979-Donald-Frame-\u002F00\u002F$(KGrHqIOKiYE2of1(,woBN2CSp3Mm!~~_35.JPG","displayImgSize":null,"zoomEnabled":false,"enlargeEnabled":true,"maxImageUrl":"http:\u002F\u002Fi.ebayimg.com\u002Ft\u002FFranklin-Library-3V-ESSAYS-OF-MONTAIGNE-Leather-Great-Books-1979-Donald-Frame-\u002F00\u002F$(KGrHqIOKiYE2of1(,woBN2CSp3Mm!~~_12.JPG"}]},[['ui.Overlay','w1-9','vi_pic_enlarge_oly',{"hasCloseButton":true,"noFixedPos":true,"id":"vi_pic_enlarge_oly","modal":true,"closeOnBodyClick":true}]]]]]]],['com.ebay.raptor.vi.share.ShareLinks','w1-10',null,{"plaModel":{"key":{"name":"PageLevelActions","id":31,"value":31,"integer":31},"printLink":"http:\u002F\u002Fcgi.ebay.com\u002Fws\u002FeBayISAPI.dll?ViewItem&rt=nc&item=190654183378&si=Fo1C1ZeJUseDU5ewGwuP%2FjeyuDw%3D&print=all&category=29223","reportLink":"http:\u002F\u002Fcgi1.ebay.com\u002Fws\u002FeBayISAPI.dll?ReportThisItemRedirect&_trksid=p2047675.l2566&rt=nc&active=1&itemid=190654183378&seller=zedsbooks","faceBookLikeButtonEnabled":true,"socialSignalsEnabled":true,"socialSignalsJsUrl":"http:\u002F\u002Fir.ebaystatic.com\u002Fz\u002Fen\u002Fy4rh13jhra1p1hxfbirnqn1ty.js","shareWidgetJsUrl":"http:\u002F\u002Fir.ebaystatic.com\u002Fz\u002Fql\u002Fe00mygfypm3epblfql5lts3tr.js","canonicalUrl":"http:\u002F\u002Fwww.ebay.com\u002Fitm\u002FFranklin-Library-3V-ESSAYS-MONTAIGNE-Leather-Great-Books-1979-Donald-Frame-\u002F190654183378"},"shareJsElmId":"ebay-scShare","canonicalurl":"http:\u002F\u002Fwww.ebay.com\u002Fitm\u002FFranklin-Library-3V-ESSAYS-MONTAIGNE-Leather-Great-Books-1979-Donald-Frame-\u002F190654183378","isProdEnv":true,"signalsJsElmId":"ebay-scjs","widgetType":"SIGNALS"}],['com.ebay.raptor.vi.share.ShareLinks','w1-11',null,{"plaModel":{"key":{"name":"PageLevelActions","id":31,"value":31,"integer":31},"printLink":"http:\u002F\u002Fcgi.ebay.com\u002Fws\u002FeBayISAPI.dll?ViewItem&rt=nc&item=190654183378&si=Fo1C1ZeJUseDU5ewGwuP%2FjeyuDw%3D&print=all&category=29223","reportLink":"http:\u002F\u002Fcgi1.ebay.com\u002Fws\u002FeBayISAPI.dll?ReportThisItemRedirect&_trksid=p2047675.l2566&rt=nc&active=1&itemid=190654183378&seller=zedsbooks","faceBookLikeButtonEnabled":true,"socialSignalsEnabled":true,"socialSignalsJsUrl":"http:\u002F\u002Fir.ebaystatic.com\u002Fz\u002Fen\u002Fy4rh13jhra1p1hxfbirnqn1ty.js","shareWidgetJsUrl":"http:\u002F\u002Fir.ebaystatic.com\u002Fz\u002Fql\u002Fe00mygfypm3epblfql5lts3tr.js","canonicalUrl":"http:\u002F\u002Fwww.ebay.com\u002Fitm\u002FFranklin-Library-3V-ESSAYS-MONTAIGNE-Leather-Great-Books-1979-Donald-Frame-\u002F190654183378"},"shareJsElmId":"ebay-scShare","canonicalurl":"http:\u002F\u002Fwww.ebay.com\u002Fitm\u002FFranklin-Library-3V-ESSAYS-MONTAIGNE-Leather-Great-Books-1979-Donald-Frame-\u002F190654183378","isProdEnv":true,"signalsJsElmId":"ebay-scjs","widgetType":"SHARE"}],['ebay.viewItem.AddToWatchLink','w1-12','watchItm',{"msku":false,"linkTopId":"linkTopAct","id":"watchLink","userSignedIn":false,"addToWatchUrl":"http:\u002F\u002Fcgi1.ebay.com\u002Fws\u002FeBayISAPI.dll?MakeTrack&_trksid=p2047675.l1359&rt=nc&item=190654183378&tagId=-99&sourcePage=4340&ssPageName=VIP:watchlink:top:en&wt=ef297dee67fe2674d8a7786e802c309b&etn=Watch list"}],['raptor.vi.ActionPanel','w1-13',null,{"binBtnId":"binBtn_btn","qtyBoxId":"qtyTextBox","isValid":"isValid","bolEnabled":"t","bestOfferURL":"http:\u002F\u002Foffer.ebay.com\u002Fws\u002FeBayISAPI.dll?MakeBestOffer&rev=5&itemId=190654183378","binURL":"http:\u002F\u002Foffer.ebay.com\u002Fws\u002FeBayISAPI.dll?BinController&_trksid=p2047675.l1356&rev=5&item=190654183378&fromPage=2047675&quantity=1&fb=1&gch=1","binEnabled":"f","isModel":{"key":{"name":"ItemSummary","id":1,"value":1,"integer":1},"nonJS":true,"signedIn":false,"binAvailable":true,"bidingAvailable":false,"buyAnother":false,"bidMore":false,"minToBidPrice":null,"showBidLayer":true,"largeButton":false,"itmCondition":"--","binPrice":"US $250.00","binURL":"http:\u002F\u002Foffer.ebay.com\u002Fws\u002FeBayISAPI.dll?BinController&_trksid=p2047675.l1356&rev=5&item=190654183378&fromPage=2047675&quantity=1&fb=1&gch=1","bidPrice":null,"bidURL":null,"bids":0,"bidCurrencySymbol":null,"lotSize":0,"remainQty":1,"maxQtyPerBuyer":0,"availableQuantityThreshold":10,"totalOffers":0,"qtyPurchased":0,"totalBids":0,"timeLeft":{"daysLeft":28,"hoursLeft":13,"minutesLeft":30,"secondsLeft":50},"siteId":0,"versionView":false,"versionQtyTxt":null,"ended":false,"supressQty":false,"sellerView":false,"newCVIPView":false,"printView":false,"previewItem":false,"scheduled":false,"sold":false,"won":false,"totalQty":1,"bidHistoryUrl":null,"gtc":true,"halfOnCore":false,"txnSaleDate":null,"startTime":1331903724000,"endTime":1352639724000,"bid":false,"bin":true,"expired":false,"locale":null,"convertedBinPrice":null,"convertedBidPrice":null,"maxBidPrice":null,"bestOffer":true,"reviewOffer":false,"bestOfferURL":"http:\u002F\u002Foffer.ebay.com\u002Fws\u002FeBayISAPI.dll?MakeBestOffer&rev=5&itemId=190654183378","reserveNotMet":false,"oneClickBid":false,"bidCounterModel":null,"shopCart":true,"shopCartURL":"http:\u002F\u002Fpayments.ebay.com\u002Fws\u002FeBayISAPI.dll?ShopCartProcessor&_trksid=p2047675.l1473&atc=true&item=190654183378&ssPageName=CART:ATC&quantity=1","originalRetailPrice":null,"amtSaved":null,"minAdvertisedPriceExposure":"NONE","pricingTreatment":"NONE","soldOnEBay":false,"soldOffEBay":false,"savingsPercent":null,"buyerView":false,"duringCheckoutUrl":"http:\u002F\u002Foffer.ebay.com\u002Fws\u002FeBayISAPI.dll?BinController&_trksid=p2047675.l2646&rev=5&item=190654183378&fromPage=2047675&quantity=1&fb=1&gch=1","signInUrlWithCartLayerReturn":null,"dsplStpHlpIcon":false,"dsplStpLblVar":false,"shopCartPageURL":"http:\u002F\u002Fpayments.ebay.com\u002Fws\u002FeBayISAPI.dll?ShopCart&ssPageName=VIFS:ATC","binLayer":false,"binLayerURL":null,"signInBinLayerURL":null,"binOnLoad":false,"itemInCart":false,"promoSaleOn":false,"originalPrice":null,"discountedPrice":null,"promoSaleTimeLeft":null,"discountedPercentage":0,"itemRevised":true,"itemRevisionDate":"Aug 22, 2012 05:37:28 PDT","itemRevisionLink":"http:\u002F\u002Fcgi.ebay.com\u002Fws\u002FeBayISAPI.dll?ViewItemRevisionDetails&_trksid=p2047675.l2569&rt=nc&item=190654183378","remnantSetValue":0,"minRemnantSetEnabled":false,"buyerGuaranteeEnabled":true,"buyerGuaranteeUnavailabilityReasonCode":"DEFAULT","ebpbannerRedesign":false,"goTogetherModel":null,"groupGiftModel":null,"classifiedAd":false,"realEstateItem":false,"bestOfferLayer":true,"bestOfferLayerURL":"http:\u002F\u002Foffer.ebay.com\u002Fws\u002FeBayISAPI.dll?MakeQuickBestOffer&rev=5&rptr=1&itemId=190654183378","signInBestOfferLayerURL":"https:\u002F\u002Fsignin.ebay.com\u002Fws\u002FeBayISAPI.dll?SignIn&ru=http%3A%2F%2Fwww.ebay.com%2Fitm%2FFranklin-Library-3V-ESSAYS-OF-MONTAIGNE-Leather-Great-Books-1979-Donald-Frame-%2F190654183378%3Fboolp%3D1","boOnLoad":false,"adminView":false,"euBasePrice":null,"origClosedViewItemUrl":null,"privateSale":false,"vatIncluded":false,"vatExcluded":false,"disableMerchOnVI":false,"currentVatPrice":null,"binVatPrice":null,"currentVatConvertedPrice":null,"binVatConvertedPrice":null,"binController":true,"duringCheckoutLayerUrl":null,"quantity":null,"binLayerEnabled":false,"currencyCode":"USD","showBidsCount":false,"showBidsCountHot":false,"showQtyPurchased":false,"showQtyPurchasedHot":true,"showQtyRemaining":false,"showQtyRemainingHot":true,"binLayerSigninRedirectVIEnabled":false,"conditionDetailEnabled":false,"conditionDetail":null},"bestOfferBtnId":"boBtn_btn"},[['com.ebay.raptor.vi.VIButton','w1-14','binBtn',{"mouseDownClass":"md","btnId":"binBtn_btn"}],['ebay.viewItem.Cart','w1-15','isCartBtn',{"cartOlayId":"isCartBtn_olay","cartBtnId":"isCartBtn_btn","id":"isCartBtn_btn","cartUrl":"http:\u002F\u002Fpayments.ebay.com\u002Fws\u002FeBayISAPI.dll?ShopCartProcessor&_trksid=p2047675.l1473&atc=true&item=190654183378&ssPageName=CART:ATC&quantity=1"},[['com.ebay.raptor.vi.VIButton','w1-16','isCartBtn',{"mouseDownClass":"md","btnId":"isCartBtn_btn"}]]],['com.ebay.raptor.vi.VIButton','w1-17','boBtn',{"mouseDownClass":"md","btnId":"boBtn_btn"}],['raptor.vi.BestOffer','w1-18',null,{"boOnLoad":false,"mkQkBoSiUrl":"https:\u002F\u002Fsignin.ebay.com\u002Fws\u002FeBayISAPI.dll?SignIn&ru=http%3A%2F%2Fwww.ebay.com%2Fitm%2FFranklin-Library-3V-ESSAYS-OF-MONTAIGNE-Leather-Great-Books-1979-Donald-Frame-%2F190654183378%3Fboolp%3D1","boTrbrId":"_BO_TRBR_ID","isRO":"f","boCntId":"_BO_CNT_ID","mkQkBoUrl":"http:\u002F\u002Foffer.ebay.com\u002Fws\u002FeBayISAPI.dll?MakeQuickBestOffer&rev=5&rptr=1&itemId=190654183378","boOlyId":"e1"},[['ui.Overlay','w1-19','e1',{"hasCloseButton":true,"noFixedPos":true,"id":"e1","modal":true}]]]]],['ebay.viewItem.AddToList','w1-20','',{"charLimit":35,"watchListId":"-99","addtoNewBtmErrId":"atl_atn_btm_err_Id","addtoNewInputTxt":"Type a new list name here","drpdwnMinWidth":"150","itemId":"190654183378","msku":false,"drpdwnListId":"atl_drpdwnListId","addtoNewDivErrId":"atl_atn_div_err_Id","watchListFullTxt":"Watch list is full","atnId":"atl_atnId","isUserSignedIn":false,"addtoReplaceTxt":"Add to $","id":"add_to_list_dropdown","addtoNewDefErrId":"atl_atn_def_err_Id","userListModel":{"key":{"name":"UserList","id":33,"value":33,"integer":33},"listMenus":[{"listId":"-99","listName":"Watch list","listURL":"javascript:;","disabled":false,"full":false,"watchList":true},{"listId":"-97","listName":"Wish list","listURL":"javascript:;","disabled":false,"full":false,"watchList":false}],"addToNewDisabled":false,"maxListsAllowed":50,"variationMap":null,"removeFromListBaseURL":"http:\u002F\u002Fmy.ebay.com\u002Fws\u002FeBayISAPI.dll?MyEbayBeta&vi=true&SubmitAction.DeleteListEntries=x","listNameMaxChars":35,"myEbayListBaseUrl":"http:\u002F\u002Fmy.ebay.com\u002Fws\u002FeBayISAPI.dll?MyEbayBeta&CurrentPage=MyeBayNextListIndex"},"addToNewDisabled":false,"myEbayWatchListUrl":"http:\u002F\u002Fmy.ebay.com\u002Fws\u002FeBayISAPI.dll?MyEbayBeta&CurrentPage=MyeBayNextWatching&ssPageName=STRK:ME:LNLK:MEWAX","statusMsgId":"atl_status_msg","addtoNewRespErrId":"atl_atn_resp_err_Id","addedToWishListTxt":"Added to your Wish list","myEbayOtherListBaseUrl":"http:\u002F\u002Fmy.ebay.com\u002Fws\u002FeBayISAPI.dll?MyEbayBeta&CurrentPage=MyeBayNextListIndex","wishListTrackingParam":"p2047675.l2876","drpdwnLayerId":"atl_drpdwnLayerId","otherListFullTxt":"$ is full","drpdwnMaxWidth":"300","addToWatchUrl":"http:\u002F\u002Fcgi1.ebay.com\u002Fws\u002FeBayISAPI.dll?MakeTrack&_trksid=p2047675.l1360&rt=nc&item=190654183378&sourcePage=4340&ssPageName=VIP:watchlink:top:en&SubmitAction.AddToListVI=x&wt=ef297dee67fe2674d8a7786e802c309b","wishListFullTxt":"Wish list is full","cancelBtnId":"atl_atn_cancel_btn_Id","myEbayBaseUrl":"http:\u002F\u002Fmy.ebay.com\u002Fws\u002FeBayISAPI.dll?MyEbayBeta&entityInfo=190654183378^ITEM&ru=http%3A%2F%2Fwww.ebay.com%2Fitm%2FFranklin-Library-3V-ESSAYS-MONTAIGNE-Leather-Great-Books-1979-Donald-Frame-%2F190654183378&vi=true&SubmitAction.AddToListVI=x&pItemId=190654183378","atwDisabled":false,"statusMsgTxt":"Added to your $ list","atwAltCaption":"Add to list","addtoNewInputId":"atl_atn_input_Id","atlArrId":"atl_arr","removeListUrl":"http:\u002F\u002Fmy.ebay.com\u002Fws\u002FeBayISAPI.dll?MyEbayBeta&vi=true&SubmitAction.DeleteListEntries=x","addtoNewBtnId":"atl_atn_btn_Id","ellipses":"...","maxListsAllowed":50,"isItemEnded":false,"addedToWatchListTxt":"Added to your Watch list","wishListId":"-97","otherListTrackingParam":"p2047675.l2877","addnewOverlayId":"atl_addnewOlyId","btnDefDispName":"Add to Watch list","statusMsgTxtMulti":"Added to $ lists","watchName":"Watch","statusMsgContId":"atl_status_msg_content","atlBtnId":"atl_btn"}],['ebay.viewItem.Incentives','w1-21','incentives',{"bmlDiv":"bmlDiv","isRewardsJSON":false,"isShowNectarPoints":false,"incentiveDiv":"incentiveDiv","isRewardsCall":false,"couponDiv":"couponDiv","id":"incentives","rewardsDiv":"rewardsDiv","itemId":190654183378}],['ui.Overlay','w1-22','imprtoly',{"hasCloseButton":true,"pointerType":"horizontal","trigger":"imprthlp","position":"pointer","id":"imprtoly","closeOnBodyClick":true}],['ui.Overlay','w1-23','',{"hasCloseButton":true,"pointerType":"horizontal","trigger":"hldhlp","position":"pointer","id":"w1-23-overlay","closeOnBodyClick":true}],['com.ebay.raptor.vi.isum.buyerProtection','w1-24','',{"siteId":0,"siteUrl":"http%3A%2F%2Fpages.ebay.com%2Febaybuyerprotection%2Findex.html","ebpVarWidthId":"ebpVarWidth","isTwoCol":false,"ebpHdrId":"ebpHdr"}],['ui.Tab','w1-25','viTabs',{"id":"viTabs"},[['com.ebay.raptor.vi.shipping.CalculateShipping','w1-26','sh_calc',{"countryZipMap":{"1":true,"2":true},"getRatesUrl":"http:\u002F\u002Fwww.ebay.com\u002Fitm\u002Fgetrates?_trksid=p2047675.l2682&item=190654183378","countryDd":"shCountry","zipBx":"shZipCode","id":"sh_calc","remQty":1,"qtyBx":"shQuantity","getRatesBtn":"shGetRates"}]]],['com.ebay.raptor.vi.bid.BidLayer','w1-27','pb_layer',{"invokeClkId":"_OPN_ONLOAD_PB_LAYER","overlayId":"w1-27-_olp","svcId":"_OPN_PB_LAYER","openOnLoad":false},[['ui.Overlay','w1-28','w1-27-_olp',{"hasCloseButton":true,"width":"470","id":"w1-27-_olp","modal":true},[['com.ebay.raptor.vi.bid.placebid.PlaceBid','w1-29','w1-27-_cnt',{"reviewBidId":"w1-29-_review","enterBidId":"w1-29-_enter","bidInitURL":"https:\u002F\u002Fsignin.ebay.com\u002Fws\u002FeBayISAPI.dll?SignIn&ru=http%3A%2F%2Fwww.ebay.com%2Fitm%2FFranklin-Library-3V-ESSAYS-OF-MONTAIGNE-Leather-Great-Books-1979-Donald-Frame-%2F190654183378%3Fbolp%3D1","minuteCharTxt":"w1-29-_m","overlayId":"w1-27-_olp","bidAgainURL":"http:\u002F\u002Foffer.ebay.com\u002Fws\u002FeBayISAPI.dll?MakeQuickBid&bidagain=true&mode=0&item=190654183378&f=json&isnullzero=true&fromPage=2047675&flow=bm","currencyId":"w1-29-_currency","INVALID_BIDAMOUNT":"w1-29-_invalidBid","grayArea":"w1-29-_grey","defaultImpChargeTxt":"w1-29-_impChargeDefault","confirmBidURL":"http:\u002F\u002Foffer.ebay.com\u002Fws\u002FeBayISAPI.dll?MakeQuickBid&mode=1&item=190654183378&f=json&fromPage=2047675&stok=-586352477&flow=bm&uiid=1187735474","wrapper":"_wrp","confirmBidTxt":"w1-29-_bidConfirmation","refreshUrl":"http:\u002F\u002Fwww.ebay.com\u002Fitm\u002FFranklin-Library-3V-ESSAYS-MONTAIGNE-Leather-Great-Books-1979-Donald-Frame-\u002F190654183378?&autorefresh=true","HIGHBIDDER":"w1-29-_highBid","cancelTxt":"w1-29-_cancel","disclaimerId":"w1-29-_disc","curBidId":"w1-29-_cur","placeBidURL":"https:\u002F\u002Fsignin.ebay.com\u002Fws\u002FeBayISAPI.dll?SignIn&ru=http%3A%2F%2Fwww.ebay.com%2Fitm%2FFranklin-Library-3V-ESSAYS-OF-MONTAIGNE-Leather-Great-Books-1979-Donald-Frame-%2F190654183378%3Fbolp%3D1","approx":"_approx","bidBtnId":"w1-29-_place","placeBidTxt":"w1-29-_placeBid","svcId":"_OPN_PB_LAYER","DECSEP":"w1-29-_decsep","lessTimeCss":"redTime","counterStopSvcId":"COUNTER_STOP_SVC_ID","impChBidTxtId":"w1-29-_impChBid","changeTxt":"w1-29-_change","OUTBIDDER":"w1-29-_outBid","minBidTxt":"w1-29-_minToBid","secondCharTxt":"w1-29-_s","HIGHBIDDER_FIRST":"w1-29-_highBidFrst","dummy":"##1##","LOW_BIDAMOUNT":"w1-29-_lowBid","statusMsgId":"w1-29-_statusMsg","minBidHBTxt":"w1-29-_minToBidHighBidder","reviewBidTxt":"w1-29-_reviewYourBid","exclVAT":"_exvat","detailLevelId":0,"timeLeftId":"w1-29-_timeLeft","BID_GREATER_THAN_BIN":"w1-29-_moreThanBin","HIGHBIDDER_60_MIN_LEFT":"w1-29-_highBid60MinsLeft","dayTxt":"w1-29-_day","hourCharTxt":"w1-29-_h","INVALID_BIDAMOUNT_OF_HIGH_BIDDER":"w1-29-_invalidHighBid","maxBidParamName":"maxbid","freeShpTxt":"w1-29-_freeShipping","HIGHBIDDER_1_MAX_BID_AWAY":"w1-29-_highBid1MaxBidAway","yourMaxBidTxt":"w1-29-_yourMaximumBid","lable":"_lbl","isRefreshOnClose":true,"resumeBidId":"w1-29-_resume","impChId":"w1-29-_impCh","autoRefreshSvcId":"AUTO_REFRESH_SVC","min":"_min","confirmBtnTxt":"w1-29-_confirmBtnTxt","increaseBtnTxt":"w1-29-_increaseBtnTxt","defaultShpTxt":"w1-29-_shippingDefault","bidTitleId":"w1-29-_title","closeTxt":"w1-29-_close","placeBtnTxt":"w1-29-_placeBtnTxt","btn":"_btn","hoursTxt":"w1-29-_hours","calcImportChargeUrl":"http:\u002F\u002Fwww.ebay.com\u002Fitm\u002Fgetrates?_trksid=p2047675.l2681&item=190654183378&quantity=1","HIGHBIDDER_RESERVE_NOT_MET":"w1-29-_highBidReserveNotMet","disclaimerGspId":"w1-29-_disc_gsp","BUYER_BLOCKED_NO_LINKED_PAYPAL_ACCOUNT":"w1-29-_noPaypal","shippingId":"w1-29-_shp","hourTxt":"w1-29-_hour","value":"_val","counterStartSvcId":"COUNTER_START_SVC_ID","approxTxt":"w1-29-_approximately","loadingId":"w1-29-_loading","incMaxBidTxt":"w1-29-_increaseMaxBid","link":"_lnk","inclVAT":"_invat","dayCharTxt":"w1-29-_d","counterSvcId":"COUNTER_SVC_ID"},[['com.ebay.raptor.vi.StatusMsg','w1-30','w1-29-_statusMsg',{"sizeClz":"smm-o ","isRefresh":false,"smClz":"sm-o","message":"w1-30-_m","outer":"w1-30-_o"}],['com.ebay.raptor.vi.VIButton','w1-31','w1-29-_place',{"mouseDownClass":"md","btnId":"w1-29-_place_btn"}]]]]]]],['com.ebay.raptor.vi.bid.BidLayer','w1-32','ocb',{"invokeClkId":"_OPN_ONLOAD_OCB_LAYER","overlayId":"w1-32-_olp","svcId":"w1-32-_oly","openOnLoad":false},[['ui.Overlay','w1-33','w1-32-_olp',{"hasCloseButton":true,"width":"500","id":"w1-32-_olp","modal":true,"draggable":true},[['com.ebay.raptor.vi.bid.oneclick.OneClickBid','w1-34','w1-32-_cnt',{"reviewBidId":"w1-34-_review","enterBidId":"w1-34-_enter","bidInitURL":"http:\u002F\u002Foffer.ebay.com\u002Fws\u002FeBayISAPI.dll?MakeQuickBid&mode=0&item=190654183378&f=json&fromPage=2047675&flow=ocb","errorClz":"err","overlayId":"w1-32-_olp","currencyId":"w1-34-_currency","minutesTxt":"w1-34-_mins","wrapper":"_wrp","startingBidTxt":"w1-34-_start","refreshUrl":"http:\u002F\u002Fwww.ebay.com\u002Fitm\u002FFranklin-Library-3V-ESSAYS-MONTAIGNE-Leather-Great-Books-1979-Donald-Frame-\u002F190654183378?&autorefresh=true","disclaimerId":"w1-34-_disc","curBidId":"w1-34-_cur","daysTxt":"w1-34-_day","approx":"_approx","bidBtnId":"w1-34-_ocb","svcId":"_OPN_OCB_LAYER","counterStopSvcId":"COUNTER_STOP_SVC_ID","AUCTION_ENDED_WINNER":"w1-34-_aewin","dummy":"##1##","statusMsgId":"w1-34-_statusMsg","HIGHBIDDER_RESERVE_NOT_MET_STATUS":"w1-34-_highnr","successClz":"sccs","OUTBIDDER_STATUS":"w1-34-_out","timeLeftId":"w1-34-_timeLeft","bidURL":"http:\u002F\u002Foffer.ebay.com\u002Fws\u002FeBayISAPI.dll?MakeQuickBid&mode=1&item=190654183378&f=json&fromPage=2047675&stok=-586352477&flow=ocb&uiid=1187735474","closeId":"w1-34-_cls","detailLevel":6,"learnMoreId":"w1-34-_lrn","dayTxt":"w1-34-_day","MIN_BID_ERROR_STATUS":"w1-34-_errmin","HIGHBIDDER_STATUS":"w1-34-_high","minuteTxt":"w1-34-_min","olySvcId":"w1-32-_oly","maxBidParamName":"maxbid","updateId":"w1-34-_updt","invokeClkId":"_OPN_ONLOAD_OCB_LAYER","lable":"_lbl","HIGH_BID_ERROR_STATUS":"w1-34-_errhigh","isRefreshOnClose":true,"AUCTION_ENDED_RESERVE_NOT_MET":"w1-34-_aenrwin","autoRefreshSvcId":"AUTO_REFRESH_SVC","openOnLoad":false,"AUCTION_ENDED_OUTBID":"w1-34-_aeout","closeTxt":"w1-34-_close","btn":"_btn","secondTxt":"w1-34-_sec","hoursTxt":"w1-34-_hours","winningBidTxt":"w1-34-_win","updateURL":"http:\u002F\u002Fwww.ebay.com\u002Fitm\u002Fws\u002FeBayISAPI.dll?ViewItemLite&item=190654183378&si=Fo1C1ZeJUseDU5ewGwuP%2FjeyuDw%3D","hourTxt":"w1-34-_hour","value":"_val","secondsTxt":"w1-34-_secs","warningClz":"wrng","counterStartSvcId":"COUNTER_START_SVC_ID","approxTxt":"w1-34-_approximately","MAKE_BID_ERROR_STATUS":"w1-34-_errmake","counterSvcId":"COUNTER_SVC_ID"},[['com.ebay.raptor.vi.StatusMsg','w1-35','w1-34-_statusMsg',{"sizeClz":"smi-o ","isRefresh":false,"smClz":"sm-o","message":"w1-35-_m","outer":"w1-35-_o"}],['com.ebay.raptor.vi.VIButton','w1-36','w1-34-_ocb',{"mouseDownClass":"md","btnId":"w1-34-_ocb_btn"}]]]]]]],['com.ebay.raptor.vi.isum.smartBackTo','w1-37','smbWidget',{"isBacktoSearch":false,"showIcon":false,"smtBackToAnchorId":"smtBackToAnchor"}],['com.ebay.raptor.vi.cookie.ScreenDetail','w1-38',null,{"currentViewportValue":{"maxWidth":-1,"minWidth":-1,"name":"DEFAULT","id":0,"value":0,"integer":0},"cookieletName":"pbf","resBits":[85,86,87],"viewportRange":[{"maxWidth":-1,"minWidth":-1,"name":"DEFAULT","id":0,"value":0,"integer":0},{"maxWidth":1020,"minWidth":0,"name":"VIEWPORT_1","id":1,"value":1,"integer":1},{"maxWidth":1024,"minWidth":1021,"name":"VIEWPORT_2","id":2,"value":2,"integer":2},{"maxWidth":1148,"minWidth":1025,"name":"VIEWPORT_3","id":3,"value":3,"integer":3},{"maxWidth":1152,"minWidth":1149,"name":"VIEWPORT_4","id":4,"value":4,"integer":4},{"maxWidth":1276,"minWidth":1153,"name":"VIEWPORT_5","id":5,"value":5,"integer":5},{"maxWidth":1280,"minWidth":1277,"name":"VIEWPORT_6","id":6,"value":6,"integer":6},{"maxWidth":2147483647,"minWidth":1281,"name":"VIEWPORT_7","id":7,"value":7,"integer":7}],"currentResValue":{"maxWidth":-1,"minWidth":-1,"name":"DEFAULT","id":0,"value":0,"integer":0},"viewportBits":[69,70,71],"resRange":[{"maxWidth":-1,"minWidth":-1,"name":"DEFAULT","id":0,"value":0,"integer":0},{"maxWidth":1024,"minWidth":0,"name":"RES_1024","id":1,"value":1,"integer":1},{"maxWidth":1152,"minWidth":1025,"name":"RES_1152","id":2,"value":2,"integer":2},{"maxWidth":1280,"minWidth":1153,"name":"RES_1280","id":3,"value":3,"integer":3},{"maxWidth":1366,"minWidth":1281,"name":"RES_1366","id":4,"value":4,"integer":4},{"maxWidth":1440,"minWidth":1367,"name":"RES_1440","id":5,"value":5,"integer":5},{"maxWidth":1680,"minWidth":1441,"name":"RES_1680","id":6,"value":6,"integer":6},{"maxWidth":2147483647,"minWidth":1681,"name":"RES_MAX","id":7,"value":7,"integer":7}],"cookieName":"dp1"}],['raptor.merch.MerchManager','w1-39','merch',{"customCallbackHandler":false,"th":1000,"pids":["100009","100010","100047"],"enableOnScroll":true,"url":"http:\u002F\u002Fmerch.ebay.com\u002Fws\u002FeBayISAPI.dll?V4Ajax&svcid=NuMEService&reqttype=NVPAIR&resptype=JSCALLBACK&request=%26itm%3D190654183378%26plmt%3D100009%2C100010%2C100047%26usrSt%3D4%26si%3D0%26ctg%3D29223%26guid%3D5c83d31313a0a56a0f277a17fffed8fa%26slr%3D13154134%26usrSi%3DUK%26locale%3Den_US%26fmt%3Dhtml%26_qi%3Dt6ulcpjqcj9%253Fvo%257B2d71f%252B%253E20g&CurrentPage=NuME-100009-100010-100047-0"}]);new (raptor.require('raptor.tracking.core.Tracker'))({"psi":"Ag9MUAAE*","rover":{"clk":"/roverclk/0/0/9","imp":"/roverimp/0/0/9","uri":"http://rover.ebay.com"},"pid":"p2047675"});raptor.require('raptor.tracking.idmap.IdMap').roverService("http://rover.ebay.com/idmap/0?footer");})();
1836
+ <!-- Adding merch content js -->
1837
+ </script><script>if (typeof oGaugeInfo != "undefined"){oGaugeInfo.iLoadST=(new Date()).getTime();oGaugeInfo.st1a=183;}</script>
1838
+ <script type="text/javascript"><!--
1839
+ var eBayTRPageName="TR_ViewItem";var eBayTRDisplayName="Fixed Price - Item #190654183378:Franklin Library 3V ESSAYS OF MONTAIGNE Leather Great Books 1979 Donald Frame ";var eBayTREiasId="nY+sHZ2PrBmdj6wVnY+sEZ2PrA2dj6wJkYGgDZSDogidj6x9nY+seQ==";var eBayTRItemId="190654183378";var eBayTRItemTitle="Franklin Library 3V ESSAYS OF MONTAIGNE Leather Great Books 1979 Donald Frame ";var eBayTRListingFormat="Fixed Price";var eBayTRStoreSearchTerm="";var eBayTRHomePage="";var eBayTREvent="";var eBayTRInactive=false;
1840
+ //--></script>
1841
+
1842
+ <script src="http://ir.ebaystatic.com/z/me/nhsju1ggrq1h3mgtvypuou5eq.js" type="text/javascript"></script>
1843
+ <script src="http://ir.ebaystatic.com/z/i0/cgtlkqlmjyzknhh23whrczg0d.js" type="text/javascript"></script>
1844
+ </div><!-- RcmdId _vi_index-jsp,RlogId t6ulcpjqcj9%3Fvo%7B2d71f%2B%3E20g-13a5c83d31c-0x10f -->
1845
+ </body>
1846
+ </html>
1847
+ <img src='http://rover.ebay.com/roversync/?site=0&stg=1&mpt=1350171874068'></img>
1848
+ http_version: "1.1"
1849
+ recorded_at: Sat, 13 Oct 2012 23:44:37 GMT