amazon_seller_central 0.3.0 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Gemfile.lock +3 -3
- data/VERSION +1 -1
- data/amazon_seller_central.gemspec +5 -4
- data/lib/amazon_seller_central/inventory_page.rb +4 -4
- data/spec/lib/feedback_spec.rb +2 -1
- data/spec/lib/inventory_page_spec.rb +19 -17
- data/spec/lib/listing_set_spec.rb +6 -6
- data/spec/lib/mechanizer_spec.rb +4 -3
- data/spec/lib/payments_page_spec.rb +1 -0
- data/spec/support/sample_pages.rb +5 -5
- data/spec/support/sample_pages/Seller Central Homepage.html +1504 -968
- data/spec/support/sample_pages/Seller Central Redirect.html +296 -530
- data/spec/support/sample_pages/listings_page_1.html +12000 -10317
- metadata +89 -52
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 70be9ababfe212aee8304c2191a19a72ffe601ba
|
4
|
+
data.tar.gz: 19bf6ce4c79d617b79d9d977114d587806202532
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 8f8ac03ee16070fb4e5d2f43b52d3530f23bd2526011f5f8075fb84e511a7237ad130756145c52b256188a153dfe28d32764fe0f4670d4599c4d959defaec660
|
7
|
+
data.tar.gz: 30ec3b637afdea372c765e90a2205281f3701ad2f1316450bb2e8b84e7526351e65d95bb3366000461b6fb68bc53e81e61932933aaecbbcfde2ecc9da6400541
|
data/Gemfile.lock
CHANGED
@@ -10,7 +10,7 @@ GEM
|
|
10
10
|
i18n (~> 0.4)
|
11
11
|
fakeweb (1.3.0)
|
12
12
|
ffi (1.0.9)
|
13
|
-
git (1.2.
|
13
|
+
git (1.2.6)
|
14
14
|
guard (0.5.0)
|
15
15
|
thor (~> 0.14.6)
|
16
16
|
guard-rspec (0.4.0)
|
@@ -23,7 +23,7 @@ GEM
|
|
23
23
|
git (>= 1.2.5)
|
24
24
|
rake
|
25
25
|
rdoc
|
26
|
-
json (1.
|
26
|
+
json (1.8.1)
|
27
27
|
libnotify (0.5.6)
|
28
28
|
linecache19 (0.5.12)
|
29
29
|
ruby_core_source (>= 0.1.4)
|
@@ -43,7 +43,7 @@ GEM
|
|
43
43
|
nokogiri (1.6.0)
|
44
44
|
mini_portile (~> 0.5.0)
|
45
45
|
ntlm-http (0.1.1)
|
46
|
-
rake (10.0
|
46
|
+
rake (10.1.0)
|
47
47
|
rb-inotify (0.8.5)
|
48
48
|
ffi (>= 0.5.0)
|
49
49
|
rcov (0.9.9)
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.1
|
@@ -2,14 +2,15 @@
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
|
+
# stub: amazon_seller_central 0.3.1 ruby lib
|
5
6
|
|
6
7
|
Gem::Specification.new do |s|
|
7
8
|
s.name = "amazon_seller_central"
|
8
|
-
s.version = "0.3.
|
9
|
+
s.version = "0.3.1"
|
9
10
|
|
10
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
12
|
s.authors = ["optoro"]
|
12
|
-
s.date = "2013-
|
13
|
+
s.date = "2013-12-02"
|
13
14
|
s.description = "This gem is intended to wrap Amazon's SellerCentral pages with a Ruby API. Currently this gem supports accessing buyer feedback only."
|
14
15
|
s.email = "dev@optoro.com"
|
15
16
|
s.extra_rdoc_files = [
|
@@ -79,11 +80,11 @@ Gem::Specification.new do |s|
|
|
79
80
|
s.homepage = "http://github.com/optoro/amazon_seller_central"
|
80
81
|
s.licenses = ["MIT"]
|
81
82
|
s.require_paths = ["lib"]
|
82
|
-
s.rubygems_version = "1.
|
83
|
+
s.rubygems_version = "2.1.10"
|
83
84
|
s.summary = "Ruby API to access Amazon's SellerCentral"
|
84
85
|
|
85
86
|
if s.respond_to? :specification_version then
|
86
|
-
s.specification_version =
|
87
|
+
s.specification_version = 4
|
87
88
|
|
88
89
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
89
90
|
s.add_runtime_dependency(%q<mechanize>, [">= 2.0.0"])
|
@@ -33,7 +33,7 @@ module AmazonSellerCentral
|
|
33
33
|
@listings ||= begin
|
34
34
|
set = ListingSet.new
|
35
35
|
# being more specific here breaks on some pages
|
36
|
-
@page.parser.css('tr').select{|r| r['id'] =~ /^sku-/ && r.css('td').size ==
|
36
|
+
@page.parser.css('tr').select{|r| r['id'] =~ /^sku-/ && r.css('td').size == 15 }.each do |row|
|
37
37
|
set << listing_row_to_object(row)
|
38
38
|
end
|
39
39
|
set
|
@@ -96,11 +96,11 @@ module AmazonSellerCentral
|
|
96
96
|
l.created_at = parse_amazon_time(txt)
|
97
97
|
when 8
|
98
98
|
l.quantity = (inputs = td.css('input')).any? ? inputs.first['value'].to_i : txt.to_i
|
99
|
-
when 9
|
100
|
-
l.price = get_price(td)
|
101
99
|
when 10
|
102
|
-
l.
|
100
|
+
l.price = get_price(td)
|
103
101
|
when 11
|
102
|
+
l.condition = txt
|
103
|
+
when 12
|
104
104
|
l.low_price = get_low_price(td)
|
105
105
|
when 3
|
106
106
|
l.status = txt
|
data/spec/lib/feedback_spec.rb
CHANGED
@@ -12,6 +12,7 @@ describe "Feedback" do
|
|
12
12
|
end
|
13
13
|
|
14
14
|
it "should parse the date correctly" do
|
15
|
+
pending "Needs FakeWeb updates."
|
15
16
|
fp = AmazonSellerCentral::FeedbackPage.load_first_page
|
16
17
|
f = fp.parse
|
17
18
|
feedback_date = f.first.date
|
@@ -19,4 +20,4 @@ describe "Feedback" do
|
|
19
20
|
feedback_date.month.should == 7
|
20
21
|
feedback_date.day.should == 3
|
21
22
|
end
|
22
|
-
end
|
23
|
+
end
|
@@ -25,25 +25,25 @@ describe "InventoryPage" do
|
|
25
25
|
listings = @first_page.listings
|
26
26
|
listings.size.should == 250
|
27
27
|
|
28
|
-
listings[3].sku.should == "
|
29
|
-
listings[3].asin.should == "
|
30
|
-
listings[3].product_name.should == "
|
31
|
-
listings[3].created_at.should == Time.parse("
|
32
|
-
listings[3].quantity.should ==
|
33
|
-
listings[3].condition.should == "
|
34
|
-
listings[3].price_cents.should ==
|
28
|
+
listings[3].sku.should == "PR131121-11"
|
29
|
+
listings[3].asin.should == "B0015AB7U6"
|
30
|
+
listings[3].product_name.should == "Pinnacle Speakers PS Sub 225 12-Inch 225 Watt Front Firing Powered Subwoofer (Black)"
|
31
|
+
listings[3].created_at.should == Time.parse("2013-12-02 10:52:21")
|
32
|
+
listings[3].quantity.should == 0
|
33
|
+
listings[3].condition.should == "New"
|
34
|
+
listings[3].price_cents.should == 19069
|
35
35
|
listings[3].low_price.should == nil
|
36
36
|
listings[3].low_price_cents.should == nil
|
37
|
-
listings[3].status.should == "
|
38
|
-
|
39
|
-
listings[0].sku.should == "
|
40
|
-
listings[0].asin.should == "
|
41
|
-
listings[0].product_name.should == "
|
42
|
-
listings[0].created_at.should == Time.parse("
|
43
|
-
listings[0].quantity.should ==
|
44
|
-
listings[0].condition.should == "New"
|
45
|
-
listings[0].price_cents.should ==
|
46
|
-
listings[0].status.should == "
|
37
|
+
listings[3].status.should == "Inactive (Out of Stock)"
|
38
|
+
|
39
|
+
listings[0].sku.should == "PR111001-1"
|
40
|
+
listings[0].asin.should == "B00C81G378"
|
41
|
+
listings[0].product_name.should == 'Ematic 7" Pro Google Android 4.0 Capacitive Multi-Touch Tablet 4GB w/WiFi Black'
|
42
|
+
listings[0].created_at.should == Time.parse("2013-12-02 11:03:04")
|
43
|
+
listings[0].quantity.should == 0
|
44
|
+
listings[0].condition.should == "Used - Like New"
|
45
|
+
listings[0].price_cents.should == 4899
|
46
|
+
listings[0].status.should == "Inactive (Out of Stock)"
|
47
47
|
end
|
48
48
|
|
49
49
|
# it "loads listings appropriately for another sample page" do
|
@@ -64,6 +64,7 @@ describe "InventoryPage" do
|
|
64
64
|
# end
|
65
65
|
|
66
66
|
it "accepts a set of Listing objects to apply updates to the page" do
|
67
|
+
pending "Needs FakeWeb updates."
|
67
68
|
listings = @first_page.listings
|
68
69
|
l = listings[0]
|
69
70
|
# l.quantity = 0
|
@@ -85,6 +86,7 @@ describe "InventoryPage" do
|
|
85
86
|
end
|
86
87
|
|
87
88
|
it "raises an unsupported modification error when trying to set the price on an incomplete listing" do
|
89
|
+
pending "Needs FakeWeb updates."
|
88
90
|
listings = @first_page.listings
|
89
91
|
l = listings[2]
|
90
92
|
l.price = 24.26
|
@@ -10,16 +10,16 @@ describe "ListingSet" do
|
|
10
10
|
end
|
11
11
|
|
12
12
|
it "allows find by sku" do
|
13
|
-
listing = @listing_set.find("
|
14
|
-
listing.sku.should == "
|
15
|
-
listing.asin.should == "
|
13
|
+
listing = @listing_set.find("PR111001-1")
|
14
|
+
listing.sku.should == "PR111001-1"
|
15
|
+
listing.asin.should == "B00C81G378"
|
16
16
|
end
|
17
17
|
|
18
18
|
it "allows find by asin" do
|
19
|
-
listings = @listing_set.find("
|
19
|
+
listings = @listing_set.find("B00C81G378")
|
20
20
|
listings.should be_kind_of(Enumerable)
|
21
|
-
listings.first.sku.should == "
|
22
|
-
listings.first.asin.should == "
|
21
|
+
listings.first.sku.should == "PR111001-1"
|
22
|
+
listings.first.asin.should == "B00C81G378"
|
23
23
|
end
|
24
24
|
|
25
25
|
# it "allows where by quantity" do
|
data/spec/lib/mechanizer_spec.rb
CHANGED
@@ -4,7 +4,7 @@ describe "Mechanizer" do
|
|
4
4
|
it "retains access to the last page loaded" do
|
5
5
|
mech = AmazonSellerCentral.mechanizer
|
6
6
|
mech.login_to_seller_central
|
7
|
-
mech.last_page.body.should =~ /
|
7
|
+
mech.last_page.body.should =~ /BLINQ/
|
8
8
|
end
|
9
9
|
|
10
10
|
it "logs in and returns the home page" do
|
@@ -40,11 +40,12 @@ describe "Mechanizer" do
|
|
40
40
|
it "logs in twice successfully" do
|
41
41
|
mech = AmazonSellerCentral.mechanizer
|
42
42
|
mech.login_to_seller_central
|
43
|
-
mech.last_page.body.should =~ /
|
43
|
+
mech.last_page.body.should =~ /BLINQ/
|
44
44
|
mech.follow_link_with :text => "Feedback"
|
45
45
|
|
46
|
+
mech.reset!
|
46
47
|
mech.login_to_seller_central
|
47
|
-
mech.last_page.body.should =~ /
|
48
|
+
mech.last_page.body.should =~ /BLINQ/
|
48
49
|
end
|
49
50
|
|
50
51
|
end
|
@@ -3,6 +3,7 @@ require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
|
|
3
3
|
describe "PaymentsPage" do
|
4
4
|
describe "available_report_ids" do
|
5
5
|
it "should return an array of report ids that are available for you to download from seeler central" do
|
6
|
+
pending "Needs FakeWeb updates."
|
6
7
|
report_ids = AmazonSellerCentral::PaymentsPage.available_report_ids
|
7
8
|
report_ids.class.should == Array
|
8
9
|
report_ids.count.should == 10
|
@@ -15,18 +15,18 @@ def mock_seller_central_page_results!
|
|
15
15
|
FakeWeb.allow_net_connect = false
|
16
16
|
FakeWeb.register_uri(:any, 'https://sellercentral.amazon.com/', :response => mock_pages[:seller_central])
|
17
17
|
FakeWeb.register_uri(:any, 'https://sellercentral.amazon.com/gp/homepage.html', :response => mock_pages[:seller_central_redirect])
|
18
|
-
FakeWeb.register_uri(:post, 'https://sellercentral.amazon.com/
|
18
|
+
FakeWeb.register_uri(:post, 'https://sellercentral.amazon.com/ap/widget', :response => mock_pages[:seller_central_homepage]) # sign in
|
19
19
|
|
20
20
|
# Feedback
|
21
|
-
FakeWeb.register_uri(:get, 'https://sellercentral.amazon.com/gp/feedback-manager
|
21
|
+
FakeWeb.register_uri(:get, 'https://sellercentral.amazon.com/gp/seller-rating/pages/feedback-manager.html/ref=ag_feedback_dnav_home_', :response => mock_pages[:feedback_manager])
|
22
22
|
FakeWeb.register_uri(:get, 'https://sellercentral.amazon.com/gp/feedback-manager/view-all-feedback.html?ie=UTF8&sortType=sortByDate&dateRange=&descendingOrder=1', :response => mock_pages[:feedback_page_1])
|
23
23
|
FakeWeb.register_uri(:get, 'https://sellercentral.amazon.com/gp/feedback-manager/view-all-feedback.html?ie=UTF8&sortType=sortByDate&pageSize=50&dateRange=¤tPage=2&descendingOrder=1', :response => mock_pages[:feedback_page_2])
|
24
24
|
FakeWeb.register_uri(:get, 'https://sellercentral.amazon.com/gp/feedback-manager/view-all-feedback.html?ie=UTF8&sortType=sortByDate&pageSize=50&dateRange=¤tPage=3&descendingOrder=1', :response => mock_pages[:feedback_page_last])
|
25
25
|
|
26
26
|
# Inventory
|
27
|
-
FakeWeb.register_uri(:get, 'https://sellercentral.amazon.com/
|
28
|
-
FakeWeb.register_uri(:get, 'https://sellercentral.amazon.com/
|
29
|
-
FakeWeb.register_uri(:get, 'https://sellercentral.amazon.com/
|
27
|
+
FakeWeb.register_uri(:get, 'https://sellercentral.amazon.com/myi/search/DefaultView.amzn/ref=ag_invmgr_dnav_home_', :response => mock_pages[:listings_page_1])
|
28
|
+
FakeWeb.register_uri(:get, 'https://sellercentral.amazon.com/myi/search/DefaultView.amzn/ref=ag_invmgr_dnav_home_?searchPageOffset=2', :response => mock_pages[:listings_page_2])
|
29
|
+
FakeWeb.register_uri(:get, 'https://sellercentral.amazon.com/myi/search/DefaultView.amzn/ref=ag_invmgr_dnav_home_?searchPageOffset=3', :response => mock_pages[:listings_last_page])
|
30
30
|
FakeWeb.register_uri(:post, 'https://sellercentral.amazon.com/myi/search/ProductSummary', :response => mock_pages[:update_inventory_result_from_page_1])
|
31
31
|
FakeWeb.register_uri(:post, 'https://sellercentral.amazon.com/myi/search/ProductSummary;jsessionid=10F6EC9ECBC6E9C3B45EB5DEC1B13D46', :response => mock_pages[:update_inventory_result_from_page_1])
|
32
32
|
|
@@ -14,19 +14,63 @@ Transfer-Encoding: chunked
|
|
14
14
|
|
15
15
|
|
16
16
|
|
17
|
-
|
18
|
-
<
|
19
|
-
<script type="text/javascript"
|
20
|
-
|
21
|
-
var
|
22
|
-
|
17
|
+
<!DOCTYPE html><html>
|
18
|
+
<head>
|
19
|
+
<script type="text/javascript">var ue_t0=ue_t0||+new Date();</script>
|
20
|
+
<script type='text/javascript'>
|
21
|
+
var ue_csm = window;
|
22
|
+
ue_csm.ue_hob=ue_csm.ue_hob||+new Date();(function(f,a){var b="FATAL",c={ec:0,ecf:0,pec:0,ts:0,erl:[],mxe:50,startTimer:function(){c.ts++;setInterval(function(){f.ue&&(c.pec<c.ec)&&f.uex("at");c.pec=c.ec},10000)}};function e(g){if(c.ec>c.mxe){return}c.ec++;if(!g.logLevel||(g.logLevel==b)){c.ecf++}g.pageURL=""+(a.location?a.location.href:"");c.erl.push(g)}function d(l,k,g,i,h){var j={m:l,f:k,l:g,c:""+i,err:h,fromOnError:1,args:arguments};f.ueLogError(j);return false}d.skipTrace=1;e.skipTrace=1;f.ueLogError=e;f.ue_err=c;a.onerror=d})(ue_csm,window);ue_csm.ue_hoe=+new Date();
|
23
|
+
|
24
|
+
|
25
|
+
var ue_id='0FB1YC2STMGS6EDEBGH0',
|
26
|
+
ue_sid='177-7859417-2838705',
|
27
|
+
ue_mid='ATVPDKIKX0DER',
|
28
|
+
ue_sn='sellercentral.amazon.com',
|
29
|
+
ue_url='/gp/uedata/unsticky/177-7859417-2838705/NoPageType/ntpoffrw',
|
30
|
+
ue_furl='fls-na.amazon.com',
|
31
|
+
ue_navtiming=1,
|
32
|
+
ue_log_idx=0,
|
33
|
+
ue_log_f=0,
|
34
|
+
ue_fcsn=1,
|
35
|
+
ue_ctb0tf=1,
|
36
|
+
ue_fst=0,
|
37
|
+
ue_fna=1,
|
38
|
+
ue_swi=0,
|
39
|
+
ue_swm=1,
|
40
|
+
ue_ufia=1,
|
41
|
+
ue_puul=0,
|
42
|
+
ue_lgunenc=0,
|
43
|
+
ue_isrw=0,
|
44
|
+
ue_stforurl=0,
|
45
|
+
ue_onbful=0,
|
46
|
+
ue_fpf='//fls-na.amazon.com/1/batch/1/OP/ATVPDKIKX0DER:177-7859417-2838705:0FB1YC2STMGS6EDEBGH0$uedata=s:';
|
47
|
+
if (!window.ue_csm) {var ue_csm = window;}
|
48
|
+
ue_csm.ue_hob=ue_csm.ue_hob||+new Date;function ue_viz(){(function(d,j,g){var i=0,b,l,e,a,c=["","moz","ms","o","webkit"],k=0,f=20,h="addEventListener";while((b=c.pop())&&!k){l=(b?b+"H":"h")+"idden";if(k=typeof j[l]=="boolean"){e=b+"visibilitychange";a=b+"VisibilityState"}}function m(q){if((d.ue.viz.length<f)){var p=q.type,n=q.originalEvent;if(!(/^focus./.test(p)&&n&&(n.toElement||n.fromElement||n.relatedTarget))){var r=j[a]||(p=="blur"||p=="focusout"?"hidden":"visible"),o=+new Date-d.ue.t0;d.ue.viz.push(r+":"+o);if(r=="visible"){if(ue.iel&&(ue.iel.length>0)&&r=="visible"&&!i){uex("at")}i=1}}}}m({});if(k){j[h](e,m,0)}})(ue_csm,document,window)}ue_csm.ue_hoe=+new Date;
|
49
|
+
ue_csm.ue_hob=ue_csm.ue_hob||+new Date();(function(e,j){e.ueinit=(e.ueinit||0)+1;e.ue={t0:j.aPageStart||e.ue_t0,id:e.ue_id,url:e.ue_url,a:"",b:"",h:{},r:{ld:0,oe:0,ul:0},s:1,t:{},sc:{},iel:[],ielf:[],fc_idx:{},viz:[],v:32};function f(k){return e.ue_fpf+encodeURIComponent(k)+":"+(+new Date()-e.ue_t0)}e.ue.tagC=function(){var k=[];return function(l){if(l){k.push(l)}return k.slice(0)}};e.ue.tag=e.ue.tagC();e.ue.ifr=((j.top!==j.self)||(j.frameElement))?1:0;function c(m,p,r,o){if(e.ue_log_f&&e.ue.log){e.ue.log({f:"uet",en:m,s:p,so:r,to:o},"csm")}var q=o||(new Date()).getTime();var k=!p&&typeof r!="undefined";if(k){return}if(m){var n=p?d("t",p)||d("t",p,{}):e.ue.t;n[m]=q;for(var l in r){d(l,p,r[l])}}return q}function d(l,m,n){if(e.ue_log_f&&e.ue.log){e.ue.log({f:"ues",k:l,s:m,v:n},"csm")}var o,k;if(l){o=k=e.ue;if(m&&m!=o.id){k=o.sc[m];if(!k){k={};n?(o.sc[m]=k):k}}o=n?(k[l]=n):k[l]}return o}function h(o,p,n,l,k){if(e.ue_log_f&&e.ue.log){e.ue.log({f:"ueh",ek:o},"csm")}var m="on"+n,q=p[m];if(typeof(q)=="function"){if(o){e.ue.h[o]=q}}else{q=function(){}}p[m]=k?function(r){l(r);q(r)}:function(r){q(r);l(r)};p[m].isUeh=1}function b(u,o,t){if(e.ue_log_f&&e.ue.log){e.ue.log({f:"uex",en:u,s:o,so:t},"csm")}function m(Q,O){var M=[Q],H=0,N={},F;if(O){M.push("m=1");N[O]=1}else{N=e.ue.sc}for(var G in N){var I=d("wb",G),L=d("t",G)||{},K=d("t0",G)||e.ue.t0;if(O||I==2){var P=I?H++:"";M.push("sc"+P+"="+G);for(var J in L){if(J.length<=3&&L[J]){M.push(J+P+"="+(L[J]-K))}}M.push("t"+P+"="+L[u]);if(d("ctb",G)||d("wb",G)){F=1}}}if(!p&&F){M.push("ctb=1")}return M.join("&")}function x(F,J,M,I){if(!F){return}var K=new Image(),N=!I||!e.ue.log||!j.amznJQ||(j.amznJQ&&j.amznJQ.Ok)||e.ue_lgunenc,H=(!e.ue_puul||J!="ul"),G=e.ue_err;function O(){if(!e.ue.b){return}var P=e.ue.b;e.ue.b="";x(P,J,M,1)}if(e.ue.b&&!e.ue_swi){K.onload=O}if(N&&H){e.ue.iel.push(K);K.src=F}if(e.ue.log&&(M||I||e.ue_ctb0tf)){if(e.ue.log&&e.ue.log.isStub&&e.ue_stforurl&&e.ue_fpf){K=new Image();var L=f(F);e.ue.iel.push(L);K.src=L}else{e.ue.log(F,"uedata",{n:1});e.ue.ielf.push(F)}}if(G&&!G.ts){G.startTimer()}if(e.ue_swi){O()}}function D(F){if(!ue.collected){var H=F.timing,G=F.navigation;if(H){e.ue.t.na_=H.navigationStart;e.ue.t.ul_=H.unloadEventStart;e.ue.t._ul=H.unloadEventEnd;e.ue.t.rd_=H.redirectStart;e.ue.t._rd=H.redirectEnd;e.ue.t.fe_=H.fetchStart;e.ue.t.lk_=H.domainLookupStart;e.ue.t._lk=H.domainLookupEnd;e.ue.t.co_=H.connectStart;e.ue.t._co=H.connectEnd;e.ue.t.sc_=H.secureConnectionStart;e.ue.t.rq_=H.requestStart;e.ue.t.rs_=H.responseStart;e.ue.t._rs=H.responseEnd;e.ue.t.dl_=H.domLoading;e.ue.t.di_=H.domInteractive;e.ue.t.de_=H.domContentLoadedEventStart;e.ue.t._de=H.domContentLoadedEventEnd;e.ue.t._dc=H.domComplete;e.ue.t.ld_=H.loadEventStart;e.ue.t._ld=H.loadEventEnd}if(G){e.ue.t.ty=G.type+e.ue.t0;e.ue.t.rc=G.redirectCount+e.ue.t0;if(e.ue.tag){e.ue.tag(G.redirectCount?"redirect":"nonredirect")}}e.ue.collected=1}}if(!o&&(typeof t!="undefined")){return}for(var k in t){d(k,o,t[k])}c("pc",o,t);var z=d("id",o)||e.ue.id,r=e.ue.url+"?"+u+"&v="+e.ue.v+"&id="+z,p=d("ctb",o)||d("wb",o);if(p){r+="&ctb="+p}if(e.ueinit>1){r+="&ic="+e.ueinit}var C=j.performance||j.webkitPerformance,A=e.ue.bfini,s=C&&C.navigation&&C.navigation.type==2,q=o&&(o!=z)&&d("ctb",o),l;if(!q){if(A&&A>1){r+="&bft="+(A-1);r+="&bfform=1"}else{if(s){r+="&bft=1"}}if(s){r+="&bfnt=1"}}if(e.ue._fi&&u=="at"&&(!o||o==z)){r+=e.ue._fi()}if((u=="ld"||u=="ul")&&(!o||o==z)){if(u=="ld"){if(j.onbeforeunload&&j.onbeforeunload.isUeh){j.onbeforeunload=null}ue.r.ul=e.ue_onbful;if(e.ue_onbful==3){i("beforeunload",e.onUl)}if(document.ue_backdetect&&document.ue_backdetect.ue_back){document.ue_backdetect.ue_back.value++}if(e._uess){l=e._uess()}}if(e.ue_navtiming&&C&&C.timing){d("ctb",z,"1");if(e.ue_navtiming==1){e.ue.t.tc=C.timing.navigationStart}}if(C){D(C)}e.ue.t.hob=e.ue_hob;e.ue.t.hoe=e.ue_hoe;if(e.ue.ifr){r+="&ifr=1"}}c(u,o,t);var y=(u=="ld"&&o&&d("wb",o)),B=1;if(y){d("wb",o,2)}for(var w in e.ue.sc){if(d("wb",w)==1){B=0;break}}if(y){if(!e.ue.s&&(e.ue_swi||(B&&!e.ue_swi))){r=m(r,null)}else{return}}else{if((B&&!e.ue_swi)||e.ue_swi){var E=m(r,null);if(E!=r){e.ue.b=E}}if(l){r+=l}r=m(r,o||e.ue.id)}if(e.ue.b||y){for(var w in e.ue.sc){if(d("wb",w)==2){delete e.ue.sc[w]}}}var v=0;if(!y){e.ue.s=0;var n=e.ue_err;if(n&&n.ec>0&&(n.pec<n.ec)){n.pec=n.ec;r+="&ec="+n.ec+"&ecf="+n.ecf}v=d("ctb",o);d("t",o,{})}if(!j.amznJQ&&e.ue.tag){e.ue.tag("noAmznJQ")}if(e.ue.log&&e.ue.log.isStub&&e.ue.tag&&u=="ul"){e.ue.tag("noForester")}if(r&&e.ue.tag&&e.ue.tag().length>0){r+="&csmtags="+e.ue.tag().join("|");e.ue.tag=e.ue.tagC()}if(r&&e.ue.viz&&e.ue.viz.length>0){r+="&viz="+e.ue.viz.join("|");e.ue.viz=[]}e.ue.a=r;x(r,u,v,y)}function a(k,l,m){m=m||j;if(m.addEventListener){m.addEventListener(k,l,false)}else{if(m.attachEvent){m.attachEvent("on"+k,l)}}}ue.attach=a;function i(k,l,m){m=m||j;if(m.removeEventListener){m.removeEventListener(k,l)}else{if(m.detachEvent){m.detachEvent("on"+k,l)}}}ue.detach=i;function g(){if(e.ue_log_f&&e.ue.log){e.ue.log({f:"uei"},"csm")}var m=e.ue.r;function l(o){return function(){if(!m[o]){m[o]=1;b(o)}}}e.onLd=l("ld");e.onLdEnd=l("ld");e.onUl=l("ul");var k={stop:l("os")};if(!j.chrome){k.beforeunload=e.onUl}for(var n in k){h(0,j,n,k[n])}e.ue_viz&&ue_viz();a("load",e.onLd);if(e.ue_onbful==3){a("beforeunload",e.onUl)}c("ue")}ue.reset=function(l,k){if(!l){return}e.ue_cel&&e.ue_cel.reset();e.ue.t0=+new Date();e.ue.rid=l;e.ue.id=l;e.ue.fc_idx={};e.ue.viz=[]};e.uei=g;e.ueh=h;e.ues=d;e.uet=c;e.uex=b;g()})(ue_csm,window);ue_csm.ue_hoe=+new Date();
|
50
|
+
|
51
|
+
|
52
|
+
ue_csm.ue_hob=ue_csm.ue_hob||+new Date();(function(b){var a=b.ue;a.rid=b.ue_id;a.sid=b.ue_sid;a.mid=b.ue_mid;a.furl=b.ue_furl;a.sn=b.ue_sn;a.lr=[];a.log=function(e,d,c){if(a.lr.length==500){return}a.lr.push(["l",e,d,c,a.d(),a.rid])};a.log.isStub=1;a.d=function(c){return +new Date-(c?0:a.t0)}})(ue_csm);ue_csm.ue_hoe=+new Date();
|
53
|
+
</script>
|
54
|
+
|
55
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
56
|
+
<title>Amazon Seller Central</title>
|
57
|
+
|
58
|
+
|
59
|
+
<script type="text/javascript">
|
60
|
+
window.name="rainierWindow";
|
23
61
|
|
24
|
-
|
62
|
+
var logoImage = new Image();
|
63
|
+
logoImage.onload = function() {
|
64
|
+
if (typeof uet==='function'){uet('cf');}
|
65
|
+
}
|
25
66
|
|
67
|
+
logoImage.src = 'https://images-na.ssl-images-amazon.com/images/G/01/rainier/nav/as_sc_logo_small._V167929621_.gif';
|
68
|
+
</script>
|
26
69
|
|
27
70
|
|
71
|
+
|
28
72
|
|
29
|
-
<link type=
|
73
|
+
<link type='text/css' href='https://images-na.ssl-images-amazon.com/images/G/01/browser-scripts/popover/popover-2058226666._V1_.css' rel='stylesheet'>
|
30
74
|
<style type="text/css">
|
31
75
|
|
32
76
|
/* non-sprited */
|
@@ -65,70 +109,38 @@ var ue_t0 = t0_date.getTime();
|
|
65
109
|
|
66
110
|
<script type="text/javascript">
|
67
111
|
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
onReady: function() {
|
88
|
-
this._o.push(arguments)
|
89
|
-
},
|
90
|
-
onCompletion: function() {
|
91
|
-
this._c.push(arguments)
|
92
|
-
},
|
93
|
-
completedStage: function() {
|
94
|
-
this._cs.push(arguments)
|
95
|
-
},
|
96
|
-
strings: {},
|
97
|
-
chars: {
|
98
|
-
EOL: String.fromCharCode(0x0A),
|
99
|
-
SQUOTE: String.fromCharCode(0x27),
|
100
|
-
DQUOTE: String.fromCharCode(0x22),
|
101
|
-
BACKSLASH: String.fromCharCode(0x5C),
|
102
|
-
YEN: String.fromCharCode(0xA5)
|
103
|
-
}
|
104
|
-
}
|
112
|
+
var amznJQ,jQueryPatchIPadOffset=false;
|
113
|
+
(function() {
|
114
|
+
function f(x) {return function(){x.push(arguments);}}
|
115
|
+
function ch(y) {return String.fromCharCode(y);}
|
116
|
+
var a=[],c=[],cs=[],d=[],l=[],o=[],s=[],p=[];
|
117
|
+
amznJQ={
|
118
|
+
_a:a,_c:c,_cs:cs,_d:d,_l:l,_o:o,_s:s,_pl:p,
|
119
|
+
addLogical:f(l),
|
120
|
+
addStyle:f(s),
|
121
|
+
addPL:f(p),
|
122
|
+
available:f(a),
|
123
|
+
chars:{EOL:ch(10), SQUOTE:ch(39), DQUOTE:ch(34), BACKSLASH:ch(92), YEN:ch(165)},
|
124
|
+
completedStage:f(cs),
|
125
|
+
declareAvailable:f(d),
|
126
|
+
onCompletion:f(c),
|
127
|
+
onReady:f(o),
|
128
|
+
strings:{}
|
129
|
+
};
|
130
|
+
}());
|
105
131
|
|
106
132
|
|
107
133
|
</script>
|
108
134
|
|
109
135
|
|
110
136
|
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
<link type="text/css" href="./Seller Central-homepage_files/rainier-jquery-ui-2387255160.css._V178048240_.css" rel="stylesheet">
|
115
137
|
|
116
138
|
|
117
139
|
|
118
140
|
|
119
141
|
|
120
|
-
<link type="text/css" href="./Seller Central-homepage_files/rainier-core-1863275087.css._V176786838_.css" rel="stylesheet">
|
121
|
-
|
122
|
-
|
123
|
-
<style type="text/css">
|
124
|
-
/* fix button margins in Safari & Chrome */
|
125
|
-
@media screen and (-webkit-min-device-pixel-ratio:0) {
|
126
|
-
.awesomeButton span.button_label, .awesomeButton span.inner_button{margin-top: -1px;}
|
127
|
-
span.awesomeButton span.button_label{margin-top:0px}
|
128
|
-
}
|
129
|
-
</style>
|
130
|
-
|
131
142
|
|
143
|
+
|
132
144
|
|
133
145
|
|
134
146
|
|
@@ -137,45 +149,41 @@ var ue_t0 = t0_date.getTime();
|
|
137
149
|
|
138
150
|
|
139
151
|
|
140
|
-
|
141
152
|
|
142
153
|
|
143
154
|
|
144
155
|
|
145
156
|
|
146
|
-
|
157
|
+
<link type="text/css" href="https://images-na.ssl-images-amazon.com/images/G/01/browser-scripts/rainier-merged-gateway/rainier-merged-gateway-5870907964._V1_.css" rel="stylesheet">
|
158
|
+
|
147
159
|
|
148
160
|
|
149
161
|
|
150
|
-
<script type="text/javascript">
|
151
|
-
window.name="rainierWindow";
|
152
|
-
</script>
|
153
|
-
|
154
162
|
|
155
163
|
|
156
164
|
|
157
|
-
|
158
|
-
<script src="./Seller Central-homepage_files/d16gJSLibNL-2105740961.js._V158875366_.js"></script><script src="./Seller Central-homepage_files/main"></script></head>
|
159
|
-
<body><div id="ap_container"><iframe frameborder="0" tabindex="-1" src="javascript:void(false)" style="display:none;position:absolute;z-index:0;filter:Alpha(Opacity='0');opacity:0;"></iframe><iframe frameborder="0" tabindex="-1" src="javascript:void(false)" style="display:none;position:absolute;z-index:0;filter:Alpha(Opacity='0');opacity:0;"></iframe><iframe frameborder="0" tabindex="-1" src="javascript:void(false)" style="display:none;position:absolute;z-index:0;filter:Alpha(Opacity='0');opacity:0;"></iframe></div>
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
165
|
|
166
|
+
<script type="text/javascript">
|
167
|
+
if (window.amznJQ) {
|
168
|
+
amznJQ.addLogical('csm-base', [ "https://images-na.ssl-images-amazon.com/images/G/01/browser-scripts/csm-base/csm-base-min-47858736._V1_.js" ]);
|
169
|
+
amznJQ.available('csm-base', function() {});
|
170
|
+
}
|
165
171
|
|
172
|
+
</script>
|
173
|
+
</head>
|
174
|
+
<body>
|
166
175
|
|
167
176
|
|
168
|
-
<img src="./Seller Central-homepage_files/transparent-pixel._V42752373_.gif" style="position: absolute" width="1" alt="" onload="if (typeof uet == 'function') { uet('ns'); }" height="1" border="0">
|
169
177
|
|
170
178
|
|
171
179
|
|
172
180
|
|
173
181
|
|
182
|
+
<script type='text/javascript'>if (typeof uet == 'function') { uet('ns'); }</script>
|
174
183
|
|
175
184
|
|
176
185
|
|
177
186
|
|
178
|
-
|
179
187
|
|
180
188
|
|
181
189
|
|
@@ -183,6 +191,7 @@ var ue_t0 = t0_date.getTime();
|
|
183
191
|
|
184
192
|
|
185
193
|
|
194
|
+
|
186
195
|
|
187
196
|
|
188
197
|
|
@@ -263,19 +272,32 @@ var ue_t0 = t0_date.getTime();
|
|
263
272
|
|
264
273
|
|
265
274
|
|
266
|
-
|
267
|
-
|
268
275
|
|
269
276
|
|
270
277
|
|
271
278
|
|
272
279
|
|
280
|
+
<script type="text/javascript">
|
273
281
|
|
274
282
|
|
275
283
|
|
284
|
+
function merchChanged( merchantID, customerID, merchantName, marketplaceID )
|
285
|
+
{
|
286
|
+
// show the please wait message
|
287
|
+
showPleaseWait();
|
276
288
|
|
289
|
+
if ( merchantID != 0 ) {
|
290
|
+
document.location = "https://sellercentral.amazon.com/gp/utilities/set-rainier-prefs.html?ie=UTF8&url=" + '&merchantID=' + merchantID;
|
291
|
+
} else {
|
292
|
+
document.location = "https://sellercentral.amazon.com/gp/utilities/set-rainier-prefs.html?ie=UTF8&url=" + '&merchantCustomerID=' + customerID + '&marketplaceID=' + marketplaceID;
|
293
|
+
}
|
294
|
+
}
|
277
295
|
|
278
296
|
|
297
|
+
function returnHome() {
|
298
|
+
document.location = "https://sellercentral.amazon.com/gp/homepage.html";
|
299
|
+
}
|
300
|
+
</script>
|
279
301
|
|
280
302
|
|
281
303
|
|
@@ -297,6 +319,12 @@ var ue_t0 = t0_date.getTime();
|
|
297
319
|
|
298
320
|
|
299
321
|
|
322
|
+
|
323
|
+
|
324
|
+
|
325
|
+
|
326
|
+
|
327
|
+
|
300
328
|
|
301
329
|
|
302
330
|
|
@@ -304,8 +332,6 @@ var ue_t0 = t0_date.getTime();
|
|
304
332
|
|
305
333
|
|
306
334
|
|
307
|
-
|
308
|
-
|
309
335
|
|
310
336
|
|
311
337
|
|
@@ -314,27 +340,12 @@ var ue_t0 = t0_date.getTime();
|
|
314
340
|
|
315
341
|
|
316
342
|
|
317
|
-
<script type="text/javascript">
|
318
343
|
|
319
344
|
|
320
345
|
|
321
|
-
function merchChanged( merchantID, customerID, merchantName, marketplaceID )
|
322
|
-
{
|
323
|
-
// show the please wait message
|
324
|
-
showPleaseWait();
|
325
346
|
|
326
|
-
if ( merchantID != 0 ) {
|
327
|
-
document.location = "https://sellercentral.amazon.com/gp/utilities/set-rainier-prefs.html?ie=UTF8&url=https%3A%2F%2Fsellercentral.amazon.com%2Fgp%2Fhomepage.html%2Fref%3Dag_home_dmer_home" + '&merchantID=' + merchantID;
|
328
|
-
} else {
|
329
|
-
document.location = "https://sellercentral.amazon.com/gp/utilities/set-rainier-prefs.html?ie=UTF8&url=https%3A%2F%2Fsellercentral.amazon.com%2Fgp%2Fhomepage.html%2Fref%3Dag_home_dmer_home" + '&merchantCustomerID=' + customerID + '&marketplaceID=' + marketplaceID;
|
330
|
-
}
|
331
|
-
}
|
332
347
|
|
333
348
|
|
334
|
-
function returnHome() {
|
335
|
-
document.location = "https://sellercentral.amazon.com/gp/homepage.html";
|
336
|
-
}
|
337
|
-
</script>
|
338
349
|
|
339
350
|
|
340
351
|
|
@@ -368,42 +379,17 @@ function returnHome() {
|
|
368
379
|
|
369
380
|
|
370
381
|
|
371
|
-
<style type="text/css">
|
372
|
-
#logoandmore{padding-top:3px;}
|
373
|
-
a.navActiveLink, a.navInactiveLink:visited, a.navInactiveLink:hover{color:#5A7DC8;}
|
374
|
-
a.navInactiveLink, a.navInactiveLink:visited, a.navInactiveLink:hover{color:#000;}
|
375
382
|
|
376
|
-
.navBadge{color:#c60;font-size:10px;font-family: arial,verdana;margin-left: 4px;}
|
377
|
-
.active .tabBadge{color: #FFD685;}
|
378
383
|
|
379
|
-
#sc_logo_top{width:auto;} /* override TODO remove*/
|
380
|
-
#market_switch{float:left;line-height:22px;padding:3px 0 0 30px;}
|
381
384
|
|
382
|
-
#subnav_container{background-color:#5A7DC8}
|
383
|
-
.merch-site-span{color:#696969;font-size:10px;font-weight:bold;}
|
384
385
|
|
385
|
-
#subnav_tools{height:auto;}
|
386
386
|
|
387
|
-
/* merchant bar styling */
|
388
|
-
#merchant-bar-container{border:0;border-bottom:1px solid #25353D;height:30px;margin:0;padding:0;width:100%;}
|
389
|
-
#merchant-bar{color:#000;height:18px;line-height:18px;padding:6px 2.5%;white-space:nowrap;width:95%}
|
390
|
-
.emphatic{color:#003399;}
|
391
387
|
|
392
|
-
.image-container{float:left;height:16px;padding:1px 12px 1px 6px;width:16px;}
|
393
388
|
|
394
|
-
#merchant-name{float:left;height:18px;line-height:18px;margin-right:22px;}
|
395
|
-
#merchant-website{float:left;height:18px;line-height:18px;}
|
396
|
-
.merch-website, .merch-label, .merch-release{padding-right:4px;}
|
397
389
|
|
398
|
-
#merchant-release{float:left;height:18px;line-height:18px}
|
399
390
|
|
400
|
-
#marketplaceSelect, #releaseSelect{height:18px;padding:2px;}
|
401
391
|
|
402
|
-
</style>
|
403
392
|
|
404
|
-
<div id="logoandmore" class="clearable">
|
405
|
-
<div id="sc_logo_top"><a href="https://sellercentral.amazon.com/gp/homepage.html/ref=ag_home_logo_home"><img src="./Seller Central-homepage_files/as_sc_logo_small._V167929621_.gif" width="148" id="sc_logo_top_image" height="28" border="0"></a></div>
|
406
|
-
<div id="market_switch">
|
407
393
|
|
408
394
|
|
409
395
|
|
@@ -469,202 +455,50 @@ a.navInactiveLink, a.navInactiveLink:visited, a.navInactiveLink:hover{color:#000
|
|
469
455
|
|
470
456
|
|
471
457
|
|
472
|
-
<script type="text/javascript">
|
473
458
|
|
474
459
|
|
475
|
-
function switchMarketplace( marketplaceID ) {
|
476
|
-
showPleaseWait();
|
477
|
-
document.location = "https://sellercentral.amazon.com/gp/utilities/set-rainier-prefs.html?ie=UTF8&url=https%3A%2F%2Fsellercentral.amazon.com%2Fgp%2Fhomepage.html%2Fref%3Dag_home_dmar_home%3Fie%3DUTF8%26_mpc%3D1" + "&marketplaceID=" + marketplaceID;
|
478
|
-
}
|
479
460
|
|
480
|
-
function marketplaceChanged(marketplaceID) {
|
481
|
-
if(!marketplaceID) {return;}
|
482
461
|
|
483
|
-
switchMarketplace(marketplaceID);
|
484
|
-
}
|
485
462
|
|
486
|
-
function marketplaceChangedIWS(marketplaceID) {
|
487
|
-
if(!marketplaceID){return;}
|
488
|
-
showPleaseWait();
|
489
|
-
document.location = "https://sellercentral.amazon.com/gp/utilities/set-rainier-prefs.html?ie=UTF8&url=https%3A%2F%2Fsellercentral.amazon.com%2Fgp%2Fhomepage.html%2Fref%3Dag_home_dmar_home" + "&marketplaceID=" + marketplaceID;
|
490
|
-
}
|
491
|
-
</script>
|
492
463
|
|
493
464
|
|
494
465
|
|
495
|
-
<div id="merchant-website">
|
496
466
|
|
497
467
|
|
498
468
|
|
499
469
|
|
500
|
-
<span class="merch-site-span">www.amazon.com</span>
|
501
|
-
</div>
|
502
|
-
|
503
|
-
<div class="image-container"><img src="./Seller Central-homepage_files/USAmazon._V171112299_.png"></div>
|
504
|
-
</div>
|
505
|
-
<div id="sc_quicklinks_top">
|
506
|
-
<a class="sc_quicklink navActiveLink" href="https://sellercentral.amazon.com/gp/homepage.html/ref=ag_home_head_home">HOME</a> |
|
507
|
-
|
508
470
|
|
509
471
|
|
510
472
|
|
511
473
|
|
512
474
|
|
513
|
-
<span id="messagesID"><a class="sc_quicklink navInactiveLink" href="https://sellercentral.amazon.com/gp/communication-manager/inbox.html/ref=ag_cmin_head_home">MESSAGES</a></span> |
|
514
475
|
|
515
476
|
|
516
|
-
<span id="helpMenuID"><a id="helpMenuID" class="sc_quicklink navInactiveLink" href="https://sellercentral.amazon.com/gp/help/help.html/ref=ag_help_head_home?ie=UTF8&itemID=200700280&language=en_US">HELP</a></span> |
|
517
|
-
<a class="sc_quicklink" href="https://sellercentral.amazon.com/gp/sign-in/logout.html/ref=ag_logout_head_home" style="color:#000;">LOGOUT</a>
|
518
|
-
</div>
|
519
|
-
</div>
|
520
477
|
|
521
|
-
<div id="topNavContainer"><div id="globalSearchForm">
|
522
478
|
|
523
479
|
|
524
|
-
|
525
480
|
|
526
481
|
|
527
482
|
|
528
483
|
|
529
|
-
<form class="global-search-form" action="https://sellercentral.amazon.com/gp/search/search-results.html/ref=ag_helpsearch_bnav_home" method="GET">
|
530
|
-
<table><tbody><tr>
|
531
|
-
<td>
|
532
|
-
<input class="global-search-text" name="keywords" id="search-field" type="text" size="20" value="Search" onclick="clickclear(this,'Search')" onblur="clickrestore(this,'Search')">
|
533
|
-
</td>
|
534
|
-
<td>
|
535
|
-
<input type="image" src="./Seller Central-homepage_files/go._V187564664_.gif" width="21" height="21" border="0">
|
536
|
-
</td>
|
537
|
-
</tr></tbody></table>
|
538
|
-
</form>
|
539
484
|
|
540
485
|
|
541
|
-
<script language="javascript">
|
542
|
-
<!--
|
543
486
|
|
544
|
-
function clickclear(thisfield, defaulttext) {
|
545
|
-
thisfield.style.color = "#000000";
|
546
|
-
if (thisfield.value == defaulttext) {
|
547
|
-
thisfield.value = "";
|
548
|
-
}
|
549
|
-
}
|
550
487
|
|
551
|
-
function clickrestore(thisfield, defaulttext) {
|
552
|
-
if (thisfield.value == "") {
|
553
|
-
thisfield.style.color = "#808080";
|
554
|
-
thisfield.value = defaulttext;
|
555
|
-
}
|
556
|
-
}
|
557
488
|
|
558
|
-
-->
|
559
|
-
</script>
|
560
489
|
|
561
490
|
|
562
|
-
</div><ul id="topNav">
|
563
|
-
<li class="level1 inactive" style="z-index: 1005; "><iframe class="IframeShim" style="width: 203px; height: 134px; display: none; "></iframe>
|
564
|
-
<a href="https://sellercentral.amazon.com/gp/ezdpc-gui/inventory-status/status.html/ref=ag_invmgr_tnav_home_">INVENTORY
|
565
|
-
<div class="rightCapArrow"></div></a>
|
566
|
-
<ul class="subNav" style="visibility: hidden; ">
|
567
|
-
<li><a href="https://sellercentral.amazon.com/gp/ezdpc-gui/inventory-status/status.html/ref=ag_invmgr_dnav_home_">Manage Inventory
|
568
|
-
</a></li>
|
569
|
-
<li><a href="https://sellercentral.amazon.com/gp/ezdpc-gui/start.html/ref=ag_addlisting_dnav_home_">Add a Product
|
570
|
-
</a></li>
|
571
|
-
<li><a href="https://sellercentral.amazon.com/gp/item-manager/ezdpc/uploadInventory.html/ref=ag_invfile_dnav_home_">Upload Products & Inventory
|
572
|
-
</a></li>
|
573
|
-
<li><a href="https://sellercentral.amazon.com/gp/item-manager/ezdpc/openPickup.html/ref=ag_invreport_dnav_home_">Download Inventory File
|
574
|
-
</a></li>
|
575
|
-
<li><a href="https://sellercentral.amazon.com/mn/promotions/promotionHome/ref=ag_promomgr_dnav_home_">Manage Promotions
|
576
|
-
</a></li>
|
577
|
-
<div class="partialBorder" style="width: 99px; "></div></ul>
|
578
|
-
</li>
|
579
|
-
|
580
|
-
<li class="level1 inactive" style="z-index: 1004; "><iframe class="IframeShim" style="width: 191px; height: 84px; display: none; "></iframe>
|
581
|
-
<a href="https://sellercentral.amazon.com/gp/orders-v2/list/ref=ag_myo_tnav_home_?ie=UTF8&useSavedSearch=default">ORDERS
|
582
|
-
<div class="rightCapArrow"></div></a>
|
583
|
-
<ul class="subNav" style="visibility: hidden; ">
|
584
|
-
<li><a href="https://sellercentral.amazon.com/gp/orders-v2/list/ref=ag_myo_dnav_home_?ie=UTF8&useSavedSearch=default">Manage Orders
|
585
|
-
</a></li>
|
586
|
-
<li><a href="https://sellercentral.amazon.com/gp/transactions/orderPickup.html/ref=ag_orderrpt_dnav_home_">Order Reports
|
587
|
-
</a></li>
|
588
|
-
<li><a href="https://sellercentral.amazon.com/gp/transactions/uploadShippingConfirmation.html/ref=ag_ordrelfile_dnav_home_">Upload Order Related Files
|
589
|
-
</a></li>
|
590
|
-
<div class="partialBorder" style="width: 81px; "></div></ul>
|
591
|
-
</li>
|
592
|
-
|
593
|
-
<li class="level1 inactive" style="z-index: 1003; "><iframe class="IframeShim" style="width: 178px; height: 84px; display: none; "></iframe>
|
594
|
-
<a href="https://sellercentral.amazon.com/gp/payments-account/settlement-summary.html/ref=ag_payments_tnav_home_">REPORTS
|
595
|
-
<div class="rightCapArrow"></div></a>
|
596
|
-
<ul class="subNav" style="visibility: hidden; ">
|
597
|
-
<li>
|
598
|
-
<span class="small">• <a href="https://sellercentral.amazon.com/gp/payments-account/settlement-summary.html/ref=ag_payments_mmap_home">Payments</a></span>
|
599
|
-
</li>
|
600
|
-
<li><a href="https://sellercentral.amazon.com/gp/payments-account/settlement-summary.html/ref=ag_payments_dnav_home_">Finance
|
601
|
-
</a></li>
|
602
|
-
<li><a href="https://sellercentral.amazon.com/gp/sellercoach/dashboard/ref=ag_coach_dnav_home_">Amazon Selling Coach
|
603
|
-
</a></li>
|
604
|
-
<li><a href="https://sellercentral.amazon.com/gp/site-metrics/home.html/ref=ag_sitemetric_dnav_home_">Site Metrics and Reports
|
605
|
-
</a></li>
|
606
|
-
<div class="partialBorder" style="width: 88px; "></div></ul>
|
607
|
-
</li>
|
608
|
-
|
609
|
-
<li class="level1 inactive" style="z-index: 1002; "><iframe class="IframeShim" style="width: 185px; height: 134px; display: none; "></iframe>
|
610
|
-
<a href="https://sellercentral.amazon.com/gp/customer-experience/summary.html/ref=ag_custmetric_tnav_home_">PERFORMANCE
|
611
|
-
<div class="rightCapArrow"></div></a>
|
612
|
-
<ul class="subNav" style="visibility: hidden; ">
|
613
|
-
<li><a href="https://sellercentral.amazon.com/gp/customer-experience/summary.html/ref=ag_custmetric_dnav_home_">Customer Metrics
|
614
|
-
</a></li>
|
615
|
-
<li><a href="https://sellercentral.amazon.com/gp/feedback-manager/home.html/ref=ag_feedback_dnav_home_">Feedback
|
616
|
-
</a></li>
|
617
|
-
<li><a href="https://sellercentral.amazon.com/gp/guarantee-claims/home.html/ref=ag_azclaims_dnav_home_">A-to-z Guarantee Claims
|
618
|
-
</a></li>
|
619
|
-
<li><a href="https://sellercentral.amazon.com/gp/chargebacks/home.html/ref=ag_chrgbck_dnav_home_">Chargeback Claims
|
620
|
-
</a></li>
|
621
|
-
<li><a href="https://sellercentral.amazon.com/gp/customer-experience/perf-notifications.html/ref=ag_cxperform_dnav_home_">Performance Notifications
|
622
|
-
</a></li>
|
623
|
-
<div class="partialBorder" style="width: 119px; "></div></ul>
|
624
|
-
</li>
|
625
|
-
|
626
|
-
<li class="level1 inactive last" style="z-index: 1001; "><iframe class="IframeShim" style="width: 174px; height: 184px; display: none; "></iframe>
|
627
|
-
<a href="https://sellercentral.amazon.com/gp/seller/configuration/account-info-page.html/ref=ag_acctinfo_tnav_home_">SETTINGS
|
628
|
-
<div class="rightCapArrow"></div></a>
|
629
|
-
<ul class="subNav" style="visibility: hidden; ">
|
630
|
-
<li><a href="https://sellercentral.amazon.com/gp/seller/configuration/account-info-page.html/ref=ag_acctinfo_dnav_home_">Account Info
|
631
|
-
</a></li>
|
632
|
-
<li><a href="https://sellercentral.amazon.com/gp/seller/configuration/notificationPreferences.html/ref=ag_notifpref_dnav_home_">Notification Preferences
|
633
|
-
</a></li>
|
634
|
-
<li><a href="https://sellercentral.amazon.com/gp/seller/configuration/login-settings.html/ref=ag_loginsett_dnav_home_">Login Settings
|
635
|
-
</a></li>
|
636
|
-
<li><a href="https://sellercentral.amazon.com/gp/gift-services/dispatch.html/ref=ag_giftops_dnav_home_">Gift Options
|
637
|
-
</a></li>
|
638
|
-
<li><a href="https://sellercentral.amazon.com/gp/shipping/dispatch.html/ref=ag_shipset_dnav_home_">Shipping Settings
|
639
|
-
</a></li>
|
640
|
-
<li><a href="https://sellercentral.amazon.com/gp/account-manager/home.html/ref=ag_userperms_dnav_home_">User Permissions
|
641
|
-
</a></li>
|
642
|
-
<li><a href="https://sellercentral.amazon.com/gp/help-content/home.html/ref=ag_infopol_dnav_home_">Your Info & Policies
|
643
|
-
</a></li>
|
644
|
-
<div class="partialBorder" style="width: 91px; "></div></ul>
|
645
|
-
</li>
|
646
|
-
</ul></div>
|
647
|
-
<div id="subnav_container" class="clear clearable">
|
648
|
-
<ul id="subnav_tools">
|
649
491
|
|
650
|
-
<li class="subnav_welcome">Welcome! You are signed in as: John Smith (care@somewhere.com)</li>
|
651
|
-
</ul>
|
652
|
-
</div>
|
653
492
|
|
654
493
|
|
655
494
|
|
656
495
|
|
657
496
|
|
658
|
-
|
659
497
|
|
660
498
|
|
661
|
-
<script type="text/javascript">
|
662
|
-
var gNavbarHeight = 97;
|
663
|
-
</script>
|
664
499
|
|
665
500
|
|
666
501
|
|
667
|
-
<img src="./Seller Central-homepage_files/transparent-pixel._V42752373_.gif" style="position: absolute" width="1" alt="" onload="if (typeof uet == 'function') { uet('ne'); }" height="1" border="0">
|
668
502
|
|
669
503
|
|
670
504
|
|
@@ -679,10 +513,7 @@ var gNavbarHeight = 97;
|
|
679
513
|
|
680
514
|
|
681
515
|
|
682
|
-
|
683
|
-
|
684
516
|
|
685
|
-
|
686
517
|
|
687
518
|
|
688
519
|
|
@@ -698,7 +529,6 @@ var gNavbarHeight = 97;
|
|
698
529
|
|
699
530
|
|
700
531
|
|
701
|
-
<div id="MEWSDivID">
|
702
532
|
|
703
533
|
|
704
534
|
|
@@ -709,6 +539,8 @@ var gNavbarHeight = 97;
|
|
709
539
|
|
710
540
|
|
711
541
|
|
542
|
+
|
543
|
+
|
712
544
|
|
713
545
|
|
714
546
|
|
@@ -784,8 +616,6 @@ var gNavbarHeight = 97;
|
|
784
616
|
|
785
617
|
|
786
618
|
|
787
|
-
|
788
|
-
|
789
619
|
|
790
620
|
|
791
621
|
|
@@ -795,67 +625,11 @@ var gNavbarHeight = 97;
|
|
795
625
|
|
796
626
|
|
797
627
|
|
798
|
-
<br>
|
799
|
-
</div>
|
800
628
|
|
801
|
-
<script type="text/javascript">
|
802
|
-
<!--
|
803
|
-
// make and process the AJAX request for the MEWS message
|
804
|
-
var mewsUrl = '/gp/homepage/mews-message-internals.html?PowerBar=0&nocache=0.978840289527582';
|
805
|
-
var mewsHttp = createRequestObject();
|
806
|
-
mewsHttp.open('GET', mewsUrl, true);
|
807
|
-
mewsHttp.onreadystatechange = function(){handleMewsResponse();};
|
808
|
-
mewsHttp.send(null);
|
809
|
-
|
810
|
-
function createRequestObject() {
|
811
|
-
var ro;
|
812
|
-
var browser = navigator.appName;
|
813
|
-
if(browser == "Microsoft Internet Explorer"){
|
814
|
-
ro = new ActiveXObject("Microsoft.XMLHTTP");
|
815
|
-
}else{
|
816
|
-
ro = new XMLHttpRequest();
|
817
|
-
}
|
818
|
-
return ro;
|
819
|
-
}
|
820
629
|
|
821
|
-
function handleMewsResponse()
|
822
|
-
{
|
823
|
-
if(mewsHttp.readyState == 4 && mewsHttp.status == 200) {
|
824
|
-
if(mewsHttp.responseText.indexOf("SERVICE_UNAVAILABLE") == -1)
|
825
|
-
document.getElementById("MEWSDivID").innerHTML = mewsHttp.responseText;
|
826
|
-
}
|
827
|
-
}
|
828
630
|
|
829
|
-
function dismissMEWSMsg(prefName)
|
830
|
-
{
|
831
|
-
var prefUrl = '/gp/utilities/set-arbitrary-pref.html?nocache=0.526448655241605&prefName=' + prefName + '&prefValue=false';
|
832
|
-
var prefHttp = createRequestObject();
|
833
|
-
prefHttp.open('GET', prefUrl, true);
|
834
|
-
prefHttp.onreadystatechange = function(){handlePrefResponse();};
|
835
|
-
prefHttp.send(null);
|
836
|
-
}
|
837
631
|
|
838
|
-
function handlePrefResponse()
|
839
|
-
{
|
840
|
-
window.location.href = "https://sellercentral.amazon.com/gp/homepage.html";
|
841
|
-
}
|
842
|
-
-->
|
843
|
-
</script>
|
844
|
-
|
845
|
-
<table style="margin:0 auto;padding:0;border:0;width:95%;" align="center">
|
846
|
-
<tbody><tr>
|
847
|
-
<td id="leftColumn" class="tiny" style="width:300px; vertical-align:top; background-color:#fff">
|
848
|
-
<table style="border:0;padding:0:margin:0;width:100%;"><tbody><tr><td>
|
849
|
-
<div style="border:2px solid #bbb; background-color:#ddd; padding:6px">
|
850
|
-
|
851
632
|
|
852
|
-
<div class="sortablecolumn ui-sortable" style="width:100%;min-height:200px">
|
853
|
-
|
854
|
-
<div class="portlet" id="1121" style="margin-bottom:6px;display:"><table border="0" name="leftWidget" cellspacing="1" cellpadding="5" bgcolor="#DDDDDD" width="100%">
|
855
|
-
<tbody><tr bgcolor="#F4F4F4"><td style="cursor:move;"><span class="h3color" style="float:left;width:80%">Site Map</span>
|
856
|
-
<span style="float:right"><img style="cursor:pointer;" class="collapse-toggle-button" src="./Seller Central-homepage_files/dash-minus._V196104864_.gif"><img style="margin-left:2px" src="./Seller Central-homepage_files/grip._V196362312_.gif"></span></td></tr>
|
857
|
-
<tr bgcolor="#FFFFFF"><td>
|
858
|
-
<div class="collapsible-body" style="display:">
|
859
633
|
|
860
634
|
|
861
635
|
|
@@ -866,16 +640,12 @@ var gNavbarHeight = 97;
|
|
866
640
|
|
867
641
|
|
868
642
|
|
869
|
-
|
870
|
-
|
871
643
|
|
872
644
|
|
873
645
|
|
874
646
|
|
875
647
|
|
876
648
|
|
877
|
-
|
878
|
-
|
879
649
|
|
880
650
|
|
881
651
|
|
@@ -890,180 +660,294 @@ var gNavbarHeight = 97;
|
|
890
660
|
|
891
661
|
|
892
662
|
|
893
|
-
|
894
|
-
|
895
663
|
|
896
664
|
|
897
665
|
|
898
666
|
|
667
|
+
<style>
|
668
|
+
/* merchant bar styling */
|
669
|
+
#merchant-bar-container{border:0; border-bottom:1px solid #bbb ;height:30px; margin:0; padding:0; width:100%; background-color: #ddd; }
|
670
|
+
#merchant-bar{color:#000; height:18px; line-height:18px; padding:6px 2.5%; white-space:nowrap; width:95%}
|
671
|
+
.emphatic{color:#003399;}
|
672
|
+
</style>
|
673
|
+
<!--[if IE]>
|
674
|
+
<style>
|
675
|
+
* html #sc-nav-full-bg {display: none;}
|
676
|
+
* html #sc-global-search .sc-search-field {height: 23px; padding-top: 3px;}
|
677
|
+
* html #sc-global-search .sc-search-button {height: 21px;}
|
678
|
+
* html #sc-logo-top, * html #sc-global-search {position: relative; z-index: 1901;}
|
679
|
+
* html #sc-mkt-switcher {position: relative; z-index: 1902;}
|
680
|
+
* html #sc-uapop, * html .sc-sub-nav {border: 1px solid #333333; border-top: 3px solid #333333;}
|
681
|
+
* html #sc-mkt-switcher-form.sc-uapop-show {z-index: 1910}
|
682
|
+
* html #sc-mkt-switcher-form.sc-uapop-show #sc-uapop-spacer { display: none; }
|
683
|
+
* html #sc-mkt-switcher-form.sc-uapop-show #sc-uapop {left: auto; right: -180px; padding-bottom: 5px; padding-top: 5px;}
|
684
|
+
* html #sc-uapop p {margin: 8px 0;}
|
685
|
+
* html #sc-uapop ul {padding-left: 15px;}
|
686
|
+
* html .sc-uapop-show .sc-nav-arrow {display: none;}
|
687
|
+
</style>
|
688
|
+
<![endif]-->
|
689
|
+
<!--[if lte IE 8]>
|
690
|
+
<style>
|
691
|
+
#sc-masthead {min-width: 875px;}
|
692
|
+
.sc-sub-nav, #sc-uapop {border: 1px solid #333333; border-top: 3px solid #333333;}
|
693
|
+
</style>
|
694
|
+
<![endif]-->
|
695
|
+
<!--[if lte IE 7]>
|
696
|
+
<style>
|
697
|
+
#sc-navtabs {width: 100%}
|
698
|
+
#sc-global-search .sc-search-field {height: 19px; padding-top: 2px; padding-bottom: 0;}
|
699
|
+
#sc-global-search .sc-search-button {height: 21px;}
|
700
|
+
#sc-mkt-switcher-form {margin-top: 5px;}
|
701
|
+
#sc-mkt-switcher-form.sc-uapop-show {z-index: 1910}
|
702
|
+
#sc-mkt-switcher-form.sc-uapop-show #sc-uapop-spacer { height: 24px; width: 180px; display: block; left: auto; }
|
703
|
+
#sc-mkt-switcher-form.sc-uapop-show #sc-uapop {left: auto; right: -180px; padding-bottom: 5px; padding-top: 5px;}
|
704
|
+
#sc-uapop p {margin: 8px 0;}
|
705
|
+
#sc-uapop ul {padding-left: 15px;}
|
706
|
+
</style>
|
707
|
+
<![endif]-->
|
708
|
+
<!--[if IE 6]>
|
709
|
+
<style>
|
710
|
+
.sc-nav-iframeShim {position: absolute; top: 35px; left: 0px; z-index: 1901; display: none; border: none;}
|
711
|
+
.sc-quicklink .sc-nav-iframeShim {left: auto; right: 0;}
|
712
|
+
#sc-snes .sc-nav-iframeShim {left: -100px;z-index: 1902;}
|
713
|
+
.sc-sub-nav {z-index: 1903;}
|
714
|
+
.sc-nav-iframeSetup .sc-sub-nav, #sc-snes.sc-nav-iframeSetup .sc-sub-nav {left: -9999px; right: auto; display: block; visibility:hidden;}
|
715
|
+
.nav-open .sc-nav-iframeShim { display: block;}
|
716
|
+
#sc-global-search .sc-search-field {height: 23px; padding-top: 3px;}
|
717
|
+
.sc-level1 .sc-tab-a {border-bottom: none;}
|
718
|
+
.sc-nav-arrow {border-right: 6px solid #f3f3f3; border-left: 6px solid #f3f3f3;}
|
719
|
+
* html #sc-global-search .sc-search-field {height: 19px; padding-top: 2px; padding-bottom: 0;}
|
720
|
+
</style>
|
721
|
+
<script>
|
722
|
+
if(typeof SCUI === 'undefined') { window.SCUI = {}; }
|
723
|
+
if(typeof SCUI.Tools === 'undefined') { window.SCUI.Tools = {}; }
|
724
|
+
SCUI.Tools.isUsingIE6 = true;
|
725
|
+
</script>
|
726
|
+
<![endif]-->
|
727
|
+
<div id="sc-masthead" class="clearable"><div id="sc-nav-full-bg"></div><div id="sc-logo-top"><a href="https://sellercentral.amazon.com/gp/homepage.html/ref=ag_home_logo_home" title="Home"><img src="https://images-na.ssl-images-amazon.com/images/G/01/rainier/nav/as_sc_logo_small._V167929621_.gif" id="sc_logo_top_image" border="0" /></a></div><div id="sc-snes" class="sc-drop-nav sc-hover-nav"><a href="#" class="sc-mobile-icon sc-menu-trigger sc-snes-top-a" title="Notifications">Notifications</a><div id="sc-snes-number"></div><div class="sc-snes-icon"></div><!--[if IE 6]><iframe src="javascript:false;" class='sc-nav-iframeShim'></iframe><![endif]--><div id="sc-snes-content" class="sc-sub-nav"></div></div>
|
728
|
+
<div id="sc-quick-search-switch"><div id="sc-quicklinks-top">
|
729
|
+
<ul id="sc-quicklinks">
|
730
|
+
<li class="sc-quicklink" id="sc-quicklink-messages"><a class="sc-ql-a" href="https://sellercentral.amazon.com/gp/communication-manager/inbox.html/ref=ag_cmin_head_home"><span class="sc-quick-txt">Messages</span><span class="sc-mobile-icon" title="Messages"></span></a></li><script>
|
731
|
+
if(typeof window.SCUI==='undefined'){window.SCUI={}}
|
732
|
+
if(typeof window.SCUI.Tools==='undefined'){window.SCUI.Tools={}}
|
733
|
+
window.SCUI.Tools.AssistiveTech = {
|
734
|
+
'uri' : '/gp/homepage.html',
|
735
|
+
'strings' : {
|
736
|
+
'progress' : '<b>{{index}}</b> of {{length}}',
|
737
|
+
'next' : 'Next',
|
738
|
+
'previous' : 'Previous',
|
739
|
+
'error' : 'Error',
|
740
|
+
'no-content-title' : 'No current {{type}} recommendations',
|
741
|
+
'no-content-text' : 'When we see something that you need to know, we\'ll put it here to help you keep your business running smoothly.'
|
742
|
+
}
|
743
|
+
};
|
744
|
+
</script>
|
745
|
+
<li class="sc-quicklink" id="sc-quicklink-help"><a class="sc-ql-a" href="https://sellercentral.amazon.com/gp/help/help.html/ref=ag_help_head_home?ie=UTF8&itemID=200700310&language=en_US"><span class="sc-quick-txt">Help</span><span class="sc-mobile-icon" title="Help"></span></a></li><li class="sc-quicklink sc-drop-nav sc-hover-nav " id="sc-quicklink-settings"><a class="sc-menu-trigger sc-ql-a" href="https://sellercentral.amazon.com/gp/seller/configuration/account-info-page.html/ref=ag_acctinfo_tnav_home_"><span class="sc-quick-txt">Settings</span><span class="sc-mobile-icon" title="Settings"></span><span class="sc-nav-arrow"></span></a><!--[if IE 6]><iframe src="javascript:false;" class='sc-nav-iframeShim'></iframe><![endif]--><ul class="sc-sub-nav"><li class="sc-logout-quicklink"><a href="https://sellercentral.amazon.com/gp/sign-in/logout.html/ref=ag_logout_head_home">Logout</a></li><li><a href="https://sellercentral.amazon.com/gp/seller/configuration/account-info-page.html/ref=ag_acctinfo_dnav_home_">Account Info</a></li>
|
746
|
+
<li><a href="https://sellercentral.amazon.com/gp/seller/configuration/notificationPreferences.html/ref=ag_notifpref_dnav_home_">Notification Preferences</a></li>
|
747
|
+
<li><a href="https://sellercentral.amazon.com/gp/seller/configuration/login-settings.html/ref=ag_loginsett_dnav_home_">Login Settings</a></li>
|
748
|
+
<li><a href="https://sellercentral.amazon.com/gp/returns/settings/ref=ag_myr_dnav_home_">Return Settings</a></li>
|
749
|
+
<li><a href="https://sellercentral.amazon.com/gp/gift-services/dispatch.html/ref=ag_giftops_dnav_home_">Gift Options</a></li>
|
750
|
+
<li><a href="https://sellercentral.amazon.com/gp/shipping/dispatch.html/ref=ag_shipset_dnav_home_">Shipping Settings</a></li>
|
751
|
+
<li><a href="https://sellercentral.amazon.com/gp/tax-manager/dashboard.html/ref=ag_taxmgr_dnav_home_">Tax Settings</a></li>
|
752
|
+
<li><a href="https://sellercentral.amazon.com/gp/account-manager/home.html/ref=ag_userperms_dnav_home_">User Permissions</a></li>
|
753
|
+
<li><a href="https://sellercentral.amazon.com/gp/help-content/home.html/ref=ag_infopol_dnav_home_">Your Info & Policies</a></li>
|
754
|
+
<li><a href="https://sellercentral.amazon.com/gp/ssof/configuration/index.html/ref=ag_fbasettings_dnav_home_">Fulfillment by Amazon</a></li>
|
755
|
+
</ul></li>
|
756
|
+
</ul></div>
|
757
|
+
<script>
|
758
|
+
function clickclear(thisfield, defaulttext) {
|
759
|
+
thisfield.style.color = "#000000";
|
760
|
+
if (thisfield.value == defaulttext) {
|
761
|
+
thisfield.value = "";
|
762
|
+
}
|
763
|
+
}
|
764
|
+
|
765
|
+
function clickrestore(thisfield, defaulttext) {
|
766
|
+
if (thisfield.value == "") {
|
767
|
+
thisfield.style.color = "#808080";
|
768
|
+
thisfield.value = defaulttext;
|
769
|
+
}
|
770
|
+
}
|
771
|
+
</script>
|
772
|
+
<div id="sc-global-search" class="sc-drop-nav"><a id="sc-global-search-icon" class="sc-mobile-icon sc-menu-trigger" title="Search">Search</a><form id="sc-global-search-form" action="https://sellercentral.amazon.com/gp/search/search-results.html/ref=ag_helpsearch_bnav_home" method="GET"><input class="sc-search-field" id="sc-search-field" name="keywords" type="text" value="Search" onclick="clickclear(this,'Search')" onblur="clickrestore(this,'Search')" /><input class="sc-search-button" type="image" src="https://images-na.ssl-images-amazon.com/images/G/01/rainier/nav/search-icon._V372224688_.png" alt="Go"/></form></div>
|
773
|
+
<div class="sc-drop-nav" id="sc-mkt-switcher"><script>
|
774
|
+
if(typeof SCUI === 'undefined') {
|
775
|
+
window.SCUI = {};
|
776
|
+
}
|
899
777
|
|
778
|
+
if(!SCUI.hasOwnProperty('marketSwitcherScits')) {
|
779
|
+
SCUI.marketSwitcherScits = {};
|
780
|
+
}
|
900
781
|
|
782
|
+
SCUI.changeMarketplace = function(marketplaceURL,marketplaceID){
|
783
|
+
showPleaseWait();
|
784
|
+
document.location = marketplaceURL + "&marketplaceID=" + marketplaceID;
|
785
|
+
};
|
901
786
|
|
787
|
+
function switchMarketplace( marketplaceID ) {
|
788
|
+
SCUI.changeMarketplace("https://sellercentral.amazon.com/gp/utilities/set-rainier-prefs.html?ie=UTF8&url=",marketplaceID);
|
789
|
+
}
|
902
790
|
|
791
|
+
function marketplaceChanged(marketplaceID) {
|
792
|
+
if(!marketplaceID) {return;}
|
793
|
+
switchMarketplace(marketplaceID);
|
794
|
+
}
|
903
795
|
|
796
|
+
function marketplaceChangedIWS(marketplaceID) {
|
797
|
+
if(!marketplaceID){return;}
|
798
|
+
SCUI.changeMarketplace("https://sellercentral.amazon.com/gp/utilities/set-rainier-prefs.html?ie=UTF8&url=",marketplaceID);
|
799
|
+
}
|
904
800
|
|
801
|
+
</script>
|
802
|
+
<a class="sc-mobile-icon sc-menu-trigger" id="sc-mkt-switcher-icon" title="Marketplace Switcher">Marketplace Switcher</a><div id="sc-mkt-switcher-form"><select class="sc-mkt-switcher-select" id="sc-mkt-switcher-select" name="sc-mkt-switcher-select" onchange="javascript:marketplaceChanged( this.value )"><option value="AZ4B0ZS3LGLX">Checkout by Amazon (Production View)</option>
|
803
|
+
<option value="A2SMC08ZTYKXKX">Checkout by Amazon (Sandbox View)</option>
|
804
|
+
<option value="ATVPDKIKX0DER" selected="selected">www.amazon.com</option>
|
805
|
+
</select>
|
806
|
+
<div class="sc-mkt-switcher-flag"><img src="https://images-na.ssl-images-amazon.com/images/G/01/rainier/nav/USAmazon._V171112299_.png"/></div></div></div>
|
807
|
+
</div>
|
808
|
+
<div id="sc-navtabs"><div id="sc-top-nav" class="sc-drop-nav"><a id="sc-top-nav-icon" class="sc-mobile-icon sc-menu-trigger" title="Display Navigation">Display Navigation</a><ul id="sc-top-nav-root"><li class="sc-level1 sc-drop-nav sc-hover-nav "><!--[if IE 6]><iframe src="javascript:false;" class='sc-nav-iframeShim'></iframe><![endif]--><a href="https://sellercentral.amazon.com/myi/search/DefaultView.amzn/ref=ag_invmgr_tnav_home_" class="sc-menu-trigger sc-tab-a">Inventory<span class="sc-nav-arrow"></span></a><ul class="sc-sub-nav"><li class="sc-mobile-back"><a class="sc-mobile-back" href="#">Back</a></li><li><a href="https://sellercentral.amazon.com/myi/search/DefaultView.amzn/ref=ag_invmgr_dnav_home_">Manage Inventory</a></li>
|
809
|
+
<li><a href="https://sellercentral.amazon.com/gp/ssof/manage-afn-inventory.html/ref=ag_fbamnginv_dnav_home_">Manage FBA Inventory</a></li>
|
810
|
+
<li><a href="https://sellercentral.amazon.com/gp/ezdpc-gui/start.html/ref=ag_addlisting_dnav_home_">Add a Product</a></li>
|
811
|
+
<li><a href="https://sellercentral.amazon.com/gp/item-manager/ezdpc/uploadInventory.html/ref=ag_invfile_dnav_home_">Add Products via Upload</a></li>
|
812
|
+
<li><a href="https://sellercentral.amazon.com/gp/item-manager/ezdpc/openPickup.html/ref=ag_invreport_dnav_home_">Inventory Reports</a></li>
|
813
|
+
<li><a href="https://sellercentral.amazon.com/gp/ssof/shipping-queue.html/ref=ag_fbashipq_dnav_home_">Manage FBA Shipments</a></li>
|
814
|
+
</ul></li>
|
815
|
+
<li class="sc-level1 sc-drop-nav sc-hover-nav "><!--[if IE 6]><iframe src="javascript:false;" class='sc-nav-iframeShim'></iframe><![endif]--><a href="https://sellercentral.amazon.com/gp/orders-v2/list/ref=ag_myo_tnav_home_" class="sc-menu-trigger sc-tab-a">Orders<span class="sc-nav-arrow"></span></a><ul class="sc-sub-nav"><li class="sc-mobile-back"><a class="sc-mobile-back" href="#">Back</a></li><li><a href="https://sellercentral.amazon.com/gp/orders-v2/list/ref=ag_myo_dnav_home_">Manage Orders</a></li>
|
816
|
+
<li><a href="https://sellercentral.amazon.com/gp/transactions/orderPickup.html/ref=ag_orderrpt_dnav_home_">Order Reports</a></li>
|
817
|
+
<li><a href="https://sellercentral.amazon.com/gp/transactions/uploadShippingConfirmation.html/ref=ag_ordrelfile_dnav_home_">Upload Order Related Files</a></li>
|
818
|
+
<li><a href="https://sellercentral.amazon.com/gp/returns/list/ref=ag_myr_dnav_home_">Manage Returns</a></li>
|
819
|
+
</ul></li>
|
820
|
+
<li class="sc-level1 sc-drop-nav sc-hover-nav "><!--[if IE 6]><iframe src="javascript:false;" class='sc-nav-iframeShim'></iframe><![endif]--><a href="https://sellercentral.amazon.com/gp/advertiser/app/CampaignManager/ref=ag_cmpmgr_tnav_home_T2" class="sc-menu-trigger sc-tab-a">Advertising<span class="sc-nav-arrow"></span></a><ul class="sc-sub-nav"><li class="sc-mobile-back"><a class="sc-mobile-back" href="#">Back</a></li><li><a href="https://sellercentral.amazon.com/gp/advertiser/app/CampaignManager/ref=ag_cmpmgr_dnav_home_T2">Campaign Manager</a></li>
|
821
|
+
<li><a href="https://sellercentral.amazon.com/mn/promotions/promotionHome/ref=ag_promomgr_dnav_home_T2">Manage Promotions</a></li>
|
822
|
+
</ul></li>
|
823
|
+
<li class="sc-level1 sc-drop-nav sc-hover-nav "><!--[if IE 6]><iframe src="javascript:false;" class='sc-nav-iframeShim'></iframe><![endif]--><a href="https://sellercentral.amazon.com/gp/payments-account/settlement-summary.html/ref=ag_payments_tnav_home_" class="sc-menu-trigger sc-tab-a">Reports<span class="sc-nav-arrow"></span></a><ul class="sc-sub-nav"><li class="sc-mobile-back"><a class="sc-mobile-back" href="#">Back</a></li><li><a href="https://sellercentral.amazon.com/gp/payments-account/settlement-summary.html/ref=ag_payments_dnav_home_">Payments</a></li>
|
824
|
+
<li><a href="https://sellercentral.amazon.com/gp/sellercoach/dashboard/ref=ag_coach_dnav_home_">Amazon Selling Coach</a></li>
|
825
|
+
<li><a href="https://sellercentral.amazon.com/gp/site-metrics/home.html/ref=ag_sitemetric_dnav_home_">Business Reports</a></li>
|
826
|
+
<li><a href="https://sellercentral.amazon.com/gp/ssof/reports.html/ref=ag_fbareports_dnav_home_">Fulfillment</a></li>
|
827
|
+
<li><a href="https://sellercentral.amazon.com/gp/tax/tax-library.html/ref=ag_taxlib_dnav_home_">Tax Document Library</a></li>
|
828
|
+
</ul></li>
|
829
|
+
<li class="sc-level1 sc-drop-nav sc-hover-nav "><!--[if IE 6]><iframe src="javascript:false;" class='sc-nav-iframeShim'></iframe><![endif]--><a href="https://sellercentral.amazon.com/gp/seller-rating/pages/performance-summary.html/ref=ag_srsumprf_tnav_home_" class="sc-menu-trigger sc-tab-a">Performance<span class="sc-nav-arrow"></span></a><ul class="sc-sub-nav"><li class="sc-mobile-back"><a class="sc-mobile-back" href="#">Back</a></li><li><a href="https://sellercentral.amazon.com/gp/seller-rating/pages/performance-summary.html/ref=ag_srsumprf_dnav_home_">Customer Satisfaction</a></li>
|
830
|
+
<li><a href="https://sellercentral.amazon.com/gp/seller-rating/pages/feedback-manager.html/ref=ag_feedback_dnav_home_">Feedback</a></li>
|
831
|
+
<li><a href="https://sellercentral.amazon.com/gp/guarantee-claims/home.html/ref=ag_azclaims_dnav_home_">A-to-z Guarantee Claims</a></li>
|
832
|
+
<li><a href="https://sellercentral.amazon.com/gp/chargebacks/home.html/ref=ag_chrgbck_dnav_home_">Chargeback Claims</a></li>
|
833
|
+
<li><a href="https://sellercentral.amazon.com/gp/customer-experience/perf-notifications.html/ref=ag_cxperform_dnav_home_">Performance Notifications</a></li>
|
834
|
+
</ul></li>
|
835
|
+
</ul></div>
|
836
|
+
<div class="clear"></div></div>
|
837
|
+
<div class="clear clearable"></div></div>
|
905
838
|
|
906
839
|
|
907
840
|
|
908
841
|
|
842
|
+
|
909
843
|
|
910
844
|
|
845
|
+
<script type="text/javascript">
|
846
|
+
var gNavbarHeight = 97;
|
847
|
+
</script>
|
911
848
|
|
912
849
|
|
913
850
|
|
851
|
+
<script type='text/javascript'>if (typeof uet == 'function') { uet('ne'); }</script>
|
914
852
|
|
915
853
|
|
916
854
|
|
917
855
|
|
918
856
|
|
919
857
|
|
920
|
-
<table cellspacing="0" cellpadding="3" width="100%" border="0">
|
921
|
-
<tbody><tr>
|
922
|
-
<td class="tiny" valign="top" align="left" bgcolor="#FFFFFF"> <p>
|
923
858
|
|
924
|
-
<span class="small-orange"><b>Inventory</b></span><br><span class="tiny">• </span><span class="tiny"><a href="https://sellercentral.amazon.com/gp/ezdpc-gui/inventory-status/status.html/ref=ag_invmgr_mmap_home">Manage Inventory</a></span><br><span class="tiny">• </span><span class="tiny"><a href="https://sellercentral.amazon.com/gp/ezdpc-gui/start.html/ref=ag_addlisting_mmap_home">Add a Product</a></span><br><span class="tiny">• </span><span class="tiny"><a href="https://sellercentral.amazon.com/gp/item-manager/ezdpc/uploadInventory.html/ref=ag_invfile_mmap_home">Upload Products & Inventory</a></span><br><span class="tiny">• </span><span class="tiny"><a href="https://sellercentral.amazon.com/gp/item-manager/ezdpc/openPickup.html/ref=ag_invreport_mmap_home">Download Inventory File</a></span><br><span class="tiny">• </span><span class="tiny"><a href="https://sellercentral.amazon.com/mn/promotions/promotionHome/ref=ag_promomgr_mmap_home">Manage Promotions</a></span><br></p><p><span class="small-orange"><b>Orders</b></span><br><span class="tiny">• </span><span class="tiny"><a href="https://sellercentral.amazon.com/gp/orders-v2/list/ref=ag_myo_mmap_home?ie=UTF8&useSavedSearch=default">Manage Orders</a></span><br><span class="tiny">• </span><span class="tiny"><a href="https://sellercentral.amazon.com/gp/transactions/orderPickup.html/ref=ag_orderrpt_mmap_home">Order Reports</a></span><br><span class="tiny">• </span><span class="tiny"><a href="https://sellercentral.amazon.com/gp/transactions/uploadShippingConfirmation.html/ref=ag_ordrelfile_mmap_home">Upload Order Related Files</a></span><br></p><p><span class="small-orange"><b>Reports</b></span><br><span class="tiny">• </span><span class="tiny"><a href="https://sellercentral.amazon.com/gp/payments-account/settlement-summary.html/ref=ag_payments_mmap_home">Finance</a></span><br><span class="tiny">• </span><span class="tiny"><a href="https://sellercentral.amazon.com/gp/sellercoach/dashboard/ref=ag_coach_mmap_home">Amazon Selling Coach</a></span><br><span class="tiny">• </span><span class="tiny"><a href="https://sellercentral.amazon.com/gp/site-metrics/home.html/ref=ag_sitemetric_mmap_home">Site Metrics and Reports</a></span><br></p><p><span class="small-orange"><b>Performance</b></span><br><span class="tiny">• </span><span class="tiny"><a href="https://sellercentral.amazon.com/gp/customer-experience/summary.html/ref=ag_custmetric_mmap_home">Customer Metrics</a></span><br><span class="tiny">• </span><span class="tiny"><a href="https://sellercentral.amazon.com/gp/feedback-manager/home.html/ref=ag_feedback_mmap_home">Feedback</a></span><br><span class="tiny">• </span><span class="tiny"><a href="https://sellercentral.amazon.com/gp/guarantee-claims/home.html/ref=ag_azclaims_mmap_home">A-to-z Guarantee Claims</a></span><br><span class="tiny">• </span><span class="tiny"><a href="https://sellercentral.amazon.com/gp/chargebacks/home.html/ref=ag_chrgbck_mmap_home">Chargeback Claims</a></span><br><span class="tiny">• </span><span class="tiny"><a href="https://sellercentral.amazon.com/gp/customer-experience/perf-notifications.html/ref=ag_cxperform_mmap_home">Performance Notifications</a></span><br></p><p><span class="small-orange"><b>Settings</b></span><br><span class="tiny">• </span><span class="tiny"><a href="https://sellercentral.amazon.com/gp/seller/configuration/account-info-page.html/ref=ag_acctinfo_mmap_home">Account Info</a></span><br><span class="tiny">• </span><span class="tiny"><a href="https://sellercentral.amazon.com/gp/seller/configuration/notificationPreferences.html/ref=ag_notifpref_mmap_home">Notification Preferences</a></span><br><span class="tiny">• </span><span class="tiny"><a href="https://sellercentral.amazon.com/gp/seller/configuration/login-settings.html/ref=ag_loginsett_mmap_home">Login Settings</a></span><br><span class="tiny">• </span><span class="tiny"><a href="https://sellercentral.amazon.com/gp/gift-services/dispatch.html/ref=ag_giftops_mmap_home">Gift Options</a></span><br><span class="tiny">• </span><span class="tiny"><a href="https://sellercentral.amazon.com/gp/shipping/dispatch.html/ref=ag_shipset_mmap_home">Shipping Settings</a></span><br><span class="tiny">• </span><span class="tiny"><a href="https://sellercentral.amazon.com/gp/account-manager/home.html/ref=ag_userperms_mmap_home">User Permissions</a></span><br><span class="tiny">• </span><span class="tiny"><a href="https://sellercentral.amazon.com/gp/help-content/home.html/ref=ag_infopol_mmap_home">Your Info & Policies</a></span><br>
|
925
|
-
</p></td>
|
926
|
-
</tr>
|
927
|
-
</tbody></table>
|
928
|
-
</div></td></tr></tbody></table></div></div>
|
929
|
-
</div>
|
930
|
-
</td></tr></tbody></table>
|
931
|
-
<a href="https://sellercentral.amazon.com/gp/utilities/set-arbitrary-pref.html/ref=ag_resetview_cont_home?ie=UTF8&prefValue=&unset=1&prefName=widgetCustomization&redirect=1">Reset to default view</a></td>
|
932
859
|
|
933
|
-
<td style="width:1%;"> </td>
|
934
|
-
|
935
|
-
<td id="centerColumn" style="vertical-align:top">
|
936
860
|
|
937
861
|
|
938
|
-
<table width="100%" height="100%" cellspacing="0" cellpadding="0" border="0"><tbody><tr><td><div class="sc-center-widget-header"><span class="title">Headlines</span><span class="tiny"><a href="https://sellercentral.amazon.com/gp/headlines.html/ref=ag_headlines_cont_home">(see all)</a></span></div></td></tr><tr><td><b class="h3color">New: Tabbed format for Add a Product tool</b><br><span class="tiny">Jun 29, 2011</span><br><img src="./Seller Central-homepage_files/clear._V192558203_.gif" height="3px"><br><span class="small">Amazon
|
939
|
-
is excited to introduce a new "tab" format in the Add a Product tool
|
940
|
-
in Seller Central. Please note that this new format is being introduced
|
941
|
-
gradually; for a short time, some sellers may continue to see the old tool
|
942
|
-
format.
|
943
862
|
|
944
|
-
The
|
945
|
-
new tab fo... </span><span class="tiny"><a href="https://sellercentral.amazon.com/gp/headlines.html/ref=ag_headlines_cont_home#40331">Learn more</a></span><br></td></tr><tr><td><img src="./Seller Central-homepage_files/clear._V192558203_.gif" height="12px"></td></tr><tr><td><b class="h3color">Return Policy Information Displayed to Buyers</b><br><span class="tiny">Jun 13, 2011</span><br><img src="./Seller Central-homepage_files/clear._V192558203_.gif" height="3px"><br><span class="small">To ensure a consistent experience for buyers, Amazon sellers are required to have return policies that are at least as favorable as the Amazon return policies. To help provide the best experience for buyers, we will be updating the return information in y... </span><span class="tiny"><a href="https://sellercentral.amazon.com/gp/headlines.html/ref=ag_headlines_cont_home#40091">Learn more</a></span><br></td></tr><tr><td><img src="./Seller Central-homepage_files/clear._V192558203_.gif" height="12px"></td></tr><tr><td>
|
946
863
|
|
947
864
|
|
948
|
-
|
949
|
-
|
865
|
+
|
866
|
+
|
950
867
|
|
951
868
|
|
952
869
|
|
953
870
|
|
954
|
-
<img src="./Seller Central-homepage_files/transparent-pixel._V192234675_.gif" height="1" width="400">
|
955
|
-
<div id="cachebust_690621_adcontent" style="display:block; margin-top: 0px; margin-bottom:0px; padding:0px; width:100%; "><iframe id="cachebust_690621" src="./Seller Central-homepage_files/iframeproxy-3.html" frameborder="0" marginheight="0" marginwidth="0" leftmargin="0" topmargin="0" name="cachebust_690621" title="Ad" scrolling="no" allowtransparency="true" width="100%" height="214"></iframe>
|
956
871
|
|
957
|
-
|
958
|
-
<noscript><img src="https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/transparent-pixel._V192234675_.gif" height="1" width="400"/><iframe id="cachebust_690621" name="cachebust_690621" src="https://ad.doubleclick.net/adi/amzn.us.sc.hp.atf/_default;sz=400x200;pgid=;u=65873c01a6fc4e71812204cc9e57b3a8;s=i0;s=i1;s=i2;s=i3;s=i4;s=i5;s=i6;s=i7;s=i9;s=144;s=143;s=1098;s=1131;s=886;s=1089;s=940;s=939;s=396;s=1009;s=32;s=120;s=u12;s=u14;s=u4;s=m1;s=u2;z=1580;z=1504;tile=1?" title="Ad" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" topmargin="0" leftmargin="0" allowtransparency="true" style="" width="100%" height="214"></iframe></noscript>
|
959
|
-
<p style="margin:0;color:rgb(0,0,136);font-size:10px;font-family:Verdana,Arial,Helvetica,sans-serif;text-align:center;vertical-align:top;width:100%;padding-top:3px;padding-top:2px;"> <span style="display:inline-block;cursor:pointer;text-decoration:underline;" id="showFeedbackForm690621" onclick="var t=99,l=function($){if($=window.jQuery)$.getScript('https://aan.amazon.com/2009-09-09/ad/feedback.us/default?pt=RemoteContent&slot=main&pt2=feedbackscript',function(){d16g.feedback.render(document,{locale:'en_US',impressionId:'65873c01a6fc4e71812204cc9e57b3a8',randomId:690621,questionGroupId:2,slotName:'seller-central-home-atf',pageType:'sellercentral',pageSubType:'sellercentral',adContentId:612})});else setTimeout(l,t*=2)};l()"> Ad feedback </span> </p></div>
|
960
|
-
</div>
|
961
|
-
</div>
|
962
872
|
|
963
|
-
<div class="sc-center-widget-header"><span class="title">More Selling Tools</span></div></td></tr><tr><td><b class="h3color">Fulfillment by Amazon Revenue Calculator</b><br><span class="tiny">Nov 8, 2010</span><br><img src="./Seller Central-homepage_files/clear._V192558203_.gif" height="3px"><br><span class="small">Check out the cost benefits of using Fulfillment by Amazon with the
|
964
|
-
<a href="https://sellercentral.amazon.com/gp/fbacalc/fba-calculator.html/ref=xx_fbacalc_mst1_home">FBA Revenue
|
965
|
-
Calculator</a>. </span><span class="tiny"><a href="https://sellercentral.amazon.com/gp/selling-tools.html/ref=ag_xx_cont_home#15781">Learn more</a></span><br></td></tr><tr><td><img src="./Seller Central-homepage_files/clear._V192558203_.gif" height="12px"></td></tr><tr><td><b class="h3color">Amazon Marketplace Shipping Service Now Available</b><br><span class="tiny">Sep 30, 2010</span><br><img src="./Seller Central-homepage_files/clear._V192558203_.gif" height="3px"><br>Buy United States Postal Service® postage on Seller Central to save time and money. <a href="https://sellercentral.amazon.com/gp/help/help-page.html/ref=xx_200202220_cont_home?ie=UTF8&itemID=200202220">Learn more</a><br></td></tr><tr><td><img src="./Seller Central-homepage_files/clear._V192558203_.gif" height="12px"></td></tr></tbody></table>
|
966
873
|
|
967
874
|
|
968
875
|
|
969
876
|
|
970
877
|
|
971
|
-
<div class="sc-center-widget-header" style="margin-top:10px">
|
972
|
-
<span class="title">
|
973
|
-
Recent product recalls
|
974
|
-
</span>
|
975
|
-
</div>
|
976
|
-
<a href="https://sellercentral.amazon.com/gp/recall-notice.html/ref=ag_recall_cont_home">Recent product recalls</a></td>
|
977
878
|
|
978
879
|
|
979
|
-
<td style="vertical-align:top;text-align:left;width:1%"> </td>
|
980
880
|
|
981
|
-
<td id="rightColumn" style="width:180px;vertical-align:top;" class="tiny">
|
982
881
|
|
983
882
|
|
984
|
-
<table style="border:0;padding:0:margin:0;width:100%;"><tbody><tr><td>
|
985
883
|
|
986
884
|
|
987
|
-
<div class="sortablecolumn ui-sortable" style="width:100%;min-height:200px"><div class="portlet" id="18851" style="margin-bottom:6px;display:"><table border="0" name="rightWidget" cellspacing="1" cellpadding="5" bgcolor="#BBBBBB" width="100%">
|
988
|
-
<tbody><tr bgcolor="#F4F4F4"><td style="cursor:move;"><span class="h3color" style="float:left;width:80%">Seller Performance</span>
|
989
|
-
<span style="float:right"><img style="cursor:pointer;" class="collapse-toggle-button" src="./Seller Central-homepage_files/dash-minus._V196104864_.gif"><img style="margin-left:2px" src="./Seller Central-homepage_files/grip._V196362312_.gif"></span></td></tr>
|
990
|
-
<tr bgcolor="#FFFFFF"><td>
|
991
|
-
<div class="collapsible-body" style="display:">
|
992
885
|
|
993
886
|
|
994
|
-
<div id="sellerPerfStatusWidgetInternalsID0961725091307951">
|
995
887
|
|
996
888
|
|
997
889
|
|
998
|
-
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
999
|
-
<tbody><tr>
|
1000
|
-
|
1001
|
-
<td style="background-color: rgb(255, 255, 255);
|
1002
|
-
background-image: url(https://images-na.ssl-images-amazon.com/images/G/01/rainier/icons/successmessage._V192558628_.gif);
|
1003
|
-
background-repeat: no-repeat; background-position:-6px -6px;">
|
1004
|
-
|
1005
|
-
<div style="margin-left: 40px; margin-bottom: 7px; margin-top: 3px;">
|
1006
|
-
<strong>Good</strong><br>
|
1007
|
-
<span class="smaller">
|
1008
|
-
<a href="https://sellercentral.amazon.com/gp/customer-experience/summary.html/ref=ag_custmetric_cont_home">View Details</a>
|
1009
|
-
</span>
|
1010
|
-
</div></td>
|
1011
|
-
|
1012
|
-
|
1013
|
-
|
1014
|
-
|
1015
|
-
</tr>
|
1016
|
-
</tbody></table>
|
1017
|
-
|
1018
|
-
|
1019
|
-
</div>
|
1020
890
|
|
1021
|
-
|
1022
|
-
|
1023
|
-
|
1024
|
-
|
1025
|
-
|
1026
|
-
|
1027
|
-
|
1028
|
-
|
1029
|
-
|
1030
|
-
|
1031
|
-
|
1032
|
-
sellerPerfStatusHttp0961725091307951.send(null);
|
1033
|
-
|
1034
|
-
function createRequestObject0961725091307951() {
|
1035
|
-
var ro;
|
1036
|
-
var browser = navigator.appName;
|
1037
|
-
if(browser == "Microsoft Internet Explorer"){
|
1038
|
-
ro = new ActiveXObject("Microsoft.XMLHTTP");
|
1039
|
-
}else{
|
1040
|
-
ro = new XMLHttpRequest();
|
1041
|
-
}
|
1042
|
-
return ro;
|
1043
|
-
}
|
891
|
+
|
892
|
+
<div id="MEWSDivID" style="display:none"></div>
|
893
|
+
<script>
|
894
|
+
(function(SCUI) {
|
895
|
+
SCUI.execByName = function(name, context) {
|
896
|
+
var namespaces = name.split("."),
|
897
|
+
func = namespaces.pop();
|
898
|
+
|
899
|
+
for(var i=0; i<namespaces.length; i++) {
|
900
|
+
context = context[namespaces[i]];
|
901
|
+
}
|
1044
902
|
|
1045
|
-
|
1046
|
-
|
1047
|
-
|
1048
|
-
|
1049
|
-
|
1050
|
-
|
903
|
+
return context[func].call();
|
904
|
+
};
|
905
|
+
|
906
|
+
SCUI.Loader = function(options) {
|
907
|
+
this.options = options;
|
908
|
+
this.loadWidget();
|
909
|
+
};
|
910
|
+
|
911
|
+
SCUI.Loader.prototype.loadWidget = function() {
|
912
|
+
var options = this.options;
|
913
|
+
|
914
|
+
amznJQ.onReady('jQuery', function() {
|
915
|
+
function widgetLoad() {
|
916
|
+
jQuery.ajax({
|
917
|
+
url: options.url,
|
918
|
+
type: 'GET',
|
919
|
+
cache: false,
|
920
|
+
success: function(response) {
|
921
|
+
jQuery('#' + options.widgetId).html(jQuery.trim(response));
|
922
|
+
if(options.callback) {
|
923
|
+
SCUI.execByName(options.callback, window);
|
924
|
+
}
|
925
|
+
},
|
926
|
+
error: function() {
|
927
|
+
jQuery('#' + options.widgetId).html('');
|
928
|
+
}
|
929
|
+
});
|
1051
930
|
}
|
1052
|
-
}
|
1053
|
-
-->
|
1054
|
-
</script>
|
1055
|
-
</div></td></tr></tbody></table></div>
|
1056
|
-
<div class="portlet" id="6521" style="margin-bottom:6px;display:"><table border="0" name="rightWidget" cellspacing="1" cellpadding="5" bgcolor="#BBBBBB" width="100%">
|
1057
|
-
<tbody><tr bgcolor="#F4F4F4"><td style="cursor:move;"><span class="h3color" style="float:left;width:80%">Sales Summary</span>
|
1058
|
-
<span style="float:right"><img style="cursor:pointer;" class="collapse-toggle-button" src="./Seller Central-homepage_files/dash-minus._V196104864_.gif"><img style="margin-left:2px" src="./Seller Central-homepage_files/grip._V196362312_.gif"></span></td></tr>
|
1059
|
-
<tr bgcolor="#FFFFFF"><td>
|
1060
|
-
<div class="collapsible-body" style="display:">
|
1061
931
|
|
932
|
+
if(window.attachEvent) {
|
933
|
+
window.attachEvent('onload', function(){ setTimeout(widgetLoad, 20); });
|
934
|
+
} else {
|
935
|
+
window.addEventListener('load', function() { setTimeout(widgetLoad, 20); }, false);
|
936
|
+
}
|
937
|
+
});
|
1062
938
|
|
1063
|
-
|
939
|
+
};
|
940
|
+
})(window.SCUI || (window.SCUI={}));
|
941
|
+
</script>
|
1064
942
|
|
1065
943
|
|
1066
944
|
|
945
|
+
<div id="sc-grail-mask">
|
946
|
+
<div id="sc-grail-colmid">
|
947
|
+
<div id="sc-grail-colright">
|
948
|
+
<div id="sc-grail-col2">
|
949
|
+
<div data-zone="left" class="sc-secondary-widgets">
|
950
|
+
|
1067
951
|
|
1068
952
|
|
1069
953
|
|
@@ -1071,14 +955,31 @@ Recent product recalls
|
|
1071
955
|
|
1072
956
|
|
1073
957
|
|
958
|
+
|
1074
959
|
|
960
|
+
<div id="eA2pkW" class="widget data-widget widget-shadow moveit">
|
1075
961
|
|
962
|
+
<ul class="widget-content">
|
963
|
+
<li class="widget-header">
|
964
|
+
<h4>Your Orders (Amazon.com)</h4>
|
965
|
+
<!--[if IE 6]><iframe class="widget-iframe-shim"></iframe><![endif]-->
|
966
|
+
<span class="widget-menu-arrow"></span>
|
967
|
+
<ul class="widget-menu"></ul>
|
968
|
+
</li>
|
969
|
+
<li class="widget-inside" >
|
970
|
+
|
1076
971
|
|
1077
972
|
|
1078
973
|
|
1079
974
|
|
1080
975
|
|
976
|
+
|
977
|
+
|
1081
978
|
|
979
|
+
<div class="gwidget smaller" style="display: block;">
|
980
|
+
<div id='ordersWidgetInternalsID089678656669016' style="margin-bottom: 4px">
|
981
|
+
<div style="background-color: #F4F4F4; text-align: center; padding: 2px 5px" class="small">loading</div><div class="small" style="text-align:center; background: #F4F4F4; padding: 2px 5px;"><img width="114" height="9" src="https://images-na.ssl-images-amazon.com/images/G/01/rainier/ajax/loading-bar-small._V192558489_.gif"></div>
|
982
|
+
</div>
|
1082
983
|
|
1083
984
|
|
1084
985
|
|
@@ -1091,22 +992,46 @@ Recent product recalls
|
|
1091
992
|
|
1092
993
|
|
1093
994
|
|
995
|
+
|
996
|
+
|
1094
997
|
|
1095
998
|
|
1096
999
|
|
1097
1000
|
|
1098
1001
|
|
1099
1002
|
|
1003
|
+
</div>
|
1004
|
+
<div style='text-align: center'>
|
1005
|
+
<a class="buttonImage" name="View your Orders" href="https://sellercentral.amazon.com/gp/orders-v2/list/ref=ag_myo_wos7_home"><span class="awesomeButton buttonSmall primarySmallButton inner_button"><span class="button_label">View your Orders</span></span></a>
|
1006
|
+
</div>
|
1100
1007
|
|
1008
|
+
</li>
|
1009
|
+
</ul>
|
1010
|
+
</div>
|
1101
1011
|
|
1102
1012
|
|
1103
1013
|
|
1104
1014
|
|
1105
1015
|
|
1016
|
+
<div id="eCEhJy" class="widget data-widget widget-shadow moveit">
|
1106
1017
|
|
1018
|
+
<ul class="widget-content">
|
1019
|
+
<li class="widget-header">
|
1020
|
+
<h4>Performance</h4>
|
1021
|
+
<!--[if IE 6]><iframe class="widget-iframe-shim"></iframe><![endif]-->
|
1022
|
+
<span class="widget-menu-arrow"></span>
|
1023
|
+
<ul class="widget-menu"></ul>
|
1024
|
+
</li>
|
1025
|
+
<li class="widget-inside" >
|
1026
|
+
|
1107
1027
|
|
1108
1028
|
|
1029
|
+
<div id="sellerRatingWidgetPerformanceOverview">
|
1030
|
+
<div class="aligncenter small" style="background: #f4f4f4;">
|
1109
1031
|
|
1032
|
+
<p style="margin-top: 0; margin-bottom: 3px;">loading</p>
|
1033
|
+
<img width="114" height="9" src="https://images-na.ssl-images-amazon.com/images/G/01/rainier/ajax/loading-bar-small._V192558489_.gif">
|
1034
|
+
</div>
|
1110
1035
|
|
1111
1036
|
|
1112
1037
|
|
@@ -1120,465 +1045,927 @@ Recent product recalls
|
|
1120
1045
|
|
1121
1046
|
|
1122
1047
|
|
1048
|
+
|
1049
|
+
|
1123
1050
|
|
1124
1051
|
|
1125
|
-
<table border="0" cellspacing="1" cellpadding="1" width="100%" bgcolor="#dddddd">
|
1126
|
-
<tbody><tr bgcolor="#E7EBF7">
|
1127
|
-
<td nowrap=""> </td>
|
1128
|
-
<td nowrap="" align="center"><b class="small"> Gross </b></td>
|
1129
|
-
<td nowrap="" align="center"><b class="small"> Units </b></td>
|
1130
|
-
</tr>
|
1131
1052
|
|
1132
|
-
<tr>
|
1133
|
-
<td nowrap="" bgcolor="#E7EBF7"><b class="small">7 Days</b></td>
|
1134
|
-
<td nowrap="" bgcolor="#F4F4F4" align="center" class="tiny">$69,534</td>
|
1135
|
-
<td nowrap="" bgcolor="#F4F4F4" align="center" class="tiny">603</td>
|
1136
|
-
</tr>
|
1137
|
-
<tr>
|
1138
|
-
<td nowrap="" bgcolor="#E7EBF7"><b class="small">15 Days</b></td>
|
1139
|
-
<td nowrap="" bgcolor="#F4F4F4" align="center" class="tiny">$108,124</td>
|
1140
|
-
<td nowrap="" bgcolor="#F4F4F4" align="center" class="tiny">1,292</td>
|
1141
|
-
</tr>
|
1142
|
-
<tr>
|
1143
|
-
<td nowrap="" bgcolor="#E7EBF7"><b class="small">30 Days</b></td>
|
1144
|
-
<td nowrap="" bgcolor="#F4F4F4" align="center" class="tiny">$213,058</td>
|
1145
|
-
<td nowrap="" bgcolor="#F4F4F4" align="center" class="tiny">2,771</td>
|
1146
|
-
</tr>
|
1147
1053
|
|
1148
|
-
</tbody></table>
|
1149
1054
|
|
1150
1055
|
</div>
|
1151
1056
|
|
1152
|
-
<center>
|
1153
|
-
<span class="tiny">
|
1154
|
-
<br><a href="https://sellercentral.amazon.com/gp/site-metrics/report.html/ref=ag_sitereport_cont_home?reportID=102%3ASalesTrafficTimeSeries&filterList=101%3AWebsites1%2C101%3ADateRange1%2C101%3ADateUnit1&101%3AWebsites1=Website%3A%3AATVPDKIKX0DER%3A%3Awww.amazon.com%3A%3Astring&101%3ALogicalDateRange1=Preselected+Period%3A%3A2%3A%3Alast+week%3A%3A&101%3ADateRange1=Date+Range%3A%3A101%3AConcreteDateRange%3A%3A%3A%3Adate&startMonth=05&startDay=03&startYear=2011&endMonth=06&endDay=02&endYear=2011&101%3ADateUnit1=Date+Unit%3A%3A1%3A%3Adays%3A%3Ainteger&changedParams=1">
|
1155
|
-
View more seller metrics</a>
|
1156
|
-
</span>
|
1157
|
-
</center>
|
1158
|
-
|
1159
|
-
|
1160
|
-
<script type="text/javascript">
|
1161
|
-
<!--
|
1162
|
-
// setup the "loading" mesage
|
1163
|
-
var startOWContent = '<table border="0" cellspacing="1" cellpadding="1" width="100%" bgcolor="#F4F4F4"><tr bgcolor="#F4F4F4"><td nowrap> </td></tr><tr><td nowrap align="middle" bgcolor="#F4F4F4"><class="small">loading</td></tr><tr><td nowrap align="middle" bgcolor="#F4F4F4"><class="small"> <img width="114" height="9" src="https://images-na.ssl-images-amazon.com/images/G/01/rainier/ajax/loading-bar-small._V192558489_.gif"> </td></tr><tr><td nowrap align="middle" bgcolor="#F4F4F4"><class="small"> </td></tr></table>';
|
1164
|
-
document.getElementById("salesWidgetInternalsID0898034278654471").innerHTML = startOWContent;
|
1165
|
-
|
1166
|
-
// make and process the AJAX request
|
1167
|
-
var salesUrl0898034278654471 = '/gp/homepage/sales-summary-widget-internals.html?nocache=0898034278654471';
|
1168
|
-
var salesHttp0898034278654471 = createRequestObject0898034278654471();
|
1169
|
-
salesHttp0898034278654471.open('GET', salesUrl0898034278654471, true);
|
1170
|
-
salesHttp0898034278654471.onreadystatechange = function(){handleSalesResponse0898034278654471();};
|
1171
|
-
salesHttp0898034278654471.send(null);
|
1172
|
-
|
1173
|
-
function createRequestObject0898034278654471() {
|
1174
|
-
var ro;
|
1175
|
-
var browser = navigator.appName;
|
1176
|
-
if(browser == "Microsoft Internet Explorer"){
|
1177
|
-
ro = new ActiveXObject("Microsoft.XMLHTTP");
|
1178
|
-
}else{
|
1179
|
-
ro = new XMLHttpRequest();
|
1180
|
-
}
|
1181
|
-
return ro;
|
1182
|
-
}
|
1183
1057
|
|
1184
|
-
function handleSalesResponse0898034278654471()
|
1185
|
-
{
|
1186
|
-
if(salesHttp0898034278654471.readyState == 4 && salesHttp0898034278654471.status == 200) {
|
1187
|
-
if(salesHttp0898034278654471.responseText.indexOf("SERVICE_UNAVAILABLE") == -1)
|
1188
|
-
document.getElementById("salesWidgetInternalsID0898034278654471").innerHTML = salesHttp0898034278654471.responseText;
|
1189
|
-
else document.getElementById("salesWidgetInternalsID0898034278654471").innerHTML = "";
|
1190
|
-
}
|
1191
|
-
}
|
1192
|
-
-->
|
1193
|
-
</script>
|
1194
1058
|
|
1195
1059
|
|
1196
1060
|
|
1197
|
-
</
|
1061
|
+
</li>
|
1062
|
+
</ul>
|
1063
|
+
</div>
|
1198
1064
|
|
1199
1065
|
|
1200
1066
|
|
1201
1067
|
|
1202
1068
|
|
1203
|
-
<div class="portlet" id="3821" style="margin-bottom:6px;display:"><table border="0" name="rightWidget" cellspacing="1" cellpadding="5" bgcolor="#BBBBBB" width="100%">
|
1204
|
-
<tbody><tr bgcolor="#F4F4F4"><td style="cursor:move;"><span class="h3color" style="float:left;width:80%">Your Orders</span>
|
1205
|
-
<span style="float:right"><img style="cursor:pointer;" class="collapse-toggle-button" src="./Seller Central-homepage_files/dash-minus._V196104864_.gif"><img style="margin-left:2px" src="./Seller Central-homepage_files/grip._V196362312_.gif"></span></td></tr>
|
1206
|
-
<tr bgcolor="#FFFFFF"><td>
|
1207
|
-
<div class="collapsible-body" style="display:">
|
1208
|
-
<div class="gwidget smaller" style="display: block;">
|
1209
1069
|
|
1210
|
-
<div id="
|
1070
|
+
<div id="eCrqo3" class="widget data-widget widget-shadow moveit">
|
1211
1071
|
|
1072
|
+
<ul class="widget-content">
|
1073
|
+
<li class="widget-header">
|
1074
|
+
<h4>Seller Forums</h4>
|
1075
|
+
<!--[if IE 6]><iframe class="widget-iframe-shim"></iframe><![endif]-->
|
1076
|
+
<span class="widget-menu-arrow"></span>
|
1077
|
+
<ul class="widget-menu"></ul>
|
1078
|
+
</li>
|
1079
|
+
<li class="widget-inside" >
|
1080
|
+
|
1212
1081
|
|
1213
1082
|
|
1214
1083
|
|
1215
|
-
|
1216
|
-
<div class="widgetaction">
|
1217
|
-
You have 268 unshipped orders that you need to confirm shipment to be paid.
|
1218
|
-
<br>
|
1219
|
-
<a href="https://sellercentral.amazon.com/gp/orders-v2/list/ref=ag_myo_doa1_home?ie=UTF8&searchType=OrderStatus&ignoreSearchType=1&statusFilter=ItemsToShip&searchFulfillers=mfn&preSelectedRange=37&searchDateOption=preSelected&sortBy=OrderStatusDescending">View unshipped orders</a>
|
1220
|
-
</div>
|
1221
1084
|
|
1222
|
-
<
|
1085
|
+
<div id='forumsWidgetInternals'>
|
1086
|
+
|
1223
1087
|
|
1224
|
-
|
1225
|
-
|
1226
|
-
|
1227
|
-
|
1088
|
+
<div class="aligncenter small loadbar">
|
1089
|
+
loading
|
1090
|
+
</div>
|
1091
|
+
<div class="aligncenter small loadbar">
|
1092
|
+
<img class="lb-img" src="https://images-na.ssl-images-amazon.com/images/G/01/rainier/ajax/loading-bar-small._V192558489_.gif" alt="loading">
|
1093
|
+
</div>
|
1228
1094
|
|
1229
|
-
|
1230
|
-
<li>
|
1231
|
-
<span> <a href="https://sellercentral.amazon.com/gp/orders-v2/list/ref=ag_myo_dos2_home?ie=UTF8&ignoreSearchType=1&statusFilter=Default&searchFulfillers=mfn&preSelectedRange=7&searchDateOption=preSelected&sortBy=OrderStatusDescending">782</a></span>
|
1232
|
-
In last 7 days:
|
1233
|
-
</li>
|
1095
|
+
</div>
|
1234
1096
|
|
1235
|
-
|
1236
|
-
<li>
|
1237
|
-
<span> <a href="https://sellercentral.amazon.com/gp/orders-v2/list/ref=ag_myo_dos3_home?ie=UTF8&searchType=OrderStatus&ignoreSearchType=1&statusFilter=ItemsToShip&searchFulfillers=mfn&preSelectedRange=37&searchDateOption=preSelected&sortBy=OrderStatusDescending">268</a></span>
|
1238
|
-
Unshipped:
|
1239
|
-
</li>
|
1240
1097
|
|
1241
|
-
</ul>
|
1242
1098
|
|
1243
1099
|
|
1244
|
-
</div>
|
1245
|
-
</div>
|
1246
|
-
<div style="text-align: center">
|
1247
|
-
<a class="buttonImage" name="View your Orders" href="https://sellercentral.amazon.com/gp/orders-v2/list/ref=ag_myo_cont_home"><span class="awesomeButton buttonSmall primarySmallButton inner_button"><span class="button_label">View your Orders</span></span></a>
|
1248
|
-
</div>
|
1249
1100
|
|
1250
1101
|
|
1251
|
-
</div></td></tr></tbody></table></div>
|
1252
|
-
|
1253
|
-
<div class="portlet" id="9811" style="margin-bottom:6px;display:"><table border="0" name="rightWidget" cellspacing="1" cellpadding="5" bgcolor="#BBBBBB" width="100%">
|
1254
|
-
<tbody><tr bgcolor="#F4F4F4"><td style="cursor:move;"><span class="h3color" style="float:left;width:80%">Feedback Rating</span>
|
1255
|
-
<span style="float:right"><img style="cursor:pointer;" class="collapse-toggle-button" src="./Seller Central-homepage_files/dash-minus._V196104864_.gif"><img style="margin-left:2px" src="./Seller Central-homepage_files/grip._V196362312_.gif"></span></td></tr>
|
1256
|
-
<tr bgcolor="#FFFFFF"><td>
|
1257
|
-
<div class="collapsible-body" style="display:">
|
1258
1102
|
|
1259
1103
|
|
1260
1104
|
|
1261
1105
|
|
1262
1106
|
|
1263
|
-
<div id="feedbackWidgetInternalsID0358971577246109">
|
1264
1107
|
|
1108
|
+
|
1109
|
+
|
1265
1110
|
|
1266
1111
|
|
1267
|
-
<div style="text-align:center">
|
1268
1112
|
|
1269
1113
|
|
1270
1114
|
|
1271
1115
|
|
1116
|
+
</li>
|
1117
|
+
</ul>
|
1118
|
+
</div>
|
1272
1119
|
|
1273
1120
|
|
1274
1121
|
|
1275
1122
|
|
1276
1123
|
|
1277
|
-
<style type="text/css"><!--
|
1278
|
-
.feedbackMeanRating { font-family: verdana,arial,helvetica,sans-serif; font-size: smaller; display: inline; }
|
1279
|
-
--></style>
|
1280
1124
|
|
1281
|
-
<style type="text/css"><!--
|
1282
|
-
.starRating { display: inline; }
|
1283
|
-
--></style>
|
1284
1125
|
|
1126
|
+
<div id="eAregU" class="widget data-widget widget-shadow moveit">
|
1285
1127
|
|
1128
|
+
<ul class="widget-content">
|
1129
|
+
<li class="widget-header">
|
1130
|
+
<h4>Other Amazon Links</h4>
|
1131
|
+
<!--[if IE 6]><iframe class="widget-iframe-shim"></iframe><![endif]-->
|
1132
|
+
<span class="widget-menu-arrow"></span>
|
1133
|
+
<ul class="widget-menu"></ul>
|
1134
|
+
</li>
|
1135
|
+
<li class="widget-inside" >
|
1136
|
+
|
1286
1137
|
|
1138
|
+
|
1139
|
+
|
1140
|
+
|
1141
|
+
|
1142
|
+
|
1143
|
+
|
1144
|
+
|
1287
1145
|
|
1288
1146
|
|
1147
|
+
<div id="external-links">
|
1148
|
+
<ul class="el-list smaller">
|
1149
|
+
|
1150
|
+
|
1289
1151
|
|
1290
|
-
|
1152
|
+
|
1291
1153
|
|
1292
|
-
<div class="starRating">
|
1293
1154
|
|
1294
|
-
|
1155
|
+
<li class='ell-item'><a href="https://www.amazon.com/ref=ag_amznhome_woal_home">Amazon.com Home Page</a></li>
|
1156
|
+
|
1157
|
+
|
1295
1158
|
|
1296
|
-
|
1159
|
+
|
1297
1160
|
|
1298
1161
|
|
1162
|
+
<li class='ell-item'><a href="https://www.amazon.com/gp/css/homepage.html/ref=ag_ya_woal_home">Your Buyer Account</a></li>
|
1163
|
+
|
1164
|
+
|
1299
1165
|
|
1300
|
-
|
1166
|
+
|
1301
1167
|
|
1302
|
-
<b>4.7</b> stars over the past 12 months
|
1303
1168
|
|
1169
|
+
<li class='ell-item'><a href="https://www.amazon.com/gp/tradein/your-account/ref=ag_tradein_woal_home">Your Trade-In Account</a></li>
|
1170
|
+
|
1171
|
+
|
1172
|
+
|
1173
|
+
|
1304
1174
|
|
1305
|
-
|
1175
|
+
|
1306
1176
|
|
1307
1177
|
|
1308
|
-
|
1178
|
+
<li class='ell-item'><a href="https://www.amazon.com/gp/redirect.html/ref=ag_assoc_woal_home?ie=UTF8&location=https%3A%2F%2Faffiliate-program.amazon.com%2F">Amazon Associates</a></li>
|
1179
|
+
|
1180
|
+
|
1309
1181
|
|
1182
|
+
|
1310
1183
|
|
1311
1184
|
|
1185
|
+
<li class='ell-item'><a href="https://www.amazon.com/gp/redirect.html/ref=ag_kdp_woal_home?ie=UTF8&location=https%3A%2F%2Fkdp.amazon.com%2Fself-publishing%2Fsignin%3Flanguage%3Den_US">Kindle Direct Publishing</a></li>
|
1186
|
+
</ul>
|
1312
1187
|
</div>
|
1313
1188
|
|
1189
|
+
</li>
|
1190
|
+
</ul>
|
1191
|
+
</div>
|
1314
1192
|
|
1315
1193
|
|
1316
1194
|
|
1195
|
+
|
1317
1196
|
|
1197
|
+
|
1198
|
+
<div id="eAcMve" class="widget data-widget widget-shadow moveit">
|
1318
1199
|
|
1200
|
+
<ul class="widget-content">
|
1201
|
+
<li class="widget-header">
|
1202
|
+
<h4>Site Map</h4>
|
1203
|
+
<!--[if IE 6]><iframe class="widget-iframe-shim"></iframe><![endif]-->
|
1204
|
+
<span class="widget-menu-arrow"></span>
|
1205
|
+
<ul class="widget-menu"></ul>
|
1206
|
+
</li>
|
1207
|
+
<li class="widget-inside" >
|
1208
|
+
|
1319
1209
|
|
1320
1210
|
|
1321
1211
|
|
1322
1212
|
|
1213
|
+
<div id="sc-gateway-sitemap"><span class="small bold">Inventory</span><br /><span class="small">• <a href="https://sellercentral.amazon.com/myi/search/DefaultView.amzn/ref=ag_invmgr_mmap_home">Manage Inventory</a></span><br /><span class="small">• <a href="https://sellercentral.amazon.com/gp/ssof/manage-afn-inventory.html/ref=ag_fbamnginv_mmap_home">Manage FBA Inventory</a></span><br /><span class="small">• <a href="https://sellercentral.amazon.com/gp/ezdpc-gui/start.html/ref=ag_addlisting_mmap_home">Add a Product</a></span><br /><span class="small">• <a href="https://sellercentral.amazon.com/gp/item-manager/ezdpc/uploadInventory.html/ref=ag_invfile_mmap_home">Add Products via Upload</a></span><br /><span class="small">• <a href="https://sellercentral.amazon.com/gp/item-manager/ezdpc/openPickup.html/ref=ag_invreport_mmap_home">Inventory Reports</a></span><br /><span class="small">• <a href="https://sellercentral.amazon.com/gp/ssof/shipping-queue.html/ref=ag_fbashipq_mmap_home">Manage FBA Shipments</a></span><br /><p><span class="small bold">Orders</span><br /><span class="small">• <a href="https://sellercentral.amazon.com/gp/orders-v2/list/ref=ag_myo_mmap_home">Manage Orders</a></span><br /><span class="small">• <a href="https://sellercentral.amazon.com/gp/transactions/orderPickup.html/ref=ag_orderrpt_mmap_home">Order Reports</a></span><br /><span class="small">• <a href="https://sellercentral.amazon.com/gp/transactions/uploadShippingConfirmation.html/ref=ag_ordrelfile_mmap_home">Upload Order Related Files</a></span><br /><span class="small">• <a href="https://sellercentral.amazon.com/gp/returns/list/ref=ag_myr_mmap_home">Manage Returns</a></span><br /><p><span class="small bold">Advertising</span><br /><span class="small">• <a href="https://sellercentral.amazon.com/gp/advertiser/app/CampaignManager/ref=ag_cmpmgr_mmap_home">Campaign Manager</a></span><br /><span class="small">• <a href="https://sellercentral.amazon.com/mn/promotions/promotionHome/ref=ag_promomgr_mmap_home">Manage Promotions</a></span><br /><p><span class="small bold">Reports</span><br /><span class="small">• <a href="https://sellercentral.amazon.com/gp/payments-account/settlement-summary.html/ref=ag_payments_mmap_home">Payments</a></span><br /><span class="small">• <a href="https://sellercentral.amazon.com/gp/sellercoach/dashboard/ref=ag_coach_mmap_home">Amazon Selling Coach</a></span><br /><span class="small">• <a href="https://sellercentral.amazon.com/gp/site-metrics/home.html/ref=ag_sitemetric_mmap_home">Business Reports</a></span><br /><span class="small">• <a href="https://sellercentral.amazon.com/gp/ssof/reports.html/ref=ag_fbareports_mmap_home">Fulfillment</a></span><br /><span class="small">• <a href="https://sellercentral.amazon.com/gp/tax/tax-library.html/ref=ag_taxlib_mmap_home">Tax Document Library</a></span><br /><p><span class="small bold">Performance</span><br /><span class="small">• <a href="https://sellercentral.amazon.com/gp/seller-rating/pages/performance-summary.html/ref=ag_srsumprf_mmap_home">Customer Satisfaction</a></span><br /><span class="small">• <a href="https://sellercentral.amazon.com/gp/seller-rating/pages/feedback-manager.html/ref=ag_feedback_mmap_home">Feedback</a></span><br /><span class="small">• <a href="https://sellercentral.amazon.com/gp/guarantee-claims/home.html/ref=ag_azclaims_mmap_home">A-to-z Guarantee Claims</a></span><br /><span class="small">• <a href="https://sellercentral.amazon.com/gp/chargebacks/home.html/ref=ag_chrgbck_mmap_home">Chargeback Claims</a></span><br /><span class="small">• <a href="https://sellercentral.amazon.com/gp/customer-experience/perf-notifications.html/ref=ag_cxperform_mmap_home">Performance Notifications</a></span><br /><p><span class="small bold">Settings</span><br /><span class="small">• <a href="https://sellercentral.amazon.com/gp/seller/configuration/account-info-page.html/ref=ag_acctinfo_mmap_home">Account Info</a></span><br /><span class="small">• <a href="https://sellercentral.amazon.com/gp/seller/configuration/notificationPreferences.html/ref=ag_notifpref_mmap_home">Notification Preferences</a></span><br /><span class="small">• <a href="https://sellercentral.amazon.com/gp/seller/configuration/login-settings.html/ref=ag_loginsett_mmap_home">Login Settings</a></span><br /><span class="small">• <a href="https://sellercentral.amazon.com/gp/returns/settings/ref=ag_myr_mmap_home">Return Settings</a></span><br /><span class="small">• <a href="https://sellercentral.amazon.com/gp/gift-services/dispatch.html/ref=ag_giftops_mmap_home">Gift Options</a></span><br /><span class="small">• <a href="https://sellercentral.amazon.com/gp/shipping/dispatch.html/ref=ag_shipset_mmap_home">Shipping Settings</a></span><br /><span class="small">• <a href="https://sellercentral.amazon.com/gp/tax-manager/dashboard.html/ref=ag_taxmgr_mmap_home">Tax Settings</a></span><br /><span class="small">• <a href="https://sellercentral.amazon.com/gp/account-manager/home.html/ref=ag_userperms_mmap_home">User Permissions</a></span><br /><span class="small">• <a href="https://sellercentral.amazon.com/gp/help-content/home.html/ref=ag_infopol_mmap_home">Your Info & Policies</a></span><br /><span class="small">• <a href="https://sellercentral.amazon.com/gp/ssof/configuration/index.html/ref=ag_fbasettings_mmap_home">Fulfillment by Amazon</a></span><br /></div>
|
1323
1214
|
|
1215
|
+
</li>
|
1216
|
+
</ul>
|
1217
|
+
</div>
|
1324
1218
|
|
1325
|
-
<style type="text/css"><!--
|
1326
1219
|
|
1327
|
-
.feedbackPosPercent { color:#009900; font-weight:bold; }
|
1328
|
-
.feedbackNeuPercent { color:#666666; }
|
1329
|
-
.feedbackNegPercent { color:#990000; }
|
1330
|
-
.feedbackPercent { color:#000000; font-size:xx-small; font-weight:normal; }
|
1331
1220
|
|
1332
|
-
--></style>
|
1333
1221
|
|
1222
|
+
</div>
|
1223
|
+
<a href="https://sellercentral.amazon.com/gp/utilities/set-arbitrary-pref.html/ref=ag_resetview_cont_home?ie=UTF8&prefName=sc_gateway-widgetCustomization&prefValue=&redirect=1&unset=1">Reset to default view</a>
|
1224
|
+
</div>
|
1225
|
+
<div id="sc-grail-col3">
|
1226
|
+
<div data-zone="right" class="sc-secondary-widgets">
|
1227
|
+
|
1334
1228
|
|
1335
|
-
<style type="text/css"><!--
|
1336
1229
|
|
1337
|
-
.feedbackTable {font-size:xx-small; font-family: verdana,arial,helvetica,sans-serif; text-align:center; width:95%; border-color:#f4f4f4; border:1; border-collapse: collapse; }
|
1338
|
-
.feedbackTable td { padding:4; margin:0; border-color:#dddddd; border-style: solid; border-width:1px}
|
1339
1230
|
|
1340
|
-
.feedbackTableCorner { background-color:#F4F4F4 ; font-size: xx-small;text-align:right;}
|
1341
1231
|
|
1342
|
-
.feedbackRowHeader { font-size: xx-small; }
|
1343
|
-
.feedbackColumnHeader { text-align:right; background-color:#F4F4F4; font-size: x-small; }
|
1344
1232
|
|
1345
|
-
.feedback30Days { background-color:#ECECF4; width:19%; font-size:xx-small;}
|
1346
|
-
.feedback90Days { background-color:#F4F4FA; width:19%; font-size:xx-small; }
|
1347
|
-
.feedback365Days{ background-color:#F8F8F8; width:19%; font-size:xx-small; }
|
1348
|
-
.feedbackLifetime { background-color:#F8F8F8; width:19%; font-size:xx-small; }
|
1349
1233
|
|
1350
|
-
.feedback30DaysLabel { background-color:#ECECF4; font-size:xx-small; }
|
1351
|
-
.feedback90DaysLabel { background-color:#F4F4FA; font-size:xx-small; }
|
1352
|
-
.feedback365DaysLabel { background-color:#F8F8F8; font-size:xx-small; }
|
1353
|
-
.feedbackLifetimeLabel { background-color:#F8F8F8; font-size:xx-small; }
|
1354
1234
|
|
1235
|
+
|
1355
1236
|
|
1356
|
-
--></style>
|
1357
1237
|
|
1238
|
+
<div id="eAXRFK" class="widget data-widget widget-shadow moveit">
|
1358
1239
|
|
1240
|
+
<ul class="widget-content">
|
1241
|
+
<li class="widget-header">
|
1242
|
+
<h4>Payments Summary</h4>
|
1243
|
+
<!--[if IE 6]><iframe class="widget-iframe-shim"></iframe><![endif]-->
|
1244
|
+
<span class="widget-menu-arrow"></span>
|
1245
|
+
<ul class="widget-menu"></ul>
|
1246
|
+
</li>
|
1247
|
+
<li class="widget-inside" >
|
1248
|
+
|
1359
1249
|
|
1360
|
-
<div align="center">
|
1361
|
-
<table class="feedbackTable">
|
1362
|
-
<tbody>
|
1363
|
-
<tr class="feedbackRowHeader">
|
1364
1250
|
|
1365
|
-
<td class="feedbackTableCorner">Feedback</td>
|
1366
1251
|
|
1367
1252
|
|
1368
|
-
<td class="feedback30DaysLabel">30 days</td>
|
1369
|
-
<td class="feedback90DaysLabel">90 days</td>
|
1370
|
-
<td class="feedback365DaysLabel">365 days</td>
|
1371
1253
|
|
1372
|
-
</tr>
|
1373
1254
|
|
1374
1255
|
|
1375
1256
|
|
1376
1257
|
|
1377
1258
|
|
1378
1259
|
|
1260
|
+
<div id="finance-widget">
|
1261
|
+
<div class="finance-widget-loading">
|
1262
|
+
<p>loading</p>
|
1263
|
+
<img width="114" height="9" src="https://images-na.ssl-images-amazon.com/images/G/01/rainier/ajax/loading-bar-small._V192558489_.gif" />
|
1264
|
+
</div>
|
1379
1265
|
|
1380
|
-
<tr>
|
1381
1266
|
|
1382
|
-
|
1267
|
+
|
1383
1268
|
|
1384
1269
|
|
1385
1270
|
|
1386
|
-
<td class="feedback30Days">
|
1387
|
-
<span class="feedbackPosPercent">92</span><span class="feedbackPercent">%</span>
|
1388
|
-
</td>
|
1389
|
-
<td class="feedback90Days">
|
1390
|
-
<span class="feedbackPosPercent">93</span><span class="feedbackPercent">%</span>
|
1391
|
-
</td>
|
1392
|
-
<td class="feedback365Days">
|
1393
|
-
<span class="feedbackPosPercent">93</span><span class="feedbackPercent">%</span>
|
1394
|
-
</td>
|
1395
|
-
</tr>
|
1396
1271
|
|
1397
|
-
<tr>
|
1398
1272
|
|
1399
|
-
<td class="feedbackColumnHeader" nobr=""> Neutral</td>
|
1400
1273
|
|
1401
1274
|
|
1402
1275
|
|
1403
|
-
<td class="feedback30Days">
|
1404
|
-
<span class="feedbackNeuPercent">3</span><span class="feedbackPercent">%</span>
|
1405
|
-
</td>
|
1406
|
-
<td class="feedback90Days">
|
1407
|
-
<span class="feedbackNeuPercent">3</span><span class="feedbackPercent">%</span>
|
1408
|
-
</td>
|
1409
|
-
<td class="feedback365Days">
|
1410
|
-
<span class="feedbackNeuPercent">3</span><span class="feedbackPercent">%</span>
|
1411
|
-
</td>
|
1412
|
-
</tr>
|
1413
1276
|
|
1414
|
-
<tr>
|
1415
1277
|
|
1416
|
-
|
1278
|
+
|
1279
|
+
|
1417
1280
|
|
1418
1281
|
|
1419
1282
|
|
1420
|
-
<td class="feedback30Days">
|
1421
|
-
<span class="feedbackNegPercent">5</span><span class="feedbackPercent">%</span>
|
1422
|
-
</td>
|
1423
|
-
<td class="feedback90Days">
|
1424
|
-
<span class="feedbackNegPercent">4</span><span class="feedbackPercent">%</span>
|
1425
|
-
</td>
|
1426
|
-
<td class="feedback365Days">
|
1427
|
-
<span class="feedbackNegPercent">4</span><span class="feedbackPercent">%</span>
|
1428
|
-
</td>
|
1429
|
-
</tr>
|
1430
1283
|
|
1431
|
-
<tr>
|
1432
1284
|
|
1433
|
-
<td class="feedbackColumnHeader" nobr=""> Count</td>
|
1434
1285
|
|
1286
|
+
</div>
|
1435
1287
|
|
1288
|
+
</li>
|
1289
|
+
</ul>
|
1290
|
+
</div>
|
1436
1291
|
|
1437
|
-
<td class="feedback30Days">
|
1438
|
-
387
|
1439
|
-
</td>
|
1440
|
-
<td class="feedback90Days">
|
1441
|
-
1162
|
1442
|
-
</td>
|
1443
|
-
<td class="feedback365Days">
|
1444
|
-
1335
|
1445
|
-
</td>
|
1446
|
-
</tr>
|
1447
1292
|
|
1448
1293
|
|
1449
|
-
</tbody>
|
1450
|
-
</table>
|
1451
|
-
</div>
|
1452
1294
|
|
1453
1295
|
|
1454
1296
|
|
1455
|
-
</div>
|
1456
1297
|
|
1457
|
-
<center>
|
1458
|
-
<span class="tiny">
|
1459
|
-
<br><a href="https://sellercentral.amazon.com/gp/feedback-manager/home.html/ref=ag_feedback_cont_home">View your Ratings and Feedback</a>
|
1460
|
-
</span>
|
1461
|
-
</center>
|
1462
|
-
|
1463
|
-
|
1464
|
-
<script type="text/javascript">
|
1465
|
-
<!--
|
1466
|
-
// setup the "loading" mesage
|
1467
|
-
var startOWContent = '<table border="0" cellspacing="1" cellpadding="1" width="100%" bgcolor="#F4F4F4"><tr bgcolor="#F4F4F4"><td nowrap> </td></tr><tr bgcolor="#F4F4F4"><td nowrap> </td></tr><tr><td nowrap align="middle" bgcolor="#F4F4F4"><class="small">loading</td></tr><tr><td nowrap align="middle" bgcolor="#F4F4F4"><class="small"> <img width="114" height="9" src="https://images-na.ssl-images-amazon.com/images/G/01/rainier/ajax/loading-bar-small._V192558489_.gif"> </td></tr><tr><td nowrap align="middle" bgcolor="#F4F4F4"><class="small"> </td></tr><tr bgcolor="#F4F4F4"><td nowrap> </td></tr><tr bgcolor="#F4F4F4"><td nowrap height="17px"></td></tr></table>';
|
1468
|
-
document.getElementById("feedbackWidgetInternalsID0358971577246109").innerHTML = startOWContent;
|
1469
|
-
|
1470
|
-
// make and process the AJAX request
|
1471
|
-
var feedbackUrl0358971577246109 = '/gp/feedback-manager/widgets/feedbackSummaryWidgetInternals.html?marketplaceID=ATVPDKIKX0DER&nocache=0358971577246109';
|
1472
|
-
var feedbackHttp0358971577246109 = createRequestObject0358971577246109();
|
1473
|
-
feedbackHttp0358971577246109.open('GET', feedbackUrl0358971577246109, true);
|
1474
|
-
feedbackHttp0358971577246109.onreadystatechange = function(){handleFeedbackResponse0358971577246109();};
|
1475
|
-
feedbackHttp0358971577246109.send(null);
|
1476
|
-
|
1477
|
-
function createRequestObject0358971577246109() {
|
1478
|
-
var ro;
|
1479
|
-
var browser = navigator.appName;
|
1480
|
-
if(browser == "Microsoft Internet Explorer"){
|
1481
|
-
ro = new ActiveXObject("Microsoft.XMLHTTP");
|
1482
|
-
}else{
|
1483
|
-
ro = new XMLHttpRequest();
|
1484
|
-
}
|
1485
|
-
return ro;
|
1486
|
-
}
|
1487
1298
|
|
1488
|
-
function handleFeedbackResponse0358971577246109()
|
1489
|
-
{
|
1490
|
-
if(feedbackHttp0358971577246109.readyState == 4 && feedbackHttp0358971577246109.status == 200) {
|
1491
|
-
if(feedbackHttp0358971577246109.responseText.indexOf("SERVICE_UNAVAILABLE") == -1)
|
1492
|
-
document.getElementById("feedbackWidgetInternalsID0358971577246109").innerHTML = feedbackHttp0358971577246109.responseText;
|
1493
|
-
else document.getElementById("feedbackWidgetInternalsID0358971577246109").innerHTML = "";
|
1494
|
-
}
|
1495
|
-
}
|
1496
|
-
-->
|
1497
|
-
</script>
|
1498
1299
|
|
1300
|
+
<div id="eAXVGV" class="widget data-widget widget-shadow moveit">
|
1499
1301
|
|
1302
|
+
<ul class="widget-content">
|
1303
|
+
<li class="widget-header">
|
1304
|
+
<h4>Manage Your Case Log</h4>
|
1305
|
+
<!--[if IE 6]><iframe class="widget-iframe-shim"></iframe><![endif]-->
|
1306
|
+
<span class="widget-menu-arrow"></span>
|
1307
|
+
<ul class="widget-menu"></ul>
|
1308
|
+
</li>
|
1309
|
+
<li class="widget-inside" >
|
1310
|
+
|
1500
1311
|
|
1501
|
-
</div></td></tr></tbody></table></div>
|
1502
|
-
<div class="portlet" id="23301" style="margin-bottom:6px;display:"><table border="0" name="rightWidget" cellspacing="1" cellpadding="5" bgcolor="#BBBBBB" width="100%">
|
1503
|
-
<tbody><tr bgcolor="#F4F4F4"><td style="cursor:move;"><span class="h3color" style="float:left;width:80%">Buyer Claims</span>
|
1504
|
-
<span style="float:right"><img style="cursor:pointer;" class="collapse-toggle-button" src="./Seller Central-homepage_files/dash-minus._V196104864_.gif"><img style="margin-left:2px" src="./Seller Central-homepage_files/grip._V196362312_.gif"></span></td></tr>
|
1505
|
-
<tr bgcolor="#FFFFFF"><td>
|
1506
|
-
<div class="collapsible-body" style="display:">
|
1507
1312
|
|
1508
1313
|
|
1509
1314
|
|
1510
1315
|
|
1511
|
-
<div id="azClaimsWidgetInternalsID0194583503499853">
|
1512
1316
|
|
1513
1317
|
|
1514
1318
|
|
1515
|
-
<table width="100%" border="0" cellspacing="1" bgcolor="#DDDDDD" cellpadding="0">
|
1516
|
-
<tbody><tr>
|
1517
|
-
<td class="smaller" style="background:#F8F8F8; text-align: left; padding: 4px;">
|
1518
|
-
A-to-z Guarantee claims:
|
1519
|
-
</td>
|
1520
|
-
<td align="center" class="smaller" style="background:#E7EBF7; padding: 4px;">
|
1521
|
-
<a href="https://sellercentral.amazon.com/gp/guarantee-claims/home.html/ref=ag_gclaims_conr_home?ie=UTF8&getType=getActionRequired">2</a>
|
1522
|
-
</td>
|
1523
|
-
</tr>
|
1524
|
-
<tr>
|
1525
|
-
<td class="smaller" style="background:#F8F8F8; text-align: left; padding: 4px;">
|
1526
|
-
Chargeback claims:
|
1527
|
-
</td>
|
1528
|
-
<td align="center" class="smaller" style="background:#E7EBF7; padding: 4px;">
|
1529
|
-
<a href="https://sellercentral.amazon.com/gp/chargebacks/home.html/ref=ag_chargeback_conr_home?ie=UTF8&getType=getActionRequired">0</a>
|
1530
|
-
</td>
|
1531
|
-
</tr>
|
1532
|
-
</tbody></table>
|
1533
1319
|
|
1534
|
-
|
1320
|
+
<div id='mcmsWidgetInternalsID072972467620902'>
|
1321
|
+
<div style="background-color: #F4F4F4; text-align: center; padding: 2px 5px" class="small">loading</div><div class="small" style="text-align:center; background: #F4F4F4; padding: 2px 5px;"><img width="114" height="9" src="https://images-na.ssl-images-amazon.com/images/G/01/rainier/ajax/loading-bar-small._V192558489_.gif"></div>
|
1535
1322
|
</div>
|
1536
1323
|
|
1537
|
-
<div class="inputfootnote" style="text-align:right;">Claims requiring action</div>
|
1538
|
-
|
1539
|
-
<script type="text/javascript">
|
1540
|
-
<!--
|
1541
|
-
// setup the "loading" mesage
|
1542
|
-
var startOWContent = '<table border="0" cellspacing="1" cellpadding="1" width="100%" bgcolor="#F4F4F4"><tr bgcolor="#F4F4F4"><td nowrap> </td></tr><tr bgcolor="#F4F4F4"><td nowrap> </td></tr><tr><td nowrap align="middle" bgcolor="#F4F4F4"><class="small">loading</td></tr><tr><td nowrap align="middle" bgcolor="#F4F4F4"><class="small"> <img width="114" height="9" src="https://images-na.ssl-images-amazon.com/images/G/01/rainier/ajax/loading-bar-small._V192558489_.gif"> </td></tr><tr><td nowrap align="middle" bgcolor="#F4F4F4"><class="small"> </td></tr><tr bgcolor="#F4F4F4"><td nowrap> </td></tr><tr bgcolor="#F4F4F4"><td nowrap height="17px"></td></tr></table>';
|
1543
|
-
document.getElementById("azClaimsWidgetInternalsID0194583503499853").innerHTML = startOWContent;
|
1544
|
-
|
1545
|
-
// make and process the AJAX request
|
1546
|
-
var azClaimsUrl0194583503499853 = '/gp/seller-account/widgets/azClaimsWidgetInternals.html?nocache=0194583503499853';
|
1547
|
-
var azClaimsHttp0194583503499853 = createRequestObject0194583503499853();
|
1548
|
-
azClaimsHttp0194583503499853.open('GET', azClaimsUrl0194583503499853, true);
|
1549
|
-
azClaimsHttp0194583503499853.onreadystatechange = function(){handleazClaimsResponse0194583503499853();};
|
1550
|
-
azClaimsHttp0194583503499853.send(null);
|
1551
|
-
|
1552
|
-
function createRequestObject0194583503499853() {
|
1553
|
-
var ro;
|
1554
|
-
var browser = navigator.appName;
|
1555
|
-
if(browser == "Microsoft Internet Explorer"){
|
1556
|
-
ro = new ActiveXObject("Microsoft.XMLHTTP");
|
1557
|
-
}else{
|
1558
|
-
ro = new XMLHttpRequest();
|
1559
|
-
}
|
1560
|
-
return ro;
|
1561
|
-
}
|
1562
1324
|
|
1563
|
-
function handleazClaimsResponse0194583503499853()
|
1564
|
-
{
|
1565
|
-
if(azClaimsHttp0194583503499853.readyState == 4 && azClaimsHttp0194583503499853.status == 200) {
|
1566
|
-
if(azClaimsHttp0194583503499853.responseText.indexOf("SERVICE_UNAVAILABLE") == -1)
|
1567
|
-
document.getElementById("azClaimsWidgetInternalsID0194583503499853").innerHTML = azClaimsHttp0194583503499853.responseText;
|
1568
|
-
else document.getElementById("azClaimsWidgetInternalsID0194583503499853").innerHTML = "";
|
1569
|
-
}
|
1570
|
-
}
|
1571
|
-
-->
|
1572
|
-
</script>
|
1573
1325
|
|
1574
1326
|
|
1575
1327
|
|
1576
|
-
|
1577
|
-
|
1578
|
-
|
1579
|
-
|
1580
|
-
|
1581
|
-
|
1328
|
+
|
1329
|
+
|
1330
|
+
|
1331
|
+
|
1332
|
+
|
1333
|
+
|
1334
|
+
|
1335
|
+
|
1336
|
+
|
1337
|
+
|
1338
|
+
|
1339
|
+
|
1340
|
+
|
1341
|
+
|
1342
|
+
|
1343
|
+
|
1344
|
+
</li>
|
1345
|
+
</ul>
|
1346
|
+
</div>
|
1347
|
+
|
1348
|
+
|
1349
|
+
|
1350
|
+
|
1351
|
+
|
1352
|
+
|
1353
|
+
|
1354
|
+
|
1355
|
+
|
1356
|
+
|
1357
|
+
<div id="eAXYpR" class="widget data-widget widget-shadow moveit">
|
1358
|
+
|
1359
|
+
<ul class="widget-content">
|
1360
|
+
<li class="widget-header">
|
1361
|
+
<h4>Sales Summary</h4>
|
1362
|
+
<!--[if IE 6]><iframe class="widget-iframe-shim"></iframe><![endif]-->
|
1363
|
+
<span class="widget-menu-arrow"></span>
|
1364
|
+
<ul class="widget-menu"></ul>
|
1365
|
+
</li>
|
1366
|
+
<li class="widget-inside" >
|
1367
|
+
|
1368
|
+
|
1369
|
+
|
1370
|
+
|
1371
|
+
<div id='salesWidgetInternalsID0474384516606321'>
|
1372
|
+
<div style="background-color: #F4F4F4; text-align: center; padding: 2px 5px" class="small">loading</div><div class="small" style="text-align:center; background: #F4F4F4; padding: 2px 5px;"><img width="114" height="9" src="https://images-na.ssl-images-amazon.com/images/G/01/rainier/ajax/loading-bar-small._V192558489_.gif"></div>
|
1373
|
+
</div>
|
1374
|
+
|
1375
|
+
<div class="blockcenter aligncenter tiny" style="margin-top: 8px;">
|
1376
|
+
<a href="https://sellercentral.amazon.com/gp/site-metrics/report.html/ref=ag_sitereport_cont_home">
|
1377
|
+
View more of your sales statistics</a>
|
1378
|
+
</div>
|
1379
|
+
|
1380
|
+
|
1381
|
+
|
1382
|
+
|
1383
|
+
|
1384
|
+
|
1385
|
+
|
1386
|
+
|
1387
|
+
|
1388
|
+
|
1389
|
+
|
1390
|
+
|
1391
|
+
|
1392
|
+
|
1393
|
+
|
1394
|
+
|
1395
|
+
|
1396
|
+
|
1397
|
+
|
1398
|
+
|
1399
|
+
|
1400
|
+
</li>
|
1401
|
+
</ul>
|
1402
|
+
</div>
|
1403
|
+
|
1404
|
+
|
1405
|
+
|
1406
|
+
|
1407
|
+
|
1408
|
+
|
1409
|
+
|
1410
|
+
|
1411
|
+
|
1412
|
+
|
1413
|
+
|
1414
|
+
|
1415
|
+
<div id="eAXJPU" class="widget data-widget widget-shadow moveit">
|
1416
|
+
|
1417
|
+
<ul class="widget-content">
|
1418
|
+
<li class="widget-header">
|
1419
|
+
<h4>Unshipped Orders</h4>
|
1420
|
+
<!--[if IE 6]><iframe class="widget-iframe-shim"></iframe><![endif]-->
|
1421
|
+
<span class="widget-menu-arrow"></span>
|
1422
|
+
<ul class="widget-menu"></ul>
|
1423
|
+
</li>
|
1424
|
+
<li class="widget-inside" >
|
1425
|
+
|
1426
|
+
<div class="gwidget smaller" style="display: block;">
|
1427
|
+
|
1428
|
+
<div id='ordersWidgetInternalsID0940874217089597' style="margin-bottom: 4px">
|
1429
|
+
<div style="background-color: #F4F4F4; text-align: center; padding: 2px 5px" class="small">loading</div><div class="small" style="text-align:center; background: #F4F4F4; padding: 2px 5px;"><img width="114" height="9" src="https://images-na.ssl-images-amazon.com/images/G/01/rainier/ajax/loading-bar-small._V192558489_.gif"></div>
|
1430
|
+
</div>
|
1431
|
+
|
1432
|
+
|
1433
|
+
|
1434
|
+
|
1435
|
+
|
1436
|
+
|
1437
|
+
|
1438
|
+
|
1439
|
+
|
1440
|
+
|
1441
|
+
|
1442
|
+
|
1443
|
+
|
1444
|
+
|
1445
|
+
|
1446
|
+
|
1447
|
+
|
1448
|
+
|
1449
|
+
|
1450
|
+
|
1451
|
+
</div>
|
1452
|
+
|
1453
|
+
</li>
|
1454
|
+
</ul>
|
1455
|
+
</div>
|
1456
|
+
|
1457
|
+
|
1458
|
+
|
1459
|
+
|
1460
|
+
|
1461
|
+
|
1462
|
+
|
1463
|
+
|
1464
|
+
|
1465
|
+
</div>
|
1466
|
+
</div>
|
1467
|
+
<div id="sc-grail-col1wrap">
|
1468
|
+
<div id="sc-grail-col1pad">
|
1469
|
+
<div id="sc-grail-col1">
|
1470
|
+
<div data-zone="center" class="sc-primary-widgets">
|
1471
|
+
|
1472
|
+
|
1473
|
+
|
1474
|
+
|
1475
|
+
|
1476
|
+
|
1477
|
+
|
1478
|
+
|
1479
|
+
|
1480
|
+
|
1481
|
+
|
1482
|
+
|
1483
|
+
|
1484
|
+
|
1485
|
+
|
1486
|
+
|
1487
|
+
<div id="eAQnHI" class="widget data-widget">
|
1488
|
+
|
1489
|
+
|
1490
|
+
<script type="text/javascript">
|
1491
|
+
if(typeof SellingCoach === 'undefined'){
|
1492
|
+
window.SellingCoach = {};
|
1493
|
+
}
|
1494
|
+
SellingCoach.strings = {
|
1495
|
+
show: " Show ",
|
1496
|
+
hide:" Hide ",
|
1497
|
+
expand: "+",
|
1498
|
+
contract:"-"
|
1499
|
+
};
|
1500
|
+
|
1501
|
+
SellingCoach.asins = [];
|
1502
|
+
|
1503
|
+
SellingCoach.NudgeWidget = function(){
|
1504
|
+
amznJQ.available('jQuery',function(){
|
1505
|
+
|
1506
|
+
|
1507
|
+
var $scwOverviewB1Drawer = jQuery('.report-item .scw-info-item-b'),
|
1508
|
+
showStr = $.trim(SellingCoach.strings.expand),
|
1509
|
+
hideStr = $.trim(SellingCoach.strings.contract),
|
1510
|
+
isShow = showStr;
|
1511
|
+
|
1512
|
+
$scwOverviewB1Drawer.click(function(){
|
1513
|
+
|
1514
|
+
if(SellingCoach.asins.length === 0){
|
1515
|
+
SellingCoach.getAsinPreviews();
|
1516
|
+
}
|
1517
|
+
|
1518
|
+
$parent = $(this).parent();
|
1519
|
+
$('.scw-report-details-b',$parent).slideToggle(function(){
|
1520
|
+
if($('.scw-report-details-b',$parent).css('display')
|
1521
|
+
=='block'){
|
1522
|
+
isShow = hideStr;
|
1523
|
+
}else{
|
1524
|
+
isShow = showStr;
|
1525
|
+
}
|
1526
|
+
$('.scw-more-b1-drawer',$parent).text(isShow);
|
1527
|
+
});
|
1528
|
+
|
1529
|
+
});
|
1530
|
+
|
1531
|
+
|
1532
|
+
});
|
1533
|
+
|
1534
|
+
$(document).ready(function() {
|
1535
|
+
$('#selling-coach-widget .scw-overview .title').each(function(){
|
1536
|
+
var $this = $(this);
|
1537
|
+
$this.amazonPopoverTrigger({
|
1538
|
+
showOnHover: true,
|
1539
|
+
followLink: true,
|
1540
|
+
showCloseButton: false,
|
1541
|
+
width: null,
|
1542
|
+
location: 'bottom',
|
1543
|
+
align: 'middle',
|
1544
|
+
attached: true,
|
1545
|
+
literalContent: $this.html()
|
1546
|
+
});
|
1547
|
+
});
|
1548
|
+
});
|
1549
|
+
|
1550
|
+
};
|
1551
|
+
|
1552
|
+
SellingCoach.getAsinPreviews = function(asinList){
|
1553
|
+
var asins = [],
|
1554
|
+
recommendedPriceAsins = [],
|
1555
|
+
recommendedPriceSkus = [];
|
1556
|
+
$('#selling-coach-widget .jsAsinPreview').each(function(){
|
1557
|
+
var $this = $(this),
|
1558
|
+
asin = $this.attr('data-asin'),
|
1559
|
+
$asinLink = $this.find('a').eq(0); //Added eq(0) for the future, if at some point there are more than 1 links in that container.
|
1560
|
+
asins.push(asin);
|
1561
|
+
if ( $asinLink.attr('target') == 'SKUWindow' ) {
|
1562
|
+
recommendedPriceAsins.push( asin );
|
1563
|
+
recommendedPriceSkus.push( $asinLink.html() );
|
1564
|
+
}
|
1565
|
+
});
|
1566
|
+
|
1567
|
+
SellingCoach.asins = asins;
|
1568
|
+
SellingCoach.recommendedPriceAsins = recommendedPriceAsins;
|
1569
|
+
SellingCoach.recommendedPriceSkus = recommendedPriceSkus;
|
1570
|
+
|
1571
|
+
$.ajax({
|
1572
|
+
type: "GET",
|
1573
|
+
url: "/gp/homepage/widgets/selling-coach/ajax/asin-details.html",
|
1574
|
+
data:"asin="+SellingCoach.asins.join(',')+"&recommendedPriceAsins="+SellingCoach.recommendedPriceAsins.join(',')+"&recommendedPriceSkus="+SellingCoach.recommendedPriceSkus.join(','),
|
1575
|
+
success: function(data){
|
1576
|
+
$('body').append(data);
|
1577
|
+
SellingCoach.getAsinImages();
|
1578
|
+
}
|
1579
|
+
});
|
1580
|
+
};
|
1581
|
+
|
1582
|
+
SellingCoach.recordRecommendedPriceMetrics = function(url, asin, sku) {
|
1583
|
+
$.ajax({
|
1584
|
+
type: 'GET',
|
1585
|
+
url: '/gp/homepage/widgets/selling-coach/ajax/recommendedPriceMetrics.html',
|
1586
|
+
data: 'asin='+asin+'&sku='+encodeURIComponent( sku ),
|
1587
|
+
success: function( result ) {
|
1588
|
+
location.href = url;
|
1589
|
+
}
|
1590
|
+
});
|
1591
|
+
}
|
1592
|
+
|
1593
|
+
SellingCoach.getAsinImages = function(){
|
1594
|
+
$('#selling-coach-widget .jsAsinPreview').each(function(){
|
1595
|
+
var $this = $(this), asin = $this.attr('data-asin');
|
1596
|
+
var items = $('#scw-asin-preview-list > #asin-'+asin);
|
1597
|
+
var item;
|
1598
|
+
|
1599
|
+
if($(items[0]).find('img')){
|
1600
|
+
item = $(items[0]).children('img');
|
1601
|
+
$this.prepend(item);
|
1602
|
+
$(items[0]).remove();
|
1603
|
+
}
|
1604
|
+
|
1605
|
+
});
|
1606
|
+
};
|
1607
|
+
|
1608
|
+
</script>
|
1609
|
+
<div id="selling-coach-widget" class="center-data-widget cw-shadow clear clearable">
|
1610
|
+
<div class="data-widget-header-strip"></div>
|
1611
|
+
<div class="data-widget-header clearable">
|
1612
|
+
<h2 class="title"> Amazon Selling Coach </h2>
|
1613
|
+
</div>
|
1614
|
+
<div id="wusc-internals">
|
1615
|
+
<div class="aligncenter small" style="background-color: rgb(244, 244,244); padding: 2px 5px;">Loading...</div>
|
1616
|
+
<div style="background-color: rgb(244, 244, 244); padding: 2px 5px;" class="aligncenter small"><img height="9" width="114" src="https://images-na.ssl-images-amazon.com/images/G/01/rainier/ajax/loading-bar-small._V192558489_.gif"></div>
|
1617
|
+
</div>
|
1618
|
+
</div>
|
1619
|
+
|
1620
|
+
|
1621
|
+
|
1622
|
+
|
1623
|
+
|
1624
|
+
|
1625
|
+
|
1626
|
+
|
1627
|
+
|
1628
|
+
|
1629
|
+
|
1630
|
+
|
1631
|
+
|
1632
|
+
|
1633
|
+
|
1634
|
+
|
1635
|
+
|
1636
|
+
|
1637
|
+
|
1638
|
+
</div>
|
1639
|
+
|
1640
|
+
|
1641
|
+
|
1642
|
+
|
1643
|
+
|
1644
|
+
|
1645
|
+
|
1646
|
+
|
1647
|
+
|
1648
|
+
|
1649
|
+
|
1650
|
+
|
1651
|
+
|
1652
|
+
|
1653
|
+
|
1654
|
+
<div class="widget notice-widget">
|
1655
|
+
<h3>Technical Notification</h3>
|
1656
|
+
|
1657
|
+
<span class="date block">Dec 2, 2013</span>
|
1658
|
+
|
1659
|
+
|
1660
|
+
<div class="notice has-learn-more">
|
1661
|
+
<span class="small"><span style="font-size: 10pt; color: red; font-family: Verdana;">We are currently experiencing an issue that is impacting our ability to provide technical support by phone. (12/02 - 09:05 PDT)</span></span>
|
1662
|
+
<span class="tiny">
|
1663
|
+
<a href="https://sellercentral.amazon.com/gp/tech-notifications.html/ref=ag_xx_cont_home">
|
1664
|
+
Learn more
|
1665
|
+
</a>
|
1666
|
+
</span>
|
1667
|
+
</div>
|
1668
|
+
|
1669
|
+
|
1670
|
+
</div>
|
1671
|
+
|
1672
|
+
|
1673
|
+
<div class="widget-divider"></div>
|
1674
|
+
|
1675
|
+
|
1676
|
+
|
1677
|
+
|
1678
|
+
|
1679
|
+
|
1680
|
+
|
1681
|
+
|
1682
|
+
|
1683
|
+
|
1684
|
+
|
1685
|
+
|
1686
|
+
<div class="widget-header">
|
1687
|
+
<h2 class="title">
|
1688
|
+
Headlines
|
1689
|
+
</h2>
|
1690
|
+
<span class="tiny">
|
1691
|
+
<a href="https://sellercentral.amazon.com/gp/headlines.html/ref=ag_headlines_cont_home">(see all)</a>
|
1692
|
+
</span>
|
1693
|
+
</div>
|
1694
|
+
|
1695
|
+
|
1696
|
+
|
1697
|
+
|
1698
|
+
<div class="widget notice-widget">
|
1699
|
+
<h3>Holiday Selling Tip: Getting Paid</h3>
|
1700
|
+
|
1701
|
+
<span class="date block">Nov 29, 2013</span>
|
1702
|
+
|
1703
|
+
|
1704
|
+
<div class="notice has-learn-more">
|
1705
|
+
<span class="small">The buyer has received the order you shipped and is happy with the products and buyer experience. The only thing left is to get paid. How does this work?</span>
|
1706
|
+
<span class="tiny">
|
1707
|
+
<a href="https://sellercentral.amazon.com/gp/headlines.html/ref=ag_headlines_cont_home">
|
1708
|
+
Learn more
|
1709
|
+
</a>
|
1710
|
+
</span>
|
1711
|
+
</div>
|
1712
|
+
|
1713
|
+
|
1714
|
+
</div>
|
1715
|
+
|
1716
|
+
|
1717
|
+
<div class="widget-divider"></div>
|
1718
|
+
|
1719
|
+
|
1720
|
+
|
1721
|
+
|
1722
|
+
|
1723
|
+
|
1724
|
+
|
1725
|
+
|
1726
|
+
|
1727
|
+
|
1728
|
+
|
1729
|
+
|
1730
|
+
|
1731
|
+
<h3>Previous Headlines</h3>
|
1732
|
+
|
1733
|
+
|
1734
|
+
<div class="headline-link">
|
1735
|
+
<span class="date"> Nov 27, 2013 -- </span>
|
1736
|
+
<a href="https://sellercentral.amazon.com/gp/headlines.html/ref=ag_headlines_cont_home#62731">FBA Sellers Can Now Preview Fees and Set Replenishment Alerts from the Manage Inventory Page</a>
|
1737
|
+
</div>
|
1738
|
+
|
1739
|
+
|
1740
|
+
<div class="widget-divider"></div>
|
1741
|
+
|
1742
|
+
|
1743
|
+
|
1744
|
+
|
1745
|
+
|
1746
|
+
|
1747
|
+
|
1748
|
+
|
1749
|
+
|
1750
|
+
|
1751
|
+
|
1752
|
+
|
1753
|
+
|
1754
|
+
|
1755
|
+
|
1756
|
+
|
1757
|
+
<div class="headline-link">
|
1758
|
+
<span class="date"> Nov 27, 2013 -- </span>
|
1759
|
+
<a href="https://sellercentral.amazon.com/gp/headlines.html/ref=ag_headlines_cont_home#62641">Holiday Selling Tip: Manage Your Orders Proactively</a>
|
1760
|
+
</div>
|
1761
|
+
|
1762
|
+
|
1763
|
+
|
1764
|
+
|
1765
|
+
|
1766
|
+
|
1767
|
+
|
1768
|
+
|
1769
|
+
|
1770
|
+
|
1771
|
+
|
1772
|
+
|
1773
|
+
|
1774
|
+
|
1775
|
+
|
1776
|
+
|
1777
|
+
|
1778
|
+
|
1779
|
+
<div class="headline-link">
|
1780
|
+
<span class="date"> Nov 25, 2013 -- </span>
|
1781
|
+
<a href="https://sellercentral.amazon.com/gp/headlines.html/ref=ag_headlines_cont_home#62521">Holiday Selling Tip: Provide Great Customer Service</a>
|
1782
|
+
</div>
|
1783
|
+
|
1784
|
+
|
1785
|
+
|
1786
|
+
|
1787
|
+
|
1788
|
+
|
1789
|
+
|
1790
|
+
|
1791
|
+
|
1792
|
+
|
1793
|
+
|
1794
|
+
|
1795
|
+
|
1796
|
+
|
1797
|
+
|
1798
|
+
|
1799
|
+
|
1800
|
+
<div class="headline-link">
|
1801
|
+
<span class="date"> Nov 21, 2013 -- </span>
|
1802
|
+
<a href="https://sellercentral.amazon.com/gp/headlines.html/ref=ag_headlines_cont_home#62411">FBA Launches Improvements to the Shipment Creation Workflow</a>
|
1803
|
+
</div>
|
1804
|
+
|
1805
|
+
|
1806
|
+
|
1807
|
+
|
1808
|
+
|
1809
|
+
|
1810
|
+
|
1811
|
+
|
1812
|
+
|
1813
|
+
|
1814
|
+
|
1815
|
+
|
1816
|
+
|
1817
|
+
|
1818
|
+
|
1819
|
+
|
1820
|
+
|
1821
|
+
<div class="headline-link">
|
1822
|
+
<span class="date"> Nov 21, 2013 -- </span>
|
1823
|
+
<a href="https://sellercentral.amazon.com/gp/headlines.html/ref=ag_headlines_cont_home#62311">FBA launches educational resources for 'Label Required' problem type</a>
|
1824
|
+
</div>
|
1825
|
+
|
1826
|
+
|
1827
|
+
|
1828
|
+
|
1829
|
+
|
1830
|
+
|
1831
|
+
|
1832
|
+
|
1833
|
+
|
1834
|
+
|
1835
|
+
|
1836
|
+
|
1837
|
+
|
1838
|
+
|
1839
|
+
|
1840
|
+
|
1841
|
+
|
1842
|
+
<div class="headline-link">
|
1843
|
+
<span class="date"> Nov 21, 2013 -- </span>
|
1844
|
+
<a href="https://sellercentral.amazon.com/gp/headlines.html/ref=ag_headlines_cont_home#62271">Improved FBA Inbound Shipping Templates</a>
|
1845
|
+
</div>
|
1846
|
+
|
1847
|
+
|
1848
|
+
|
1849
|
+
|
1850
|
+
|
1851
|
+
|
1852
|
+
|
1853
|
+
|
1854
|
+
|
1855
|
+
|
1856
|
+
|
1857
|
+
|
1858
|
+
|
1859
|
+
|
1860
|
+
|
1861
|
+
|
1862
|
+
|
1863
|
+
<div class="headline-link">
|
1864
|
+
<span class="date"> Nov 20, 2013 -- </span>
|
1865
|
+
<a href="https://sellercentral.amazon.com/gp/headlines.html/ref=ag_headlines_cont_home#60111">Key Dates to Remember for FBA Holiday Selling</a>
|
1866
|
+
</div>
|
1867
|
+
|
1868
|
+
|
1869
|
+
|
1870
|
+
|
1871
|
+
|
1872
|
+
|
1873
|
+
|
1874
|
+
|
1875
|
+
|
1876
|
+
|
1877
|
+
|
1878
|
+
|
1879
|
+
|
1880
|
+
|
1881
|
+
|
1882
|
+
|
1883
|
+
|
1884
|
+
|
1885
|
+
<div class="headline-link">
|
1886
|
+
<span class="date"> Nov 20, 2013 -- </span>
|
1887
|
+
<a href="https://sellercentral.amazon.com/gp/headlines.html/ref=ag_headlines_cont_home#62211">Amazon launches Title alerts (Item/Product Name)</a>
|
1888
|
+
</div>
|
1889
|
+
|
1890
|
+
|
1891
|
+
|
1892
|
+
|
1893
|
+
|
1894
|
+
|
1895
|
+
|
1896
|
+
|
1897
|
+
|
1898
|
+
|
1899
|
+
|
1900
|
+
|
1901
|
+
|
1902
|
+
|
1903
|
+
|
1904
|
+
|
1905
|
+
|
1906
|
+
<div class="headline-link">
|
1907
|
+
<span class="date"> Nov 15, 2013 -- </span>
|
1908
|
+
<a href="https://sellercentral.amazon.com/gp/headlines.html/ref=ag_headlines_cont_home#62081">FBA launches educational resources for four new inbound problem types</a>
|
1909
|
+
</div>
|
1910
|
+
|
1911
|
+
|
1912
|
+
|
1913
|
+
|
1914
|
+
|
1915
|
+
|
1916
|
+
|
1917
|
+
|
1918
|
+
|
1919
|
+
|
1920
|
+
|
1921
|
+
|
1922
|
+
|
1923
|
+
|
1924
|
+
|
1925
|
+
|
1926
|
+
|
1927
|
+
|
1928
|
+
<div class="headline-link">
|
1929
|
+
<span class="date"> Nov 15, 2013 -- </span>
|
1930
|
+
<a href="https://sellercentral.amazon.com/gp/headlines.html/ref=ag_headlines_cont_home#59651">Custom Mailing Labels</a>
|
1931
|
+
</div>
|
1932
|
+
|
1933
|
+
|
1934
|
+
|
1935
|
+
|
1936
|
+
|
1937
|
+
|
1938
|
+
|
1939
|
+
|
1940
|
+
|
1941
|
+
|
1942
|
+
|
1943
|
+
|
1944
|
+
|
1945
|
+
|
1946
|
+
|
1947
|
+
|
1948
|
+
|
1949
|
+
<div class="headline-link">
|
1950
|
+
<span class="date"> Nov 12, 2013 -- </span>
|
1951
|
+
<a href="https://sellercentral.amazon.com/gp/headlines.html/ref=ag_headlines_cont_home#61851">Visit the new Shipment Packaging Requirements help page</a>
|
1952
|
+
</div>
|
1953
|
+
|
1954
|
+
|
1955
|
+
|
1956
|
+
|
1957
|
+
|
1958
|
+
|
1959
|
+
|
1960
|
+
|
1961
|
+
|
1962
|
+
|
1963
|
+
|
1964
|
+
|
1965
|
+
|
1966
|
+
|
1967
|
+
|
1968
|
+
|
1582
1969
|
|
1583
1970
|
|
1584
1971
|
|
@@ -1587,61 +1974,14 @@ Recent product recalls
|
|
1587
1974
|
|
1588
1975
|
|
1589
1976
|
|
1590
|
-
<div id="mcmsWidgetInternalsID0582028997750434">
|
1591
1977
|
|
1592
|
-
<center>
|
1593
|
-
<span class="tiny">
|
1594
|
-
<a href="https://sellercentral.amazon.com/gp/case-dashboard/lobby.html/ref=ag_caselog_cont_home">
|
1595
|
-
View your case log
|
1596
|
-
</a>
|
1597
|
-
</span>
|
1598
|
-
</center>
|
1599
1978
|
|
1600
1979
|
|
1601
|
-
</div>
|
1602
1980
|
|
1603
1981
|
|
1604
|
-
<script type="text/javascript">
|
1605
|
-
<!--
|
1606
|
-
// make and process the AJAX request
|
1607
|
-
var mcmsUrl0582028997750434 = '/gp/case-dashboard/case-race-internals.html?PowerBar=0&nocache=0582028997750434&helpHome=0';
|
1608
|
-
var mcmsHttp0582028997750434 = createRequestObject0582028997750434();
|
1609
|
-
mcmsHttp0582028997750434.open('GET', mcmsUrl0582028997750434, true);
|
1610
|
-
mcmsHttp0582028997750434.onreadystatechange = function(){handleMcmsResponse0582028997750434();};
|
1611
|
-
mcmsHttp0582028997750434.send(null);
|
1612
|
-
|
1613
|
-
function createRequestObject0582028997750434() {
|
1614
|
-
var ro;
|
1615
|
-
var browser = navigator.appName;
|
1616
|
-
if(browser == "Microsoft Internet Explorer"){
|
1617
|
-
ro = new ActiveXObject("Microsoft.XMLHTTP");
|
1618
|
-
}else{
|
1619
|
-
ro = new XMLHttpRequest();
|
1620
|
-
}
|
1621
|
-
return ro;
|
1622
|
-
}
|
1623
|
-
|
1624
|
-
function handleMcmsResponse0582028997750434()
|
1625
|
-
{
|
1626
|
-
if(mcmsHttp0582028997750434.readyState == 4) {
|
1627
|
-
if(mcmsHttp0582028997750434.status == 200) {
|
1628
|
-
if(mcmsHttp0582028997750434.responseText.indexOf("SERVICE_UNAVAILABLE") == -1)
|
1629
|
-
document.getElementById("mcmsWidgetInternalsID0582028997750434").innerHTML = mcmsHttp0582028997750434.responseText;
|
1630
|
-
}
|
1631
|
-
}
|
1632
|
-
}
|
1633
|
-
-->
|
1634
|
-
</script>
|
1635
|
-
</div></td></tr></tbody></table></div>
|
1636
|
-
<div class="portlet" id="23341" style="margin-bottom:6px;display:"><table border="0" name="rightWidget" cellspacing="1" cellpadding="5" bgcolor="#BBBBBB" width="100%">
|
1637
|
-
<tbody><tr bgcolor="#F4F4F4"><td style="cursor:move;"><span class="h3color" style="float:left;width:80%">Amazon Selling Coach</span>
|
1638
|
-
<span style="float:right"><img style="cursor:pointer;" class="collapse-toggle-button" src="./Seller Central-homepage_files/dash-minus._V196104864_.gif"><img style="margin-left:2px" src="./Seller Central-homepage_files/grip._V196362312_.gif"></span></td></tr>
|
1639
|
-
<tr bgcolor="#FFFFFF"><td>
|
1640
|
-
<div class="collapsible-body" style="display:">
|
1641
1982
|
|
1642
1983
|
|
1643
1984
|
|
1644
|
-
<div id="sellerCoachInternalsID0185014677086816">
|
1645
1985
|
|
1646
1986
|
|
1647
1987
|
|
@@ -1669,7 +2009,6 @@ Recent product recalls
|
|
1669
2009
|
|
1670
2010
|
|
1671
2011
|
|
1672
|
-
|
1673
2012
|
|
1674
2013
|
|
1675
2014
|
|
@@ -1817,8 +2156,6 @@ Recent product recalls
|
|
1817
2156
|
|
1818
2157
|
|
1819
2158
|
|
1820
|
-
|
1821
|
-
|
1822
2159
|
|
1823
2160
|
|
1824
2161
|
|
@@ -1826,7 +2163,6 @@ Recent product recalls
|
|
1826
2163
|
|
1827
2164
|
|
1828
2165
|
|
1829
|
-
<div>
|
1830
2166
|
|
1831
2167
|
|
1832
2168
|
|
@@ -1839,153 +2175,258 @@ Recent product recalls
|
|
1839
2175
|
|
1840
2176
|
|
1841
2177
|
|
1842
|
-
|
1843
|
-
<table class="data-display" style="background-color: white; padding: 10px; border-collapse: collapse;">
|
1844
2178
|
|
1845
|
-
<tbody><tr style="vertical-align: top;">
|
1846
|
-
<td class="data-display-field" style="padding: 0px;">
|
1847
2179
|
|
1848
|
-
|
1849
|
-
|
1850
|
-
|
1851
|
-
|
2180
|
+
|
2181
|
+
|
2182
|
+
|
2183
|
+
<div class="widget">
|
2184
|
+
|
2185
|
+
|
2186
|
+
|
2187
|
+
<div id="ad-top-container" class="aligncenter" style="margin:10px 0;">
|
2188
|
+
<div id="ad-top" style="margin:auto;"></div>
|
2189
|
+
</div>
|
2190
|
+
|
2191
|
+
|
1852
2192
|
</div>
|
1853
2193
|
|
1854
|
-
<div
|
1855
|
-
|
1856
|
-
|
1857
|
-
|
2194
|
+
<div class="widget-divider"></div>
|
2195
|
+
|
2196
|
+
<div class="widget-header">
|
2197
|
+
<h2 class="title">
|
2198
|
+
More Selling Tools
|
2199
|
+
</h2>
|
1858
2200
|
</div>
|
1859
2201
|
|
1860
|
-
</td>
|
1861
|
-
</tr>
|
1862
|
-
</tbody></table>
|
1863
|
-
|
1864
|
-
|
1865
|
-
|
1866
2202
|
|
1867
|
-
|
1868
|
-
|
1869
|
-
|
1870
|
-
|
1871
|
-
|
1872
|
-
|
1873
|
-
|
2203
|
+
|
2204
|
+
|
2205
|
+
<div class="widget notice-widget">
|
2206
|
+
<h3>Enjoy a Successful 2013 Holiday Season with Fulfillment by Amazon</h3>
|
2207
|
+
|
2208
|
+
<span class="date block">Sep 19, 2013</span>
|
2209
|
+
|
2210
|
+
|
2211
|
+
<div class="notice">
|
2212
|
+
<p>Are you ready for the 2013 holiday selling season? Here are 10 tips and selling dates to remember from Fulfillment by Amazon (FBA). <a href="https://sellercentral.amazon.com/gp/help/201054180">FBA Holiday Selling Tips and Tools.</a><br></p>
|
2213
|
+
</div>
|
2214
|
+
|
2215
|
+
|
2216
|
+
</div>
|
2217
|
+
|
2218
|
+
|
2219
|
+
<div class="widget-divider"></div>
|
2220
|
+
|
2221
|
+
|
2222
|
+
|
2223
|
+
|
2224
|
+
|
2225
|
+
|
2226
|
+
|
2227
|
+
|
2228
|
+
|
2229
|
+
|
2230
|
+
|
2231
|
+
|
2232
|
+
|
2233
|
+
|
2234
|
+
|
2235
|
+
|
2236
|
+
<div class="widget notice-widget">
|
2237
|
+
<h3>Fulfillment by Amazon Revenue Calculator</h3>
|
2238
|
+
|
2239
|
+
<span class="date block">Sep 19, 2013</span>
|
2240
|
+
|
2241
|
+
|
2242
|
+
<div class="notice has-learn-more">
|
2243
|
+
<span class="small">Check out the cost benefits of using Fulfillment by Amazon with the
|
2244
|
+
<a href="/gp/fbacalc/fba-calculator.html/ref=xx_fbacalc_mst1_home">FBA Revenue
|
2245
|
+
Calculator</a>. </span>
|
2246
|
+
<span class="tiny">
|
2247
|
+
<a href="https://sellercentral.amazon.com/gp/selling-tools.html/ref=ag_xx_cont_home">
|
2248
|
+
Learn more
|
2249
|
+
</a>
|
2250
|
+
</span>
|
2251
|
+
</div>
|
2252
|
+
|
1874
2253
|
|
1875
2254
|
</div>
|
1876
2255
|
|
1877
2256
|
|
2257
|
+
<div class="widget-divider"></div>
|
2258
|
+
|
2259
|
+
|
2260
|
+
|
2261
|
+
|
2262
|
+
|
2263
|
+
|
2264
|
+
|
2265
|
+
|
2266
|
+
|
2267
|
+
|
2268
|
+
|
2269
|
+
|
2270
|
+
|
2271
|
+
|
2272
|
+
|
2273
|
+
|
2274
|
+
<div class="widget notice-widget">
|
2275
|
+
<h3>Make It Easy for Amazon Customers to Buy on Your Site</h3>
|
2276
|
+
|
2277
|
+
<span class="date block">Oct 9, 2012</span>
|
2278
|
+
|
2279
|
+
|
2280
|
+
<div class="notice has-learn-more">
|
2281
|
+
<span class="small">Sell on your e-commerce site with Checkout by Amazon.</span>
|
2282
|
+
<span class="tiny">
|
2283
|
+
<a href="https://sellercentral.amazon.com/gp/selling-tools.html/ref=ag_xx_cont_home">
|
2284
|
+
Learn more
|
2285
|
+
</a>
|
2286
|
+
</span>
|
2287
|
+
</div>
|
2288
|
+
|
1878
2289
|
|
1879
2290
|
</div>
|
1880
|
-
</div></td></tr></tbody></table></div>
|
1881
|
-
<div class="portlet" id="601" style="margin-bottom:6px;display:"><table border="0" name="rightWidget" cellspacing="1" cellpadding="5" bgcolor="#BBBBBB" width="100%">
|
1882
|
-
<tbody><tr bgcolor="#F4F4F4"><td style="cursor:move;"><span class="h3color" style="float:left;width:80%">Your Inventory</span>
|
1883
|
-
<span style="float:right"><img style="cursor:pointer;" class="collapse-toggle-button" src="./Seller Central-homepage_files/dash-minus._V196104864_.gif"><img style="margin-left:2px" src="./Seller Central-homepage_files/grip._V196362312_.gif"></span></td></tr>
|
1884
|
-
<tr bgcolor="#FFFFFF"><td>
|
1885
|
-
<div class="collapsible-body" style="display:">
|
1886
|
-
<table width="100%" border="0" cellspacing="0" cellpadding="4">
|
1887
|
-
<tbody><tr>
|
1888
|
-
<td align="center">
|
1889
|
-
<a class="buttonImage" name="Add an item now" href="https://sellercentral.amazon.com/gp/ezdpc-gui/start.html/ref=ag_addlisting_cont_home"><span class="awesomeButton buttonSmall primarySmallButton inner_button"><span class="button_label">Add an item now</span></span></a>
|
1890
|
-
</td>
|
1891
|
-
</tr>
|
1892
|
-
</tbody></table>
|
1893
2291
|
|
1894
2292
|
|
2293
|
+
<div class="widget-divider"></div>
|
1895
2294
|
|
1896
2295
|
|
1897
|
-
</div></td></tr></tbody></table></div></div></td></tr>
|
1898
|
-
</tbody></table>
|
1899
2296
|
|
1900
2297
|
|
1901
2298
|
|
1902
|
-
<img src="./Seller Central-homepage_files/transparent-pixel._V42752373_.gif" style="position: absolute" width="1" alt="" onload="if (typeof uet == 'function') { uet('cf'); }" height="1" border="0">
|
1903
2299
|
|
1904
2300
|
|
1905
|
-
</td></tr>
|
1906
|
-
</tbody></table>
|
1907
2301
|
|
1908
2302
|
|
1909
2303
|
|
1910
2304
|
|
1911
2305
|
|
1912
2306
|
|
1913
|
-
<script type="text/javascript">
|
1914
|
-
<!--
|
1915
|
-
var sc_pwm_image_width = 189;
|
1916
|
-
var sc_pwm_image_height = 102;
|
1917
|
-
-->
|
1918
|
-
</script>
|
1919
|
-
<script type="text/javascript" src="./Seller Central-homepage_files/rainierCoreJS-please_wait_mask-14596._V213241101_.js"></script>
|
1920
2307
|
|
1921
|
-
<div id="pleasewaitmask" style="position:absolute; top:0; left:0; width:100%; background:#fff; visibility:hidden; filter:alpha(opacity=80); opacity:.8; -ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=80); filter:alpha(opacity=80)'; z-index: 1999;"></div>
|
1922
|
-
<div id="pleasewaitmsg" style="position: absolute; top:0; left:0; width: 189; height: 102; visibility:hidden; z-index: 2000;"><img src="./Seller Central-homepage_files/loading-please-wait-sc._V192558642_.jpg" width="189" height="102" border="0"></div>
|
1923
2308
|
|
2309
|
+
|
2310
|
+
<div class="widget notice-widget">
|
2311
|
+
<h3>Sell on your own customized site with Webstore</h3>
|
2312
|
+
|
2313
|
+
<span class="date block">Sep 13, 2012</span>
|
1924
2314
|
|
1925
|
-
|
1926
|
-
|
1927
|
-
|
1928
|
-
|
1929
|
-
|
1930
|
-
|
1931
|
-
|
1932
|
-
ui.item.find(".collapsible-body").show(0);
|
1933
|
-
}
|
1934
|
-
}
|
2315
|
+
|
2316
|
+
<div class="notice">
|
2317
|
+
<p class="MsoPlainText">Selling on your own fully-customized eCommerce site is
|
2318
|
+
easier than ever, with Amazon Webstore. Maximize your sales by selling both on
|
2319
|
+
Amazon.com and through your own online store with little incremental effort.
|
2320
|
+
<a href="http://webstore.amazon.com/?ld=SCUSWBAMoreSellingTools1207">Learn more</a><o:p></o:p></p>
|
2321
|
+
</div>
|
1935
2322
|
|
1936
|
-
|
1937
|
-
|
1938
|
-
|
1939
|
-
|
1940
|
-
|
1941
|
-
|
1942
|
-
|
1943
|
-
|
1944
|
-
|
1945
|
-
|
1946
|
-
|
1947
|
-
|
1948
|
-
|
1949
|
-
|
1950
|
-
|
1951
|
-
|
1952
|
-
|
1953
|
-
|
1954
|
-
|
1955
|
-
|
1956
|
-
|
2323
|
+
|
2324
|
+
</div>
|
2325
|
+
|
2326
|
+
|
2327
|
+
<div class="widget-divider"></div>
|
2328
|
+
|
2329
|
+
|
2330
|
+
|
2331
|
+
</div>
|
2332
|
+
</div>
|
2333
|
+
</div>
|
2334
|
+
</div>
|
2335
|
+
|
2336
|
+
</div>
|
2337
|
+
</div>
|
2338
|
+
</div>
|
2339
|
+
|
2340
|
+
|
2341
|
+
|
2342
|
+
<script type='text/javascript'>if (typeof uet == 'function') { uet('cf'); }</script>
|
2343
|
+
|
2344
|
+
<script>
|
2345
|
+
amznJQ.onReady('rainier-gateway', function() {
|
2346
|
+
if(typeof app !== 'undefined') {
|
2347
|
+
app.setWidgetCount(8);
|
1957
2348
|
}
|
1958
2349
|
|
1959
|
-
|
1960
|
-
|
1961
|
-
|
1962
|
-
|
1963
|
-
|
1964
|
-
|
1965
|
-
|
1966
|
-
|
2350
|
+
amznJQ.onReady('rainier-core', function() {
|
2351
|
+
var theWholeEnchilada = function() {
|
2352
|
+
SCUI.DapperMenu.setMenuStrings({
|
2353
|
+
"rateWidget" : "Rate this widget",
|
2354
|
+
"collapse" : "Collapse",
|
2355
|
+
"collapse_altTxt" : "Expand"
|
2356
|
+
});
|
2357
|
+
|
2358
|
+
var scgWidgets = new SCUI.Gateway.Widgets({
|
2359
|
+
'isCustomizable' : true,
|
2360
|
+
'menuCallbacks' : {
|
2361
|
+
collapse : [
|
2362
|
+
function() {
|
2363
|
+
$(document).trigger('widget.collapseToggle');
|
2364
|
+
}
|
2365
|
+
]
|
2366
|
+
},
|
2367
|
+
'showMenus' : true,
|
2368
|
+
'rateWidgetUrl' : "https%3A%2F%2Fsellercentral.amazon.com%2Fgp%2Fsatisfaction%2Fsurvey-form.html%2Fref%3Dag_ratepage_aps_home%3Fie%3DUTF8%26HMDName%3Dsc_gateway_rate_widget%26fromUrl%3D%252Fgp%252Fhomepage.html%26refRID%3D0FB1YC2STMGS6EDEBGH0%2520"
|
2369
|
+
});
|
2370
|
+
|
2371
|
+
$(document).bind('widget.collapseToggle', function() {
|
2372
|
+
scgWidgets.saveCustomization();
|
2373
|
+
});
|
2374
|
+
};
|
2375
|
+
|
2376
|
+
if(window.attachEvent) {
|
2377
|
+
window.attachEvent('onload', function(){ setTimeout(theWholeEnchilada, 15); });
|
2378
|
+
} else {
|
2379
|
+
window.addEventListener('load', function() { setTimeout(theWholeEnchilada, 15); }, false);
|
2380
|
+
}
|
1967
2381
|
});
|
2382
|
+
});
|
2383
|
+
</script>
|
1968
2384
|
|
1969
|
-
|
1970
|
-
|
1971
|
-
|
1972
|
-
|
1973
|
-
|
2385
|
+
|
2386
|
+
<script>
|
2387
|
+
amznJQ.onReady('rainier-gateway', function() {
|
2388
|
+
function checkMews() {
|
2389
|
+
SCUI.MEWS.load('#MEWSDivID', '');
|
2390
|
+
}
|
2391
|
+
|
2392
|
+
if(window.attachEvent) {
|
2393
|
+
window.attachEvent('onload', function(){ setTimeout(checkMews, 40); });
|
1974
2394
|
} else {
|
1975
|
-
|
2395
|
+
window.addEventListener('load', function() { setTimeout(checkMews, 40); }, false);
|
1976
2396
|
}
|
1977
|
-
saveWidgetCustomization();
|
1978
|
-
});
|
1979
2397
|
});
|
1980
|
-
|
2398
|
+
|
2399
|
+
function dismissMEWSMsg(prefName) {
|
2400
|
+
amznJQ.available('rainier-gateway', function() {
|
2401
|
+
SCUI.MEWS.dismiss(prefName, "https://sellercentral.amazon.com/gp/homepage.html");
|
2402
|
+
});
|
2403
|
+
}
|
1981
2404
|
</script>
|
1982
2405
|
|
1983
2406
|
|
1984
2407
|
|
1985
2408
|
|
1986
2409
|
|
2410
|
+
|
2411
|
+
|
2412
|
+
<div id="pleasewaitmask" style="position:absolute; top:0; left:0; width:100%; background:#fff; visibility:hidden; filter:alpha(opacity=80); opacity:.8; -ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=80); filter:alpha(opacity=80)'; z-index: 1999;"></div>
|
2413
|
+
<div id="pleasewaitmsg" style="position: absolute; top:0; left:0; width: 189px; height: 102px; visibility:hidden; z-index: 2000;"><img src="https://images-na.ssl-images-amazon.com/images/G/01/rainier/misc/loading-please-wait-sc._V192558642_.jpg" width="189" id="sc-wait-image" height="102" border="0" /></div>
|
2414
|
+
|
2415
|
+
<script>
|
2416
|
+
var sc_pwm_image_width = 189,
|
2417
|
+
sc_pwm_image_height = 102;
|
2418
|
+
|
2419
|
+
function showPleaseWait(){var b=jQuery("#pleasewaitmask"),a=jQuery("#pleasewaitmsg"),c=sc_pwm_image_width?sc_pwm_image_width:189,d=sc_pwm_image_height?sc_pwm_image_height:102;b&&a&&(jQuery.browser.msie&&"6.0"==jQuery.browser.version&&jQuery("select").each(function(b,a){jQuery(a).css("visibility","hidden")}),b.css("height",jQuery(document).height()),b.css("width",jQuery(document).width()),a.css("left",(jQuery(window).width()-c)/2+jQuery(document.body).scrollLeft()),a.css("top",(jQuery(window).height()- d)/2+jQuery(document.body).scrollTop()),b.css("visibility","visible"),a.css("visibility","visible"))}function hidePleaseWait(){var b=jQuery("#pleasewaitmask"),a=jQuery("#pleasewaitmsg");b&&b.css("visibility","hidden");a&&a.css("visibility","hidden")};
|
2420
|
+
|
2421
|
+
</script>
|
2422
|
+
|
2423
|
+
|
2424
|
+
|
2425
|
+
|
1987
2426
|
<script type="text/javascript">
|
1988
|
-
|
2427
|
+
var isChrome = navigator.userAgent.indexOf("Chrome/") > -1;
|
2428
|
+
|
2429
|
+
function callDisplayAd() {
|
1989
2430
|
if($('#ad-top').length == 0 || $('#ad-top').offset().top > $(window).height()) {
|
1990
2431
|
return;
|
1991
2432
|
}
|
@@ -2015,6 +2456,9 @@ amznJQ.onReady('jQuery', function() {
|
|
2015
2456
|
};
|
2016
2457
|
|
2017
2458
|
getScript(baseUrl + urlSuffix, function(){
|
2459
|
+
if(typeof d16g === 'undefined') {
|
2460
|
+
return;
|
2461
|
+
}
|
2018
2462
|
d16g.requestAanAd({
|
2019
2463
|
elemId: "ad-top",
|
2020
2464
|
baseUrl: baseUrl,
|
@@ -2025,6 +2469,18 @@ amznJQ.onReady('jQuery', function() {
|
|
2025
2469
|
pt2: "sellercentral"
|
2026
2470
|
});
|
2027
2471
|
});
|
2472
|
+
}
|
2473
|
+
|
2474
|
+
amznJQ.onReady('jQuery', function() {
|
2475
|
+
if (isChrome) {
|
2476
|
+
callDisplayAd();
|
2477
|
+
}
|
2478
|
+
else {
|
2479
|
+
if (window.attachEvent)
|
2480
|
+
window.attachEvent('onload', function() { setTimeout("callDisplayAd()", 200); });
|
2481
|
+
else
|
2482
|
+
window.addEventListener('load', function() { setTimeout("callDisplayAd()", 200); }, false);
|
2483
|
+
}
|
2028
2484
|
});
|
2029
2485
|
</script>
|
2030
2486
|
|
@@ -2034,6 +2490,21 @@ amznJQ.onReady('jQuery', function() {
|
|
2034
2490
|
|
2035
2491
|
|
2036
2492
|
|
2493
|
+
|
2494
|
+
|
2495
|
+
|
2496
|
+
|
2497
|
+
|
2498
|
+
|
2499
|
+
|
2500
|
+
|
2501
|
+
|
2502
|
+
|
2503
|
+
|
2504
|
+
|
2505
|
+
|
2506
|
+
|
2507
|
+
|
2037
2508
|
|
2038
2509
|
|
2039
2510
|
|
@@ -2042,7 +2513,7 @@ amznJQ.onReady('jQuery', function() {
|
|
2042
2513
|
|
2043
2514
|
<br style="clear:both">
|
2044
2515
|
|
2045
|
-
<form id="feedbackForm" action="
|
2516
|
+
<form id="feedbackForm" action="/gp/contact-amazon.html" method="post"><input type="hidden" id="debugInformation" value=""></form>
|
2046
2517
|
|
2047
2518
|
<script language="javascript" type="text/javascript">
|
2048
2519
|
function loadContactUs() {
|
@@ -2051,61 +2522,114 @@ function loadContactUs() {
|
|
2051
2522
|
</script>
|
2052
2523
|
|
2053
2524
|
<style type="text/css">
|
2054
|
-
#sc_footer_container{border:0;border-top: 1px solid #ddd;margin:7em 2.5% 0
|
2055
|
-
#sc_footer{background:#fff;border:0;
|
2525
|
+
#sc_footer_container{border:0;border-top: 1px solid #ddd;margin:7em 2.5% 0;padding:0;}
|
2526
|
+
#sc_footer{background:#fff;border:0;line-height:21px;margin:0;padding: 10px 0;}
|
2056
2527
|
#sc_footer_lang{float:left;padding-left:4px}
|
2057
|
-
#sc_footer_links{
|
2058
|
-
|
2528
|
+
#sc_footer_links{padding-left:4px;text-align:right;float:right;}
|
2529
|
+
#sc_footer_merchant{margin-right:25px;}
|
2530
|
+
.scf_link,.scf_link:visited{color:#004b91; text-decoration:none;}
|
2531
|
+
.scf_link:hover,.scf_link:active{color:#e47911;text-decoration:underline;}
|
2059
2532
|
</style>
|
2060
2533
|
|
2061
2534
|
<div id="sc_footer_container">
|
2062
|
-
<div id="sc_footer" class="footer
|
2063
|
-
<div id="sc_footer_lang">
|
2064
|
-
|
2535
|
+
<div id="sc_footer" class="footer smaller clearable">
|
2065
2536
|
|
2537
|
+
<div id="sc_footer_lang">
|
2538
|
+
<a class="scf_link" href="javascript:openModalDialog('https://sellercentral.amazon.com/gp/satisfaction/survey-form.html/ref=ag_ratepage_foot_home?ie=UTF8&fromUrl=%2Fgp%2Fhomepage.html&refRID=0FB1YC2STMGS6EDEBGH0%20', 350, 530, 'scrollbars=yes')"><strong class="small">Rate this page</strong></a>
|
2066
2539
|
|
2540
|
+
|
|
2541
|
+
<a class="scf_link" href="https://sellercentral.amazon.com/gp/contact-us/contact-amazon-form.html/ref=ag_contactus_foot_home?ie=UTF8&urlStr=%2Fgp%2Fhomepage.html">Contact Seller Support</a>
|
2067
2542
|
|
2543
|
+
</div>
|
2068
2544
|
|
2069
|
-
<
|
2070
|
-
|
2071
|
-
|
2072
|
-
|
2073
|
-
|
2074
|
-
|
2075
|
-
|
2076
|
-
|
2077
|
-
|
2078
|
-
|
2079
|
-
}
|
2080
|
-
-->
|
2081
|
-
</script>
|
2545
|
+
<div id="sc_footer_links" class="grey">
|
2546
|
+
<span id="sc_footer_merchant">
|
2547
|
+
BLINQ
|
2548
|
+
</span>
|
2549
|
+
<span>
|
2550
|
+
© 1999-2013, Amazon.com, Inc. or its affiliates
|
2551
|
+
</span>
|
2552
|
+
</div>
|
2553
|
+
</div>
|
2554
|
+
</div>
|
2082
2555
|
|
2083
2556
|
|
2084
|
-
</div>
|
2085
|
-
<div id="sc_footer_links" class="tiny">
|
2086
|
-
<a class="bold scf_link" href="javascript:openModalDialog('https://sellercentral.amazon.com/gp/utilities/sc-hmd.html/ref=ag_ratepage_foot_home?ie=UTF8&refRID=06A7TN15PRNCFD89K172%20', 530, 330, scrollbars='no')">Rate this page</a>
|
2087
2557
|
|
2088
|
-
|
|
2089
|
-
<a href="https://sellercentral.amazon.com/gp/contact-us/contact-amazon-form.html/ref=ag_contactus_foot_home?ie=UTF8&urlStr=%2Fgp%2Fhomepage.html">Contact Seller Support</a>
|
2090
|
-
</div>
|
2091
|
-
</div>
|
2092
|
-
</div>
|
2093
2558
|
|
2094
2559
|
|
2095
|
-
<!-- Login successful. Do not remove this comment. -->
|
2096
2560
|
|
2097
2561
|
|
2098
2562
|
|
2563
|
+
<img src="/favicon.ico?1386008681" style="visibility:hidden;"/>
|
2564
|
+
<!-- Login successful. Do not remove this comment. -->
|
2565
|
+
|
2099
2566
|
|
2100
2567
|
|
2101
|
-
<br style="clear:both">
|
2102
2568
|
|
2103
|
-
<table align="center">
|
2104
2569
|
|
2105
|
-
|
2570
|
+
|
2571
|
+
|
2572
|
+
|
2573
|
+
|
2574
|
+
<script>
|
2575
|
+
|
2576
|
+
|
2577
|
+
|
2578
|
+
new SCUI.Loader({"widgetId":"finance-widget","url":"/gp/homepage/finance-widget/finance-widget-internals.html?useMockModel=&isDebug=","sanitized":"financewidget"});
|
2579
|
+
</script>
|
2580
|
+
|
2581
|
+
<script>
|
2582
|
+
|
2583
|
+
|
2584
|
+
|
2585
|
+
new SCUI.Loader({"widgetId":"mcmsWidgetInternalsID072972467620902","url":"/gp/case-dashboard/case-race-internals.html?PowerBar=0&nocache=072972467620902&helpHome=0","sanitized":"mcmsWidgetInternalsID072972467620902"});
|
2586
|
+
</script>
|
2587
|
+
|
2588
|
+
<script>
|
2589
|
+
|
2590
|
+
|
2591
|
+
|
2592
|
+
new SCUI.Loader({"widgetId":"salesWidgetInternalsID0474384516606321","url":"/gp/homepage/widgets/sales-summary/sales-summary-widget-sca-internals.html?nocache=0474384516606321","sanitized":"salesWidgetInternalsID0474384516606321"});
|
2593
|
+
</script>
|
2594
|
+
|
2595
|
+
<script>
|
2596
|
+
|
2597
|
+
|
2598
|
+
|
2599
|
+
new SCUI.Loader({"widgetId":"ordersWidgetInternalsID0940874217089597","url":"/gp/homepage/cross-mp-orders-widget-internals.html?t=i&ts=1386008681","sanitized":"ordersWidgetInternalsID0940874217089597"});
|
2600
|
+
</script>
|
2601
|
+
|
2602
|
+
<script>
|
2603
|
+
|
2604
|
+
|
2605
|
+
|
2606
|
+
new SCUI.Loader({"widgetId":"ordersWidgetInternalsID089678656669016","url":"/gp/homepage/orders-widget-internals.html?t=yo&ts=1386008681","sanitized":"ordersWidgetInternalsID089678656669016"});
|
2607
|
+
</script>
|
2608
|
+
|
2609
|
+
<script>
|
2610
|
+
|
2611
|
+
|
2612
|
+
|
2613
|
+
new SCUI.Loader({"widgetId":"sellerRatingWidgetPerformanceOverview","url":"/gp/seller-rating/widgets/performance-overview-widget-internal.html","sanitized":"sellerRatingWidgetPerformanceOverview"});
|
2614
|
+
</script>
|
2615
|
+
|
2616
|
+
<script>
|
2617
|
+
|
2618
|
+
|
2619
|
+
|
2620
|
+
new SCUI.Loader({"widgetId":"forumsWidgetInternals","url":"/gp/case-dashboard/seller-discussions-race-internals.html?weblabRecentQuestions=T1","sanitized":"forumsWidgetInternals"});
|
2621
|
+
</script>
|
2622
|
+
|
2623
|
+
<script>
|
2624
|
+
|
2625
|
+
|
2626
|
+
|
2627
|
+
new SCUI.Loader({"widgetId":"wusc-internals","callback":"SellingCoach.NudgeWidget","url":"/gp/homepage/widgets/selling-coach/selling-coach-nudge-widget-internals.html","sanitized":"wuscinternals"});
|
2628
|
+
</script>
|
2629
|
+
|
2630
|
+
|
2106
2631
|
|
2107
2632
|
|
2108
|
-
|
2109
2633
|
|
2110
2634
|
|
2111
2635
|
<script type="text/javascript">
|
@@ -2128,9 +2652,14 @@ if (document.body.childNodes.length) {
|
|
2128
2652
|
|
2129
2653
|
</script>
|
2130
2654
|
|
2131
|
-
|
2132
|
-
<script type=
|
2655
|
+
<script type="text/javascript" src="https://images-na.ssl-images-amazon.com/images/G/01/browser-scripts/merged-core-js-1.4.2/core-7611879573._V1_.js"></script>
|
2656
|
+
<script type='text/javascript'>
|
2133
2657
|
amznJQ.addLogical('popover', []);
|
2658
|
+
amznJQ.addLogical('seller-rating-gw', ["https://images-na.ssl-images-amazon.com/images/G/01/browser-scripts/seller-rating-gw/seller-rating-gw-1727834411._V1_.js"]);
|
2659
|
+
amznJQ.addLogical('rainier-selling-coach', ["https://images-na.ssl-images-amazon.com/images/G/01/browser-scripts/rainier-selling-coach/rainier-selling-coach-3817915822._V1_.js"]);
|
2660
|
+
</script>
|
2661
|
+
<script type='text/javascript'>
|
2662
|
+
amznJQ.addPL("/gp/remote-nav-html.html?ttl=60&tool=ezdpc-gui-inventory&mid=A3NN4M02ONBDU7&mpid=ATVPDKIKX0DER&lang=en_US&newNav=true&incRespJs=0");
|
2134
2663
|
</script>
|
2135
2664
|
|
2136
2665
|
<!-- JSF Bootstrap N/A -->
|
@@ -2139,52 +2668,59 @@ if (document.body.childNodes.length) {
|
|
2139
2668
|
<script type="text/javascript">
|
2140
2669
|
var $ = jQuery;
|
2141
2670
|
</script>
|
2671
|
+
|
2142
2672
|
|
2143
2673
|
|
2144
|
-
|
2145
|
-
<script type="text/javascript" src="./Seller Central-homepage_files/rainier-jquery-ui-613981778.js._V177961193_.js"></script>
|
2674
|
+
<script type="text/javascript" src="https://images-na.ssl-images-amazon.com/images/G/01/browser-scripts/rainier-jquery-ui/rainier-jquery-ui-3158266336._V1_.js"></script>
|
2146
2675
|
|
2147
2676
|
|
2148
2677
|
|
2149
2678
|
|
2150
2679
|
|
2151
|
-
<script type="text/javascript" src="
|
2680
|
+
<script type="text/javascript" src="https://images-na.ssl-images-amazon.com/images/G/01/browser-scripts/rainier-core/rainier-core-3653353989._V1_.js"></script>
|
2681
|
+
|
2682
|
+
|
2152
2683
|
|
2684
|
+
|
2685
|
+
|
2686
|
+
<script type="text/javascript" src="https://images-na.ssl-images-amazon.com/images/G/01/browser-scripts/rainier-gateway/rainier-gateway-3094602043._V1_.js"></script>
|
2153
2687
|
|
2154
2688
|
|
2155
2689
|
|
2156
2690
|
|
2691
|
+
|
2692
|
+
|
2693
|
+
|
2157
2694
|
|
2695
|
+
|
2696
|
+
|
2158
2697
|
|
2159
2698
|
|
2160
2699
|
|
2161
|
-
<script
|
2162
|
-
try { fixButtonWidths(); } catch(e) {}
|
2163
|
-
</script>
|
2700
|
+
<script>try{fixButtonWidths();}catch(e){}</script>
|
2164
2701
|
|
2165
2702
|
|
2166
2703
|
|
2167
2704
|
|
2168
|
-
<div id="amznIframeDiv">
|
2169
|
-
<iframe id="amznCommonIframe" width="0" height="0" frameborder="0" style="display:none" src="./Seller Central-homepage_files/home.html"> </iframe></div>
|
2170
2705
|
|
2171
|
-
|
2172
|
-
|
2173
|
-
|
2174
|
-
|
2175
|
-
|
2176
|
-
|
2177
|
-
}, 3500 );
|
2178
|
-
});
|
2179
|
-
}
|
2706
|
+
|
2707
|
+
|
2708
|
+
|
2709
|
+
|
2710
|
+
<div id='be' style='display:none;visibility:hidden;'><form name='ue_backdetect'><input name='ue_back' value='1' type='hidden'></form><script type="text/javascript">
|
2711
|
+
(function(a){if(document.ue_backdetect&&document.ue_backdetect.ue_back){a.ue.bfini=document.ue_backdetect.ue_back.value}if(a.uet){a.uet("be")}if(a.onLdEnd){if(window.addEventListener){window.addEventListener("load",a.onLdEnd,false)}else{if(window.attachEvent){window.attachEvent("onload",a.onLdEnd)}}}if(a.ueh){a.ueh(0,window,"load",a.onLd,1)}})(ue_csm);
|
2180
2712
|
</script>
|
2181
2713
|
|
2714
|
+
<a href='/gp/uedata/unsticky/177-7859417-2838705//ntpoffrw?tepes=1&id=0FB1YC2STMGS6EDEBGH0'>v</a>
|
2715
|
+
<noscript><img src='/gp/uedata/unsticky/177-7859417-2838705//ntpoffrw?noscript&id=0FB1YC2STMGS6EDEBGH0' /></noscript>
|
2182
2716
|
|
2183
2717
|
|
2184
|
-
<script type="text/javascript"><!--
|
2185
|
-
function updateCsmHit(c){var d=new Date();d.setTime(d.getTime()+(30*60*1000));var a="; expires="+d.toGMTString();var b=(window.ue&&window.ue.t.be)?(ue.t.be-ue_t0):(new Date().getTime()-ue_t0);if(b!=0){document.cookie="csm-hit="+(c/b).toFixed(2)+a+"; path=/"}};
|
2186
|
-
updateCsmHit(60008);
|
2187
|
-
//--></script>
|
2188
2718
|
|
2719
|
+
</div>
|
2720
|
+
<script type='text/javascript'>
|
2721
|
+
(function(a){a._uec=function(d){var h=window,b=h.performance,f=b?b.navigation.type:0;if(f==0){var e="; expires="+new Date(+new Date+604800000).toGMTString(),c=+new Date-ue_t0;if(c>0){var g="|"+ +new Date;document.cookie="csm-hit="+(d/c).toFixed(2)+g+e+"; path=/"}}}})(ue_csm);
|
2722
|
+
_uec(69603);
|
2723
|
+
</script>
|
2724
|
+
</body>
|
2725
|
+
</html>
|
2189
2726
|
|
2190
|
-
</body></html>
|