amazon_seller_central 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,68 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
2
+
3
+ describe "FeedbackPage" do
4
+ before :all do
5
+ #AmazonSellerCentral.mechanizer.reset!
6
+ @first_page_test_regex = /Wow! Amazing price, super fast shipping./
7
+ @second_page_test_regex = /This printer was not in good shape as the seller described./
8
+ @last_page_test_regex = /easy to put together - ignore the first review/
9
+
10
+ @first_page = AmazonSellerCentral::FeedbackPage.load_first_page
11
+ @second_page = @first_page.next_page
12
+ @last_page = @second_page.next_page
13
+ end
14
+
15
+ it "knows if there is a next page of feedback" do
16
+ @first_page.has_next?.should be_true
17
+ @second_page.has_next?.should be_true
18
+ @last_page.has_next?.should be_false
19
+ end
20
+
21
+ it "returns the next page when there is one" do
22
+ @first_page.next_page.body.should =~ @second_page_test_regex
23
+ end
24
+
25
+ it "raises an exception when asked for a next page and there is none" do
26
+ lambda {
27
+ @last_page.next_page
28
+ }.should raise_exception(AmazonSellerCentral::FeedbackPage::NoNextPageAvailableError)
29
+ end
30
+
31
+ it "knows if it is the last page" do
32
+ @first_page.last_page?.should be_false
33
+ @second_page.last_page?.should be_false
34
+ @last_page.last_page?.should be_true
35
+ end
36
+
37
+ it "transforms itself into a collection of Feedback objects" do
38
+ feedback = @first_page.feedbacks
39
+ feedback.first.comments.should == "Item as described. Quick delivery."
40
+ feedback.last.comments.should == "quick delivery. product arrived in perfect condition. good experience."
41
+ end
42
+
43
+ describe "class methods" do
44
+ it "loads the first page of feedback data" do
45
+ AmazonSellerCentral.mechanizer.reset!
46
+ page = AmazonSellerCentral::FeedbackPage.load_first_page
47
+ page.should be_kind_of(AmazonSellerCentral::FeedbackPage)
48
+ page.body.should =~ @first_page_test_regex
49
+ end
50
+
51
+ it "loads all feedback pages" do
52
+ AmazonSellerCentral.mechanizer.reset!
53
+ pages = AmazonSellerCentral::FeedbackPage.load_all_pages
54
+ pages.size.should == 3
55
+ pages.first.body.should =~ @first_page_test_regex
56
+ pages.last.body.should =~ @last_page_test_regex
57
+ end
58
+
59
+ it "passes a page to a block when given" do
60
+ last_seen = nil
61
+ AmazonSellerCentral::FeedbackPage.each_page do |page|
62
+ last_seen = page
63
+ end
64
+ last_seen.body.should =~ @last_page_test_regex
65
+ end
66
+ end
67
+
68
+ end
@@ -0,0 +1,14 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
2
+
3
+ describe "Feedback" do
4
+ before :all do
5
+ @feedback = AmazonSellerCentral::Feedback.new
6
+ end
7
+ %w{date rating comments arrived_on_time item_as_described customer_service order_id rater_email rater_role}.each do |expected_attribute|
8
+ it "Has an attribute \"#{expected_attribute}\"" do
9
+ @feedback.send("#{expected_attribute}=", "foo")
10
+ @feedback.send(expected_attribute).should == "foo"
11
+ end
12
+ end
13
+
14
+ end
@@ -0,0 +1,45 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
2
+
3
+ describe "Mechanizer" do
4
+ before :all do
5
+ mock_seller_central_page_results!
6
+ end
7
+
8
+ it "retains access to the last page loaded" do
9
+ mech = AmazonSellerCentral.mechanizer
10
+ mech.login_to_seller_central
11
+ mech.last_page.body.should =~ /Welcome! You are signed in as/
12
+ end
13
+
14
+ it "logs in and returns the home page" do
15
+ mech = AmazonSellerCentral.mechanizer
16
+ mech.login_to_seller_central
17
+ end
18
+
19
+ it "raises a LinkNotFoundError if the requested link doesn't exist" do
20
+ mech = AmazonSellerCentral.mechanizer
21
+ mech.login_to_seller_central
22
+ lambda {
23
+ mech.follow_link_with(:text => "Foo")
24
+ }.should raise_exception(AmazonSellerCentral::Mechanizer::LinkNotFoundError)
25
+ end
26
+
27
+ it "resets to a nil agent" do
28
+ mech = AmazonSellerCentral.mechanizer
29
+ mech.login_to_seller_central
30
+ lambda {
31
+ mech.follow_link_with(:text => "Feedback")
32
+ }.should_not raise_exception
33
+ AmazonSellerCentral.mechanizer.reset!
34
+
35
+ mech = AmazonSellerCentral.mechanizer
36
+ mech.login_to_seller_central
37
+ AmazonSellerCentral.mechanizer.reset!
38
+ lambda {
39
+ mech.follow_link_with(:text => "Feedback")
40
+ }.should raise_exception(AmazonSellerCentral::Mechanizer::AgentResetError)
41
+ AmazonSellerCentral.mechanizer.last_page.should be_nil
42
+ end
43
+
44
+
45
+ end
@@ -0,0 +1,18 @@
1
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
2
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
3
+ require 'rspec'
4
+ require 'faker'
5
+ require 'amazon_seller_central'
6
+ require 'ruby-debug'
7
+
8
+ if Debugger.respond_to?(:settings)
9
+ Debugger.settings[:autoeval] = true
10
+ Debugger.settings[:autolist] = 1
11
+ end
12
+
13
+ # Requires supporting files with custom matchers and macros, etc,
14
+ # in ./support/ and its subdirectories.
15
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}
16
+
17
+ RSpec.configure do |config|
18
+ end
@@ -0,0 +1,1361 @@
1
+ HTTP/1.1 200 OK
2
+ Date: Mon, 04 Jul 2011 01:23:14 GMT
3
+ Server: Server
4
+ x-amz-id-1: 05PFY70QQCZD59SMABH2
5
+ x-amz-id-2: yOubWrVSvkD8r7lvPj6BxYhcNzBItHp/7w9pFqI6OTHtXjDNiOZnHg==
6
+ Vary: Accept-Encoding,User-Agent
7
+ Cneonction: close
8
+ Content-Type: text/html; charset=UTF-8
9
+ Set-cookie: session-id-time=1310281200l; path=/; domain=.amazon.com; expires=Mon Jul 11 01:23:14 2011 GMT
10
+ Set-cookie: session-id=000-0000000-0000000; path=/; domain=.amazon.com; expires=Mon Jul 11 01:23:14 2011 GMT
11
+ Transfer-Encoding: chunked
12
+
13
+
14
+
15
+
16
+
17
+ <!-- saved from url=(0088)https://sellercentral.amazon.com/gp/feedback-manager/home.html/ref=ag_feedback_mmap_home -->
18
+ <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7">
19
+ <script type="text/javascript"><!--
20
+ var t0_date = new Date();
21
+ var ue_t0 = t0_date.getTime();
22
+ //--></script>
23
+
24
+ <title>Feedback Manager</title>
25
+
26
+
27
+
28
+
29
+
30
+
31
+ <link type="text/css" href="./Feedback Manager_files/rainier-jquery-ui-2387255160.css._V178048240_.css" rel="stylesheet">
32
+
33
+
34
+
35
+
36
+
37
+ <link type="text/css" href="./Feedback Manager_files/rainier-core-1863275087.css._V176786838_.css" rel="stylesheet">
38
+ <link type="text/css" href="./Feedback Manager_files/rainier-legacy-popover-3480236676.css._V177960971_.css" rel="stylesheet">
39
+
40
+
41
+ <style type="text/css">
42
+ /* fix button margins in Safari & Chrome */
43
+ @media screen and (-webkit-min-device-pixel-ratio:0) {
44
+ .awesomeButton span.button_label, .awesomeButton span.inner_button{margin-top: -1px;}
45
+ span.awesomeButton span.button_label{margin-top:0px}
46
+ }
47
+ </style>
48
+
49
+
50
+
51
+
52
+
53
+
54
+
55
+
56
+
57
+
58
+
59
+
60
+
61
+
62
+
63
+
64
+
65
+
66
+
67
+
68
+ <script type="text/javascript">
69
+ window.name="rainierWindow";
70
+ </script>
71
+
72
+
73
+ <script type="text/javascript" src="./Feedback Manager_files/jquery-1.4.2.min._V184876072_.js"></script>
74
+
75
+ <script type="text/javascript">
76
+ var $ = jQuery;
77
+ </script>
78
+
79
+
80
+
81
+ <script type="text/javascript" src="./Feedback Manager_files/rainier-jquery-ui-613981778.js._V177961193_.js"></script>
82
+
83
+
84
+
85
+
86
+
87
+ <script type="text/javascript" src="./Feedback Manager_files/rainier-core-2067213134.js._V177960988_.js"></script>
88
+
89
+
90
+
91
+
92
+
93
+
94
+
95
+
96
+
97
+
98
+
99
+
100
+ </head>
101
+ <body>
102
+
103
+
104
+
105
+
106
+
107
+
108
+
109
+
110
+
111
+
112
+
113
+
114
+
115
+
116
+
117
+
118
+
119
+
120
+
121
+
122
+
123
+
124
+
125
+
126
+
127
+
128
+
129
+
130
+
131
+
132
+
133
+
134
+
135
+
136
+
137
+
138
+
139
+
140
+
141
+
142
+
143
+
144
+
145
+
146
+
147
+
148
+
149
+
150
+
151
+
152
+
153
+
154
+
155
+ <img src="./Feedback Manager_files/transparent-pixel._V42752373_.gif" style="position: absolute" width="1" alt="" onload="if (typeof uet == &#39;function&#39;) { uet(&#39;ns&#39;); }" height="1" border="0">
156
+
157
+
158
+
159
+
160
+
161
+
162
+
163
+
164
+
165
+
166
+
167
+
168
+
169
+
170
+
171
+
172
+
173
+
174
+
175
+
176
+
177
+
178
+
179
+
180
+ <script type="text/javascript">
181
+ <!--
182
+ var sc_pwm_image_width = 189;
183
+ var sc_pwm_image_height = 102;
184
+ -->
185
+ </script>
186
+ <script type="text/javascript" src="./Feedback Manager_files/rainierCoreJS-please_wait_mask-14596._V213241101_.js"></script>
187
+
188
+ <div id="pleasewaitmask" style="position:absolute; top:0; left:0; width:100%; background:#fff; visibility:hidden; filter:alpha(opacity=80); opacity:.8; -ms-filter:&#39;progid:DXImageTransform.Microsoft.Alpha(Opacity=80); filter:alpha(opacity=80)&#39;; z-index: 1999;"></div>
189
+ <div id="pleasewaitmsg" style="position: absolute; top:0; left:0; width: 189; height: 102; visibility:hidden; z-index: 2000;"><img src="./Feedback Manager_files/loading-please-wait-sc._V192558642_.jpg" width="189" height="102" border="0"></div>
190
+
191
+
192
+
193
+
194
+
195
+
196
+
197
+
198
+
199
+
200
+
201
+
202
+
203
+
204
+
205
+
206
+
207
+
208
+
209
+
210
+
211
+
212
+
213
+
214
+
215
+
216
+
217
+
218
+
219
+
220
+
221
+
222
+
223
+
224
+
225
+
226
+
227
+
228
+
229
+
230
+
231
+
232
+
233
+
234
+
235
+
236
+
237
+
238
+
239
+
240
+
241
+
242
+
243
+
244
+
245
+
246
+
247
+
248
+
249
+
250
+
251
+
252
+
253
+
254
+
255
+
256
+
257
+
258
+
259
+
260
+
261
+
262
+
263
+
264
+
265
+
266
+
267
+
268
+
269
+
270
+
271
+
272
+
273
+
274
+
275
+
276
+
277
+
278
+
279
+
280
+
281
+
282
+
283
+
284
+
285
+
286
+
287
+
288
+
289
+
290
+
291
+
292
+
293
+
294
+
295
+
296
+
297
+
298
+
299
+
300
+
301
+
302
+
303
+
304
+
305
+
306
+
307
+
308
+
309
+
310
+
311
+
312
+
313
+
314
+
315
+
316
+
317
+
318
+
319
+
320
+ <script type="text/javascript">
321
+
322
+
323
+
324
+ function merchChanged( merchantID, customerID, merchantName, marketplaceID )
325
+ {
326
+ // show the please wait message
327
+ showPleaseWait();
328
+
329
+ if ( merchantID != 0 ) {
330
+ document.location = "https://sellercentral.amazon.com/gp/utilities/set-rainier-prefs.html?ie=UTF8&url=https%3A%2F%2Fsellercentral.amazon.com%2Fgp%2Ffeedback-manager%2Fhome.html%2Fref%3Dag_feedback_dmer_feedback" + '&merchantID=' + merchantID;
331
+ } else {
332
+ document.location = "https://sellercentral.amazon.com/gp/utilities/set-rainier-prefs.html?ie=UTF8&url=https%3A%2F%2Fsellercentral.amazon.com%2Fgp%2Ffeedback-manager%2Fhome.html%2Fref%3Dag_feedback_dmer_feedback" + '&merchantCustomerID=' + customerID + '&marketplaceID=' + marketplaceID;
333
+ }
334
+ }
335
+
336
+
337
+ function returnHome() {
338
+ document.location = "https://sellercentral.amazon.com/gp/homepage.html";
339
+ }
340
+ </script>
341
+
342
+
343
+
344
+
345
+
346
+
347
+
348
+
349
+
350
+
351
+
352
+
353
+
354
+
355
+
356
+
357
+
358
+
359
+
360
+
361
+
362
+
363
+
364
+
365
+
366
+
367
+
368
+
369
+
370
+
371
+
372
+
373
+
374
+
375
+ <style type="text/css">
376
+ #logoandmore{padding-top:3px;}
377
+ a.navActiveLink, a.navInactiveLink:visited, a.navInactiveLink:hover{color:#5A7DC8;}
378
+ a.navInactiveLink, a.navInactiveLink:visited, a.navInactiveLink:hover{color:#000;}
379
+
380
+ .navBadge{color:#c60;font-size:10px;font-family: arial,verdana;margin-left: 4px;}
381
+ .active .tabBadge{color: #FFD685;}
382
+
383
+ #sc_logo_top{width:auto;} /* override TODO remove*/
384
+ #market_switch{float:left;line-height:22px;padding:3px 0 0 30px;}
385
+
386
+ #subnav_container{background-color:#5A7DC8}
387
+ .merch-site-span{color:#696969;font-size:10px;font-weight:bold;}
388
+
389
+ #subnav_tools{height:auto;}
390
+
391
+ /* merchant bar styling */
392
+ #merchant-bar-container{border:0;border-bottom:1px solid #25353D;height:30px;margin:0;padding:0;width:100%;}
393
+ #merchant-bar{color:#000;height:18px;line-height:18px;padding:6px 2.5%;white-space:nowrap;width:95%}
394
+ .emphatic{color:#003399;}
395
+
396
+ .image-container{float:left;height:16px;padding:1px 12px 1px 6px;width:16px;}
397
+
398
+ #merchant-name{float:left;height:18px;line-height:18px;margin-right:22px;}
399
+ #merchant-website{float:left;height:18px;line-height:18px;}
400
+ .merch-website, .merch-label, .merch-release{padding-right:4px;}
401
+
402
+ #merchant-release{float:left;height:18px;line-height:18px}
403
+
404
+ #marketplaceSelect, #releaseSelect{height:18px;padding:2px;}
405
+
406
+ </style>
407
+
408
+ <div id="logoandmore" class="clearable">
409
+ <div id="sc_logo_top"><a href="https://sellercentral.amazon.com/gp/homepage.html/ref=ag_home_logo_feedback"><img src="./Feedback Manager_files/as_sc_logo_small._V167929621_.gif" width="148" id="sc_logo_top_image" height="28" border="0"></a></div>
410
+ <div id="market_switch">
411
+
412
+
413
+
414
+
415
+
416
+
417
+
418
+
419
+
420
+
421
+
422
+
423
+
424
+
425
+
426
+
427
+
428
+
429
+
430
+
431
+
432
+
433
+
434
+
435
+
436
+
437
+
438
+
439
+
440
+
441
+
442
+
443
+
444
+
445
+
446
+
447
+
448
+
449
+
450
+
451
+
452
+
453
+
454
+
455
+
456
+
457
+
458
+
459
+
460
+
461
+
462
+
463
+
464
+
465
+
466
+
467
+
468
+
469
+
470
+
471
+
472
+
473
+
474
+
475
+
476
+ <script type="text/javascript">
477
+
478
+
479
+ function switchMarketplace( marketplaceID ) {
480
+ showPleaseWait();
481
+ document.location = "https://sellercentral.amazon.com/gp/utilities/set-rainier-prefs.html?ie=UTF8&url=https%3A%2F%2Fsellercentral.amazon.com%2Fgp%2Ffeedback-manager%2Fhome.html%2Fref%3Dag_feedback_dmar_feedback%3Fie%3DUTF8%26_mpc%3D1" + "&marketplaceID=" + marketplaceID;
482
+ }
483
+
484
+ function marketplaceChanged(marketplaceID) {
485
+ if(!marketplaceID) {return;}
486
+
487
+ switchMarketplace(marketplaceID);
488
+ }
489
+
490
+ function marketplaceChangedIWS(marketplaceID) {
491
+ if(!marketplaceID){return;}
492
+ showPleaseWait();
493
+ 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_feedback" + "&marketplaceID=" + marketplaceID;
494
+ }
495
+ </script>
496
+
497
+
498
+
499
+ <div id="merchant-website">
500
+
501
+
502
+
503
+
504
+ <span class="merch-site-span">www.amazon.com</span>
505
+ </div>
506
+
507
+ <div class="image-container"><img src="./Feedback Manager_files/USAmazon._V171112299_.png"></div>
508
+ </div>
509
+ <div id="sc_quicklinks_top">
510
+ <a class="sc_quicklink navInactiveLink" href="https://sellercentral.amazon.com/gp/homepage.html/ref=ag_home_head_feedback">HOME</a> |
511
+
512
+
513
+
514
+
515
+
516
+
517
+ <span id="messagesID"><a class="sc_quicklink navInactiveLink" href="https://sellercentral.amazon.com/gp/communication-manager/inbox.html/ref=ag_cmin_head_feedback">MESSAGES</a></span> |
518
+
519
+
520
+ <span id="helpMenuID"><a id="helpMenuID" class="sc_quicklink navInactiveLink" href="https://sellercentral.amazon.com/gp/help/help.html/ref=ag_help_head_feedback?ie=UTF8&itemID=200700280&language=en_US">HELP</a></span> |
521
+ <a class="sc_quicklink" href="https://sellercentral.amazon.com/gp/sign-in/logout.html/ref=ag_logout_head_feedback" style="color:#000;">LOGOUT</a>
522
+ </div>
523
+ </div>
524
+
525
+ <div id="topNavContainer"><div id="globalSearchForm">
526
+
527
+
528
+
529
+
530
+
531
+
532
+
533
+ <form class="global-search-form" action="https://sellercentral.amazon.com/gp/search/search-results.html/ref=ag_helpsearch_bnav_feedback" method="GET">
534
+ <table><tbody><tr>
535
+ <td>
536
+ <input class="global-search-text" name="keywords" id="search-field" type="text" size="20" value="Search" onclick="clickclear(this,&#39;Search&#39;)" onblur="clickrestore(this,&#39;Search&#39;)">
537
+ </td>
538
+ <td>
539
+ <input type="image" src="./Feedback Manager_files/go._V187564664_.gif" width="21" height="21" border="0">
540
+ </td>
541
+ </tr></tbody></table>
542
+ </form>
543
+
544
+
545
+ <script language="javascript">
546
+ <!--
547
+
548
+ function clickclear(thisfield, defaulttext) {
549
+ thisfield.style.color = "#000000";
550
+ if (thisfield.value == defaulttext) {
551
+ thisfield.value = "";
552
+ }
553
+ }
554
+
555
+ function clickrestore(thisfield, defaulttext) {
556
+ if (thisfield.value == "") {
557
+ thisfield.style.color = "#808080";
558
+ thisfield.value = defaulttext;
559
+ }
560
+ }
561
+
562
+ -->
563
+ </script>
564
+
565
+
566
+ </div><ul id="topNav">
567
+ <li class="level1 inactive" style="z-index: 1005; "><iframe class="IframeShim" style="width: 203px; height: 134px; display: none; "></iframe>
568
+ <a href="https://sellercentral.amazon.com/gp/ezdpc-gui/inventory-status/status.html/ref=ag_invmgr_tnav_feedback_">INVENTORY
569
+ <div class="rightCapArrow"></div></a>
570
+ <ul class="subNav">
571
+ <li><a href="https://sellercentral.amazon.com/gp/ezdpc-gui/inventory-status/status.html/ref=ag_invmgr_dnav_feedback_">Manage Inventory
572
+ </a></li>
573
+ <li><a href="https://sellercentral.amazon.com/gp/ezdpc-gui/start.html/ref=ag_addlisting_dnav_feedback_">Add a Product
574
+ </a></li>
575
+ <li><a href="https://sellercentral.amazon.com/gp/item-manager/ezdpc/uploadInventory.html/ref=ag_invfile_dnav_feedback_">Upload Products &amp; Inventory
576
+ </a></li>
577
+ <li><a href="https://sellercentral.amazon.com/gp/item-manager/ezdpc/openPickup.html/ref=ag_invreport_dnav_feedback_">Download Inventory File
578
+ </a></li>
579
+ <li><a href="https://sellercentral.amazon.com/mn/promotions/promotionHome/ref=ag_promomgr_dnav_feedback_">Manage Promotions
580
+ </a></li>
581
+ <div class="partialBorder" style="width: 99px; "></div></ul>
582
+ </li>
583
+
584
+ <li class="level1 inactive" style="z-index: 1004; "><iframe class="IframeShim" style="width: 191px; height: 84px; display: none; "></iframe>
585
+ <a href="https://sellercentral.amazon.com/gp/orders-v2/list/ref=ag_myo_tnav_feedback_?ie=UTF8&useSavedSearch=default">ORDERS
586
+ <div class="rightCapArrow"></div></a>
587
+ <ul class="subNav">
588
+ <li><a href="https://sellercentral.amazon.com/gp/orders-v2/list/ref=ag_myo_dnav_feedback_?ie=UTF8&useSavedSearch=default">Manage Orders
589
+ </a></li>
590
+ <li><a href="https://sellercentral.amazon.com/gp/transactions/orderPickup.html/ref=ag_orderrpt_dnav_feedback_">Order Reports
591
+ </a></li>
592
+ <li><a href="https://sellercentral.amazon.com/gp/transactions/uploadShippingConfirmation.html/ref=ag_ordrelfile_dnav_feedback_">Upload Order Related Files
593
+ </a></li>
594
+ <div class="partialBorder" style="width: 81px; "></div></ul>
595
+ </li>
596
+
597
+ <li class="level1 inactive" style="z-index: 1003; "><iframe class="IframeShim" style="width: 178px; height: 84px; display: none; "></iframe>
598
+ <a href="https://sellercentral.amazon.com/gp/payments-account/settlement-summary.html/ref=ag_payments_tnav_feedback_">REPORTS
599
+ <div class="rightCapArrow"></div></a>
600
+ <ul class="subNav">
601
+ <li><a href="https://sellercentral.amazon.com/gp/payments-account/settlement-summary.html/ref=ag_payments_dnav_feedback_">Finance
602
+ </a></li>
603
+ <li><a href="https://sellercentral.amazon.com/gp/sellercoach/dashboard/ref=ag_coach_dnav_feedback_">Amazon Selling Coach
604
+ </a></li>
605
+ <li><a href="https://sellercentral.amazon.com/gp/site-metrics/home.html/ref=ag_sitemetric_dnav_feedback_">Site Metrics and Reports
606
+ </a></li>
607
+ <div class="partialBorder" style="width: 88px; "></div></ul>
608
+ </li>
609
+
610
+ <li class="level1 active" style="z-index: 1002; "><iframe class="IframeShim" style="width: 185px; height: 134px; display: none; "></iframe>
611
+ <a href="https://sellercentral.amazon.com/gp/customer-experience/summary.html/ref=ag_custmetric_tnav_feedback_">PERFORMANCE
612
+ <div class="rightCapArrow"></div></a>
613
+ <ul class="subNav">
614
+ <li><a href="https://sellercentral.amazon.com/gp/customer-experience/summary.html/ref=ag_custmetric_dnav_feedback_">Customer Metrics
615
+ </a></li>
616
+ <li><a href="https://sellercentral.amazon.com/gp/feedback-manager/home.html/ref=ag_feedback_dnav_feedback_">Feedback
617
+ </a></li>
618
+ <li><a href="https://sellercentral.amazon.com/gp/guarantee-claims/home.html/ref=ag_azclaims_dnav_feedback_">A-to-z Guarantee Claims
619
+ </a></li>
620
+ <li><a href="https://sellercentral.amazon.com/gp/chargebacks/home.html/ref=ag_chrgbck_dnav_feedback_">Chargeback Claims
621
+ </a></li>
622
+ <li><a href="https://sellercentral.amazon.com/gp/customer-experience/perf-notifications.html/ref=ag_cxperform_dnav_feedback_">Performance Notifications
623
+ </a></li>
624
+ <div class="partialBorder" style="width: 119px; "></div></ul>
625
+ <div class="partialBorderActive" style="width: 119px;"></div></li>
626
+
627
+ <li class="level1 inactive last" style="z-index: 1001; "><iframe class="IframeShim" style="width: 174px; height: 184px; display: none; "></iframe>
628
+ <a href="https://sellercentral.amazon.com/gp/seller/configuration/account-info-page.html/ref=ag_acctinfo_tnav_feedback_">SETTINGS
629
+ <div class="rightCapArrow"></div></a>
630
+ <ul class="subNav">
631
+ <li><a href="https://sellercentral.amazon.com/gp/seller/configuration/account-info-page.html/ref=ag_acctinfo_dnav_feedback_">Account Info
632
+ </a></li>
633
+ <li><a href="https://sellercentral.amazon.com/gp/seller/configuration/notificationPreferences.html/ref=ag_notifpref_dnav_feedback_">Notification Preferences
634
+ </a></li>
635
+ <li><a href="https://sellercentral.amazon.com/gp/seller/configuration/login-settings.html/ref=ag_loginsett_dnav_feedback_">Login Settings
636
+ </a></li>
637
+ <li><a href="https://sellercentral.amazon.com/gp/gift-services/dispatch.html/ref=ag_giftops_dnav_feedback_">Gift Options
638
+ </a></li>
639
+ <li><a href="https://sellercentral.amazon.com/gp/shipping/dispatch.html/ref=ag_shipset_dnav_feedback_">Shipping Settings
640
+ </a></li>
641
+ <li><a href="https://sellercentral.amazon.com/gp/account-manager/home.html/ref=ag_userperms_dnav_feedback_">User Permissions
642
+ </a></li>
643
+ <li><a href="https://sellercentral.amazon.com/gp/help-content/home.html/ref=ag_infopol_dnav_feedback_">Your Info &amp; Policies
644
+ </a></li>
645
+ <div class="partialBorder" style="width: 91px; "></div></ul>
646
+ </li>
647
+ </ul></div>
648
+ <div id="subnav_container" class="clear clearable">
649
+ <ul id="subnav_tools">
650
+
651
+ <li class="subnav-item"><a class="subnav-item-link" href="https://sellercentral.amazon.com/gp/customer-experience/summary.html/ref=ag_custmetric_snav_feedback" style="color:#fff">Customer Metrics</a></li><li class="subnav_pipe">|</li><li class="subnav-item"><a class="subnav-item-link" href="https://sellercentral.amazon.com/gp/feedback-manager/home.html/ref=ag_feedback_snav_feedback" style="color:#FFD685">Feedback</a></li><li class="subnav_pipe">|</li><li class="subnav-item"><a class="subnav-item-link" href="https://sellercentral.amazon.com/gp/guarantee-claims/home.html/ref=ag_azclaims_snav_feedback" style="color:#fff">A-to-z Guarantee Claims</a></li><li class="subnav_pipe">|</li><li class="subnav-item"><a class="subnav-item-link" href="https://sellercentral.amazon.com/gp/chargebacks/home.html/ref=ag_chrgbck_snav_feedback" style="color:#fff">Chargeback Claims</a></li><li class="subnav_pipe">|</li><li class="subnav-item"><a class="subnav-item-link" href="https://sellercentral.amazon.com/gp/customer-experience/perf-notifications.html/ref=ag_cxperform_snav_feedback" style="color:#fff">Performance Notifications</a></li>
652
+ </ul>
653
+ </div>
654
+
655
+
656
+
657
+
658
+
659
+
660
+
661
+
662
+ <script type="text/javascript">
663
+ var gNavbarHeight = 97;
664
+ </script>
665
+
666
+
667
+
668
+ <img src="./Feedback Manager_files/transparent-pixel._V42752373_.gif" style="position: absolute" width="1" alt="" onload="if (typeof uet == &#39;function&#39;) { uet(&#39;ne&#39;); }" height="1" border="0">
669
+
670
+
671
+
672
+
673
+
674
+
675
+
676
+
677
+
678
+
679
+
680
+
681
+
682
+
683
+
684
+
685
+
686
+ <br>
687
+
688
+
689
+
690
+
691
+
692
+
693
+
694
+
695
+
696
+
697
+
698
+ <table width="95%" border="0" align="center" cellpadding="2" cellspacing="0" bgcolor="#eeeeee">
699
+ <tbody><tr><td bgcolor="#FFFFFF"><span class="header-orange"><b>Feedback Manager</b></span></td></tr>
700
+ </tbody></table>
701
+
702
+ <table cellspacing="0" cellpadding="1" width="95%" align="center" border="0">
703
+ <tbody><tr>
704
+ <td valign="top" align="right"><div align="left">
705
+ Use the Feedback Manager to track buyer satisfaction with your service. You can view short- and long-term metrics, as well as detailed feedback entries, including buyer e-mails and Order IDs. Click the Order ID to view transaction details within the Manage Orders section of Seller Central. <span class="tiny"><a href="javascript:openModalDialog('/gp/help/help-popup.html/?itemID=761', 550, 550, 'scrollbars=yes', null, 'yes')">Learn more</a>.</span> </div></td>
706
+ </tr>
707
+ </tbody></table>
708
+
709
+
710
+ <br>
711
+
712
+ <table width="95%" border="0" align="center" cellpadding="2" cellspacing="0" bgcolor="#eeeeee">
713
+ <tbody><tr>
714
+ <td bgcolor="#FFFFFF"><span class="header-orange"><strong>Feedback Rating:</strong></span>
715
+
716
+
717
+
718
+
719
+
720
+
721
+
722
+
723
+ <style type="text/css"><!--
724
+ .feedbackMeanRating { font-family: verdana,arial,helvetica,sans-serif; font-size: smaller; display: inline; }
725
+ --></style>
726
+
727
+ <style type="text/css"><!--
728
+ .starRating { display: inline; }
729
+ --></style>
730
+
731
+
732
+
733
+
734
+
735
+
736
+ <!-- new feedback -->
737
+
738
+ <div class="starRating">
739
+
740
+ <img src="./Feedback Manager_files/stars-4.5._V192261415_.gif" width="64" height="12" border="0">
741
+
742
+ </div>
743
+
744
+
745
+
746
+ <div class="feedbackMeanRating">
747
+
748
+ <b>4.7</b> stars over the past 12 months
749
+
750
+
751
+ (<b>1335</b> ratings)
752
+
753
+
754
+ </div>
755
+
756
+
757
+
758
+
759
+
760
+ </td>
761
+ </tr>
762
+ </tbody></table>
763
+
764
+ <!-- new summary --->
765
+
766
+
767
+
768
+
769
+
770
+
771
+
772
+
773
+
774
+
775
+
776
+ <style type="text/css"><!--
777
+
778
+ .feedbackPosPercent { color:#009900; font-weight:bold; }
779
+ .feedbackNeuPercent { color:#666666; }
780
+ .feedbackNegPercent { color:#990000; }
781
+ .feedbackPercent { color:#000000; font-size:xx-small; font-weight:normal; }
782
+
783
+ --></style>
784
+
785
+
786
+ <style type="text/css"><!--
787
+
788
+ .feedbackTable {font-size:small; font-family: verdana,arial,helvetica,sans-serif; text-align:center; width:95%; border-color:#f4f4f4; border:1; border-collapse: collapse; }
789
+ .feedbackTable td { padding:4; margin:0; border-color:#dddddd; border-style: solid; border-width:1px}
790
+
791
+ .feedbackTableCorner { background-color:#F4F4F4 }
792
+
793
+ .feedbackRowHeader { font-weight:bold; font-size: x-small; }
794
+ .feedbackColumnHeader { font-weight:bold; text-align:right; background-color:#F4F4F4; }
795
+
796
+ .feedback30Days { background-color:#F8F8F8; width:16% }
797
+ .feedback90Days { background-color:#F4F4F4; width:16% }
798
+ .feedback365Days { background-color:#F8F8F8; width:16% }
799
+ .feedbackLifetime { background-color:#F4F4F4; width:17% }
800
+
801
+ .feedback30DaysLabel { background-color:#FFFFFF; font-size: x-small; }
802
+ .feedback90DaysLabel { background-color:#FFFFFF; font-size: x-small; }
803
+ .feedback365DaysLabel { background-color:#FFFFFF; font-size: x-small; }
804
+ .feedbackLifetimeLabel { background-color:#FFFFFF; font-size: x-small; }
805
+
806
+ .sellerDataLeft { text-align:right; width:43%; padding:0; }
807
+ .sellerDataRight { text-align:left; width:57%; padding:0; }
808
+
809
+ --></style>
810
+
811
+
812
+
813
+ <div align="center">
814
+ <table class="feedbackTable">
815
+ <tbody>
816
+ <tr class="feedbackRowHeader">
817
+
818
+ <td class="feedbackTableCorner">&nbsp;</td>
819
+
820
+ <td class="feedback30DaysLabel"><nobr>30 days</nobr></td>
821
+ <td class="feedback90DaysLabel"><nobr>90 days</nobr></td>
822
+ <td class="feedback365DaysLabel"><nobr>365 days</nobr></td>
823
+ <td class="feedbackLifetimeLabel">Lifetime</td>
824
+ </tr>
825
+
826
+
827
+
828
+
829
+
830
+
831
+
832
+ <tr>
833
+
834
+ <td class="feedbackColumnHeader" nobr=""> Positive</td>
835
+
836
+
837
+
838
+ <td class="feedback30Days">
839
+ <span align="center"><table style="width:100%;"><tbody><tr><td style="border-width: 0" class="sellerDataLeft"><span class="feedbackPosPercent">92</span><span class="feedbackPercent">%</span></td><td style="border-width: 0;" class="sellerDataRight"> (356)</td></tr></tbody></table></span>
840
+ </td>
841
+ <td class="feedback90Days">
842
+ <span align="center"><table style="width:100%;"><tbody><tr><td style="border-width: 0" class="sellerDataLeft"><span class="feedbackPosPercent">93</span><span class="feedbackPercent">%</span></td><td style="border-width: 0;" class="sellerDataRight"> (1083)</td></tr></tbody></table></span>
843
+ </td>
844
+ <td class="feedback365Days">
845
+ <span align="center"><table style="width:100%;"><tbody><tr><td style="border-width: 0" class="sellerDataLeft"><span class="feedbackPosPercent">93</span><span class="feedbackPercent">%</span></td><td style="border-width: 0;" class="sellerDataRight"> (1246)</td></tr></tbody></table></span>
846
+ </td>
847
+ <td class="feedbackLifetime">
848
+ <span align="center"><table style="width:100%;"><tbody><tr><td style="border-width: 0" class="sellerDataLeft"><span class="feedbackPosPercent">93</span><span class="feedbackPercent">%</span></td><td style="border-width: 0;" class="sellerDataRight"> (1246)</td></tr></tbody></table></span>
849
+ </td>
850
+ </tr>
851
+
852
+ <tr>
853
+
854
+ <td class="feedbackColumnHeader" nobr=""> Neutral</td>
855
+
856
+
857
+
858
+ <td class="feedback30Days">
859
+ <span align="center"><table style="width:100%;"><tbody><tr><td style="border-width: 0" class="sellerDataLeft"><span class="feedbackNeuPercent">3</span><span class="feedbackPercent">%</span></td><td style="border-width: 0;" class="sellerDataRight"> (11)</td></tr></tbody></table></span>
860
+ </td>
861
+ <td class="feedback90Days">
862
+ <span align="center"><table style="width:100%;"><tbody><tr><td style="border-width: 0" class="sellerDataLeft"><span class="feedbackNeuPercent">3</span><span class="feedbackPercent">%</span></td><td style="border-width: 0;" class="sellerDataRight"> (32)</td></tr></tbody></table></span>
863
+ </td>
864
+ <td class="feedback365Days">
865
+ <span align="center"><table style="width:100%;"><tbody><tr><td style="border-width: 0" class="sellerDataLeft"><span class="feedbackNeuPercent">3</span><span class="feedbackPercent">%</span></td><td style="border-width: 0;" class="sellerDataRight"> (40)</td></tr></tbody></table></span>
866
+ </td>
867
+ <td class="feedbackLifetime">
868
+ <span align="center"><table style="width:100%;"><tbody><tr><td style="border-width: 0" class="sellerDataLeft"><span class="feedbackNeuPercent">3</span><span class="feedbackPercent">%</span></td><td style="border-width: 0;" class="sellerDataRight"> (40)</td></tr></tbody></table></span>
869
+ </td>
870
+ </tr>
871
+
872
+ <tr>
873
+
874
+ <td class="feedbackColumnHeader" nobr=""> Negative</td>
875
+
876
+
877
+
878
+ <td class="feedback30Days">
879
+ <span align="center"><table style="width:100%;"><tbody><tr><td style="border-width: 0" class="sellerDataLeft"><span class="feedbackNegPercent">5</span><span class="feedbackPercent">%</span></td><td style="border-width: 0;" class="sellerDataRight"> (20)</td></tr></tbody></table></span>
880
+ </td>
881
+ <td class="feedback90Days">
882
+ <span align="center"><table style="width:100%;"><tbody><tr><td style="border-width: 0" class="sellerDataLeft"><span class="feedbackNegPercent">4</span><span class="feedbackPercent">%</span></td><td style="border-width: 0;" class="sellerDataRight"> (47)</td></tr></tbody></table></span>
883
+ </td>
884
+ <td class="feedback365Days">
885
+ <span align="center"><table style="width:100%;"><tbody><tr><td style="border-width: 0" class="sellerDataLeft"><span class="feedbackNegPercent">4</span><span class="feedbackPercent">%</span></td><td style="border-width: 0;" class="sellerDataRight"> (49)</td></tr></tbody></table></span>
886
+ </td>
887
+ <td class="feedbackLifetime">
888
+ <span align="center"><table style="width:100%;"><tbody><tr><td style="border-width: 0" class="sellerDataLeft"><span class="feedbackNegPercent">4</span><span class="feedbackPercent">%</span></td><td style="border-width: 0;" class="sellerDataRight"> (49)</td></tr></tbody></table></span>
889
+ </td>
890
+ </tr>
891
+
892
+ <tr>
893
+
894
+ <td class="feedbackColumnHeader" nobr=""> Count</td>
895
+
896
+
897
+
898
+ <td class="feedback30Days">
899
+ 387
900
+ </td>
901
+ <td class="feedback90Days">
902
+ 1162
903
+ </td>
904
+ <td class="feedback365Days">
905
+ 1335
906
+ </td>
907
+ <td class="feedbackLifetime">
908
+ 1335
909
+ </td>
910
+ </tr>
911
+
912
+
913
+ </tbody>
914
+ </table>
915
+ </div>
916
+
917
+
918
+
919
+
920
+ <table width="95%" border="0" align="center" cellpadding="2" cellspacing="0" bgcolor="#eeeeee"><tbody><tr><td bgcolor="#FFFFFF" class="tiny">
921
+
922
+
923
+
924
+ This table displays the corresponding feedback percentages and feedback counts. <a href="http://www.amazon.com/gp/help/seller/at-a-glance.html/ref=ag_xx__feedback?ie=UTF8&seller=A3NN4M02ONBDU7">See how your feedback displays to buyers on Amazon.</a>
925
+ </td></tr></tbody></table>
926
+
927
+ <br>
928
+
929
+
930
+
931
+
932
+ <style type="text/css">
933
+ <!--
934
+ .liner {
935
+ border-top: 1px solid #DDDDDD;
936
+ height: 1px;
937
+ overflow: hidden;
938
+ margin: 2px 0px 2px 0px;
939
+ }
940
+ .style4 {color: #666666}
941
+ -->
942
+ </style>
943
+
944
+
945
+
946
+
947
+
948
+
949
+
950
+
951
+
952
+ <table cellspacing="0" cellpadding="4" width="95%" align="center" border="0">
953
+ <tbody><tr><td align="right" valign="top"><div align="left"><span class="header-orange"><b>View Current Feedback</b></span><br></div></td></tr>
954
+
955
+ <tr>
956
+
957
+
958
+ <td width="50%" align="right" valign="middle"><a class="buttonImage" name="View all your feedback" href="https://sellercentral.amazon.com/gp/feedback-manager/view-all-feedback.html?ie=UTF8&sortType=sortByDate&dateRange=&descendingOrder=1"><span class="awesomeButton buttonLarge primaryLargeButton inner_button"><span class="button_label">View all your feedback</span></span></a></td></tr>
959
+
960
+
961
+
962
+ </tbody></table>
963
+
964
+
965
+
966
+
967
+
968
+
969
+
970
+ <table cellspacing="0" cellpadding="0" width="95%" align="center" bgcolor="#dddddd" border="0">
971
+ <tbody><tr>
972
+ <td align="middle" valign="center">
973
+ <table cellspacing="1" cellpadding="4" width="100%" border="0">
974
+ <tbody><tr valign="center" bgcolor="#ffffff">
975
+ <td width="5%" align="left" class="tiny"><b>Date</b><br></td>
976
+ <td width="5%" align="middle" class="tiny"><b>Rating</b><br></td>
977
+ <td width="30%" align="left" class="tiny"><b>Comments</b></td>
978
+
979
+
980
+ <td width="10%" align="middle" class="tiny"><b>Arrived on Time</b></td>
981
+ <td width="10%" align="middle" class="tiny"><b>Item as Described</b></td>
982
+ <td width="10%" align="middle" class="tiny"><b>Customer Service</b></td>
983
+
984
+
985
+
986
+ <td width="15%" align="left" class="tiny"><b>Order ID</b></td>
987
+ <td width="10%" align="left" class="tiny"><b>Rater Email</b></td>
988
+ <td width="5%" align="middle" class="tiny"><b>Rater Role</b></td>
989
+ </tr>
990
+
991
+
992
+
993
+
994
+ <tr valign="center" bgcolor="#F8F8F8">
995
+ <td align="left" nowrap="" class="tiny">7/3/11</td>
996
+ <td class="tiny" align="middle"><font color="#009900"><b>5</b></font></td>
997
+ <td class="tiny">Item as described. Quick delivery.
998
+
999
+ <br><a class="buttonImage" name="Respond" href="https://sellercentral.amazon.com/gp/feedback-manager/leave-seller-response.html?ie=UTF8&parentID=AQNNLGI6519AK"><span class="awesomeButton buttonTiny secondaryTinyButton inner_button"><span class="button_label">Respond</span></span></a><br>
1000
+
1001
+ </td>
1002
+
1003
+
1004
+
1005
+ <td align="middle">Yes</td>
1006
+ <td align="middle">Yes</td>
1007
+ <td align="middle">-</td>
1008
+
1009
+
1010
+ <td class="tiny" align="left"><a href="https://sellercentral.amazon.com/gp/orders-v2/details/?ie=UTF8&orderID=105-5880207-7148202">105-5880207-7148202</a></td>
1011
+ <td class="tiny" align="left">
1012
+
1013
+ f5txhvsqqkd8vgt@marketplace.amazon.com
1014
+ </td>
1015
+
1016
+
1017
+ <td class="tiny" align="middle">Buyer</td>
1018
+ </tr>
1019
+
1020
+
1021
+ <tr valign="center" bgcolor="#F4F4F4">
1022
+ <td align="left" nowrap="" class="tiny">7/2/11</td>
1023
+ <td class="tiny" align="middle"><font color="#009900"><b>5</b></font></td>
1024
+ <td class="tiny">Received quickly
1025
+
1026
+ <br><a class="buttonImage" name="Respond" href="https://sellercentral.amazon.com/gp/feedback-manager/leave-seller-response.html?ie=UTF8&parentID=A2WJMZMXO17NBR"><span class="awesomeButton buttonTiny secondaryTinyButton inner_button"><span class="button_label">Respond</span></span></a><br>
1027
+
1028
+ </td>
1029
+
1030
+
1031
+
1032
+ <td align="middle">Yes</td>
1033
+ <td align="middle">Yes</td>
1034
+ <td align="middle">-</td>
1035
+
1036
+
1037
+ <td class="tiny" align="left"><a href="https://sellercentral.amazon.com/gp/orders-v2/details/?ie=UTF8&orderID=102-7301103-0853834">102-7301103-0853834</a></td>
1038
+ <td class="tiny" align="left">
1039
+
1040
+ 32dqqqbj55zmwl8@marketplace.amazon.com
1041
+ </td>
1042
+
1043
+
1044
+ <td class="tiny" align="middle">Buyer</td>
1045
+ </tr>
1046
+
1047
+
1048
+ <tr valign="center" bgcolor="#F8F8F8">
1049
+ <td align="left" nowrap="" class="tiny">7/2/11</td>
1050
+ <td class="tiny" align="middle"><font color="#009900"><b>5</b></font></td>
1051
+ <td class="tiny">Phones work great.
1052
+
1053
+ <br><a class="buttonImage" name="Respond" href="https://sellercentral.amazon.com/gp/feedback-manager/leave-seller-response.html?ie=UTF8&parentID=ALEHIWDEPAQUF"><span class="awesomeButton buttonTiny secondaryTinyButton inner_button"><span class="button_label">Respond</span></span></a><br>
1054
+
1055
+ </td>
1056
+
1057
+
1058
+
1059
+ <td align="middle">Yes</td>
1060
+ <td align="middle">Yes</td>
1061
+ <td align="middle">-</td>
1062
+
1063
+
1064
+ <td class="tiny" align="left"><a href="https://sellercentral.amazon.com/gp/orders-v2/details/?ie=UTF8&orderID=102-9508030-6131464">102-9508030-6131464</a></td>
1065
+ <td class="tiny" align="left">
1066
+
1067
+ 4jjtcc9py8ygnfw@marketplace.amazon.com
1068
+ </td>
1069
+
1070
+
1071
+ <td class="tiny" align="middle">Buyer</td>
1072
+ </tr>
1073
+
1074
+
1075
+ <tr valign="center" bgcolor="#F4F4F4">
1076
+ <td align="left" nowrap="" class="tiny">7/2/11</td>
1077
+ <td class="tiny" align="middle"><font color="#990000"><b>1</b></font></td>
1078
+ <td class="tiny">Used or returned item that was retaped
1079
+
1080
+ <br><a class="buttonImage" name="Respond" href="https://sellercentral.amazon.com/gp/feedback-manager/leave-seller-response.html?ie=UTF8&parentID=A2TFX144EMNXJV"><span class="awesomeButton buttonTiny secondaryTinyButton inner_button"><span class="button_label">Respond</span></span></a><br>
1081
+
1082
+ </td>
1083
+
1084
+
1085
+
1086
+ <td align="middle">Yes</td>
1087
+ <td align="middle">No</td>
1088
+ <td align="middle">-</td>
1089
+
1090
+
1091
+ <td class="tiny" align="left"><a href="https://sellercentral.amazon.com/gp/orders-v2/details/?ie=UTF8&orderID=104-9861408-1948261">104-9861408-1948261</a></td>
1092
+ <td class="tiny" align="left">
1093
+
1094
+ 8zddydhwrnk6f4d@marketplace.amazon.com
1095
+ </td>
1096
+
1097
+
1098
+ <td class="tiny" align="middle">Buyer</td>
1099
+ </tr>
1100
+
1101
+
1102
+ <tr valign="center" bgcolor="#F8F8F8">
1103
+ <td align="left" nowrap="" class="tiny">7/2/11</td>
1104
+ <td class="tiny" align="middle"><font color="#009900"><b>5</b></font></td>
1105
+ <td class="tiny">as described, quick shipment
1106
+
1107
+
1108
+ <br><a class="buttonImage" name="Respond" href="https://sellercentral.amazon.com/gp/feedback-manager/leave-seller-response.html?ie=UTF8&parentID=A1B2WIJH8UF5NZ"><span class="awesomeButton buttonTiny secondaryTinyButton inner_button"><span class="button_label">Respond</span></span></a><br>
1109
+
1110
+ </td>
1111
+
1112
+
1113
+
1114
+ <td align="middle">Yes</td>
1115
+ <td align="middle">Yes</td>
1116
+ <td align="middle">-</td>
1117
+
1118
+
1119
+ <td class="tiny" align="left"><a href="https://sellercentral.amazon.com/gp/orders-v2/details/?ie=UTF8&orderID=103-0129625-9605868">103-0129625-9605868</a></td>
1120
+ <td class="tiny" align="left">
1121
+
1122
+ 7bhdhmyd9htz9n6@marketplace.amazon.com
1123
+ </td>
1124
+
1125
+
1126
+ <td class="tiny" align="middle">Buyer</td>
1127
+ </tr>
1128
+
1129
+
1130
+ <tr valign="center" bgcolor="#F4F4F4">
1131
+ <td align="left" nowrap="" class="tiny">7/2/11</td>
1132
+ <td class="tiny" align="middle"><font color="#009900"><b>5</b></font></td>
1133
+ <td class="tiny">pleased with product.
1134
+
1135
+ <br><a class="buttonImage" name="Respond" href="https://sellercentral.amazon.com/gp/feedback-manager/leave-seller-response.html?ie=UTF8&parentID=A39NGHPWXMZUI1"><span class="awesomeButton buttonTiny secondaryTinyButton inner_button"><span class="button_label">Respond</span></span></a><br>
1136
+
1137
+ </td>
1138
+
1139
+
1140
+
1141
+ <td align="middle">Yes</td>
1142
+ <td align="middle">Yes</td>
1143
+ <td align="middle">-</td>
1144
+
1145
+
1146
+ <td class="tiny" align="left"><a href="https://sellercentral.amazon.com/gp/orders-v2/details/?ie=UTF8&orderID=105-2804779-2411418">105-2804779-2411418</a></td>
1147
+ <td class="tiny" align="left">
1148
+
1149
+ s6xk277z0dhw7k9@marketplace.amazon.com
1150
+ </td>
1151
+
1152
+
1153
+ <td class="tiny" align="middle">Buyer</td>
1154
+ </tr>
1155
+
1156
+
1157
+ <tr valign="center" bgcolor="#F8F8F8">
1158
+ <td align="left" nowrap="" class="tiny">7/2/11</td>
1159
+ <td class="tiny" align="middle"><font color="#009900"><b>5</b></font></td>
1160
+ <td class="tiny">Wow! Amazing price, super fast shipping. This monitor was suppose to be used, but when I opened up the package it looked brand new!!!!
1161
+
1162
+ <br><a class="buttonImage" name="Respond" href="https://sellercentral.amazon.com/gp/feedback-manager/leave-seller-response.html?ie=UTF8&parentID=A2FMC7YU8BNUUB"><span class="awesomeButton buttonTiny secondaryTinyButton inner_button"><span class="button_label">Respond</span></span></a><br>
1163
+
1164
+ </td>
1165
+
1166
+
1167
+
1168
+ <td align="middle">Yes</td>
1169
+ <td align="middle">Yes</td>
1170
+ <td align="middle">Yes</td>
1171
+
1172
+
1173
+ <td class="tiny" align="left"><a href="https://sellercentral.amazon.com/gp/orders-v2/details/?ie=UTF8&orderID=103-0583631-8743403">103-0583631-8743403</a></td>
1174
+ <td class="tiny" align="left">
1175
+
1176
+ 18j7nbkx5tn1jxc@marketplace.amazon.com
1177
+ </td>
1178
+
1179
+
1180
+ <td class="tiny" align="middle">Buyer</td>
1181
+ </tr>
1182
+
1183
+
1184
+ <tr valign="center" bgcolor="#F4F4F4">
1185
+ <td align="left" nowrap="" class="tiny">7/1/11</td>
1186
+ <td class="tiny" align="middle"><font color="#009900"><b>5</b></font></td>
1187
+ <td class="tiny">works great. got here fast.
1188
+
1189
+ <br><a class="buttonImage" name="Respond" href="https://sellercentral.amazon.com/gp/feedback-manager/leave-seller-response.html?ie=UTF8&parentID=A29EPPUS86QEVS"><span class="awesomeButton buttonTiny secondaryTinyButton inner_button"><span class="button_label">Respond</span></span></a><br>
1190
+
1191
+ </td>
1192
+
1193
+
1194
+
1195
+ <td align="middle">Yes</td>
1196
+ <td align="middle">Yes</td>
1197
+ <td align="middle">-</td>
1198
+
1199
+
1200
+ <td class="tiny" align="left"><a href="https://sellercentral.amazon.com/gp/orders-v2/details/?ie=UTF8&orderID=105-7834281-5100237">105-7834281-5100237</a></td>
1201
+ <td class="tiny" align="left">
1202
+
1203
+ s0dq1xxnnm76fsn@marketplace.amazon.com
1204
+ </td>
1205
+
1206
+
1207
+ <td class="tiny" align="middle">Buyer</td>
1208
+ </tr>
1209
+
1210
+
1211
+ <tr valign="center" bgcolor="#F8F8F8">
1212
+ <td align="left" nowrap="" class="tiny">7/1/11</td>
1213
+ <td class="tiny" align="middle"><font color="#009900"><b>5</b></font></td>
1214
+ <td class="tiny">smooth transaction
1215
+
1216
+ <br><a class="buttonImage" name="Respond" href="https://sellercentral.amazon.com/gp/feedback-manager/leave-seller-response.html?ie=UTF8&parentID=ABN6KVTO41ACT"><span class="awesomeButton buttonTiny secondaryTinyButton inner_button"><span class="button_label">Respond</span></span></a><br>
1217
+
1218
+ </td>
1219
+
1220
+
1221
+
1222
+ <td align="middle">Yes</td>
1223
+ <td align="middle">Yes</td>
1224
+ <td align="middle">-</td>
1225
+
1226
+
1227
+ <td class="tiny" align="left"><a href="https://sellercentral.amazon.com/gp/orders-v2/details/?ie=UTF8&orderID=002-6952095-0825845">002-6952095-0825845</a></td>
1228
+ <td class="tiny" align="left">
1229
+
1230
+ jvbkq4t03x6bmnq@marketplace.amazon.com
1231
+ </td>
1232
+
1233
+
1234
+ <td class="tiny" align="middle">Buyer</td>
1235
+ </tr>
1236
+
1237
+
1238
+ <tr valign="center" bgcolor="#F4F4F4">
1239
+ <td align="left" nowrap="" class="tiny">7/1/11</td>
1240
+ <td class="tiny" align="middle"><font color="#009900"><b>5</b></font></td>
1241
+ <td class="tiny">arrived as scheduled and in condition described, trustworthy seller
1242
+
1243
+ <br><a class="buttonImage" name="Respond" href="https://sellercentral.amazon.com/gp/feedback-manager/leave-seller-response.html?ie=UTF8&parentID=A2ACFWAAP77K76"><span class="awesomeButton buttonTiny secondaryTinyButton inner_button"><span class="button_label">Respond</span></span></a><br>
1244
+
1245
+ </td>
1246
+
1247
+
1248
+
1249
+ <td align="middle">Yes</td>
1250
+ <td align="middle">Yes</td>
1251
+ <td align="middle">-</td>
1252
+
1253
+
1254
+ <td class="tiny" align="left"><a href="https://sellercentral.amazon.com/gp/orders-v2/details/?ie=UTF8&orderID=102-8479796-1933832">102-8479796-1933832</a></td>
1255
+ <td class="tiny" align="left">
1256
+
1257
+ 0jb18d6jt6jxzjw@marketplace.amazon.com
1258
+ </td>
1259
+
1260
+
1261
+ <td class="tiny" align="middle">Buyer</td>
1262
+ </tr>
1263
+ </tbody></table></td></tr></tbody></table><br>
1264
+
1265
+
1266
+
1267
+
1268
+
1269
+
1270
+
1271
+
1272
+
1273
+
1274
+
1275
+
1276
+
1277
+
1278
+
1279
+
1280
+
1281
+
1282
+
1283
+ <br style="clear:both">
1284
+
1285
+ <form id="feedbackForm" action="https://sellercentral.amazon.com/gp/contact-amazon.html" method="post"><input type="hidden" id="debugInformation" value=""></form>
1286
+
1287
+ <script language="javascript" type="text/javascript">
1288
+ function loadContactUs() {
1289
+ window.location.href = 'https://sellercentral.amazon.com/gp/contact-us/contact-amazon.html/ref=ag_contactus_foot_feedback';
1290
+ }
1291
+ </script>
1292
+
1293
+ <style type="text/css">
1294
+ #sc_footer_container{border:0;border-top: 1px solid #ddd;margin:7em 2.5% 0.5em;padding:0;}
1295
+ #sc_footer{background:#fff;border:0;height:21px;line-height:21px;margin:0;padding: 10px 0;}
1296
+ #sc_footer_lang{float:left;padding-left:4px}
1297
+ #sc_footer_links{float:right;padding-right:4px}
1298
+ .scf_link{padding:0 4px;}
1299
+ </style>
1300
+
1301
+ <div id="sc_footer_container">
1302
+ <div id="sc_footer" class="footer tiny">
1303
+ <div id="sc_footer_lang">
1304
+
1305
+
1306
+
1307
+
1308
+
1309
+ <script language="javascript" type="text/javascript">
1310
+ <!--
1311
+ function changeLanguage(list)
1312
+ {
1313
+ var language = list.options[list.selectedIndex].value;
1314
+ var location = encodeURIComponent(window.location.href);
1315
+ if (language)
1316
+ {
1317
+ window.location.href = "/gp/switch-language.html?formSubmitted=true&language=" + language + "&location=" + location;
1318
+ }
1319
+ }
1320
+ -->
1321
+ </script>
1322
+
1323
+
1324
+ </div>
1325
+ <div id="sc_footer_links" class="tiny">
1326
+ <a class="bold scf_link" href="javascript:openModalDialog('https://sellercentral.amazon.com/gp/utilities/sc-hmd.html/ref=ag_ratepage_foot_feedback?ie=UTF8&refRID=0AHM7NB36DEWH83KT98T%20', 530, 330, scrollbars='no')">Rate this page</a>
1327
+
1328
+ |
1329
+ <a href="https://sellercentral.amazon.com/gp/contact-us/contact-amazon-form.html/ref=ag_contactus_foot_feedback?ie=UTF8&urlStr=%2Fgp%2Ffeedback-manager%2Fhome.html">Contact Seller Support</a>
1330
+ </div>
1331
+ </div>
1332
+ </div>
1333
+
1334
+
1335
+
1336
+
1337
+
1338
+
1339
+ <br style="clear:both">
1340
+
1341
+ <table align="center">
1342
+
1343
+ </table>
1344
+
1345
+
1346
+
1347
+ <script type="text/javascript">
1348
+ try { fixButtonWidths(); } catch(e) {}
1349
+ </script>
1350
+
1351
+
1352
+
1353
+
1354
+
1355
+ <script type="text/javascript"><!--
1356
+ 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=/"}};
1357
+ updateCsmHit(38080);
1358
+ //--></script>
1359
+
1360
+
1361
+ </body></html>