-
Notifications
You must be signed in to change notification settings - Fork 14
/
popup.html
961 lines (946 loc) · 79.5 KB
/
popup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>HistoryLink SmartCopy</title>
<link type="text/css" rel="stylesheet" href="base.css">
</head>
<body>
<a href=""></a><!-- For some reason, the first hyperlink adds a border - chrome extension feature? -->
<div id="logo" style="background-color: #e5ebf0; margin: -2px -8px; padding:3px 8px 0; border-bottom: solid 1px #fff;"><a href="https://www.geni.com/projects/SmartCopy/18783" target="_blank"><img src="images/smartcopylg.png" alt="SmartCopy Logo" style="width: 200px;"></a>
<span id="sclink" style="float: right;"><a href="https://www.geni.com/discussions?discussion_type=project-18783" target="_blank"><img src="/images/comment.png" alt="Discussion" title="Discussion" style="padding-top: 8px; padding-right: 4px; padding-left: 2px; width: 20px;"></a></span><span class="aboutdev" style="float: right; cursor: pointer;"><img src="/images/info.png" alt="Information" title="Information" style="padding-top: 8px; padding-right: 4px; padding-left: 2px; width: 20px;"></span>
<span id="curator" style="display: none; float: right;"><a href="https://historylinktools.herokuapp.com/leaderboard" target="_blank"><img src="/images/curator.png" alt="Leaderboard" title="Leaderboard" style="padding-top: 8px; padding-right: 5px; width: 20px;"></a></span>
<!-- <span style="display: inline-block; float: right; padding-top: 4px;"><img src="images/CuratorShield.png" width="22" align="right"></span> -->
</div>
<div id="backlinks" style="text-align:center; margin: 0 -8px; padding: 3px 8px 0; border-top: solid 1px #ddd;">
<div id="options"
style="margin: -2px -8px 2px -8px; padding: 2px 8px; background-color: #fff; box-shadow: 0 1px 0 #fff; border-bottom: solid 1px #ddd;">
<div style="background-color:#e5ebf0; font-size: 82%; vertical-align: middle; margin: -2px -8px; padding: 2px 10px 4px; text-align: left;">
<span style="margin-right: 8px; padding-left: 5px;"><strong><a
href="https://historylinktools.herokuapp.com/graph?color=gender" style="color:#000;" target="_blank" id="graphurl" data-i18n="Ancestor_Graph">Ancestor
Graph</a> <span style="color:#000;"> • </span> <a
href="https://historylinktools.herokuapp.com/graph?type=descendant&color=gender" style="color:#000;" target="_blank"
id="descendanturl" data-i18n="Descendant_Graph">Descendant Graph</a> <span style="color:#000;"> • </span> <a
href="https://historylinktools.herokuapp.com/history" style="color:#000;" target="_blank" id="historyurl" data-i18n="History_Search">History
Search</a></strong>
</span>
<span id="optionbutton" style="float: right; padding-right: 2px; padding-left:5px; cursor: pointer;">
<strong id="configtext" data-i18n="Configuration">Configuration</strong><img src="/images/admin.png" alt="Administration" style="width: 16px; vertical-align: middle; padding-left: 5px;">
</span>
</div>
<div id="optionslide" style="display: none; margin: 0 -8px; padding: 0 10px;">
<div class="separator" style="margin: 1px -10px 0;"></div>
<div class="tab">
<button class="tablinks active" value="copyopt" style="width: 33.3%;" data-i18n="Copy_Preferences">Copy Preferences</button>
<button class="tablinks" value="consistencyopt" style="width: 33.3%;" data-i18n="Consistency_Checks">Consistency Checks</button>
<button class="tablinks" value="genicustom" style="width: 33.3%;" data-i18n="Geni_Customization">Geni Customization</button>
</div>
<div id="copyopt" class="tabcontent" style="display: block;">
<table style="border-spacing: 0; border-collapse: collapse; white-space: nowrap; width: 100%;">
<tr>
<td>
<table>
<tr style="padding-top: 5px;">
<td colspan="2"></td>
</tr>
<tr>
<td colspan="2">
<table style="width: 100%;">
<tr>
<td style="padding-left: 10px; padding-right: 10px; text-align: left; font-size: small; float: left;"><strong data-i18n="Selection">Selection</strong></td>
<td style="width: 100%">
<hr />
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td style="padding: 3px 6px 0 25px; width: 58px;">
<div class="onoffswitch">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox" id="hideemptyonoffswitch"
checked>
<label class="onoffswitch-label" for="hideemptyonoffswitch">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</td>
<td style="padding: 3px 0 0; text-align: left; vertical-align: middle;"><span data-i18n="Simplify_form_by_hiding_unused_fields">Simplify form by hiding
unused fields</span></td>
</tr>
<tr>
<td style="padding: 3px 6px 0 25px; width: 58px;">
<div class="onoffswitch">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox" id="photoonoffswitch">
<label class="onoffswitch-label" for="photoonoffswitch">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</td>
<td style="padding: 3px 0 0; text-align: left; vertical-align: middle;" data-i18n="Enable_photo_checkbox_auto_selection">Enable photo checkbox
auto-selection<div id="photochange" style="display: none; color: red;" data-i18n="Reminder_user_responsible">Reminder: The user is
responsible for<br>obtaining any required permission from<br>the photographer when copying
images.</div>
</td>
</tr>
<tr>
<td style="padding: 3px 6px 0 25px; width: 58px;">
<div class="onoffswitch">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox" id="privateonoffswitch"
checked>
<label class="onoffswitch-label" for="privateonoffswitch">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</td>
<td style="padding: 3px 0 0; text-align: left; vertical-align: middle;" data-i18n="Exclude_private_profile_auto_select">Exclude <private>
profile auto-select</td>
</tr>
<tr>
<td style="padding: 3px 6px 0 25px; width: 58px;">
<div class="onoffswitch">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox" id="burialonoffswitch"
checked>
<label class="onoffswitch-label" for="burialonoffswitch">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</td>
<td style="padding: 3px 0 0; text-align: left; vertical-align: middle;" data-i18n="Est_burial_date_from_death_if_location">Est. burial date from death
if location<div id="burialchange" style="display: none; color: red;" data-i18n="This_change_will_take_effect_at_next_use">This change will take effect at next use.</div>
</td>
</tr>
<tr>
<td colspan="2">
<table style="width: 100%;">
<tr>
<td style="padding-left: 10px; padding-right: 10px; text-align: left; font-size: small; float: left;"><strong data-i18n="Location">Location</strong></td>
<td style="width: 100%">
<hr />
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td style="padding: 3px 6px 0 25px; width: 58px;">
<div class="onoffswitch">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox" id="geoonoffswitch"
checked>
<label class="onoffswitch-label" for="geoonoffswitch">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</td>
<td style="padding: 3px 0 0; text-align: left; vertical-align: middle;"><span data-i18n="Enable_Geolocation">Enable Geolocation </span><span id="geo_location_type"></span></td>
</tr>
<tr id="google_apirow">
<td><img id="geocheckimage" src="images/content_check.png" style="float: right; display: none; width: 14px;"></td>
<td><a href="https://www.geni.com/projects/SmartCopy/18783#Google-Geocoding-API" target="_blank" data-i18n="API_key">API Key</a>: <input id="google_api_key"> <button id="geoapi_save" data-i18n="Save">Save</button></td>
</tr>
<tr>
<td style="padding: 3px 6px 0 25px; width: 58px;">
<div class="onoffswitch">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox" id="forcegeoswitch">
<label class="onoffswitch-label" for="forcegeoswitch">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</td>
<td style="padding: 3px 0 0; text-align: left; vertical-align: middle;" data-i18n="Location_fields_auto_select_one_select_all">Location fields auto-select
one, select all<div id="forcegeochange" style="display: none; color: red;" data-i18n="This_change_will_take_effect_at_next_use">This change will
take effect at next use.</div>
</td>
</tr>
<tr>
<td colspan="2">
<table style="width: 100%;">
<tr>
<td style="padding-left: 10px; padding-right: 10px; text-align: left; font-size: small; float: left;"><strong data-i18n="Naming">Naming</strong></td>
<td style="width: 100%">
<hr />
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td style="padding: 3px 6px 0 25px; width: 58px;">
<div class="onoffswitch">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox" id="birthonoffswitch"
checked>
<label class="onoffswitch-label" for="birthonoffswitch">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</td>
<td style="padding: 3px 0 0; text-align: left; vertical-align: middle;" data-i18n="Auto_populate_empty_birth_name_fields">Auto-populate empty birth
name fields</td>
</tr>
<tr>
<td style="padding: 3px 6px 0 25px; width: 58px;">
<div class="onoffswitch">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox" id="mnameonoffswitch"
checked>
<label class="onoffswitch-label" for="mnameonoffswitch">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</td>
<td style="padding: 3px 0 0; text-align: left; vertical-align: middle;" data-i18n="Parse_for_middle_names_automatically">Parse for middle names
automatically</td>
</tr>
<tr>
<td style="padding: 3px 6px 0 25px; width: 58px;">
<div class="onoffswitch">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox" id="adjustnameonoffswitch"
checked>
<label class="onoffswitch-label" for="adjustnameonoffswitch">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</td>
<td style="padding: 3px 0 0; text-align: left; vertical-align: middle;" data-i18n="Auto_adjust_the_names_for_mixed_case">Auto-adjust the names for
mixed-case<div id="casenamechange" style="display: none; color: red;" data-i18n="This_change_will_take_effect_at_next_use">This change will take
effect at next use.</div>
</td>
</tr>
<tr>
<td style="padding: 3px 6px 0 25px; width: 58px;">
<div class="onoffswitch">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox" id="compountlastonoffswitch">
<label class="onoffswitch-label" for="compountlastonoffswitch">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</td>
<td style="padding: 3px 0 0; text-align: left; vertical-align: middle;" data-i18n="Force_compound_lastname_to_lowercase">Force compound lastname to
lowercase<div id="compoundlast" style="display: none; color: red;" data-i18n="This_change_will_take_effect_at_next_use">This change will take effect
at next use.</div>
</td>
</tr>
<tr>
<td colspan="2">
<table style="width: 100%;">
<tr>
<td style="padding-left: 10px; padding-right: 10px; text-align: left; font-size: small; float: left;"><strong>Geni</strong></td>
<td style="width: 100%">
<hr />
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td style="padding: 3px 6px 0 25px; width: 58px;">
<div class="onoffswitch">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox" id="geniparentonoffswitch"
checked>
<label class="onoffswitch-label" for="geniparentonoffswitch">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</td>
<td style="padding: 3px 0 0; text-align: left; vertical-align: middle;" data-i18n="Default_children_to_likely_Geni_parent">Default children to likely
Geni parent<div id="gparentchange" style="display: none; color: red;" data-i18n="This_change_will_take_effect_at_next_use">This change will take
effect at next use.</div>
</td>
</tr>
<tr>
<td style="padding: 3px 6px 0 25px; width: 58px;">
<div class="onoffswitch">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox" id="privacyonoffswitch">
<label class="onoffswitch-label" for="privacyonoffswitch">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</td>
<td style="padding: 3px 0 0; text-align: left; vertical-align: middle;" data-i18n="Default_deceased_profiles_to_public">Default deceased profiles to
public<div id="privacychange" style="display: none; color: red;" data-i18n="This_change_will_take_effect_at_next_use">This change will take
effect at next use.</div>
</td>
</tr>
<tr>
<td style="padding: 3px 6px 0 25px; width: 58px;">
<div class="onoffswitch">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox" id="sourceonoffswitch"
checked>
<label class="onoffswitch-label" for="sourceonoffswitch">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</td>
<td style="padding: 3px 0 0; text-align: left; vertical-align: middle;" data-i18n="Add_reference_to_Geni_s_About_section">Add reference to Geni's
About section</td>
</tr>
<tr>
<td style="padding: 3px 6px 0 25px; width: 58px;">
<div class="onoffswitch">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox" id="genislideonoffswitch"
checked>
<label class="onoffswitch-label" for="genislideonoffswitch">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</td>
<td style="padding: 3px 0 0; text-align: left; vertical-align: middle;" data-i18n="Display_the_Geni_side_data_by_default">Display the Geni side data
by default</td>
</tr>
</table>
</td>
<td id="controlimage"><img style="margin-left: -10px; width: 140px;" src="images/control.png" alt="Control"></td>
</tr>
</table>
</div>
<div id="consistencyopt" class="tabcontent">
<span style="font-size: x-small; text-align: left; float: left; padding-left: 5px; padding-right: 5px;" data-i18n="Note_Dates_that_contain_Between_Before_and_After___"><strong>Note:</strong> Dates that contain Between, Before, and After are not compared in consistency checks. Dates with Circa are considered as exact dates.</span>
<table style="border-spacing: 0; border-collapse: collapse; white-space: nowrap; width: 100%;vertical-align: top;">
<tr><td></td></tr>
<tr><td>
<table style="margin: 0 auto;">
<tr>
<td style="padding: 3px 6px 0; width: 58px; vertical-align: top;">
<div class="onoffswitch">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox"
id="consistencyonoffswitch" checked>
<label class="onoffswitch-label" for="consistencyonoffswitch">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</td>
<td style="padding: 3px 0 0; text-align: left; vertical-align: middle;" data-i18n="Run_consistency_checks_when_viewing_Geni_profiles">Run consistency checks when viewing Geni profiles.
<img id="checkdetailsopen" alt="Consistency Check Help" src='images/help.png' style='width: 16px; cursor: pointer; padding-left: 4px; padding-right: 8px; margin-bottom: -3px;' title="Consistency Check Information">
</td>
</tr>
</table>
<div id="checkdetails" class='colorbox' style="display: none; text-align: left; background-color: #f1f1f6; margin: 12px 20px 0;"><ul style="padding-left:15px;">
<li data-i18n="Age_difference_between_partners_is_significant">Age difference between partners is significant</li>
<li data-i18n="Maiden_name_same_as_husbands_last_name">Maiden name same as husband's last name</li>
<li data-i18n="Husband_and_wife_death_dates_the_same">Husband and wife death dates the same</li>
<li data-i18n="Husband_death_date_same_as_marriage_date">Husband death date same as marriage date</li>
<li data-i18n="Wife_death_date_same_as_marriage_date">Wife death date same as marriage date</li>
<li data-i18n="Born_after_marriage">Born after marriage</li>
<li data-i18n="Died_before_marriage">Died before marriage</li>
<li data-i18n="Implausible_marriage_age_too_young">Implausible marriage age, too young</li>
<li data-i18n="Siblings_ages_too_close_together">Siblings ages too close together</li>
<li data-i18n="Born_before_parent_birth">Born before parent birth</li>
<li data-i18n="Born_after_parent_death">Born after parent death</li>
<li data-i18n="Death_before_baptism_date">Death before baptism date</li>
<li data-i18n="Death_after_burial_date">Death after burial date</li>
<li data-i18n="Parent_too_young_for_childs_birth">Parent too young for child's birth</li>
<li data-i18n="Mother_too_old_for_childs_birth">Mother too old for child's birth</li>
<li data-i18n="Born_before_parent_marriage">Born before parent marriage</li>
<li data-i18n="Excessive_Age">Excessive Age</li>
<li data-i18n="Born_after_death">Born after death</li>
<li data-i18n="Name_contains_double_space">Name contains double space</li>
<li data-i18n="Name_contains_alias">Name contains alias</li>
<li data-i18n="Name_contains_improper_use_of_uppercase_lowercase">Name contains improper use of uppercase/lowercase</li>
<li data-i18n="First_Name_ends_in_suffix_eg___">First Name ends in suffix (eg. 'i','ii','iii','iv','jr','sr')</li>
<li data-i18n="Salutation_or_relationship_in_title_eg___">Salutation or relationship in title (eg. 'Mr', 'Mrs')</li>
<li data-i18n="Salutation_or_relationship_in_suffix_eg___">Salutation or relationship in suffix (eg. 'Mr', 'Mrs')</li>
<li data-i18n="Relationship_cycle_in_immediate_family">Relationship cycle in immediate family</li>
<li data-i18n="Check_date_formatting_for_inconsistent_values">Check date formatting for inconsistent values</li>
<li data-i18n="Check_for_pending_data_conflict_resolution">Check for pending data conflict resolution</li>
</ul></div>
</td></tr>
</table>
<div id="consistencyoptiontable">
<table style="border-spacing: 0; border-collapse: collapse; white-space: nowrap; width: 100%;vertical-align: top;">
<tr><td></td></tr>
<tr><td><table style="width: 100%;">
<tr><td colspan="2" style="padding-left: 10px; padding-right: 10px;"><hr/></td></tr>
<tr>
<td style="padding: 3px 6px 0; width: 58px; vertical-align: top;">
<div class="onoffswitch">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox"
id="selfonoffswitch" checked>
<label class="onoffswitch-label" for="selfonoffswitch">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</td>
<td style="padding: 3px 0 0; text-align: left; vertical-align: middle;"><span data-i18n="Self_check_profile_for_inconsistent_dates_and_values">Self-check profile for inconsistent dates and values.</span>
<div id="selfoptions" style="padding: 0; margin: 0;">
<table style="padding-top: 2px;">
<tr><td><ul style="padding: 0 0 0 15px; margin: 0;"><li data-i18n="Check_name_fields_for_improper_values">Check name fields for improper values</li></ul></td>
<td><img src='images/content_info.png' alt='Information' style='float: left; width: 16px; padding-left: 4px; padding-right: 2px; margin-bottom: -3px;'>
<div class="onoffswitch" style="float: right;">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox"
id="namecheckonoffswitch" checked>
<label class="onoffswitch-label" for="namecheckonoffswitch">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</td>
</tr>
<tr><td><ul style="padding: 0 0 0 35px; margin: 0;"><li data-i18n="Check_name_fields_for_living_profiles"><ul>Exclude living profiles from quick fix</ul></li></ul></td>
<td>
<div class="onoffswitch" style="float: right;">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox"
id="livingcheckonoffswitch">
<label class="onoffswitch-label" for="livingcheckonoffswitch">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</td>
</tr>
<tr><td style="width: 265px;"><ul style="padding: 0 0 0 15px; margin: 0;"><li data-i18n="Check_profile_for_pending_data_conflicts">Check profile for pending data conflicts</li></ul></td>
<td><img src='images/content_info.png' alt='Information' style='float: left; width: 16px; padding-left: 4px; padding-right: 2px; margin-bottom: -3px;'>
<div class="onoffswitch" style="float: right;">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox"
id="dataconflictonoffswitch">
<label class="onoffswitch-label" for="dataconflictonoffswitch">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</td>
</tr>
<tr><td style="width: 265px;"><ul style="padding: 0 0 0 15px; margin: 0;"><li data-i18n="Check_date_values_for_irregular_formatting">Check date values for irregular formatting</li></ul></td>
<td><img src='images/content_info.png' alt='Information' style='float: left; width: 16px; padding-left: 4px; padding-right: 2px; margin-bottom: -3px;'>
<div class="onoffswitch" style="float: right;">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox"
id="datecheckonoffswitch" checked>
<label class="onoffswitch-label" for="datecheckonoffswitch">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</td>
</tr>
<tr><td style="width: 265px;"><ul style="padding: 0 0 0 15px; margin: 0;"><li data-i18n="Check_when_location_is_missing_a_country">Check when location is missing a country</li></ul></td>
<td><img src='images/content_info.png' alt='Information' style='float: left; width: 16px; padding-left: 4px; padding-right: 2px; margin-bottom: -3px;'>
<div class="onoffswitch" style="float: right;">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox"
id="locationcheckonoffswitch">
<label class="onoffswitch-label" for="locationcheckonoffswitch">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</td>
</tr>
<tr>
<tr><td style="width: 265px;"><ul style="padding: 0 0 0 15px; margin: 0;"><li><span data-i18n="Maximum_year_to_be_private">Maximum year to be private:</span>
<img src='images/content_info.png' alt='Information' style='width: 16px; padding-left: 4px; padding-right: 2px; margin-bottom: -3px;'><input style="width: 44px; height: 14px;" type="number" name="publicyearval" min="1" id="publicyearval" value="1850">
</li></ul></td>
<td>
<div class="onoffswitch" style="float: right;">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox"
id="publiconoffswitch" checked>
<label class="onoffswitch-label" for="publiconoffswitch">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</td>
</tr>
<tr>
<tr><td style="width: 265px;"><ul style="padding: 0 0 0 15px; margin: 0;"><li><span data-i18n="Maximum_age">Maximum age:</span>
<img src='images/content_warn.png' alt='Warning' style='width: 16px; padding-left: 4px; padding-right: 2px; margin-bottom: -3px;'><input style="width: 44px; height: 14px;" type="number" name="agelimitwarnning" min="1" id="agelimitwarn" value="105">
<img src='images/content_error.png' alt='Error' style='width: 16px; padding-left: 4px; padding-right: 2px; margin-bottom: -3px;'> <input style="width: 44px; height: 14px;" type="number" name="agelimiterror" min="1" id="agelimiterror" value="125"></li></ul></td>
<td>
<div class="onoffswitch" style="float: right;">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox"
id="ageonoffswitch" checked>
<label class="onoffswitch-label" for="ageonoffswitch">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</td>
</tr>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td style="padding: 3px 6px 0; width: 58px; vertical-align: top;">
<div class="onoffswitch">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox"
id="childrenonoffswitch" checked>
<label class="onoffswitch-label" for="childrenonoffswitch">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</td>
<td style="padding: 3px 0 0; text-align: left; vertical-align: middle;"><span data-i18n="Check_the_dates_of_children_against_their_parents">Check the dates of children against their parents.</span>
<div id="childoptions" style="padding: 0; margin: 0;">
<table style="padding-top: 2px;">
<tr><td style="width: 265px;"><ul style="padding: 0 0 0 15px; margin: 0;"><li data-i18n="Check_child_is_born_after_parent_marriage">Check child is born after parent marriage</li></ul></td>
<td><img src='images/content_info.png' alt='Information' style='float: left; width: 16px; padding-left: 4px; padding-right: 2px; margin-bottom: -3px;'>
<div class="onoffswitch" style="float: right;">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox"
id="wedlockonoffswitch">
<label class="onoffswitch-label" for="wedlockonoffswitch">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</td>
</tr>
<tr><td style="width: 265px;"><ul style="padding: 0 0 0 15px; margin: 0;"><li data-i18n="Age_the_parent_is_too_young_to_have_a_child">Age the parent is too young to have a child</li></ul></td><td><img src='images/content_warn.png' alt='Warning' style='width: 16px; padding-left: 4px; padding-right: 2px; margin-bottom: -3px;'> <input style="width: 44px; height: 14px;" type="number" name="childyoungwarnning" min="1" id="childyoungwarn" value="12"></td></tr>
<tr><td style="width: 265px;"><ul style="padding: 0 0 0 15px; margin: 0;"><li data-i18n="Age_the_mother_is_too_old_to_have_a_child">Age the mother is too old to have a child</li></ul></td><td><img src='images/content_warn.png' alt='Warning' style='width: 16px; padding-left: 4px; padding-right: 2px; margin-bottom: -3px;'> <input style="width: 44px; height: 14px;" type="number" name="childoldwarnning" min="1" id="childoldwarn" value="55"></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td style="padding: 3px 6px 0; width: 58px; vertical-align: top;">
<div class="onoffswitch">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox"
id="partneronoffswitch" checked>
<label class="onoffswitch-label" for="partneronoffswitch">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</td>
<td style="padding: 3px 0 0; text-align: left; vertical-align: middle;"><span data-i18n="Check_the_values_of_partner_spouses_against_each_other">Check the values of partner/spouses against each other.</span>
<div id="partneroptions" style="padding: 0; margin: 0;">
<table style="padding-top: 2px;">
<tr><td style="width: 265px;"><ul style="padding: 0 0 0 15px; margin: 0;"><li data-i18n="Identify_possible_maiden_name_copy_issues">Identify possible maiden name copy issues</li></ul></td>
<td><img src='images/content_info.png' alt='Information' style='float: left; width: 16px; padding-left: 4px; padding-right: 2px; margin-bottom: -3px;'>
<div class="onoffswitch" style="float: right;">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox"
id="samenameonoffswitch" checked>
<label class="onoffswitch-label" for="samenameonoffswitch">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</td>
</tr>
<tr><td style="width: 265px;"><ul style="padding: 0 0 0 15px; margin: 0;"><li data-i18n="Age_the_spouse_is_too_young_to_be_married">Age the spouse is too young to be married</li></ul></td><td><img src='images/content_warn.png' alt='Warning' style='width: 16px; padding-left: 4px; padding-right: 2px; margin-bottom: -3px;'> <input style="width: 44px; height: 14px;" type="number" name="marriedyoungwarnning" min="1" id="marriedyoungwarn" value="14"></td></tr>
<tr><td style="width: 265px;"><ul style="padding: 0 0 0 15px; margin: 0;"><li data-i18n="Maximum_age_difference_between_spouses">Maximum age difference between spouses</li></ul></td><td><img src='images/content_warn.png' alt='Warning' style='width: 16px; padding-left: 4px; padding-right: 2px; margin-bottom: -3px;'> <input style="width: 44px; height: 14px;" type="number" name="spouseagediff" min="1" id="spouseagediff" value="22"></td></tr>
</table>
</div>
</td>
</tr>
<tr>
<td style="padding: 3px 6px 0; width: 58px;">
<div class="onoffswitch">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox"
id="siblingonoffswitch" checked>
<label class="onoffswitch-label" for="siblingonoffswitch">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</td>
<td style="padding: 3px 0 0; text-align: left; vertical-align: middle;"><span data-i18n="Check_siblings_birth_are_over_">Check siblings birth are over </span><input style="width: 28px; height: 14px;" type="number" name="termlimit" min="1" id="termlimit" value="8"><span data-i18n="_months_apart_excl_twins"> months apart (excl. twins).</span></td>
</tr>
</table>
</td>
</tr>
</table>
</div>
</div>
<div id="genicustom" class="tabcontent">
<table style="border-spacing: 0; border-collapse: collapse; white-space: nowrap; width: 100%;">
<tr><td>
<table>
<tr style="padding-top: 5px;"><td colspan="2"></td></tr>
<tr>
<td style="padding: 3px 6px 0 25px; width: 58px;">
<div class="onoffswitch">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox"
id="addbioonoffswitch" checked>
<label class="onoffswitch-label" for="addbioonoffswitch">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</td>
<td style="padding: 3px 0 0; text-align: left; vertical-align: middle;"><span data-i18n="Display_Add_Biography_button_in_About">Display Add Biography button in About</span><div id="addbiochange" style="display: none; color: red;" data-i18n="Requires_a_page_refresh_to_take_effect">Requires a page refresh to take effect.</div></td>
</tr>
<tr>
<td style="padding: 3px 6px 0 25px; width: 58px;">
<div class="onoffswitch">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox"
id="exportprojectsonoffswitch">
<label class="onoffswitch-label" for="exportprojectsonoffswitch">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</td>
<td style="padding: 3px 0 0; text-align: left; vertical-align: middle;"><span data-i18n="Export_Profiles_button_on_Project_Actions">Export Profiles button on Project Actions</span><div id="exportprojectschange" style="display: none; color: red;" data-i18n="Requires_a_page_refresh_to_take_effect">Requires a page refresh to take effect.</div></td>
</tr>
</table>
</td><td id="controlimage"><img style="margin-left: -10px; width: 140px;" src="images/control.png" alt="Control"></td>
</tr>
</table>
</div>
</div>
</div>
</div>
<div id="AboutModal" class="modal2">
<!-- Modal content -->
<div class="modal-content">
<div class="shadoweffect" style="margin: 12px; padding-left: 10px; padding-right: 10px; padding-top: 0;">
<span id="modalclose2" class="close">×</span>
<center><img src="images/smartcopylg.png" alt="SmartCopy Logo" style="width: 200px; padding-top: 20px; padding-left: 10px;">
<div id="versionbox2" style="font-size: x-small; margin-top: -10px; -webkit-user-select: none;"></div>
</center>
<table style="width: 100%;"><tr><td>
<strong>Developed by Jeffrey Gentes</strong>
</td><td><div style="float:right;">
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----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-----END PKCS7-----">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donate_SM.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form></div></td></tr></table>
<div class="modal-body" style="height: 100%; padding-left: 5px; padding-bottom: 5px;">
<strong>Special Thanks:</strong>
<ul>
<li><strong>Dan Cornett</strong> (Design, Testing, Documentation)</li>
<li><strong>Dan Cornett</strong>, <strong>Job Waterreus</strong> (Support)</li>
<li><strong>Randy Schoenberg</strong> (Infrastructure)</li>
<li><strong>Guy Khmelnitsky</strong>, <strong>Raphaël Pinson</strong> (Programming)</li>
</ul>
<strong>Disclaimer:</strong>
<div style="font-size: x-small;">
<div style="padding: 5px;">You shall not use this software for any illegal purposes and in particular agree that you shall not copy / post any content to Geni which is in violation of copyright, that is defamatory, obscene, abusive, indecent, or in breach of the privacy of any person or otherwise in breach of any terms of service.</div>
<div style="padding: 5px;">You are responsible for obtaining any required permission from the creator of a work, such as biographies or images, when copying genealogical content. This software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES, CONDITIONS OR LIABILITIES OF ANY KIND, either express or implied.</div>
<div style="text-align: center; padding: 5px;">This software uses the Geni API but is not operated or sponsored by Geni, Inc.</div>
<div style="text-align: center; padding-top: 5px; font-weight: bold;">
<span style="float: left; padding-left: 3px;"><a href="https://www.geni.com/discussions?discussion_type=project-18783" target="_blank">Help</a></span>
<span style="padding-left: 10px;"><a href="https://historylinktools.herokuapp.com/privacy" target="_blank">Privacy Policy</a></span>
<span style="float:right; padding-right: 3px;"><a id="logoutbutton" href="#">Logout</a></span>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="smartcopy-container" style="margin-top: 8px; padding-right: 5px; padding-left: 5px; display: none;">
<div id="top-container" style="display: none;">
<table style="width: 100%;">
<tr><td>
<div id='focusname' style="font-size: large; font-weight: bold;"></div>
<div id='focusrange' style="font-size: small; margin-bottom: 5px; margin-top: 1px;" ></div>
</td><td style="vertical-align: top;">
<button type="button" id="submitbutton" class="cta cta-blue" style="float: right;">Submit</button>
</td>
</tr>
</table>
</div>
<!-- The Modal -->
<div id="GeoUpdateModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<div class="shadoweffect" style="margin: 12px; padding-left: 10px; padding-right: 10px; padding-top: 0;">
<span id="modalclose1" class="close">×</span>
<table><tr><td><img src="images/redpin.png" alt="Redpin" align="left" style="width: 32px; margin-left: -5px;"></td><td><h2>Location Update</h2></td></tr></table>
Update the location and resubmit it to Google for GeoLocation.
<div class="modal-body" style="height: 100%;">
<p><input id="geoupdatetext" type="text" style="width: 100%;"></p>
<button type="button" id="georevertbtn" value="" class="cta cta-blue" title="Restore Original Location" style="float: left;"><img style="width: 22px; margin-top: 3px;" alt="Revert" src="images/revert.png"></button><button type="button" id="geolookupbtn" class="cta cta-blue" style="float: right;">Update</button>
<br><br>
</div>
</div>
</div>
</div>
<form id="formdata">
<div id="genislider" title="Geni Data" class="ctx" style="display: none; z-index:99; cursor: pointer; position: fixed; top: 44%; left: -8px; height:70px; width: 0;"><img src="images/openmenu.png" alt="Open Menu" style="width: 10px; padding-top:22px; height: 25px; margin-left: -2px;"></div>
<div class='colorbox' id='experimentalmessage' style="display: none; width: 93%; margin: 0 5px 10px; background-color:#f8ff86;">SmartCopy use on this website is experimental and may not be fully supported. Please be cautions and review the data thoroughly before submitting. Report issues in the <a href="https://www.geni.com/discussions?discussion_type=project-18783" target="_blank">SmartCopy discussion at Geni</a>.</div>
<div class="shadoweffect" id="treematches" style="margin: 0 4px 6px; display: none;">
<table><tr>
<td style="vertical-align: top;">
<span class='match-buttons'>
<!-- TREE MATCHES -->
<a href='#'
id="treematchurl"
target="_blank"
class='match-button tree-match '
data-position='topright'
title="1 pending Tree Match">
<span class="count-and-icon">
<span data-genicon="tree-match"></span>
<span class='number'>
<span id="treematchcount" class='count'> 1 </span>
</span>
</span>
</a>
</span>
</td>
<td style="padding-left: 6px;">
<span data-i18n="Geni_is_reporting_a_pending_Tree_Match"></span>
</td></tr><tr id="treematchtext" style="display: none;"><td colspan="2">
<div class='colorbox' style="background-color: #f8ff86; text-align: left; margin-bottom: 2px;">As a Basic member of Geni and thus unable to compare this match, be extra cautious moving forward in avoiding duplication of this tree with existing branches.
When using this tool, it is expected that users will review branches and <a href="https://help.geni.com/hc/en-us/articles/229705547-How-can-I-merge-my-tree-with-a-relative-s-tree-" target="_blank">merge profiles</a>
that duplicate existing persons. Search Geni and compare, consider getting a <a href="https://help.geni.com/hc/en-us/articles/229706367-What-are-the-benefits-of-a-Geni-Pro-membership-" target="_blank">Geni Pro membership</a>, a
<a href="https://help.geni.com/hc/en-us/articles/229706127-How-To-Try-Geni-Pro-for-Free" target="_blank">free trial</a> or requesting <a href="https://www.geni.com/discussions/156925" target="_blank">Curator assistance.</a>
<br><br>For more information or questions, see the <a href="https://www.geni.com/projects/SmartCopy/18783">SmartCopy project</a>.
</div>
</td></tr>
</table>
</div>
<div id="profiledata" style="display: none; text-align: center;">
<table style="margin-bottom: 10px; width: 100%;">
<tr><td><strong>Profile Data</strong></td></tr>
<tr><td id="profileexpand">
<div class="shadoweffect" style="padding-top: 12px; margin-right: 1px; margin-left: 1px; font-weight: bold;" id="profileshadowdiv"><label for="updateprofile"></label><input type="checkbox" id="updateprofile" class="checkall">Update Profile<img id="focusshowhide" alt="Show" src="images/show.png" class="showhide" title="Show All Fields" style="width: 24px; padding-left: 6px; margin-bottom: -8px; cursor: pointer;"><span id="updateslide" style="font-size: 130%; cursor: pointer; float: right; padding: 0px 4px;"><img src="images/dropdown.png" alt="Dropdown" style="width: 11px;"></span><span class="genisliderow" style="float: right; font-size: 80%; font-weight: normal; margin-right: 100px; margin-top: 5px;">Geni Data</span>
<fieldset id="profilefield" class="fieldeffect">
<table style="width: 100%; border-spacing: 0; border-collapse: collapse;" id="profiletable">
</table>
</fieldset>
</div>
</td></tr>
</table>
</div>
<div id="familydata" style="display: none; margin-top: 10px; text-align: center;">
<table style="margin-bottom: 10px; width: 100%;">
<tr><td><strong>Family Members</strong></td></tr>
<tr><td >
<div class="shadoweffect" style="padding-top: 4px; margin-right: 1px; margin-left: 1px;">
<div id="parent" style="display: none; margin-top: 8px;">
<span style="font-weight: bold;"><input type="checkbox" class="checkall" id="addparentck">Parents</span><span id="parentcount" style="color: #949494; font-size: x-small;"></span><span style="float: right; padding-right: 5px; font-size: x-small;">(<a class="expandlinks" name="expandparent" style="color: #000;">expand all</a>)</span><span id="parentsearch" style="float: right; padding-right: 5px;"><a href="https://www.geni.com/search/advanced" id="genisearch" target="_blank"><img src="images/search.png" alt="Search Geni for Parents" title="Search Geni for Parents" style="height: 16px; margin-bottom: -4px;" border="0"></a></span>
<fieldset class="fieldeffect">
<div id="parentval" class="familydiv"></div>
</fieldset>
</div>
<div id="sibling" style="display: none; margin-top: 8px;">
<span style="font-weight: bold;"><input type="checkbox" class="checkall" id="addsiblingck">Siblings</span><span id="siblingcount" style="color: #949494; font-size: x-small;"></span><span style="float: right; padding-right: 5px; font-size: x-small;">(<a class="expandlinks" name="expandsibling" style="color: #000;">expand all</a>)</span>
<fieldset class="fieldeffect">
<div id="siblingval" class="familydiv"></div>
</fieldset>
</div>
<div id="partner" style="display: none; margin-top: 8px;">
<span style="font-weight: bold;"><input type="checkbox" class="checkall" id="addpartnerck">Partners</span><span id="partnercount" style="color: #949494; font-size: x-small;"></span><span style="float: right; padding-right: 5px; font-size: x-small;">(<a class="expandlinks" name="expandpartner" style="color: #000;">expand all</a>)</span>
<fieldset class="fieldeffect">
<div id="partnerval" class="familydiv"></div>
</fieldset>
</div>
<div id="child" style="display: none; margin-top: 8px;">
<span style="font-weight: bold;"><input type="checkbox" class="checkall" id="addchildck">Children</span><span id="childcount" style="color: #949494; font-size: x-small;"></span><span style="float: right; padding-right: 5px; font-size: x-small;">(<a class="expandlinks" name="expandchild" style="color: #000;">expand all</a>)</span>
<fieldset class="fieldeffect">
<div id="childval" class="familydiv"></div>
</fieldset>
</div>
<div id="unknown" style="display: none; margin-top: 8px;">
<span style="font-weight: bold;"><input type="checkbox" class="checkall" id="addunknownck" disabled>Unknown Relations</span><span style="float: right; padding-right: 5px; font-size: x-small;">(<a class="expandlinks" name="expandunknown" style="color: #000;">expand all</a>)</span>
<fieldset class="fieldeffect">
<div id="unknownval" class="familydiv"></div>
</fieldset>
</div>
</div>
</td></tr>
</table>
</div>
<div id="bottomsubmit" style="display: none; padding-top: 10px; padding-bottom: 5px; text-align: center;"><a class="submitbutton" id="submitbutton2" style="cursor: pointer;">Submit</a></div>
<div id="loading" class="shadoweffect" style="display:none; padding-top: 10px; margin-top: 5px; margin-bottom: 15px;">
<div style="text-align: center; padding-top: 2px;"><img src="images/spinnerlg.gif" alt="Waiting" style="height:20px; padding-right:5px; margin-top: -3px; vertical-align: middle;"><strong>Reading Family Data...</strong><div id="readstatus"></div></div>
</div>
<div id="updating" class="shadoweffect" style="display:none; padding-top: 10px; margin-top: 5px;">
<div style="text-align: center; padding-top: 2px; padding-right: 10px; padding-left: 10px;"><img src="images/spinnerlg.gif" alt="Waiting" style="height:20px; padding-right:5px; margin-top: -3px; vertical-align: middle;"><strong>Updating Geni (<span id="updatecount">1</span> of <span id="updatetotal">1</span>)</strong>
<div id="updatestatus"></div>
</div>
</div>
</form>
</div>
<center>
<div id='loginspinner' style="padding-top: 11px; text-align: center;"><img src="images/spinnerlg.gif" alt="Waiting" style="height: 24px;"></div>
<div id='logindiv' style="padding-top: 11px; text-align: center; margin-left: -20px; margin-right: -20px; display: none;"><iframe id="loginframe" style="width: 100%; height: 460px; width: 650px;" frameborder="0" scrolling="no"></iframe></div>
<div class='colorbox' id='useraccess' style="display:none; width: 88%; margin-bottom: 12px; margin-right: 9px; margin-left: 9px; background-color:#dfe6ed;"></div>
<div class='colorbox' id='message' style="display:none; width: 88%; margin-bottom: 15px; margin-right: 9px; margin-left: 9px; background-color:#D3D3D3;"></div>
</center>
<div style="display: table-cell; text-align: left; white-space: nowrap; font-size: x-small; padding-left: 10px;">
<span style="display: none;" id="addhistoryblock"><a style="cursor: pointer;" id="addhistory" data-i18n="Add_to_History">Add to History</a></span></div>
<div style="display: table-cell; width: 100%; text-align: right; white-space: nowrap; font-size: x-small; padding-right: 10px;"><a style="cursor: pointer;" id="showhistory" data-i18n="Show_History">Show History</a></div>
<div id='historybox' class="shadoweffect" style="display: none; margin-bottom: 20px; margin-right: 10px; margin-left: 10px;"><div id='historytext'></div><div style='font-size: x-small; text-align: center; padding-top: 5px;'><a style="cursor: pointer;" id="clearhistory" data-i18n="Clear_History">Clear History</a></div></div>
<center>
<div id="versionbox" style="width: 90px; z-index: -1; position:relative; -webkit-user-select: none; bottom:-5px; margin-top: -15px; color: #a9b5d4; text-align: center; white-space: nowrap; font-size: xx-small; "></div>
</center>
<div id="language_selector" style="display: none;">
<select name="name_language" class="language_select" style="width: 152px; height: 24px; -webkit-appearance: menulist-button; margin-left: 22px; margin-bottom: 4px;">
<option value="af">Afrikaans</option>
<option value="sq">Albanian - Shqiptar</option>
<option value="am">Amharic</option>
<option value="oj-AN">Anishinaabemowin</option>
<option value="ar">Arabic - العربية</option>
<option value="arc-neo">Aramaic (modern)</option>
<option value="arp">Arapaho</option>
<option value="hy">Armenian - Հայերեն</option>
<option value="eu">Basque</option>
<option value="be">Belarusian - Беларуская</option>
<option value="bn">Bengali</option>
<option value="ber">Berber</option>
<option value="bs">Bosnian - Bosanski</option>
<option value="br">Breton</option>
<option value="bg">Bulgarian - Български</option>
<option value="my">Burmese - မြန်မာဘာသာ</option>
<option value="ca">Catalan - Català</option>
<option value="cb">Central Bicolano - Bikol Sentral</option>
<option value="chr">Cherokee</option>
<option value="chy">Cheyenne</option>
<option value="cic">Chickasaw - Chikashshanompa’</option>
<option value="zh-CN">Chinese (Simplified) - 中文(简体)</option>
<option value="zh-TW">Chinese (Traditional) - 中文(正體)</option>
<option value="cho">Choctaw - </option>
<option value="hr">Croatian - Hrvatski</option>
<option value="cs">Czech - Český</option>
<option value="dak">Dakota</option>
<option value="da">Danish - dansk</option>
<option value="nl">Dutch - Nederlands</option>
<option value="en-US">English (default)</option>
<option value="ang">English, Old (Anglo Saxon)</option>
<option value="et">Estonian - eesti</option>
<option value="gez">Ethiopian (Geʽez) - ግዕዝ</option>
<option value="fo">Faroese - Føroyskt</option>
<option value="fj">Fijian - Vakaviti</option>
<option value="tl">Filipino</option>
<option value="fi">Finnish - Suomi</option>
<option value="fr">French - Français</option>
<option value="fy">Frisian</option>
<option value="ga">Gaelic (Irish) - Gaeilge</option>
<option value="ga">Gaelic (Irish) - Gaeilge</option>
<option value="ka">Georgian - ქართული</option>
<option value="de">German - Deutsch</option>
<option value="got">Gothic</option>
<option value="el">Greek - Ελληνικά</option>
<option value="grc">Greek, Ancient</option>
<option value="gu">Gujarati - ગુજરાતી</option>
<option value="haw">Hawaiian</option>
<option value="he">Hebrew - עברית</option>
<option value="hi">Hindi - हिन्दी</option>
<option value="hu">Hungarian - Magyar</option>
<option value="is">Icelandic - Íslenska</option>
<option value="smn">Inari Sami - Anarâškielâ</option>
<option value="id">Indonesian - Bahasa Indonesia</option>
<option value="iu">Inuktitut</option>
<option value="tts">Isan</option>
<option value="it">Italian - Italiano</option>
<option value="ja">Japanese - 日本語</option>
<option value="kn">Kannada</option>
<option value="krl">Karelian - karjala / karjal / kariela</option>
<option value="csb">Kashubian - Kaszëbsczi jãzëk</option>
<option value="kee">Keres (Eastern) - </option>
<option value="kjq">Keres (Western) - </option>
<option value="km">Khmer - ភាសាខ្មែរ</option>
<option value="sjd">Kildin Sami - Кӣллт са̄мь кӣлл</option>
<option value="rw">Kinyarwanda</option>
<option value="kok">Konkani - कॊंकणि</option>
<option value="ko">Korean - 한국어</option>
<option value="ky">Kyrghyz - кыргызча / قىرعىزچا</option>
<option value="lkt">Lakota</option>
<option value="lo">Lao - ພາສາລາວ</option>
<option value="la">Latin - Latina</option>
<option value="lv">Latvian - latviešu</option>
<option value="lt">Lithuanian - Lietuvių</option>
<option value="smj">Lule Sami - Julevsámegiella</option>
<option value="mk">Macedonian - Македонски</option>
<option value="ms">Malay - Melayu</option>
<option value="ml">Malayalam - മലയാളം</option>
<option value="mt">Maltese - Malti</option>
<option value="mnc">Manchu - 瑪阿安諸烏</option>
<option value="gv">Manx</option>
<option value="mi">Maori</option>
<option value="mr">Marathi - मराठी</option>
<option value="wam">Massachusett - Wampanoag</option>
<option value="mo">Mohawk - Kanien’kéha</option>
<option value="mn">Mongolian - Монгол</option>
<option value="non">Norse, Old</option>
<option value="se-NO">North Sami - Davvisámegiella (Nordsamisk)</option>
<option value="no">Norwegian - Norsk (bokmål)</option>
<option value="nn">Norwegian (Nynorsk) - Nynorsk</option>
<option value="oc">Occitan</option>
<option value="oc">Occitan</option>
<option value="or">Oriya</option>
<option value="osa">Osage</option>
<option value="pa">Panjabi - ਪੰਜਾਬੀ</option>
<option value="pp">Papiamento</option>
<option value="fa">Persian - فارسی</option>
<option value="pl">Polish - Polski</option>
<option value="pt">Portuguese - Português</option>
<option value="rj">Rajasthani</option>
<option value="rar">Rarotonga - Te reo Ipukarea</option>
<option value="ro">Romanian - Română</option>
<option value="ru">Russian - Русский</option>
<option value="sm">Samoan</option>
<option value="sgs">Samogitian - Žemaitėškā</option>
<option value="sa">Sanskrit - संस्कृतम्</option>
<option value="gd">Scots Gaelic</option>
<option value="see">Seneca - Onödowá'ga</option>
<option value="sr">Serbian - Српски</option>
<option value="sjw">Shawnee</option>
<option value="shh">Shoshoni</option>
<option value="sms">Skolt Sami - Nuõrttsää’mǩiõll</option>
<option value="sk">Slovak - Slovenský jazyk</option>
<option value="sl">Slovenian - Slovenščina</option>
<option value="sma">Southern Sami - Åarjelsaemien gïele</option>
<option value="es">Spanish - Español</option>
<option value="ss">Swazi / Swati - SiSwati</option>
<option value="sv">Swedish - Svenska</option>
<option value="tah">Tahitian - Reo Mā'ohi</option>
<option value="ta">Tamil - தமிழ்</option>
<option value="tt">Tatar - Татарча</option>
<option value="te">Telugu</option>
<option value="tew">Tewa - </option>
<option value="th">Thai - ภาษาไทย</option>
<option value="bo">Tibetan - བོད་ཡིག</option>
<option value="to">Tonga</option>
<option value="tr">Turkish - Türkçe</option>
<option value="uk">Ukrainian - Українська</option>
<option value="ur">Urdu - اردو</option>
<option value="ug">Uyghur - 维吾尔语</option>
<option value="uz">Uzbek - Ўзбек</option>
<option value="vi">Vietnamese - Tiếng Việt</option>
<option value="cy">Welsh - Cymraeg</option>
<option value="owl">Welsh, Old</option>
<option value="xh">Xhosa - isiXhosa</option>
<option value="yi">Yiddish - ייִדיש</option>
<option value="zu">Zulu - isiZulu</option>
</select>
</div>
<script src="jquery.js"></script>
<script src="shared.js"></script>
<script src="popup.js"></script>
<script src="research.js"></script>
<script src="parse-names.js"></script>
<script src="parse-location.js"></script>
<script src="collections/smartmatch.js"></script>
<script src="collections/findagrave.js"></script>
<script src="collections/billiongraves.js"></script>
<script src="collections/wikitree.js"></script>
<script src="collections/familysearchrecord.js"></script>
<script src="collections/familysearchjson.js"></script>
<script src="collections/rootsweb.js"></script>
<script src="collections/ancestryfree.js"></script>
<script src="collections/ancestrynew.js"></script>
<script src="collections/werelate.js"></script>
<script src="collections/myheritage.js"></script>
<script src="collections/familytreemaker.js"></script>
<script src="collections/geneanet.js"></script>
<script src="collections/tng.js"></script>
<script src="collections/gravez.js"></script>
<script src="collections/toldot.js"></script>
<script src="collections/yadVaShem.js"></script>
<script src="collections/bezikaron.js"></script>
<script src="buildform.js"></script>
<script src="moment.js"></script>
</body>
</html>