-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path5-select.html
1994 lines (1863 loc) · 180 KB
/
5-select.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!-- saved from url=(0153)http://www.ebay.com/itm/Skagen-233XLTTM-Mens-Denmark-Grey-Dial-Titanium-Mesh-Bracelet-Quartz-Date-Watch-/230930100491?pt=Wristwatches&hash=item35c481b10b -->
<html xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://opengraphprotocol.org/schema/"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- fix for IE freezing. -->
<style type="text/css">
body #Body .btn, body #Body c-std {
filter:none;
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#0079bc',endColorstr='#00509d')";
}
</style>
<meta name="layout" content="main">
<!-- Use ?ForceSiteSpeedGauge=true for forcing -->
<title> Skagen 233XLTTM Men's Denmark Grey Dial Titanium Mesh Bracelet Quartz Date Watch | eBay</title>
<meta name="y_key" content="acf32e2a69cbc2b0">
<meta name="description" content="Skagen 233XLTTM Men's Denmark Grey Dial Titanium Mesh Bracelet Quartz Date Watch in Jewelry & Watches, Watches, Wristwatches | eBay">
<meta property="og:type" content="ebay-objects:item">
<meta property="og:site_name" content="eBay">
<meta name="google-site-verification" content="8kHr3jd3Z43q1ovwo0KVgo_NZKIEMjthBxti8m8fYTg">
<meta name="msvalidate.01" content="31154A785F516EC9842FC3BA2A70FB1A">
<meta property="og:url" content="http://www.ebay.com/itm/Skagen-233XLTTM-Mens-Denmark-Grey-Dial-Titanium-Mesh-Bracelet-Quartz-Date-Watch-/230930100491">
<meta property="og:title" content="Skagen 233XLTTM Men's Denmark Grey Dial Titanium Mesh Bracelet Quartz Date Watch">
<meta property="og:description" content="Skagen 233XLTTM Men's Denmark Grey Dial Titanium Mesh Bracelet Quartz Date Watch in Jewelry & Watches, Watches, Wristwatches | eBay">
<meta name="keywords" content="Skagen 233XLTTM Men's Denmark Grey Dial Titanium Mesh Bracelet Quartz Date Watch, Jewelry & Watches, Watches, Wristwatches">
<meta property="og:image" content="http://thumbs4.ebaystatic.com/d/l225/m/mpAdis73Cocp8Cqpyd3OXuw.jpg">
<meta property="fb:app_id" content="102628213125203">
<link rel="canonical" href="http://www.ebay.com/itm/Skagen-233XLTTM-Mens-Denmark-Grey-Dial-Titanium-Mesh-Bracelet-Quartz-Date-Watch-/230930100491">
<!--[if IE]><link/><![endif]-->
<!--[if lt IE 8]>
<![endif]-->
<link href="./5-select_files/all.min" type="text/css" rel="stylesheet"><link href="./5-select_files/024rjpjrtq5bzm1id5t2yv5lh.css" type="text/css" rel="stylesheet"><style type="text/css">body ul#bc a {
white-space:nowrap;
}
body .sz1280 .vi-VR-brumblnkLst{
max-width:500px;
}
body .sz1152 .vi-VR-brumblnkLst{
max-width:450px;
}
.sz940 .vi-VR-brumblnkLst{
max-width:300px;
}
body .sz1280 .vi-bc-topM .vi-VR-brumb-hasNoPrdlnks{
max-width:800px;
}
body .sz1152 .vi-bc-topM .vi-VR-brumb-hasNoPrdlnks{
max-width:750px;
}
.sz940 .vi-bc-topM .vi-VR-brumb-hasNoPrdlnks{
max-width:550px;
}</style><meta property="fb:app_id" content="102628213125203"><style id="wrc-middle-css" type="text/css">.wrc_whole_window{ display: none; position: fixed; z-index: 2147483647; background-color: rgba(40, 40, 40, 0.9); word-spacing: normal !important; margin: 0px !important; padding: 0px !important; border: 0px !important; left: 0px; top: 0px; width: 100%; height: 100%; line-height: normal !important; letter-spacing: normal !important; overflow: hidden;}.wrc_bar_window{ display: none; position: fixed; z-index: 2147483647; background-color: rgba(60, 60, 60, 1.0); word-spacing: normal !important; font-family: Segoe UI, Arial Unicode MS, Arial, Sans-Serif; margin: 0px !important; padding: 0px !important; border: 0px !important; left: 0px; top: 0px; width: 100%; height: 40px; line-height: normal !important; letter-spacing: normal !important; color: white !important; font-size: 13px !important;}.wrc_middle { display: table-cell; vertical-align: middle; width: 100%;}.wrc_middle_main { font-family: Segoe UI, Arial Unicode MS, Arial, Sans-Serif; font-size: 14px; width: 600px; height: auto; background: url(chrome-extension://icmlaeflemplmjndnaapfdbbnpncnbda/skin/images/background-body.jpg) repeat-x left top; background-color: rgb(39, 53, 62); position: relative; margin-left: auto; margin-right: auto; text-align: left;}.wrc_middle_tq_main { font-family: Segoe UI, Arial Unicode MS, Arial, Sans-Serif; font-size: 16px; width: 615px; height: 460px; background: url(chrome-extension://icmlaeflemplmjndnaapfdbbnpncnbda/skin/images/background-sitecorrect.png) no-repeat; background-color: white; color: black !important; position: relative; margin-left: auto; margin-right: auto; text-align: center;}.wrc_middle_logo { background: url(chrome-extension://icmlaeflemplmjndnaapfdbbnpncnbda/skin/images/logo.jpg) no-repeat left bottom; width: 140px; height: 42px; color: orange; display: table-cell; text-align: right; vertical-align: middle;}.wrc_icon_warning { margin: 20px 10px 20px 15px; float: left; background-color: transparent;}.wrc_middle_title { color: #b6bec7; height: auto; margin: 0px auto; font-size: 2.2em; white-space: nowrap; text-align: center;}.wrc_middle_hline { height: 2px; width: 100%; display: block;}.wrc_middle_description { text-align: center; margin: 15px; font-size: 1.4em; padding: 20px; height: auto; color: white; min-height: 3.5em;}.wrc_middle_actions_main_div { margin-bottom: 15px; text-align: center;}.wrc_middle_actions_blue_button div { display: inline-block; width: auto; cursor: Pointer; margin: 3px 10px 3px 10px; color: white; font-size: 1.2em; font-weight: bold;}.wrc_middle_actions_blue_button { -moz-appearance: none; border-radius: 7px; -moz-border-radius: 7px/7px; border-radius: 7px/7px; background-color: rgb(0, 173, 223) !important; display: inline-block; width: auto; cursor: Pointer; border: 2px solid #00dddd; padding: 0px 20px 0px 20px;}.wrc_middle_actions_blue_button:hover { background-color: rgb(0, 159, 212) !important;}.wrc_middle_actions_blue_button:active { background-color: rgb(0, 146, 200) !important; border: 2px solid #00aaaa;}.wrc_middle_actions_grey_button div { display: inline-block; width: auto; cursor: Pointer; margin: 3px 10px 3px 10px; color: white !important; font-size: 15px; font-weight: bold;}.wrc_middle_actions_grey_button { -moz-appearance: none; border-radius: 7px; -moz-border-radius: 7px/7px; border-radius: 7px/7px; background-color: rgb(100, 100, 100) !important; display: inline-block; width: auto; cursor: Pointer; border: 2px solid #aaaaaa; text-decoration: none; padding: 0px 20px 0px 20px;}.wrc_middle_actions_grey_button:hover { background-color: rgb(120, 120, 120) !important;}.wrc_middle_actions_grey_button:active { background-color: rgb(130, 130, 130) !important; border: 2px solid #00aaaa;}.wrc_middle_action_low { font-size: 0.9em; white-space: nowrap; cursor: Pointer; color: grey !important; margin: 10px 10px 0px 10px; text-decoration: none;}.wrc_middle_action_low:hover { color: #aa4400 !important;}.wrc_middle_actions_rest_div { padding-top: 5px; white-space: nowrap; text-align: center;}.wrc_middle_action { white-space: nowrap; cursor: Pointer; color: red !important; font-size: 1.2em; margin: 10px 10px 0px 10px; text-decoration: none;}.wrc_middle_action:hover { color: #aa4400 !important;}</style><script id="wrc-script-middle_window" type="text/javascript" language="JavaScript">var g_inputsCnt = 0;var g_InputThis = new Array(null, null, null, null);var g_alerted = false;/* we test the input if it includes 4 digits (input is a part of 4 inputs for filling the credit-card number)*/function is4DigitsCardNumber(val){ var regExp = new RegExp('[0-9]{4}'); return (val.length == 4 && val.search(regExp) == 0);}/* testing the whole credit-card number 19 digits devided by three '-' symbols or exactly 16 digits without any dividers*/function isCreditCardNumber(val){ if(val.length == 19) { var regExp = new RegExp('[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{4}'); return (val.search(regExp) == 0); } else if(val.length == 16) { var regExp = new RegExp('[0-9]{4}[0-9]{4}[0-9]{4}[0-9]{4}'); return (val.search(regExp) == 0); } return false;}function CheckInputOnCreditNumber(self){ if(g_alerted) return false; var value = self.value; if(self.type == 'text') { if(is4DigitsCardNumber(value)) { var cont = true; for(i = 0; i < g_inputsCnt; i++) if(g_InputThis[i] == self) cont = false; if(cont && g_inputsCnt < 4) { g_InputThis[g_inputsCnt] = self; g_inputsCnt++; } } g_alerted = (g_inputsCnt == 4); if(g_alerted) g_inputsCnt = 0; else g_alerted = isCreditCardNumber(value); } return g_alerted;}function CheckInputOnPassword(self){ if(g_alerted) return false; var value = self.value; if(self.type == 'password') { g_alerted = (value.length > 0); } return g_alerted;}function onInputBlur(self, bRatingOk, bFishingSite){ var bCreditNumber = CheckInputOnCreditNumber(self); var bPassword = CheckInputOnPassword(self); if((!bRatingOk || bFishingSite == 1) && (bCreditNumber || bPassword) ) { var warnDiv = document.getElementById("wrcinputdiv"); if(warnDiv) { /* show the warning div in the middle of the screen */ warnDiv.style.left = "0px"; warnDiv.style.top = "0px"; warnDiv.style.width = "100%"; warnDiv.style.height = "100%"; document.getElementById("wrc_warn_fs").style.display = 'none'; document.getElementById("wrc_warn_cn").style.display = 'none'; if(bFishingSite) document.getElementById("wrc_warn_fs").style.display = 'block'; else document.getElementById("wrc_warn_cn").style.display = 'block'; warnDiv.style.display = 'table'; } }}</script><style type="text/css">span.offer-bmlcnt>span{font-family:Verdana;font-size:10px;color:#666}span.offer-bmlcnt>span:first-child{font-family:Arial,sans-serif;font-size:13px;color:#333}td.bml_logo{vertical-align:top}td.bmloff_cont{vertical-align:super}.sC{font-size:10px;font-family:verdana;color:#00c}.dA{margin-top:7px}.bml_cp{color:#333;font-size:12px;font-family:Arial;clear:both;padding-bottom:10px;padding-left:5px}.bml_hdr{padding-bottom:10px;text-align:left;font-size:14px;font-family:Trebuchet MS}.bml_ovlt{vertical-align:top;padding-left:12px}.bml_lnk{font-size:x-small}.bml_lnksp{padding-left:4px}.bml_pip{color:#666;padding:0 3px 0 3px}.bml_vam{vertical-align:middle}.bml__pt11{padding-top:11px}.bml__pl0{padding-left:0}.bml__bmlTxt{padding-left:6px;padding-top:5px}.bml_lnk a{color:#002398;font-family:arial;font-size:10px}.bml_vilnk a{color:#002398!important;font-family:verdana;font-size:10px}</style><script id="ebay-scjs" async="" defer="" src="./5-select_files/aluc3n21uq55vlxq0m22rohx0.js"></script><script id="ebay-scShare" async="" defer="" src="./5-select_files/cw2wv05nwayfjcfmvz305ijrt.js"></script><script src="./5-select_files/get" async=""></script><style type="text/css">.scShareIcon {width:16px;height:20px;background:url('http://p.ebaystatic.com/aw/pics/social/spr_share_widget_ds3_optimized.png');float:left;cursor:pointer;font-size:20px;overflow:hidden;padding-right:7px;text-decoration:none !important;}.scShareText {font:13px arial,verdana;color:black;height:19px;float:left;padding-right:3px;}.scShareTextDropDown {font:13px arial,verdana;color: #002398;height:19px;float:left;padding-right:6px;}.scSharePointer {cursor:pointer;}.scShare_facebook {background-position: 0px -22px;}.scShare_twitter {background-position: 0px -43px;}.scShare_email {background-position: 0px -1px;}.scShare_pinterest {background-position: 0px -85px;}.scShareFbLike {width:65px;height:21px;float:left;padding-right: 10px;padding-left:3px;position:relative;top:-2px;}.scSharePlusOne {width:49px;height:21px;float:left;padding-right:3px;padding-left:3px;position:relative;top:1px;}.scSharePlusOneNoCount {overflow:hidden;width:23px;height:21px;float:left;padding-left:3px;padding-right:5px;position:relative;top:1px;}.scShare7 {width: 2px;float:left;}.scShare {float: left; position:relative;}.scShareFbLikeNoCount {overflow:hidden;width:45px;height:21px;float:left;padding-right:7px;padding-left:3px;position:relative;top:-2px;}</style><style type="text/css">.cntStrt{background:url('http://p.ebaystatic.com/aw/social/social_signals_sprite.gif');font:11px verdana;line-height:19px;padding:4px 5px 0px 4px;position:relative;left: -5px;z-index:10;top:-1px;color:#666666}.cntEnd{background:url('http://p.ebaystatic.com/aw/social/social_signals_sprite.gif') -260px -24px;position:relative;top:3px;width:6px;left:-9px;margin-right:-9px;}.cntStrt, .cntEnd{float:left;height:19px;cursor:pointer;}.ebayActn{background:url('http://p.ebaystatic.com/aw/social/social_signals_sprite.gif');padding:4px 0px 0px 8px;width:55px;height:19px;float:left;position:relative;cursor:pointer;}.ebayActnNoCount{background:url('http://p.ebaystatic.com/aw/social/social_signals_sprite.gif');padding:4px 1px 0px 8px;width:55px;height:19px;float:left;position:relative;cursor:pointer;}.ebayLike{background-position:0px -176px;top:1px;}.ebayLikeNoCount{background-position:0px -113px;top: 1px;}.ebayLiked{background-position:0px -199px;top:3px;padding-top:0px;}.ebayLikedHvr{background-position:0px -220px;top:3px;}.ebayWant{background-position:-65px -176px;top:1px;}.ebayWantNoCount{background-position:-65px -113px;top:1px;}.ebayWantd{background-position:-65px -199px;top:3px;padding-top:0px;}.ebayWantdHvr{background-position:-65px -220px;top: 3px;}.ebayOwn{background-position:-130px -176px;top:1px;}.ebayOwnNoCount{background-position:-130px -113px;top: 1px;}.ebayOwnd{background-position:-130px -199px;top:3px;padding-top:0px;}.ebayOwndHvr{background-position:-130px -220px;top:3px;}#ssSignIn{padding-top:10px;}#ssSignIn a{text-decoration:underline;}.ssBold{font-weight:normal;}.toolTipHome{top:24px;left:0px;-moz-box-shadow:2px 2px 4px #cccccc;-webkit-box-shadow:2px 2px 4px #cccccc;box-shadow:2px 2px 4px #cccccc;}.flyOvr{display:block}#likeFlyOver{display:none} #wantFlyOver{display:none} #ownFlyOver{display:none} .flyOvr div{display:block;position:absolute;width:221px;height:75px;background-color:white;color:#000;overflow:hidden;cursor:default;}.flyOvr div .lVert{z-index:10;background-position:-268px -42px;top:1px;width:1px;height:73px;left:0px;}.flyOvr div .rVert{z-index:10;background-position:-268px -41px;top:1px;left:220px;width:1px;height:73px;}.flyOvr div .lHori{z-index:10;background-position:-1px -102px;top:1px;left:-1px;width:25px;height:1px;}.flyOvr div .rHori{z-index:10;background-position:0px -102px;top:1px;left:32px;width:197px;height:1px;}.flyOvr div .downArrow{z-index:10;background-position:-3px -89px;left:21px;width:17px;height:7px;top:1px;} div .dwnHori{z-index:10;background-position:-2px -102px;top:74px;width:221px;height:1px;} div .flyCntent{z-index:2;top:9px;left:22px;right:8px;float:left;height:60px;width:205px;font-family:Helvetica, Arial,sans-serif;font-size:12px;line-height:16px;font-weight:normal;color:#555555;} div .flyCntent a{text-decoration:none;color:#0654ba;} div .flyCntent div.fbNoBorder{font-weight:normal;top:24px;z-index:10;width:175px;height:30px;background-color:#F1F1F1;border:1px solid;border-color:#ffffff;-moz-border-radius:5px;border-radius:5px;} div .postToFbNoBorder{float:left;padding-left:3px;padding-right:6px;margin-top:8px;font-family:Helvetica,verdana,sans-serif;font-size:12px;color:#777777;} div .postToFb{float:left;padding-left:5px;padding-right:6px;margin-top:7px;font-family:Helvetica,verdana,sans-serif;font-size:12px;color:#0654ba} div .postedText{float:left;padding-left:0px;padding-right:5px;margin-top:3px;} div .fOverLine2{left:0px;font-weight:normal;top:24px;z-index:10;border:1px solid;border-color:#BEC7D8;width:175px;height:30px;background-color:#F1F1F1;-moz-border-radius:5px;border-radius:5px;} .fOverLine2WithoutBorder{font-weight:normal;top:0px;border:0px solid;border-color:#BEC7D8;width:155px;height:22px;background-color:#F1F1F1;} div .shareSprt{width:16px;height:20px;background:url('http://pics.ebaystatic.com/aw/pics/social/spr_share_widget_v1.gif');float:left;cursor:pointer;overflow:hidden;padding-right:3px;margin-top:7px;cursor:default;} div .shareSprite_fb{background-position:-2px -22px;cursor:default;} div .fOverText{color:#333;font-family:Helvetica,verdana,sans-serif;font-size:12px;float:left;} div .ques{font-family:verdana,sans-serif;font-size:10px;text-decoration:none;}.hvrSprt{background:url('http://p.ebaystatic.com/aw/social/social_signals_sprite.gif');} div .fOverLine2 {left:0px;} div .flyCntent input{margin-left:14px;margin-top:8px;float:left;top:14px;width:14px;height:16px;}.clkdFlOvr div{display:block;position:absolute;width:221px;height:75px;background-color:white;color:#000;overflow:hidden;cursor:default;}.clkdFlOvr div .lVert{z-index:10;background-position:-268px -42px;top:1px;width:1px;height:74px;left:0px;}.clkdFlOvr div .rVert{z-index:10;background-position:-268px -41px;top:1px;left:220px;width:1px;height:74px;}.clkdFlOvr div .lHori{z-index:10;background-position:-1px -102px;top:1px;left:-1px;width:25px;height:1px;}.clkdFlOvr div .rHori{z-index:10;background-position:0px -102px;top:1px;left:32px;width:197px;height:1px;}.clkdFlOvr div .downArrow{z-index:10;background-position:-3px -89px;left:21px;width:17px;height:7px;top:1px;}.flyOvr{display: inline;position:relative;z-index:10;}.clkdFlOvr{display:inline;position:relative;z-index:10;}</style><link href="./5-select_files/still" media="screen" type="text/css" rel="stylesheet"></head>
<body><div id="gh-gb"></div>
<div id="Head">
</div>
<div id="Body" class="sz940 sz1280" itemscope="itemscope" itemtype="http://schema.org/Product">
<div id="TopPanelDF"><script type="text/javascript">$df.set('ph_TopPanelDF','TopPanelDF')</script><div id="Top">
<div id="TopPanel">
<a class="gh-hdn" href="http://www.ebay.com/itm/Skagen-233XLTTM-Mens-Denmark-Grey-Dial-Titanium-Mesh-Bracelet-Quartz-Date-Watch-/230930100491?pt=Wristwatches&hash=item35c481b10b#mainContent">Skip to main content</a><div id="gh" class="gh-w gh-site-0"><table class="gh-tbl"><tbody><tr><td class="gh-td"><a id="gh-la" _sp="m570.l2586" class="iclg" href="http://www.ebay.com/">eBay<img border="0" width="117" height="92" id="gh-logo" src="./5-select_files/spr6.png" alt="" style="clip:rect(43px, 118px, 93px, 0px); position:absolute; top:-44px;left:0"></a></td><td class="gh-td"><div id="gh-shop" aria-controls="gh-sbc-o"><a id="gh-shop-a" href="http://www.ebay.com/sch/allcategories/all-categories?_trksid=m570.l3694">Shop by<br>category<i id="gh-shop-ei"></i></a></div></td><td class="gh-td-s"><form action="http://www.ebay.com/sch/i.html" method="get" id="gh-f"><input type="hidden" value="m570.l1313" name="_trksid"><table class="gh-tbl2"><tbody><tr><td class="gh-td-s"><div id="gh-ac-box"><div id="gh-ac-box2"><label class="gh-hdn g-hdn" for="gh-ac">Enter your search keyword</label><input autocomplete="off" name="_nkw" id="gh-ac" maxlength="300" size="50" class="gh-tb ui-autocomplete-input" type="text"><span role="status" aria-live="polite" class="ui-helper-hidden-accessible"></span></div></div></td><td class="gh-td" id="gh-cat-td"><div id="gh-cat-box"><select name="_sacat" id="gh-cat" size="1" class="gh-sb" title="Select a category for search"><option value="0" selected="selected">All Categories </option><option value="20081">Antiques</option><option value="550">Art</option><option value="2984">Baby</option><option value="267">Books</option><option value="12576">Business & Industrial</option><option value="625">Cameras & Photo</option><option value="15032">Cell Phones & Accessories</option><option value="11450">Clothing, Shoes & Accessories</option><option value="11116">Coins & Paper Money</option><option value="1">Collectibles</option><option value="58058">Computers/Tablets & Networking</option><option value="293">Consumer Electronics</option><option value="14339">Crafts</option><option value="237">Dolls & Bears</option><option value="11232">DVDs & Movies</option><option value="6000">eBay Motors</option><option value="45100">Entertainment Memorabilia</option><option value="172008">Gift Cards & Coupons</option><option value="26395">Health & Beauty</option><option value="11700">Home & Garden</option><option value="281">Jewelry & Watches</option><option value="11233">Music</option><option value="619">Musical Instruments & Gear</option><option value="1281">Pet Supplies</option><option value="870">Pottery & Glass</option><option value="10542">Real Estate</option><option value="316">Specialty Services</option><option value="888">Sporting Goods</option><option value="64482">Sports Mem, Cards & Fan Shop</option><option value="260">Stamps</option><option value="1305">Tickets</option><option value="220">Toys & Hobbies</option><option value="3252">Travel</option><option value="1249">Video Games & Consoles</option><option value="99">Everything Else</option></select></div></td> <td class="gh-td"><input value="Search" id="gh-btn" class="btn btn-ter" type="submit" style="display: inline-block;"></td><td class="gh-td"><div id="gh-as"><a title="Advanced Search" id="gh-as-a" _sp="m570.l2614" class="thrd" href="http://www.ebay.com/sch/ebayadvsearch/?rt=nc">Advanced</a></div></td> </tr></tbody></table><input type="hidden" name="_from" value="R40"></form></td></tr></tbody></table><div id="gh-top"><ul id="gh-topl" style="display: block;"><li id="gh-eb-u" class="gh-t" aria-controls="gh-eb-u-o"><a href="http://www.ebay.com/itm/Skagen-233XLTTM-Mens-Denmark-Grey-Dial-Titanium-Mesh-Bracelet-Quartz-Date-Watch-/230930100491?pt=Wristwatches&hash=item35c481b10b#" id="gh-ug" class="gh-ua">Hi, <b>praveen</b>!<img alt="" src="./5-select_files/s.gif" id="gh-uga" border="0"></a></li><li class="gh-t"><a id="gh-p1" _sp="m570.l3188" href="http://deals.ebay.com/">Daily Deals</a></li></ul><noscript class="gh-t" id="_nkw">Hi, (<a class="gh-a" href="https://signin.ebay.com/ws/eBayISAPI.dll?SignIn&_trksid=m570.l3348">Sign in</a> to bid or buy)</noscript><ul id="gh-eb" class="gh-clearfix" role="menubar"><li class="gh-eb-li" id="gh-eb-My"><a _sp="m570.l2919" class="gh-eb-li-a" href="http://my.ebay.com/ws/eBayISAPI.dll?MyEbay&gbh=1">My eBay</a></li><li class="gh-eb-li" id="gh-eb-Sell"><a _sp="m570.l1528" class="gh-eb-li-a" href="http://cgi5.ebay.com/ws/eBayISAPI.dll?aidZ153=&MfcISAPICommand=SellHub3">Sell</a></li><li class="gh-eb-li" id="gh-eb-Comm"><a _sp="m570.l1540" class="gh-eb-li-a" href="http://community.ebay.com/">Community</a></li><li class="gh-eb-li" id="gh-eb-Cust"><a _sp="m570.l1545" class="gh-eb-li-a" href="http://ocs.ebay.com/ws/eBayISAPI.dll?CustomerSupport">Customer Support</a></li><li class="gh-eb-li gh-eb-li-last" id="gh-cart"><a _sp="m570.l2633" class="gh-eb-li-a" href="http://cart.payments.ebay.com/sc/view"><i class="gspr icsc"></i>Cart</a></li></ul></div></div><a name="mainContent"></a> <!--ts:2013.05.22.18:17--><!--rq:--><table width="100%" class="vi-bc-topM"><tbody><tr><td>
<div class="vi-bc-svySpn" style="float:right;">
<span id="w1-2">
<a rel="nofollow" id="surveylink" href="javascript:void(0)">
</a>
</span>
</div>
<ul id="bc">
<table class="">
<tbody><tr>
<td nowrap="nowrap" style="vertical-align:top;" class="vi-VR-bkto-TD">
<li style="padding:0px 5px;" id="smtBackToAnchorArrow">
<img style="position:relative;top:-4px;" src="./5-select_files/iconLtArrow_20x20.gif" height="20" width="20" border="0" align="middle" alt="Click to Go Back to search results">
</li>
<li style="margin-right: 20px;" id="vi-brumb-frstCol"><a class="vi-VR-spl-lnk" href="javascript:history.go(-1)" title="Click to Go Back to search results" id="smtBackToAnchor">Back to search results</a></li>
<!--[if lt IE 8]>
<li style="margin:0px 5px 0px -10px" id="vi-VR-brumb-pipeIcon">|</li>
<![endif]-->
</td>
<td nowrap="nowrap" style="vertical-align:top;" id="vi-VR-brumb-pdplnkLst">
<li style="margin:0px 5px 0px -10px">|</li>
<li style="margin-right:5px;width:100%; ">Listed in category: </li>
</td>
<td style="vertical-align:top;" class="vi-VR-brumblnkLst vi-VR-brumb-hasNoPrdlnks" id="vi-VR-brumb-lnkLst">
<table width="100%">
<tbody><tr><td style="">
<li class="bc-w"><a _sp="p2047675.l2706" href="http://www.ebay.com/sch/Jewelry-Watches-/281/i.html" class="thrd">Jewelry & Watches</a></li>
<li style="padding:0px 5px;">></li>
<li class="bc-w"><a _sp="p2047675.l2706" href="http://www.ebay.com/sch/Watches-/14324/i.html" class="thrd">Watches</a></li>
<li style="padding:0px 5px;">></li>
<li class="bc-w"><a _sp="p2047675.l2706" href="http://www.ebay.com/sch/Wristwatches-/31387/i.html" class="scnd">Wristwatches</a></li>
</td></tr>
</tbody></table>
</td>
</tr>
</tbody></table>
</ul>
</td>
</tr>
</tbody></table>
</div>
</div>
</div><div id="CenterPanelDF"><script type="text/javascript">$df.set('ph_CenterPanelDF','CenterPanelDF')</script><div id="CenterPanel" class="ebaylocale_en_US">
<!-- msgType.code eq 3 -->
<div class="tmpnl">
<div id="msgPanel" class="pnl u-dspn" style="display: none;">
<div class="msg ">
<div class="msgPad " aria-relevant="all" aria-atomic="true" aria-live="assertive">
<span id="w1-4-_msg" class="msgTextAlign"></span>
<span id="listPanel" style="display: none;">
<span id="w1-5-_lmsgC" class="u-dspn">
<span id="w1-5-_lmsg"></span>
<span id="w1-5-_rmvC">
<span class="addSpace">|</span>
<a id="w1-5-_rmv" class="vi_lst_tpm_rmv" href="javascript:;"></a>
</span>
<span id="vi_watch_msg_ph">
<span class="addSpace">|</span>
<span class="viWatcherMsg"></span>
</span>
<div id="w1-5-_lstP" class="lpnl ">
<div class="scroll">
<div id="w1-5-_lstC" class="listC">
</div>
</div>
</div>
</span>
<!-- TODO: set myebay url -->
</span>
</div>
</div>
</div><div id="listingHistory"><script type="text/javascript">$df.set('ph_listingHistory','listingHistory')</script></div><div id="otherMsg"><script type="text/javascript">$df.set('ph_otherMsg','otherMsg')</script></div></div>
<div id="vi_sme_prmts_bnr_cntr"></div>
<!-- Placement 100011 && 100012 -->
<div id="CenterPanelInternal">
<div id="PicturePanel" class="pp-c">
<div class="pp-ic pp-ic500">
<div class=" img img500">
<table class="img img500">
<tbody>
<tr>
<td class="img img500">
<div id="picturePanelIcon"><script type="text/javascript">$df.set('ph_picturePanelIcon','picturePanelIcon')</script><img id="freeShip" src="./5-select_files/s.gif" alt="FREE shipping" title="FREE shipping" class="picIcon freeShip" style="left:455px;">
</div><span id="ph_test"></span><a href="javascript:;" style="display: block; cursor: default; text-decoration: none;">
<div id="mainImgHldr" style="width:500px" title="Skagen-233XLTTM-Mens-Denmark-Grey-Dial-Titanium-Mesh-Bracelet-Quartz-Date-Watch">
<!-- <span id="mainImgHldr" style="display: inline-block;"> -->
<img id="icThrImg" class="img img500 vi-hide-mImgThr" src="./5-select_files/imgLoading_30x30.gif" imgsel="0" alt="Skagen-233XLTTM-Mens-Denmark-Grey-Dial-Titanium-Mesh-Bracelet-Quartz-Date-Watch" style="display: none;"> <img id="icImg" class="img img500" itemprop="image" src="./5-select_files/$T2eC16h,!zoE9s5ngyQuBRmeidnrUg~~60_12.JPG" style="" clk="0" alt="" mskuskip="false">
<!-- </span> -->
<div id="vi_zoom_trigger_mask" class="zoom_trigger_mask" style="height: 500px; width: 500px; top: 0px; left: 1px; display: block;">
<div id="vi_zoom_trigger_mrk" style="top: 190px; left: 190px;">
<div class="vi_zoom_trigger_msg">
<b style="display: block;">Mouse here to zoom in</b>
</div>
</div>
</div><span id="zoom_selector" class="zoom_slct" style="height: 357.5px; width: 200px;"></span></div>
</a>
<span id="imgNATxt" class="imgNa" style="display: none;">Image not available</span>
<span id="varImgNATxt" class="imgNa" style="display:none">Photos not available for this variation</span>
<noscript><style type="text/css">.vi-hide-mImgThr {display: none;}</style><img id="icImg" class="img img500" itemprop="image" src="http://i.ebayimg.com/t/Skagen-233XLTTM-Mens-Denmark-Grey-Dial-Titanium-Mesh-Bracelet-Quartz-Date-Watch-/00/s/MTAwMFgxMDAw/z/YVwAAOxyrUVRmeie/$T2eC16h,!zoE9s5ngyQuBRmeidnrUg~~60_12.JPG" style="" clk="" /></noscript>
<script type="text/javascript">
function picOnLoad(isSetClkId){
var elem = document.getElementById('icThrImg');
var pic = document.getElementById('icImg');
elem.style.display = 'none';
pic.style.display = '';
if(isSetClkId) {
pic.setAttribute('clk', elem.getAttribute('imgsel'));
}
document.getElementById('imgNATxt').style.display = 'none';
return;
}
function picOnError(){
var elemThr = document.getElementById('icThrImg');
var pic = document.getElementById('icImg');
elemThr.src='http://p.ebaystatic.com/aw/pics/cmp/icn/iconImgNA_96x96.gif';
elemThr.style.display = '';
pic.style.display = 'none';
pic.setAttribute('clk', elemThr.getAttribute('imgsel'));
document.getElementById('imgNATxt').style.display = 'block';
return;
}
var image = document.createElement('img');
image.src= 'http://i.ebayimg.com/t/Skagen-233XLTTM-Mens-Denmark-Grey-Dial-Titanium-Mesh-Bracelet-Quartz-Date-Watch-/00/s/MTAwMFgxMDAw/z/YVwAAOxyrUVRmeie/$T2eC16h,!zoE9s5ngyQuBRmeidnrUg~~60_12.JPG';
if(image.complete || image.readyState === 4){
picOnLoad(true);
}else{
image.onload = function(){
picOnLoad(true);
};
image.onerror = function(){
picOnError();
};
}
image.onerror = function(){
picOnError();
};
</script>
</td>
</tr>
</tbody>
</table>
</div>
<div class="spr"></div>
<div class="pt-p" style="visibility: visible;" id="zoom_enlarge_msg_cnt">
<a class="pt-i pt-tx " id="zoom_enlarge_msg" href="javascript:;">Click to view larger image and other views</a>
</div>
<div class="oly_upnl" id="vi_pic_enlarge_oly"><div id="enlarge_panel" class="vi_en_panel">
<div id="enlarge_img_panel" class="vi_en_img">
<table class="en_img_tbl">
<tbody>
<tr>
<td class="en_img_tbl">
<div id="en_img_span" style="overflow:hidden; display:inline-block; position: relative;">
<div id="en_img_span_cnt" style="top:0; left:0; position:absolute;display: inline;"><img id="en_img_id" style="display: none;" alt="" src="./5-select_files/spacer.gif" clk=""></div>
<span id="en_layer_selector"></span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<div id="enlarge_img_fs" class="vi_en_fs">
<ul id="en_fs_ul" class="lst icon">
<li style="width: 83.66666666666667px; height: 76px;" index="0" imgn="0">
<a id="enfsthImg0" href="Javascript:;" title="Skagen-233XLTTM-Mens-Denmark-Grey-Dial-Titanium-Mesh-Bracelet-Quartz-Date-Watch" class="pic pic1">
<div style="min-width:64px;height:100%">
<table class="img">
<tbody><tr>
<td class="tdThumb" style="height:64px; ">
<img src="./5-select_files/$T2eC16h,!zoE9s5ngyQuBRmeidnrUg~~60_14.JPG" style="max-width:64px;max-height:64px" index="0">
</td>
</tr>
</tbody></table>
</div>
</a>
</li>
<li style="width: 83.66666666666667px; height: 76px;" index="1" imgn="1">
<a id="enfsthImg1" href="Javascript:;" title="Skagen-233XLTTM-Mens-Denmark-Grey-Dial-Titanium-Mesh-Bracelet-Quartz-Date-Watch" class="pic pic1">
<div style="min-width:64px;height:100%">
<table class="img">
<tbody><tr>
<td class="tdThumb" style="height:64px; ">
<img src="./5-select_files/$(KGrHqJ,!lwFFy5pmCo9BRmeihv9MQ~~60_14.JPG" style="max-width:64px;max-height:64px" index="1">
</td>
</tr>
</tbody></table>
</div>
</a>
</li>
<li style="width: 83.66666666666667px; height: 76px;" index="2" imgn="2">
<a id="enfsthImg2" href="Javascript:;" title="Skagen-233XLTTM-Mens-Denmark-Grey-Dial-Titanium-Mesh-Bracelet-Quartz-Date-Watch" class="pic pic1">
<div style="min-width:64px;height:100%">
<table class="img">
<tbody><tr>
<td class="tdThumb" style="height:64px; ">
<img src="./5-select_files/$T2eC16J,!zQE9s3sq+8nBRmeik(p4Q~~60_14.JPG" style="max-width:64px;max-height:64px" index="2">
</td>
</tr>
</tbody></table>
</div>
</a>
</li>
</ul>
</div>
</div>
</div>
<div id="imgC" class="flmstp flmstp500 slider" style="height:78px">
<ul id="fsThumbStrip" class="lst icon">
<li style="width: 80px; height: 72px; border: 2px solid rgb(102, 102, 102);">
<a id="thImg0" href="Javascript:;" title="Skagen-233XLTTM-Mens-Denmark-Grey-Dial-Titanium-Mesh-Bracelet-Quartz-Date-Watch" class="pic pic1">
<table class="img">
<tbody><tr>
<td class="tdThumb" style="height:64px; ">
<div style="width:83.66666666666667px;">
<img src="./5-select_files/$T2eC16h,!zoE9s5ngyQuBRmeidnrUg~~60_14.JPG" style="max-width:64px;max-height:64px" index="0" onerror="try{this.src='http://p.ebaystatic.com/aw/pics/cmp/icn/iconImgNA_96x96.gif';}catch(e){}">
</div>
</td>
</tr>
</tbody></table>
</a>
</li>
<li style="width: 83.66666666666667px; height: 76px">
<a id="thImg1" href="Javascript:;" title="Skagen-233XLTTM-Mens-Denmark-Grey-Dial-Titanium-Mesh-Bracelet-Quartz-Date-Watch" class="pic pic1">
<table class="img">
<tbody><tr>
<td class="tdThumb" style="height:64px; ">
<div style="width:83.66666666666667px;">
<img src="./5-select_files/$(KGrHqJ,!lwFFy5pmCo9BRmeihv9MQ~~60_14.JPG" style="max-width:64px;max-height:64px" index="1" onerror="try{this.src='http://p.ebaystatic.com/aw/pics/cmp/icn/iconImgNA_96x96.gif';}catch(e){}">
</div>
</td>
</tr>
</tbody></table>
</a>
</li>
<li style="width: 83.66666666666667px; height: 76px">
<a id="thImg2" href="Javascript:;" title="Skagen-233XLTTM-Mens-Denmark-Grey-Dial-Titanium-Mesh-Bracelet-Quartz-Date-Watch" class="pic pic1">
<table class="img">
<tbody><tr>
<td class="tdThumb" style="height:64px; ">
<div style="width:83.66666666666667px;">
<img src="./5-select_files/$T2eC16J,!zQE9s3sq+8nBRmeik(p4Q~~60_14.JPG" style="max-width:64px;max-height:64px" index="2" onerror="try{this.src='http://p.ebaystatic.com/aw/pics/cmp/icn/iconImgNA_96x96.gif';}catch(e){}">
</div>
</td>
</tr>
</tbody></table>
</a>
</li>
</ul>
</div>
</div>
<div class="vi-pbh">
<center>
<table>
<tbody><tr>
<td width="100%" style="text-align:center">
<div class="vi-slt-instSale-us">
<i></i><b>Have one to sell?</b>
<span>
<a _sp="p2047675.l2567" class="vi-slt-instSale-lnk " rel="nofollow" href="http://cgi5.ebay.com/ws/eBayISAPI.dll?SellLikeItem&_trksid=p2047675.l2567&rt=nc&item=230930100491">
Sell it yourself</a>
</span>
</div>
</td>
</tr>
</tbody></table>
</center>
</div>
</div>
<div>
<h1 class="it-ttl" itemprop="name" id="itemTitle">Skagen 233XLTTM Men's Denmark Grey Dial Titanium Mesh Bracelet Quartz Date Watch</h1>
<div></div>
<div class="sig-ht20" style="display:inline">
<span id="ebay-scjs-div"><span><div id="ebayssWid"><div><div id="likeSelector" class="flyOvr"><div id="likeFlyOver" class="toolTipHome" style="display: none;"><div><div class="lVert hvrSprt"></div><div class="lHori hvrSprt"></div><div class="downArrow hvrSprt"></div><div class="rHori hvrSprt"></div><div class="rVert hvrSprt"></div><div class="dwnHori hvrSprt"></div><div class="flyCntent"><span class="fOverText"><div class="ssBold">Add to your <a href="http://www.ebay.com/soc/favorites?fav=like"><u>eBay favorites</u></a></div><div class="fbNoBorder" style="" onclick="ebayss.checkPreference(this, 'like')"><input type="checkbox" name="postToFb" onclick="ebayss.checkPreference(this, 'like')"><span class="postToFbNoBorder">Share on Facebook</span><span class="shareSprt shareSprite_fb"></span></div></span></div></div></div><span id="ebay_like" class="ebayLikeNoCount ebayActnNoCount"></span><span id="likeCountS" class="cntStrt" style="display:none">0</span><span id="likeCountE" class="cntEnd" style="display:none"></span></div></div><div><div id="wantSelector" class="flyOvr"><div id="wantFlyOver" class="toolTipHome" style="display: none;"><div><div class="lVert hvrSprt"></div><div class="lHori hvrSprt"></div><div class="downArrow hvrSprt"></div><div class="rHori hvrSprt"></div><div class="rVert hvrSprt"></div><div class="dwnHori hvrSprt"></div><div class="flyCntent"><span class="fOverText"><div class="ssBold">Add to your <a href="http://www.ebay.com/soc/favorites?fav=want"><u>eBay favorites</u></a></div><div class="fbNoBorder" style="" onclick="ebayss.checkPreference(this, 'want')"><input type="checkbox" name="postToFb" onclick="ebayss.checkPreference(this, 'want')"><span class="postToFbNoBorder">Share on Facebook</span><span class="shareSprt shareSprite_fb"></span></div></span></div></div></div><span id="ebay_want" class="ebayWantNoCount ebayActnNoCount"></span><span id="wantCountS" class="cntStrt" style="display:none">0</span><span id="wantCountE" class="cntEnd" style="display:none"></span></div></div><div><div id="ownSelector" class="flyOvr"><div id="ownFlyOver" class="toolTipHome" style="display: none;"><div><div class="lVert hvrSprt"></div><div class="lHori hvrSprt"></div><div class="downArrow hvrSprt"></div><div class="rHori hvrSprt"></div><div class="rVert hvrSprt"></div><div class="dwnHori hvrSprt"></div><div class="flyCntent"><span class="fOverText"><div class="ssBold">Add to your <a href="http://www.ebay.com/soc/favorites?fav=own"><u>eBay favorites</u></a></div><div class="fbNoBorder" style="" onclick="ebayss.checkPreference(this, 'own')"><input type="checkbox" name="postToFb" onclick="ebayss.checkPreference(this, 'own')"><span class="postToFbNoBorder">Share on Facebook</span><span class="shareSprt shareSprite_fb"></span></div></span></div></div></div><span id="ebay_own" class="ebayOwnNoCount ebayActnNoCount"></span><span id="ownCountS" class="cntStrt" style="display:none">0</span><span id="ownCountE" class="cntEnd" style="display:none"></span></div></div></div></span></span>
</div>
<span class="watchPipe" style="position:relative;top:5px;visibility:hidden">|</span>
<!-- DO NOT change linkToTagId="rwid" as the catalog response has this ID set -->
</div>
<div class="it-rlBr it-rlBr500 "></div>
<div id="RightSummaryPanel" class="rsp-c">
<div class="share si-cnt no-flt " style="">
<table align="right" class=" ">
<tbody><tr>
<td>
<div style="float:right;width:100px;">
<div id="ebay-scShare-div" data-imageurl="http://i.ebayimg.com/t/Skagen-233XLTTM-Mens-Denmark-Grey-Dial-Titanium-Mesh-Bracelet-Quartz-Date-Watch-/00/s/MTAwMFgxMDAw/z/YVwAAOxyrUVRmeie/$T2eC16h,!zoE9s5ngyQuBRmeidnrUg~~60_12.JPG" data-share=" " data-url="http://www.ebay.com/itm/Skagen-233XLTTM-Mens-Denmark-Grey-Dial-Titanium-Mesh-Bracelet-Quartz-Date-Watch-/230930100491" data-language="en_US" data-spid="2047675" data-destinations="email,facebook,twitter,pinterest" class=""><div id="ebayShare_1"><div class="scShareText"> </div><a id="scShare_emailId1" href="javascript:void(0);" etafshareurl="http://www.ebay.com/itm/Skagen-233XLTTM-Mens-Denmark-Grey-Dial-Titanium-Mesh-Bracelet-Quartz-Date-Watch-/230930100491" etafsharetitle="Skagen 233XLTTM Men%27s Denmark Grey Dial Titanium Mesh Bracelet Quartz Date Watch" onclick="ebayShare.launchEtaf(ebayShare.etafScript,this)" title="Email to friends" class="scShareIcon scShare_email" data-destination="email"> </a><a href="http://www.ebay.com/soc/share?swd=2&du=http://www.ebay.com/soc/itm/230930100491&rt=nc&t=Skagen%20233XLTTM%20Men%2527s%20Denmark%20Grey%20Dial%20Titanium%20Mesh%20Bracelet%20Quartz%20Date%20Watch&spid=2047675&shorten=0&itm=230930100491" title="Share on Facebook - opens in a new window or tab" class="scShareIcon scShare_facebook" data-destination="facebook" target="_blank"> </a><a href="http://www.ebay.com/soc/share?swd=3&du=http%3A%2F%2Fwww.ebay.com%2Fitm%2FSkagen-233XLTTM-Mens-Denmark-Grey-Dial-Titanium-Mesh-Bracelet-Quartz-Date-Watch-%2F230930100491&rt=nc&t=Look%20what%20I%20found%20on%20%40eBay!&spid=2047675&lang=en&itm=230930100491" title="Share on Twitter - opens in a new window or tab" class="scShareIcon scShare_twitter" data-destination="twitter" target="_blank"> </a><a href="http://www.ebay.com/soc/share?swd=11&du=http%3A%2F%2Fwww.ebay.com%2Fitm%2FSkagen-233XLTTM-Mens-Denmark-Grey-Dial-Titanium-Mesh-Bracelet-Quartz-Date-Watch-%2F230930100491&rt=nc&t=undefined&spid=2047675&media=http://i.ebayimg.com/t/Skagen-233XLTTM-Mens-Denmark-Grey-Dial-Titanium-Mesh-Bracelet-Quartz-Date-Watch-/00/s/MTAwMFgxMDAw/z/YVwAAOxyrUVRmeie/$T2eC16h,!zoE9s5ngyQuBRmeidnrUg~~60_12.JPG&itm=230930100491" title="Share on Pinterest - opens in a new window or tab" class="scShareIcon scShare_pinterest" data-destination="pinterest" target="_blank"> </a></div></div>
</div>
</td>
<td>
<div class="watchLnk">
<span id="linkTopAct" class="watchlinkSpan" style="display: ">
<span class="watchPipe">|</span>
<span>
<a href="http://cgi1.ebay.com/ws/eBayISAPI.dll?MakeTrack&_trksid=p2047675.l1359&rt=nc&item=230930100491&pt=Wristwatches&tagId=-99&sourcePage=4340&ssPageName=VIP:watchlink:top:en&wt=09d57c242e078e50e6ae55d56ba925e1&etn=Watch%20list" class=" " id="watchLink" title="" rel="nofollow">Add to Watch list</a>
</span>
</span>
</div>
</td>
</tr>
</tbody></table>
</div>
<div class="si-cnt si-trs-top">
<div class="si-trs-btm">
<div class="si-inner">
<div class="si-trs-img">
<span id="topratedplusimage" class="si-trs-lrg-plus"></span>
</div>
<div class="oly_upnl" id="overlayId"><div>
<span class="topratedplustitle">
Top Rated Plus</span>
<span class="topratedpluscontent">
<ul type="square" class="topratedplusbullets">
<li class="topratedplusbullets1">Sellers with highest buyer ratings</li>
<li class="topratedplusbullets1">Returns, money back</li>
<li class="topratedplusbullets1">Ships in a business day with tracking</li>
</ul>
<a class="topratedpluslearnmore" href="http://pages.ebay.com/topratedplus/index.html" target="_blank">Learn more</a>
</span>
</div>
</div>
<div class="si-content">
<h2 class="si-ttl si-trs-ttl">
Seller information</h2>
<div class="bdg-78">
<div class="mbg">
<a href="http://myworld.ebay.com/watchstore2?_trksid=p2047675.l2559" title="watchstore2"> <span class="mbg-nw">watchstore2</span></a>
<span class="mbg-l">
(<a href="http://feedback.ebay.com/ws/eBayISAPI.dll?ViewFeedback&userid=watchstore2&iid=230930100491&ssPageName=VIP:feedback&ftab=FeedbackAsSeller&rt=nc&_trksid=p2047675.l2560" title="Green star icon for feedback score in between 5,000 to 9,999">7862</a>
<img alt="Green star icon for feedback score in between 5,000 to 9,999" title="Green star icon for feedback score in between 5,000 to 9,999" src="./5-select_files/iconGreenStar_25x25.gif" "="">)</span>
</div>
<div id="si-fb">99.7% Positive feedback</div>
</div>
<div class="si-rlDot"></div>
<div class="si-bdg si-pd-eu">
<div class="si-pd-a">
<a href="http://my.ebay.com/ws/eBayISAPI.dll?AcceptSavedSeller&mode=0&preference=0&sellerid=watchstore2&rt=nc&ru=http%3A%2F%2Fcgi.ebay.com%2Fws%2FeBayISAPI.dll%3FViewItemNext%26item%3D230930100491&ssPageName=STRK:MEFS:ADDVI&_trksid=p2047675.l2561" rel="nofollow">Save this seller</a>
</div>
<div class="si-pd-a">
<a href="http://www.ebay.com/sch/watchstore2/m.html?item=230930100491&pt=Wristwatches&hash=item35c481b10b&rt=nc&_trksid=p2047675.l2562" id="vi-see-allitms">See other items</a>
</div>
</div>
<div id="storeSeller" style="display:inline;"><script type="text/javascript">$df.set('ph_storeSeller','storeSeller')</script><div class="si-ss-eu">
<div class="u-flL si-ss-lbl " id="" style="">
Visit store:</div><a href="http://stores.ebay.com/Watch-Superstore?_trksid=p2047675.l2563" alt="Watch Superstore" title="Watch Superstore"><img src="./5-select_files/s.gif" alt="Ebay Stores" height="1" width="1" class="si-ss-spr"> Watch Superstore</a>
</div>
</div></div>
</div>
</div>
</div>
<div id="rtm_html_1527" style="width: 300px; height: 265px; overflow: hidden; display: block;"><table border="0" cellpadding="0" cellspacing="0" width="100%"><tbody><tr><td><iframe id="rtm_iframe_1527" name="rtm_iframe_1527" title="ADVERTISEMENT" src="./5-select_files/_default;cat=31387;tcat=281;cat=281;cat=14324;items=;seg=AdvGLP;seg=tmon;seg=btyp;seg=cslock;seg=mktgs;sz=300x250;u=i_7850197639655822063-m_237697;;dcopt=ist;tile=1;um=0;us=11;eb_trk=237697;pr=22;xp=24;np=22;fbi=220;sbi=18991;fbo=281;sbo=10968;fse=;s.html" width="300" height="250" marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no"></iframe></td></tr><tr><td align="right"><span><a href="javascript:void(0);" style="font-family:Arial;font-size:11px;Color:#999;text-decoration:none;vertical-align:top;" onclick="return window.open('http://cgi6.ebay.com/ws/eBayISAPI.dll?AdPreferenceInterstitialPopup&partner=0', 'WhatsThisDcAdPopUp', 'width=600,height=560,toolbar=0,location=0,status=0,scrollbars=1,resizable=0,menubar=0');"><b style="font-weight:normal;vertical-align:top">AdChoice</b><img height="1" width="2" border="0" src="./5-select_files/s(1).gif" alt=""><img height="12" width="12" border="0" src="./5-select_files/imgPower_i_12x12.gif" alt=""><b class="g-hdn"> - opens in a new window or tab</b></a></span></td></tr></tbody></table></div>
</div>
<div id="LeftSummaryPanel" class="lsp-c lsp-cRight lsp-cL500 ">
<div class="is " style="overflow:hidden;">
<form action="" method="post" name="viactiondetails">
<div class="nonActPanel">
<div>
<div class="u-flL lable">Item condition:</div>
<div class="u-flL condText">New with tags</div>
</div>
<div class="u-cb spcr"></div>
<div>
<div class="u-flL lable quantity"><label for="qtyTextBox">Quantity:</label></div>
<div>
<div class="u-flL qtyCntVal">
<div id="w1-16-_errIcon" class="errorIcon" style="display: none;"><!-- err_qty_icon -->
<img src="./5-select_files/s.gif" class="errorimg" alt="Error icon">
</div>
<input class="qtyInput" type="text" autocomplete="off" size="4" value="1" name="quantity" id="qtyTextBox" isvalid="true">
<span class="qtyTxt">
<span id="qtySubTxt">
<span class="">
More than 10 available</span>
</span>
<span class="vi-qty-vert-algn"> / </span>
<span class="vi-qtyS vi-qty-vert-algn">
<a href="http://offer.ebay.com/ws/eBayISAPI.dll?ViewBidsLogin&_trksid=p2047675.l2564&rt=nc&item=230930100491">27 sold</a></span>
</span>
<div id="w1-16-_errMsg" class="u-cb err" style="display: none;"> </div>
<!-- generating Id's array -->
<div class="u-dspn">
<b id="w1-16_qtyErr_0">Please enter a quantity of $qty_dummy$ or less</b>
<b id="w1-16_qtyErr_1">Please enter a quantity of 1</b>
<b id="w1-16_qtyErr_2">Purchases are limited to $qty_dummy$ per buyer</b>
<b id="w1-16_qtyErr_3">Please enter quantity of 1 or more</b>
<b id="w1-16_qtyErr_4">Please enter a lower number</b>
<b id="w1-16_qtyErr_5">Choose quantity that is less than $qty_dummy1$ or equal to $qty_dummy$</b>
<b id="w1-16_qtyErr_6">You can only choose quantity that is equal to $qty_dummy$</b>
</div>
</div>
</div>
<div class="u-cb spcr"></div>
</div>
</div>
<div class="actPanel">
<!-- //TODO : remove hardcoded ID for Shipping cost -->
<div class="u-cb spcr vi-VR-prcTmt-hide"></div>
<div class="u-cb vi-VR-prcTmt-hide">
<div class="u-flL lable" id="orgPrc-lbl" style="">
List price:</div><span id="orgPrc" class="notranslate ms-orp">
$135.00</span>
<a id="e1"><img class="ms-hlp" src="./5-select_files/iconBubbleHelp.gif" alt="What does this price mean?"></a>
<div class="oly_upnl" id="w1-18-overlay"><div class="ms-olp">
<div class="ms-olp-ttl">What does this price mean?</div>
<div class="ms-olp-cnt">This is the price (excluding shipping and handling fees) a seller has provided at which the same item, or one that is nearly identical to it, is being offered for sale or has been offered for sale in the recent past. The price may be the seller's own price elsewhere or another seller's price. The "off" amount and percentage simply signifies the calculated difference between the seller-provided price for the item elsewhere and the seller's price on eBay. If you have any questions related to the pricing and/or discount offered in a particular listing, please contact the seller for that listing.</div>
</div>
</div>
</div>
<div class="u-cb spcr vi-VR-prcTmt-hide"></div>
<div class="u-cb ms-as-rw vi-VR-prcTmt-hide">
<div class="u-flL lable" id="youSaveSTP-lbl" style="">
You save:</div><span id="youSaveSTP" class="notranslate ms-as">
$62.31 (46%)</span>
</div>
<div class="u-cb spcr"></div>
<div class="u-cb">
<div class="u-flL lable binLable" id="prcIsum-lbl">Now:</div>
<div id="vi-mskumap-none" style="" class="u-flL w29 vi-price" itemprop="offers" itemscope="itemscope" itemtype="http://schema.org/Offer">
<span class="notranslate" id="prcIsum" itemprop="price" style="">US $72.69</span>
<span itemprop="availability" content="http://schema.org/OnlineOnly"></span>
<span itemprop="priceCurrency" content="USD"></span>
<!--Added for VAT message - DE site. Show VAT included msg just below the price. Converted price message should come after this message.-->
<!-- Vat Excluded message -->
</div>
<div class="u-flL">
<a _sp="p2047675.l1356" id="binBtn_btn" style="" class="vib bl " title="" href="http://offer.ebay.com/ws/eBayISAPI.dll?BinConfirm&rev=101&item=230930100491&pt=Wristwatches&fromPage=2047675&fb=1" vib="vib">
Buy It Now</a>
</div>
</div>
<div class="u-cb spcr"></div>
<div class="u-cb">
<div class="u-flL lable"> </div>
<div class="u-flL w29"> </div>
<span>
<a _sp="p2047675.l1473" id="isCartBtn_btn" style="" class="vib bl " title="" href="http://payments.ebay.com/ws/eBayISAPI.dll?ShopCartProcessor&atc=true&item=230930100491&ssPageName=CART:ATC" vib="vib">
Add to cart <span class="atc-icon atc-icon-ie"></span></a>
</span>
</div>
<div class="u-cb spcr"></div>
</div>
<wrty:warranty model="com.ebay.raptor.viewitem.pres.model.WarrantyModel@36eb36eb" ismodel="" cssslot="page-css" jsslot="body-js" configmodel="">
<div class="watchListCmp">
<div class="u-flL lable"> </div>
<div class="u-flL w29"> </div>
<div class="u-flL">
<div class="drpdwnCmp">
<span id="atl_btn" class="drpdwnBtn vi-VR-lst-XL">
<a id="atl_btn_lnk" i="-99" n="Watch list" href="http://cgi1.ebay.com/ws/eBayISAPI.dll?MakeTrack&_trksid=p2047675.l1360&rt=nc&item=230930100491&pt=Wristwatches&sourcePage=4340&ssPageName=VIP:watchlink:top:en&SubmitAction.AddToListVI=x&wt=09d57c242e078e50e6ae55d56ba925e1">Add to Watch list</a>
</span>
<span id="atl_arr" class="drpdwnIn btn-split-lg vi-VR-lstIcon-XL">
<a href="javascript:;" title="See all lists" class=""></a>
</span>
</div><div id="addToListDropdown"><script type="text/javascript">$df.set('ph_addToListDropdown','addToListDropdown')</script><div id="atl_drpdwnLayerId" class="drpdwnLayer " style="display:none; min-width:150px;">
<div id="atl_drpdwnListId">
<ul class="addToList">
<li>
<a i="-99" n="Watch list" id="atl_-99" href="javascript:;">Add to Watch list</a>
</li>
<li>
<a t="wish" i="31840527016" n="Wish List" id="atl_31840527016" href="javascript:;">Add to Wish list</a>
</li>
</ul>
</div>
<div class="drpdwnBrk"></div>
<div id="atl_atnId" class="vi_list_atn">
<a n="addtolist" id="atl_addtolist" href="javascript:;">Add to a new list</a>
</div>
</div>
<!-- adding to new list overlay -->
<div class="oly_upnl" id="atl_addnewOlyId"><div id="atl_new_olp" class="atl-new-olp">
<div style="color: #666666; font-size: medium; font-weight: bold; padding-bottom: 10px;">
<label for="atl_atn_input_Id">Add to a new list</label>
</div>
<div id="atl_atn_div_err_Id" class="atl-new-err-msg" style="display: none;">
<b class="atl-new-ei"></b>
<b id="atl_atn_def_err_Id" class="atl-new-et" style="display:none;">Please enter a valid name</b>
<span id="atl_atn_resp_err_Id" style="width: 90%;display:none;"></span>
</div>
<input type="text" size="40" name="atl_atn_input_Id" id="atl_atn_input_Id" value="Type a new list name here">
<div class="atl-new-it">(Separate multiple list names with a comma.)</div>
<div id="atl_atn_btm_err_Id" class="al-be" style="display: none;"></div>
<div style="padding-top: 10px; text-align: right;">
<input class="" type="button" value="Add" id="atl_atn_btn_Id" name="atl_new_btn">
<span style="padding-left: 10px;"><a id="atl_atn_cancel_btn_Id" href="javascript:;">Cancel</a></span>
</div>
</div>
</div>
</div></div>
<div class="u-cb spcr"></div>
<div id="atl_status_msg" class="atlstatusMsg"><div class="atlStatusMasgSpr"> </div><span id="atl_status_msg_content"></span></div>
</div><div class="u-cb spcr"></div><div id="incentiveDiv" class="incentiveHide" style="display: block;">
<div class="incContDiv">
<div id="rewardsDiv">
<div class="bD">
<table>
<tbody>
<tr>
<td class="vi-VR-firstcol">
<img width="35" height="13" alt="eBay bucks" src="./5-select_files/imgBucks_35x13.gif">
</td>
<td class="vi-VR-scndcol" style="">
Join <b><a href="http://my.ebay.com/ws/eBayISAPI.dll?RewardsIntEnroll&CTASignup=false&ExtLanding=false&ssPageName=VI:joinrewards" target="_blank">eBay Bucks</a></b> and earn <b>2%</b> back on this item.<span class="sC">
<a href="http://pages.ebay.com/rewards/terms.html?ssPageName=STRK:VI:LNLK:TCS" target="_blank">See conditions<span class="g-hdn" style="font-size: 0;height: 0;line-height: 0;outline: medium none;overflow: hidden;position: absolute;width: 0;z-index: -1;">for eBay Bucks - opens in a new window or tab</span></a></span>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div id="bmlDiv"><div><div><table><tbody><tr><td class="bml_logo"><img src="./5-select_files/logoBML_77x18.gif" height="18" width="77" alt="BillMeLater"></td><td style="padding-left:5px;padding-top:6px;" class="bmloff_cont"><span style="font-family:arial;font-size:13px;color:#333333;" class="offer-bmlcnt"><span style=" font-family:Arial, Helvetica, sans-serif; font-size:13px; color:#333333"> <strong>New customers get $10 back on 1st purchase</strong></span><br><span style=" font-family:Arial, Helvetica, sans-serif; font-size:13px; color:#333333">Subject to credit approval.</span></span><span style="padding-left:5px"><a href="https://apply.billmelater.com/apply?guid=1SJ8TEIO&assetId=NBRVI0513" style="font-size:10px; font-family:verdana; color:#0000CC;" target="_blank">See terms</a></span></td></tr></tbody></table></div></div></div>
</div>
</div>
<div class="oly_upnl" id="vi-inc-cpn-msg"><div id="vi-inc-coupn-msg"></div>
</div>
<div id="shippingSummary"><script type="text/javascript">$df.set('ph_shippingSummary','shippingSummary')</script><div class="u-cb spcr"></div>
<div id="sh-gspLogoWrapper" style="display:none;">
<div class="u-cb spcr"></div>
<div class="sh-gspShadow">
<div class="sh-gspLeftShadow"></div>
<div class="sh-gspRightShadow"></div>
</div>
<div class="u-flL lable">
<div class="sh-gspLogo"></div>
</div>
<div class="u-flL sh-col">
<div class="sh-gspFirstLine">No additional import charges at delivery!</div>
<div class="sh-gspSecondLine">
This item will be shipped through the Global Shipping Program and includes international tracking. <a href="http://pages.ebay.com/help/buy/shipping-globally.html" target="_blank">Learn more</a></div>
<div class="sh-gspDashedBorder"></div>
</div>
</div>
<div>
<div class="u-flL lable">Shipping:</div>
<div class="u-flL sh-col">
<span id="shSummary">
<span id="fshippingCost" class="notranslate sh-fr-cst">
<span>FREE</span>
</span>
<span id="fShippingSvc">
Standard Shipping<!-- GSP -->
</span>
<span> | </span>
<span>
<a id="e5" href="http://www.ebay.com/itm/Skagen-233XLTTM-Mens-Denmark-Grey-Dial-Titanium-Mesh-Bracelet-Quartz-Date-Watch-/230930100491?pt=Wristwatches&hash=item35c481b10b#shId" class="si-pd sh-nwr"> See details </a>
</span>
</span>
<!-- Build Estimated delivery and CBT message -->
</div>
<div class="clear"></div>
</div>
</div><div id="itemLocation"><script type="text/javascript">$df.set('ph_itemLocation','itemLocation')</script><div class="lable u-flL"> </div>
<div class="u-flL iti-w75">
<div class="iti-eu-txt iti-spacing">
<div class="iti-eu-label u-flL" id="" style="">
Item location:</div><div class="iti-eu-bld-gry">United States</div>
<div class="clear"></div>
</div>
</div>
<div class="u-cb"></div>
</div><div class="u-cb"></div>
<div id="shipsTo"><script type="text/javascript">$df.set('ph_shipsTo','shipsTo')</script><div class="lable u-flL"> </div>
<div class="u-flL iti-w75">
<div class="iti-eu-txt iti-spacing">
<div class="iti-eu-label u-flL">Ships to: </div>
<div class="iti-eu-bld-gry vi-shp-pdg-rt">
Americas, Europe, Asia, Australia<span class="sh-nwr" style="font-weight: normal;">
<a id="e4" href="http://www.ebay.com/itm/Skagen-233XLTTM-Mens-Denmark-Grey-Dial-Titanium-Mesh-Bracelet-Quartz-Date-Watch-/230930100491?pt=Wristwatches&hash=item35c481b10b#shId">See exclusions</a>
</span>
</div>
</div>
</div>
</div><div id="deliverySummary"><script type="text/javascript">$df.set('ph_deliverySummary','deliverySummary')</script><div class="u-cb spcr"></div>
<div id="impchSummary" style="display: none;">
<div class="u-flL lable">Import charges:</div>
<div class="u-flL sh-col">
<div>
<span id="impch_show" style="display: none;">
<span id="impchCost" class="sh-impchCost"></span>
(amount confirmed at checkout) </span>
<span id="impch_xo" style="">To be provided at checkout </span>
<span class="sh-bubble">
<a id="imprthlp" class="sh-qmark" href="javascript:;"> </a>
</span>
<div class="oly_upnl" id="imprtoly"><div class="vi-shp-shpolay">
This amount includes applicable customs duties, taxes, brokerage and other fees. This amount is subject to change until you make payment. For additional information, see the Global Shipping Program <a href="http://pages.ebay.com/shipping/globalshipping/buyer-tnc.html" target="_blank">terms and conditions</a></div>
</div>
</div>
</div>
<div class="u-cb spcr"></div>
</div><div class="u-flL lable">Delivery:</div>
<div class="u-flL sh-col">
<span id="delSummary">
<!-- Fi rst shipping service's cost -->
<!-- PC 5555 cases -->
<!--FnF and eBay FnF -->
<!-- fnf changes -->
<div class="sh-grn-brd">
<div style="float:left;">
<div class="vi-sh-fnfTruckIcon"></div>
</div>
<span class="sh-fnf-pos">
On or before <strong class="sh_med_font">Wed. May. 29</strong> to 78729<span>
<br>
Estimated by eBay <strong class="sh_gr_bld">FAST 'N FREE</strong> </span>
</span>
<span class="sh-bubble-ex-spc">
<a id="hldhlp" class="sh-qmark" href="javascript:;"> </a>
</span>
<div class="oly_upnl" id="w1-26-overlay"><div class="vi-shp-shpolay">
Items showing "eBay <strong class="sh_gr_bld">FAST 'N FREE</strong>" have an estimated delivery time of 4 business days or less. eBay FAST 'N FREE is our proprietary method of estimating delivery times based on the buyer's proximity to the item location, the shipping service selected, the seller's shipping history, and other factors. Delivery times may vary, especially during peak periods. </div>
</div>
</div></span>
</div>
</div><div class="u-cb spcr"></div>
<div class="u-flL lable" id="" style="">
Payments:</div><div class="u-flL rpColWid">
<div id="payDet1">
<img class="pd-img" src="./5-select_files/logoPayPal_51x14.gif" alt="PayPal" border="0">
<span class="hideGspPymt">
</span>
<span> | <a rel="nofollow"></a><a id="e2" href="http://www.ebay.com/itm/Skagen-233XLTTM-Mens-Denmark-Grey-Dial-Titanium-Mesh-Bracelet-Quartz-Date-Watch-/230930100491?pt=Wristwatches&hash=item35c481b10b#payId" class="pd-lnk ">See <b class="u-dspn">payment</b> details</a></span>
</div>
<div class="pd-showGspLegal">
International shipping and import charges paid to Pitney Bowes Inc. <a style="white-space:nowrap;" href="http://pages.ebay.com/shipping/globalshipping/buyer-tnc.html#paymentsplit" target="_blank">Learn More</a></div>
<div id="rtm_html_699" style="height: 0px; display: none;"></div>
</div><div class="u-cb spcr"></div>
<div>
<div class="u-flL lable">Returns:</div>
<div class="u-flL rpColWid">
<table width="100%">
<tbody><tr>
<td class="rpWrapCol">
<span style="">
30 days money back, buyer pays return shipping
| <a rel="nofollow"></a><a href="http://www.ebay.com/itm/Skagen-233XLTTM-Mens-Denmark-Grey-Dial-Titanium-Mesh-Bracelet-Quartz-Date-Watch-/230930100491?pt=Wristwatches&hash=item35c481b10b#rpdId" class="si-pd" id="e3">Read details</a>
</span>
</td>
</tr>
</tbody></table>
</div>
</div>
<div class="u-cb spcr"></div>
<div style="overflow:hidden">
<table width="100%" class="u-cb spcr" style="width: 100%; overflow: hidden;">
<tbody><tr style="width: 100%; overflow: hidden;"><td style="width: 100%; overflow: hidden;">
<div class="vi-bg-cpn vi-bg-cm" id="ebpHdr" style="width: 100%; overflow: hidden;">
<div class="vi-bg-oh vi-bg-cpn" style="width: 100%; overflow: hidden;">
<div class="vi-bg-crp vi-bg-sh vi-bg-logo"></div>
<div id="ebpVarWidth" class="vi-bg-bgn vi-bg-cpn vi-bg-oh vi-bg-l65 " style="z-index: 0; left: 65px; width: 100%;"></div>
</div>
<div class="vi-bg-il vi-bg-bdrh vi-bg-crp vi-ebp-raptr">
<div class="vi-bg-txth"></div>
<div class="vi-bg-stxt"></div>
<span class="vi-g-btn">
<a href="http://pages.ebay.com/coverage/index.html" target="_blank">Learn more<b class="g-hdn">about eBay Buyer Protection - opens in a new window or tab</b></a>
</span>
</div>
</div>
</td></tr>
</tbody></table>
</div>
</wrty:warranty></form></div>
<!-- The attribute(value) of UseJsTag is null. --></div>
</div>
<div style="clear:both"></div>
</div>
</div><div id="vi_zoomEnl_plc_hldr"><div id="zoom_img_mask" class="zoom_mask" style="top: 133px; left: 533px; height: 715px; width: 400px;"></div><div id="zoom_main_cntr" class="zoom_cntr" style="top: 133px; left: 533px; height: 715px; width: 400px;">
<div id="zoom_main_img_cntr" class="zoom_img_cntr">
<img id="zoom_main_img" style="display: none;" alt="" src="./5-select_files/spacer.gif">
</div>
</div></div>
<div id="promotionsCntr"></div>
<div id="BottomPanelDF"><script type="text/javascript">$df.set('ph_BottomPanelDF','BottomPanelDF')</script><div id="BottomPanel">
<!-- <h2> Bottom panel for Description </h2> -->
<!-- Placement 100005 -->
<div style="height:20px; width:100%; clear:both; "></div> <!-- TODO:remove this line -->
<div style="clear:both;padding-top:10px"></div>
<div id="merch_html_100005"><link rel="stylesheet" href="http://rtm.ebaystatic.com/1000/Rtm/Css/VR_SmallHeightItemTemplate_V8.css">
<div class="nume_vshi" id="nume_html_100005">
<div class="nume_header">
<h3 class="nume_title">People who viewed this item also viewed
<span class="nume_p_info">
<a class="nm_qlink" onclick=" var numepopup= document.getElementById('numeinfo_'+100005);numepopup.style.display='block';">
<img class="nm_qmark" width="1" height="1" title="help icon" alt="help icon explaining recommendations - opens a layer" src="./5-select_files/s(2).gif">
</a>
<div class="numeinfo" id="numeinfo_100005">
<div class="numeppcontainer">
<div class="nume_pcnt">
<div>
<a onclick="var numepopup= document.getElementById('numeinfo_'+100005);numepopup.style.display='none';" class="nume_cls" title="close"></a>
<div>
These alternative suggestions have been selected for you by eBay’s recommendation engine.<br><br>Sellers: <a class="nm_trs" target="_blank" href="http://pages.ebay.com/help/sell/cp-overview.html?_trksid=p2047675.m2369.c100005">Learn more</a> about how to get the most benefit from cross-merchandising. <a class="nm_trs" target="_blank" href="http://pages.ebay.com/help/sell/contextual/promoting.html">More help</a>
</div>
</div>
</div>
</div>
<div class="nume_btpopup"></div>
</div>
</span>
</h3>
<span class="nume_fback">
<a style="color:#444444;font:10px verdana;text-decoration:none;" target="_blank" href="http://qu.ebay.com/survey?srvName=merchandising+%28merch1%29&variant_id=SIC.FIT&extparam=pageid%3d2047675%26plmtid%3d100005">Feedback on our suggestions</a>
</span>
</div>
<div class="nume_content">
<input type="hidden" id="itemCount100005" value="5">
<div class="viewport">
<div id="fs-itemList-100005">
<table class="toptable" id="table_100005_1">
<tbody><tr>
<td align="left" value="http://thumbs3.ebaystatic.com/m/maQ9mweYkwR6Q_Samc9vPhA/96.jpg">
<div class="nume_item " value="http://thumbs3.ebaystatic.com/m/maQ9mweYkwR6Q_Samc9vPhA/96.jpg">
<div class="nume_img">
<a class="nume_imgdesc" onclick="window.open(this.href,'_self'); return false;" href="http://www.ebay.com/itm/Skagen-Denmark-Mens-Blue-Dial-Slimline-Black-IP-Titanium-Mesh-Bracelet-Watch-NEW/181142124222?rt=nc&_trksid=p2047675.m1851&_trkparms=aid%3D222002%26algo%3DSIC.FIT%26ao%3D1%26asc%3D261%26meid%3D7850197367596417192%26pid%3D100005%26prg%3D1088%26rk%3D1%26sd%3D230930100491%26" title="Skagen Denmark Mens Blue Dial Slimline Black IP Titanium Mesh Bracelet Watch NEW">
<span class="nume_rvi nume_image nume_image96">
<i></i>
<img src="./5-select_files/96.jpg" alt="">
</span>
</a>
</div>
<div class="nume_itmdesc">
<a class="nume_imgdesc nume_imgdesc140" onclick="window.open(this.href,'_self'); return false;" href="http://www.ebay.com/itm/Skagen-Denmark-Mens-Blue-Dial-Slimline-Black-IP-Titanium-Mesh-Bracelet-Watch-NEW/181142124222?rt=nc&_trksid=p2047675.m1851&_trkparms=aid%3D222002%26algo%3DSIC.FIT%26ao%3D1%26asc%3D261%26meid%3D7850197367596417192%26pid%3D100005%26prg%3D1088%26rk%3D1%26sd%3D230930100491%26" title="Skagen Denmark Mens Blue Dial Slimline Black IP Titanium Mesh Bracelet Watch NEW">
<div class="nume_item_title">
Skagen Denmark Mens Blue Dial Slimline Bla...
</div>
</a>
<div class="nume_price_trs">
<div class="nume_price">
$99.99
<span class="nume_trs1">
<img class="trpicon" src="./5-select_files/s(2).gif" alt="Get fast shipping and excellent service when you buy from eBay Top-rated sellers">
</span>
</div>
</div>
<div class="nume_fshipping">
Free shipping
</div>
</div>
</div>
</td>
<td align="left" value="http://thumbs3.ebaystatic.com/m/mxhm9MlKJJXJGOaBo0eidhg/96.jpg">
<div class="nume_item " value="http://thumbs3.ebaystatic.com/m/mxhm9MlKJJXJGOaBo0eidhg/96.jpg">
<div class="nume_img">
<a class="nume_imgdesc" onclick="window.open(this.href,'_self'); return false;" href="http://www.ebay.com/itm/Skagen-Mesh-Stainless-Steel-Ultra-Slim-Mens-Dress-Watch-Sharp-Black-Dial-Watch/300909467770?rt=nc&_trksid=p2047675.m1851&_trkparms=aid%3D222002%26algo%3DSIC.FIT%26ao%3D1%26asc%3D261%26meid%3D7850197367596417192%26pid%3D100005%26prg%3D1088%26rk%3D2%26sd%3D230930100491%26" title="Skagen Mesh Stainless Steel Ultra Slim Mens Dress Watch Sharp Black Dial Watch">
<span class="nume_rvi nume_image nume_image96">
<i></i>
<img src="./5-select_files/96(1).jpg" alt="">
</span>
</a>
</div>
<div class="nume_itmdesc">
<a class="nume_imgdesc nume_imgdesc140" onclick="window.open(this.href,'_self'); return false;" href="http://www.ebay.com/itm/Skagen-Mesh-Stainless-Steel-Ultra-Slim-Mens-Dress-Watch-Sharp-Black-Dial-Watch/300909467770?rt=nc&_trksid=p2047675.m1851&_trkparms=aid%3D222002%26algo%3DSIC.FIT%26ao%3D1%26asc%3D261%26meid%3D7850197367596417192%26pid%3D100005%26prg%3D1088%26rk%3D2%26sd%3D230930100491%26" title="Skagen Mesh Stainless Steel Ultra Slim Mens Dress Watch Sharp Black Dial Watch">
<div class="nume_item_title">
Skagen Mesh Stainless Steel Ultra Slim Mens...
</div>
</a>
<div class="nume_price_trs">
<div class="nume_price">
$49.99
<span class="nume_trs1">
<img class="trpicon" src="./5-select_files/s(2).gif" alt="Get fast shipping and excellent service when you buy from eBay Top-rated sellers">
</span>
</div>
</div>
<div class="nume_fshipping">
Free shipping
</div>
</div>
</div>
</td>
<td align="left" value="http://thumbs1.ebaystatic.com/m/mLVpJHXbq6ZvL8NixjnyHcw/96.jpg">
<div class="nume_item " value="http://thumbs1.ebaystatic.com/m/mLVpJHXbq6ZvL8NixjnyHcw/96.jpg">
<div class="nume_img">
<a class="nume_imgdesc" onclick="window.open(this.href,'_self'); return false;" href="http://www.ebay.com/itm/Skagen-Mens-Titanium-Watch-233XLTTM/190843768256?rt=nc&_trksid=p2047675.m1851&_trkparms=aid%3D222002%26algo%3DSIC.FIT%26ao%3D1%26asc%3D261%26meid%3D7850197367596417192%26pid%3D100005%26prg%3D1088%26rk%3D3%26sd%3D230930100491%26" title="Skagen Mens Titanium Watch 233XLTTM">
<span class="nume_rvi nume_image nume_image96">
<i></i>
<img src="./5-select_files/96(2).jpg" alt="">
</span>
</a>
</div>
<div class="nume_itmdesc">
<a class="nume_imgdesc nume_imgdesc140" onclick="window.open(this.href,'_self'); return false;" href="http://www.ebay.com/itm/Skagen-Mens-Titanium-Watch-233XLTTM/190843768256?rt=nc&_trksid=p2047675.m1851&_trkparms=aid%3D222002%26algo%3DSIC.FIT%26ao%3D1%26asc%3D261%26meid%3D7850197367596417192%26pid%3D100005%26prg%3D1088%26rk%3D3%26sd%3D230930100491%26" title="Skagen Mens Titanium Watch 233XLTTM">
<div class="nume_item_title">
Skagen Mens Titanium Watch 233XLTTM
</div>
</a>
<div class="nume_price_trs">
<div class="nume_price">
$83.63
<span class="nume_trs1">
<img class="trpicon" src="./5-select_files/s(2).gif" alt="Get fast shipping and excellent service when you buy from eBay Top-rated sellers">
</span>
</div>
</div>
<div class="nume_fshipping">
Free shipping
</div>
</div>
</div>
</td>
<td align="left" value="http://thumbs3.ebaystatic.com/m/macea7VHW8otwpYh9fn7Y2g/96.jpg">
<div class="nume_item " value="http://thumbs3.ebaystatic.com/m/macea7VHW8otwpYh9fn7Y2g/96.jpg">
<div class="nume_img">
<a class="nume_imgdesc" onclick="window.open(this.href,'_self'); return false;" href="http://www.ebay.com/itm/Skagen-233XLBSB-Mens-Denmark-Black-Dial-Black-IP-Steel-Mesh-Bracelet-Watch/230972484382?rt=nc&_trksid=p2047675.m1851&_trkparms=aid%3D222002%26algo%3DSIC.FIT%26ao%3D1%26asc%3D261%26meid%3D7850197367596417192%26pid%3D100005%26prg%3D1088%26rk%3D4%26sd%3D230930100491%26" title="Skagen 233XLBSB Men's Denmark Black Dial Black IP Steel Mesh Bracelet Watch ">
<span class="nume_rvi nume_image nume_image96">
<i></i>
<img src="./5-select_files/96(3).jpg" alt="">
</span>
</a>
</div>
<div class="nume_itmdesc">
<a class="nume_imgdesc nume_imgdesc140" onclick="window.open(this.href,'_self'); return false;" href="http://www.ebay.com/itm/Skagen-233XLBSB-Mens-Denmark-Black-Dial-Black-IP-Steel-Mesh-Bracelet-Watch/230972484382?rt=nc&_trksid=p2047675.m1851&_trkparms=aid%3D222002%26algo%3DSIC.FIT%26ao%3D1%26asc%3D261%26meid%3D7850197367596417192%26pid%3D100005%26prg%3D1088%26rk%3D4%26sd%3D230930100491%26" title="Skagen 233XLBSB Men's Denmark Black Dial Black IP Steel Mesh Bracelet Watch ">
<div class="nume_item_title">
Skagen 233XLBSB Men's Denmark Black Dial...
</div>
</a>
<div class="nume_price_trs">
<div class="nume_price">
$63.50
<span class="nume_trs1">
<img class="trpicon" src="./5-select_files/s(2).gif" alt="Get fast shipping and excellent service when you buy from eBay Top-rated sellers">
</span>
</div>
</div>
<div class="nume_fshipping">
Free shipping
</div>
</div>
</div>
</td>
<td align="left" value="http://thumbs2.ebaystatic.com/m/mjnOIDaafDbgqQMZeZ0ziTQ/96.jpg">
<div class="nume_item " value="http://thumbs2.ebaystatic.com/m/mjnOIDaafDbgqQMZeZ0ziTQ/96.jpg">
<div class="nume_img">
<a class="nume_imgdesc" onclick="window.open(this.href,'_self'); return false;" href="http://www.ebay.com/itm/Skagen-233XLSSS-Mens-Denmark-Stainless-Steel-Mesh-Bracelet-Silver-Dial-Watch/230972485833?rt=nc&_trksid=p2047675.m1851&_trkparms=aid%3D222002%26algo%3DSIC.FIT%26ao%3D1%26asc%3D261%26meid%3D7850197367596417192%26pid%3D100005%26prg%3D1088%26rk%3D5%26sd%3D230930100491%26" title="Skagen 233XLSSS Men's Denmark Stainless Steel Mesh Bracelet Silver Dial Watch ">
<span class="nume_rvi nume_image nume_image96">
<i></i>
<img src="./5-select_files/96(4).jpg" alt="">
</span>
</a>
</div>
<div class="nume_itmdesc">
<a class="nume_imgdesc nume_imgdesc140" onclick="window.open(this.href,'_self'); return false;" href="http://www.ebay.com/itm/Skagen-233XLSSS-Mens-Denmark-Stainless-Steel-Mesh-Bracelet-Silver-Dial-Watch/230972485833?rt=nc&_trksid=p2047675.m1851&_trkparms=aid%3D222002%26algo%3DSIC.FIT%26ao%3D1%26asc%3D261%26meid%3D7850197367596417192%26pid%3D100005%26prg%3D1088%26rk%3D5%26sd%3D230930100491%26" title="Skagen 233XLSSS Men's Denmark Stainless Steel Mesh Bracelet Silver Dial Watch ">
<div class="nume_item_title">
Skagen 233XLSSS Men's Denmark Stainless Ste...
</div>
</a>
<div class="nume_price_trs">
<div class="nume_price">
$57.55
<span class="nume_trs1">
<img class="trpicon" src="./5-select_files/s(2).gif" alt="Get fast shipping and excellent service when you buy from eBay Top-rated sellers">
</span>
</div>
</div>
<div class="nume_fshipping">
Free shipping
</div>
</div>
</div>
</td>
</tr>
</tbody></table>
</div>
</div>
</div>
</div></div>
<div style="clear:both;padding-top:10px"></div>
<div id="merch_html_100008"></div>
<div class="pglv-pr-rep">
<a href="http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&rt=nc&item=230930100491&si=T8EIfCFkyoEkA2msXcLLuacvElA%3D&print=all&category=31387" class="" target="_blank">Print<b class="g-hdn"> - opens in a new window or tab</b></a>
|
<a href="http://cgi1.ebay.com/ws/eBayISAPI.dll?ReportThisItemRedirect&_trksid=p2047675.l2566&rt=nc&active=1&itemid=230930100491&seller=watchstore2" class="" target="_blank">Report item<b class="g-hdn"> - opens in a new window or tab</b></a>
</div><div class="tab_wp" id="viTabs" style="min-width: 425px;">
<div class="tab g">
<a id="viTabs_0" class="item sel" href="javascript:;" idx="0">Description</a>
<a id="viTabs_1" class="item " href="javascript:;" idx="1">Shipping and payments</a>
<div class="tab_clr"></div>
</div>
<div id="viTabs_0_cnt" class="content sel">
<!-- call this inside Tab for Item description -->
<div class="iti-eu-txt iti-eu-pd u-flR">
<div class="iti-lbl u-flL iti-num" id="" style="">
Item number:</div><div class="u-flR">230930100491</div>
</div>
<div id="readMore" class="ds-lgl-txt u-cb">
Seller assumes all responsibility for this listing.</div><div class="vi-desc-revHistory">
<div>
<span class="vi-desc-revHistory-lbl">Last updated on</span>
May 22, 2013 17:59:39 PDT
<span><a href="http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItemRevisionDetails&_trksid=p2047675.l2569&rt=nc&item=230930100491">View all revisions</a>
</span>
</div>
</div><!-- TODO: remove hardcoded ID -->
<div class="itemAttr">
<div class="section">
<h3>Item specifics</h3>
<table width="100%" cellspacing="0" cellpadding="0">