summaryrefslogtreecommitdiff
path: root/utilities/diatheke/cgi/index-private.html
blob: 6afbc91356605d8a24944a1a1daac0ea39527d6b (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Diatheke Online Bible</title>
</head>

<body>

<form method="get" action="cgi-bin/diatheke.pl">
  <p /> <font face="Arial, Helvetica, sans-serif">Verse or Search key:</font> 
    <input type="text" name="verse" size="20">
    <input type="submit" name="Submit" value="Submit">
    <input type="reset" name="Reset" value="Reset">
    <br />
    <br />
    <input type="radio" name="search" checked value="" />
    <font face="Arial, Helvetica, sans-serif">Verse/Commentary Lookup</font> <br />
    <input type="radio" name="search" value="phrase" />
    <font face="Arial, Helvetica, sans-serif">Phrase Search</font><br />
    <input type="radio" name="search" value="multiword" />
    <font face="Arial, Helvetica, sans-serif">Multiple Word Search</font><br />
    <input type="radio" name="search" value="regex" />
    <font face="Arial, Helvetica, sans-serif">Regular Expression Search<br>
    <br>
    </font>
  <table width="100%" border="0">
    <tr> 
      <td width="50%"> 
        <input type="checkbox" name="strongs" value="on" checked>
        <font size="-1" face="Arial, Helvetica, sans-serif">Show Strong's Numbers</font></td>
      <td width="50%"> 
        <input type="checkbox" name="headings" value="on" checked>
        <font size="-1" face="Arial, Helvetica, sans-serif">Show Section Headings</font></td>
    </tr>
    <tr> 
      <td width="50%"> 
        <input type="checkbox" name="footnotes" value="on" checked>
        <font size="-1" face="Arial, Helvetica, sans-serif">Show Footnotes</font></td>
      <td width="50%"> 
        <input type="checkbox" name="scriprefs" value="on" checked>
        <font size="-1" face="Arial, Helvetica, sans-serif">Show Scripture Cross-References</font></td>
    </tr>
    <tr> 
      <td width="50%"> 
        <input type="checkbox" name="morph" value="on" checked>
        <font size="-1" face="Arial, Helvetica, sans-serif">Show Morphology</font></td>
      <td width="50%"> 
        <input type="checkbox" name="hebvowels" value="on" checked>
        <font size="-1" face="Arial, Helvetica, sans-serif">Show Hebrew Vowels</font></td>
    </tr>
    <tr> 
      <td width="50%">
        <input type="checkbox" name="lemmas" value="on" checked>
        <font size="-1" face="Arial, Helvetica, sans-serif">Show Lemmas</font></td>
      <td width="50%">
        <input type="checkbox" name="hebcant" value="on">
        <font size="-1" face="Arial, Helvetica, sans-serif">Show Hebrew Cantillation 
        Marks </font></td>
    </tr>
    <tr> 
      <td width="50%">
        <input type="checkbox" name="latinxlit" value="on">
        <font face="Arial, Helvetica, sans-serif" size="-1">Latin Transliterate</font> 
      </td>
      <td width="50%">
        <input type="checkbox" name="grkacc" value="on" checked>
        <font size="-1" face="Arial, Helvetica, sans-serif">Show Greek Accents</font> 
      </td>
    </tr>
  </table>
  <br>
  <table BORDER="0" WIDTH="100%">
    <tr> 
      <td width="50%"><font face=Times New Roman, Times, serif><b>English Biblical 
        Texts:</b></font><br />
      </td>
      <td width="50%"><font face=Times New Roman, Times, serif><b>Non-English 
        Biblical Texts:</b></font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="AKJV" value="on">
        <font size="-1" face=Times New Roman, Times, serif>American King James 
        Version (AKJV)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="ALB" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Albanian Bible (ALB)</font> 
      </td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="ALT" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Analytical-Literal 
        Translation (ALT)</font> </td>
      <td width="50%"> 
        <input type="checkbox" name="Afr1953" value="on">
        <font size="-1" face=Times New Roman, Times, serif>1953 Afrikaans Bybel 
        (Afr1953)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="ASV" value="on">
        <font size="-1" face=Times New Roman, Times, serif>1901 American Standard 
        Version (ASV)</font> </td>
      <td width="50%"> 
        <input type="checkbox" name="Afr1983" value="on">
        <font size="-1" face=Times New Roman, Times, serif>1983 Afrikaans Bybel 
        (Afr1983)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="BBE" value="on">
        <font size="-1" face=Times New Roman, Times, serif>1965 Bible in Basic 
        English (BBE)</font> </td>
      <td width="50%"> 
        <input type="checkbox" name="AraSVD" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Smith & Van Dyke Arabic 
        Bible (AraSVD)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="BWE" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Bible in Worldwide 
        English (BWE)</font> </td>
      <td width="50%"> 
        <input type="checkbox" name="ChiGU" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Chinese Glory Union 
        Bible (ChiGU)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="Brenton" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Brenton's English Translation 
        of the Septuagint (Brenton)</font> </td>
      <td width="50%"> 
        <input type="checkbox" name="CzeBKR" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Czech Bible Kralicka 
        (CzeBKR)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="Common" value="on">
        <font size="-1" face=Times New Roman, Times, serif>The Common Edition: 
        New Testament (Common)</font> </td>
      <td width="50%"> 
        <input type="checkbox" name="CzeCEP" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Czech Ekumenicky Cesky 
        preklad (CzeCEP)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="DR" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Douay-Rheims Bible 
        (DR)</font> </td>
      <td width="50%"> 
        <input type="checkbox" name="CzeKMS" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Czech Preklad KMS Nova 
        smlouva (CzeKMS)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="DRA" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Douay-Rheims 1899 American 
        Edition (DRA)</font> </td>
      <td width="50%"> 
        <input type="checkbox" name="CzeNKB" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Czech Nova kralicka 
        Bible (CzeNKB)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="Darby" value="on">
        <font size="-1" face=Times New Roman, Times, serif>1889 Darby Bible (Darby)</font> 
      </td>
      <td width="50%"> 
        <input type="checkbox" name="Dan" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Danske Bibel (Dan)</font> 
      </td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="GodsWord" value="on">
        <font size="-1" face=Times New Roman, Times, serif>GOD'S WORD Translation 
        (GodsWord)</font> </td>
      <td width="50%"> 
        <input type="checkbox" name="DutLEI" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Dutch Leidse Vertaling 
        (DutLEI)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="HNV" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Hebrew Names Version 
        of the World English Bible (HNV)</font> </td>
      <td width="50%"> 
        <input type="checkbox" name="DutLU" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Dutch Lutherse Vertaling 
        (DutLU)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="IGNT" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Interlinear Greek New 
        Testament (IGNT)</font> </td>
      <td width="50%"> 
        <input type="checkbox" name="DutNBG" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Dutch Netherlands Bijbelgenootschap 
        Vertaling 1951 (DutNBG)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="ISV" value="on">
        <font size="-1" face=Times New Roman, Times, serif>International Standard 
        Version (ISV)</font> </td>
      <td width="50%"> 
        <input type="checkbox" name="DutPALM" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Dutch PALM-editie NT 
        (DutPALM)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="JPS" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Jewish Publication 
        Society Old Testament (JPS)</font> </td>
      <td width="50%"> 
        <input type="checkbox" name="DutSVV" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Dutch Statenvertaling 
        (DutSVV)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="KJ21" value="on">
        <font size="-1" face=Times New Roman, Times, serif>21st Century King James 
        Version (KJ21)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="EquShr" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Equadorian Shuar NT 
        (EquShr)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="KJV" value="on">
        <font size="-1" face=Times New Roman, Times, serif>King James Version 
        of 1611 w/ Strongs Numbers (KJV)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="Esperanto" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Esperanto Bible (Esperanto)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="LITV" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Green's Literal Translation 
        (LITV)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="FinPR" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Finnish 1938 PhyZ Raamattu 
        (FinPR)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="LO" value="on">
        <font size="-1" face=Times New Roman, Times, serif>The Living Oracles 
        NT (LO)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="FreBFC" value="on">
        <font size="-1" face=Times New Roman, Times, serif>French Bible en francais 
        courant, edition revisee (FreBFC)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="MKJV" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Green's Modern King 
        James Version (MKJV)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="FreBJ" value="on">
        <font size="-1" face=Times New Roman, Times, serif>French Bible de Jerusalem 
        (FreBJ)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="Montgomery" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Montgomery New Testament 
        (Montgomery)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="FreCrl" value="on">
        <font size="-1" face=Times New Roman, Times, serif>French Haitian Creole 
        Version (FreCrl)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="Murdock" value="on">
        <font size="-1" face=Times New Roman, Times, serif>James Murdock's Translation 
        of the Syriac Peshitta (Murdock)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="FreDrb" value="on">
        <font size="-1" face=Times New Roman, Times, serif>French Darby Version 
        (FreDrb)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="NAB" value="on">
        <font size="-1" face=Times New Roman, Times, serif>New American Bible 
        (NAB)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="FreLSG" value="on">
        <font size="-1" face=Times New Roman, Times, serif>French 1910 Louis Segond 
        (FreLSG)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="NASB" value="on">
        <font size="-1" face=Times New Roman, Times, serif>New American Standard 
        Bible (NASB)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="FreNEG" value="on">
        <font size="-1" face=Times New Roman, Times, serif>French Nouvelle Edition 
        de Geneve 1979 (FreNEG)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="NASB95" value="on">
        <font size="-1" face=Times New Roman, Times, serif> New American Standard 
        Bible 1995 Update (NASB95)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="FreTOB" value="on">
        <font size="-1" face=Times New Roman, Times, serif>French Traduction oecumenique 
        de la Bible (FreTOB)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="NCV" value="on">
        <font size="-1" face=Times New Roman, Times, serif>New Century Version 
        (NCV)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="GerBen" value="on">
        <font size="-1" face=Times New Roman, Times, serif>German Bengel NT (GerBen)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="NIV" value="on">
        <font size="-1" face=Times New Roman, Times, serif>New International Version 
        (NIV)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="GerEin" value="on">
        <font size="-1" face=Times New Roman, Times, serif>German Einheitsuebersetzung 
        der Heilegen Schrift (GerEin)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="NIVBr" value="on">
        <font size="-1" face=Times New Roman, Times, serif>New International Version, 
        British Edition (NIVBr)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="GerElb" value="on">
        <font size="-1" face=Times New Roman, Times, serif>German Darby Unrevidierte 
        Elberfelder 1905 (GerElb)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="NJB" value="on">
        <font size="-1" face=Times New Roman, Times, serif>New Jerusalem Bible 
        (NJB)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="GerLut" value="on">
        <font size="-1" face=Times New Roman, Times, serif>German 1912 Luther 
        (GerLut)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="NKJV" value="on">
        <font size="-1" face=Times New Roman, Times, serif>New King James Version 
        (NKJV)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="GerLut1545" value="on">
        <font size="-1" face=Times New Roman, Times, serif>German 1545 Luther 
        (GerLut1545)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="NLT" value="on">
        <font size="-1" face=Times New Roman, Times, serif>New Living Translation 
        (NLT)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="GerRElb" value="on">
        <font size="-1" face=Times New Roman, Times, serif>German Elberfelder 
        Bibel revidierte Fassung 1993 (GerRElb)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="NRSV" value="on">
        <font size="-1" face=Times New Roman, Times, serif>New Revised Standard 
        Version (NRSV)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="GerRLut" value="on">
        <font size="-1" face=Times New Roman, Times, serif>German Revised Lutherbibel 
        1984 (GerRLut)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="ORTHJBC" value="on">
        <font size="-1" face=Times New Roman, Times, serif>The Orthodox Jewish 
        Brit Chadasha (ORTHJBC)</font> </td>
      <td width="50%"> 
        <input type="checkbox" name="GerSch" value="on">
        <font size="-1" face=Times New Roman, Times, serif>German 1951 Schlachter 
        Bibel (GerSch)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="Phillips" value="on">
        <font size="-1" face=Times New Roman, Times, serif>J B Phillips New Testament 
        (Phillips)</font> </td>
      <td width="50%"> 
        <input type="checkbox" name="GothicA" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Gothic Codex Ambr. 
        A & Mss. (GothicA)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="RNKJV" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Restored Name King 
        James Version (RNKJV)</font> </td>
      <td width="50%"> 
        <input type="checkbox" name="GothicB" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Gothic Codex Ambr. 
        B & Car. (GothicB)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="RSV" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Revised Standard Version 
        (RSV)</font> </td>
      <td width="50%"> 
        <input type="checkbox" name="HunKar" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Hungarian Karoli (HunKar)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="RWebster" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Revised 1833 Webster 
        Version (RWebster)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="Icelandic" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Icelandic Bible (Icelandic)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="Rotherham" value="on">
        <font size="-1" face=Times New Roman, Times, serif>The Emphasized Bible 
        by J. B. Rotherham (Rotherham)</font> </td>
      <td width="50%"> 
        <input type="checkbox" name="IndBIS" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Indonesian Bahasa Indonesia 
        Sehari-hari (IndBIS)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="TEV" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Todays English Version 
        (Good News Bible) 1966 and 1976 (TEV)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="IndTB" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Indonesian Terjemahan 
        Baru (IndTB)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="TMB" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Third Millenium Bible 
        (TMB)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="IndTL" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Indonesian Terjemahan 
        Baru (IndTL)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="Twenty" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Twentieth Century New 
        Testament (Twenty)</font> </td>
      <td width="50%"> 
        <input type="checkbox" name="ItaIEP" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Italian NVB Nuovissima 
        Versione della Bibbbia San Paolo Edizione (ItaIEP)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="WEB" value="on">
        <font size="-1" face=Times New Roman, Times, serif>World English Bible 
        (WEB)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="ItaLND" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Italian 1991 La Nuova 
        Diodati (ItaLND)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="Websters" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Webster Bible (Websters)</font> 
      </td>
      <td width="50%"> 
        <input type="checkbox" name="ItaNRV" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Italian 1994 La Sacra 
        Bibbia Nuova Riveduta (ItaNRV)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="Weymouth" value="on">
        <font size="-1" face=Times New Roman, Times, serif>1912 Weymouth NT (Weymouth)</font> 
      </td>
      <td width="50%"> 
        <input type="checkbox" name="JapKUG" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Japanese JKUG Translation 
        (JapKUG)</font> </td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="YLT" value="on">
        <font size="-1" face=Times New Roman, Times, serif>1898 Young's Literal 
        Translation (YLT)</font> </td>
      <td width="50%"> 
        <input type="checkbox" name="JapSNKI" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Japanese JSNKI Translation 
        (JapSNKI)</font></td>
    </tr>
    <tr> 
      <td width="48%">&nbsp; </td>
      <td width="50%"> 
        <input type="checkbox" name="Ketchi" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Ketchi Bible (Ketchi)</font></td>
    </tr>
    <tr> 
      <td width="48%"><font face=Times New Roman, Times, serif><b>Unorthodox or 
        Heretical Biblical Texts:</b></font> </td>
      <td width="50%"> 
        <input type="checkbox" name="Korean" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Korean Bible (Korean)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="CLNT" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Concordant Literal 
        New Testament (CLNT)</font> </td>
      <td width="50%"> 
        <input type="checkbox" name="Latvian" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Latvian New Testament 
        (Latvian)</font> </td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="Diaglott" value="on">
        <font size="-1" face=Times New Roman, Times, serif>The Emphatic Diaglott 
        (Diaglott)</font> </td>
      <td width="50%"> 
        <input type="checkbox" name="ManxGaelic" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Manx Gaelic Scripture 
        Portions (ManxGaelic)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="JST" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Joseph Smith Translation 
        (JST)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="Maori" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Maori Bible (Maori)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="RVIC" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Revised Version, Improved 
        and Corrected (RVIC)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="Mel" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Melanesian Pidgin Bible 
        (Mel)</font></td>
    </tr>
    <tr> 
      <td width="48%">&nbsp; </td>
      <td width="50%"> 
        <input type="checkbox" name="NorBok" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Norwegian 1930 Bokmal 
        (NorBok)</font></td>
    </tr>
    <tr> 
      <td width="48%"><font face=Times New Roman, Times, serif><b>Original Language 
        Biblical Texts:</b></font> </td>
      <td width="50%"> 
        <input type="checkbox" name="NorN38" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Norwegian 1938 Nynorsk 
        (NorN38)</font></td>
    </tr>
    <tr> 
      <td width="51%"> 
        <input type="checkbox" name="LXX" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Septuagint (LXX)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="NorNBK" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Norwegian Bibel Konkordant 
        (NorNBK)</font></td>
    </tr>
    <tr> 
      <td width="51%"> 
        <input type="checkbox" name="LXXM" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Septuagint, Morphologically 
        Tagged Rahlfs' (LXXM)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="NorNyn" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Norwegian 1994 Nynorsk 
        (NorNyn)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="N27U4" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Nestle Aland 27th Ed./ 
        UBS 4th Ed. Greek Text (N27U4)</font> </td>
      <td width="50%"> 
        <input type="checkbox" name="Norsk" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Norsk Bibelen (Norsk)</font></td>
    </tr>
    <tr> 
      <td width="51%"> 
        <input type="checkbox" name="BHS" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Biblia Hebraica Stuttgartensia 
        (BHS)</font> </td>
      <td width="50%"> 
        <input type="checkbox" name="PhiCEB" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Philippine Nga Cebuano 
        (PhiCEB)</font> </td>
    </tr>
    <tr> 
      <td width="51%"> 
        <input type="checkbox" name="Byz" value="on">
        <font size="-1" face=Times New Roman, Times, serif>1991 Byzantine/Majority 
        Text (Byz)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="PolBTP" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Polish Millenium Bible 
        1984, 4th Ed. (PolBTP)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="Scrivner" value="on">
        <font size="-1" face=Times New Roman, Times, serif>1894 Scrivener Textus 
        Receptus (Scrivner)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="PorAA" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Portuguese Joao Ferreira 
        de Almeida Atualizada (PorAA)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="Stephanus" value="on">
        <font size="-1" face=Times New Roman, Times, serif>1550 Stephanus Textus 
        Receptus (Stephanus)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="PorACF" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Brazillian Portuguese 
        Joao Ferreira de Almeida, Corrigada Fiel 1995 (PorACF)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="Tisch" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Tischendorf's Eighth 
        Edition GNT (Tisch)</font> </td>
      <td width="50%"> 
        <input type="checkbox" name="PorBRP" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Portuguese 1994 Almeida 
        Biblia (PorBRP)</font></td>
    </tr>
    <tr> 
      <td width="51%"> 
        <input type="checkbox" name="Vulgate" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Latin Vulgate (Vulgate)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="PorRA" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Portuguese Almeida 
        Revista e Atualizada (PorRA)</font></td>
    </tr>
    <tr> 
      <td width="51%"> 
        <input type="checkbox" name="Vulgate_HebPs" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Latin Vulgate Psalms 
        from Hebrew (Vulgate_HebPs)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="PorRC" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Portuguese Almeida 
        Revista e Corrigida (PorRC)</font></td>
    </tr>
    <tr> 
      <td width="51%"> 
        <input type="checkbox" name="WH" value="on">
        <font size="-1" face=Times New Roman, Times, serif>1881 Westcott-Hort 
        Greek Text (WH)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="RST" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Russian Synodal Translation 
        (RST)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="WHNU" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Westcott-Hort with 
        NA27U4 variants (WHNU)</font> </td>
      <td width="50%"> 
        <input type="checkbox" name="RomCor" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Romanian Cornilescu 
        Version (RomCor)</font></td>
    </tr>
    <tr> 
      <td width="48%">&nbsp;</td>
      <td width="50%"> 
        <input type="checkbox" name="Romani" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Romani (Gypsy) New 
        Testament (Romani)</font></td>
    </tr>
    <tr> 
      <td width="48%"><font face=Times New Roman, Times, serif><b>Commentaries:</b></font></td>
      <td width="50%"> 
        <input type="checkbox" name="Sango" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Le Sainte Bible en 
        sango, 1996 (Sango)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="AudioKJV" value="on">
        <font size="-1" face=Times New Roman, Times, serif>KJV Audio Bible read 
        by James Scourby (AudioKJV)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="ScotsGaelic" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Scots Gaelic Gospel 
        of Mark (ScotsGaelic)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="Barnes" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Barnes' New Testament 
        Notes (Barnes)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="SpaLBA" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Spanish La Biblia de 
        Las Americas (SpaLBA)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="Clarke" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Adam Clarke's Commentary 
        on the Bible (Clarke)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="SpaRV" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Spanish Reina-Valera 
        (SpaRV)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="DTN" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Darby Translation Notes 
        (DTN)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="SpaRV60" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Spanish Reina-Valera 
        Revised 1960 (SpaRV60)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="Family" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Family Bible Notes 
        (Family)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="SpaRV95" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Spanish Reina-Valera 
        Update 1995 (SpaRV95)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="Geneva" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Geneva Bible Translation 
        Notes (Geneva)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="SpaRVA" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Spanish Version Reina-Valera 
        Actualizada (SpaRVA)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="Gill" value="on">
        <font size="-1" face=Times New Roman, Times, serif>John Gill's Expositor 
        (Gill)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="SpaSEV" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Spanish 1569 Sagradas 
        Escrituras Version Antigua (SpaSEV)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="JFB" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Jamieson Fausset Brown 
        Bible Commentary (JFB)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="SpaVNT" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Spanish 1858 Valera 
        New Testament (SpaVNT)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="MAK" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Matthias Ansorgs Kommentar 
        (MAK)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="Swahili" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Swahili New Testament 
        (Swahili)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="MHC" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Matthew Henry's Complete 
        Commentary on the Whole Bible (MHC)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="SweSVE" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Swedish Bible 1917 
        New Testament (SweSVE)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="MHCC" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Matthew Henry's Concise 
        Commentary on the Whole Bible (MHCC)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="Tagalog" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Tagalog (John & James) 
        (Tagalog)</font> </td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="PNT" value="on">
        <font size="-1" face=Times New Roman, Times, serif>The People's New Testament 
        (PNT)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="Tamil" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Tamil Bible (Tamil)</font> 
      </td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="Personal" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Personal Commentary 
        (Personal)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="ThaiKJV" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Thai KJV (ThaiKJV)</font> 
      </td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="RWP" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Robertson's Word Pictures 
        (RWP)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="Turkish" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Turkish NT (Turkish)</font> 
      </td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="Rieger" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Carl Heinrich Riegers 
        Kommentar (Rieger)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="UMGreek" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Unaccented Modern Greek 
        Text (UMGreek)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="TDavid" value="on">
        <font size="-1" face=Times New Roman, Times, serif>C. H. Spurgeon's Treasury 
        of David (TDavid)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="Ukrainian" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Ukrainian Bible (Ukrainian)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="TFG" value="on">
        <font size="-1" face=Times New Roman, Times, serif>The Fourfold Gospel 
        and Commentary on Acts of Apostles (TFG)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="Uma" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Uma New Testament (Uma)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="TSK" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Treasury of Scriptural 
        Knowledge (TSK)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="Viet" value="on">
        <font size="-1" face=Times New Roman, Times, serif>1934 Vietnamese Bible 
        (Viet)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="Wesley" value="on">
        <font size="-1" face=Times New Roman, Times, serif>John Wesley's Notes 
        on the Bible (Wesley)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="Xhosa" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Xhosa Bible (Xhosa)</font></td>
    </tr>
    <tr> 
      <td width="48%">&nbsp;</td>
      <td width="50%">&nbsp; </td>
    </tr>
    <tr> 
      <td width="48%"><font face=Times New Roman, Times, serif><b>Dictionaries 
        & Lexica:</b></font></td>
      <td width="50%"><font face=Times New Roman, Times, serif><b>Daily Devotionals:</b></font> 
      </td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="AmTract" value="on">
        <font size="-1" face=Times New Roman, Times, serif>American Tract Society 
        Bible Dictionary (AmTract)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="Daily" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Jonathan Bagster's 
        Daily Light on the Daily Path (Daily)</font> </td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="BDB" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Brown-Driver-Briggs 
        Hebrew Lexicon (BDB)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="SME" value="on">
        <font size="-1" face=Times New Roman, Times, serif>C. H. Spurgeon's Morning 
        and Evening: Daily Readins (SME)</font> </td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="Eastons" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Easton's Bible Dictionary 
        (Eastons)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="losung_de_89" value="on">
        <font size="-1" face=Times New Roman, Times, serif>1989 Losung auf deutsch 
        (losung_de_89)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="Hitchcocks" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Hitchcock's Bible Names 
        (Hitchcocks)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="losung_de_90" value="on">
        <font size="-1" face=Times New Roman, Times, serif>1990 Losung auf deutsch 
        (losung_de_90)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="ISBE" value="on">
        <font size="-1" face=Times New Roman, Times, serif>International Standard 
        Bible Encyclopedia (ISBE)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="losung_de_91" value="on">
        <font size="-1" face=Times New Roman, Times, serif>1991 Losung auf deutsch 
        (losung_de_91)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="Naves" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Nave's Topical Bible 
        (Naves)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="losung_de_92" value="on">
        <font size="-1" face=Times New Roman, Times, serif>1992 Losung auf deutsch 
        (losung_de_92)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="Packard" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Packard's Morphological 
        Analysis Codes (Packard)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="losung_de_93" value="on">
        <font size="-1" face=Times New Roman, Times, serif>1993 Losung auf deutsch 
        (losung_de_93)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="Smiths" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Smith's Bible Dictionary 
        (Smiths)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="losung_de_94" value="on">
        <font size="-1" face=Times New Roman, Times, serif>1994 Losung auf deutsch 
        (losung_de_94)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="StrongsGreek" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Strong's Greek Bible 
        Dictionary (StrongsGreek)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="losung_de_95" value="on">
        <font size="-1" face=Times New Roman, Times, serif>1995 Losung auf deutsch 
        (losung_de_95)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="StrongsHebrew" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Strong's Hebrew Bible 
        Dictionary (StrongsHebrew)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="losung_de_96" value="on">
        <font size="-1" face=Times New Roman, Times, serif>1996 Losung auf deutsch 
        (losung_de_96)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="Thayer" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Thayer's Greek Lexicon 
        (Thayer)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="losung_de_97" value="on">
        <font size="-1" face=Times New Roman, Times, serif>1997 Losung auf deutsch 
        (losung_de_97)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="Torrey" value="on">
        <font size="-1" face=Times New Roman, Times, serif>R. A. Torrey's New 
        Topical Textbook (Torrey)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="losung_de_98" value="on">
        <font size="-1" face=Times New Roman, Times, serif>1998 Losung auf deutsch 
        (losung_de_98)</font></td>
    </tr>
    <tr> 
      <td width="48%" height="23"> 
        <input type="checkbox" name="Vines" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Vines Bible Dictionary 
        (Vines)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="losung_de_99" value="on">
        <font size="-1" face=Times New Roman, Times, serif>1999 Losung auf deutsch 
        (losung_de_99)</font></td>
    </tr>
    <tr> 
      <td width="48%"> 
        <input type="checkbox" name="WebstersDict" value="on">
        <font size="-1" face=Times New Roman, Times, serif>Webster's Revised Unabridged 
        Dictionary 1913 (WebstersDict)</font></td>
      <td width="50%"> 
        <input type="checkbox" name="losung_en_96" value="on">
        <font size="-1" face=Times New Roman, Times, serif>1996 Watchwords (Losung) 
        in English (losung_en_96)</font></td>
    </tr>
    <tr> 
      <td width="48%" height="23">&nbsp;</td>
      <td width="50%" height="23"> 
        <input type="checkbox" name="losung_en_97" value="on">
        <font size="-1" face=Times New Roman, Times, serif>1997 Watchwords (Losung) 
        in English (losung_en_97)</font></td>
    </tr>
    <tr> 
      <td width="48%">&nbsp;</td>
      <td width="50%"> 
        <input type="checkbox" name="losung_en_98" value="on">
        <font size="-1" face=Times New Roman, Times, serif>1998 Watchwords (Losung) 
        in English (losung_en_98)</font></td>
    </tr>
    <tr> 
      <td width="48%">&nbsp; </td>
      <td width="50%"> 
        <input type="checkbox" name="losung_en_99" value="on">
        <font size="-1" face=Times New Roman, Times, serif>1999 Watchwords (Losung) 
        in English (losung_en_99)</font></td>
    </tr>
    <tr> 
      <td width="48%">&nbsp; </td>
      <td width="50%"> 
        <input type="checkbox" name="losung_es_99" value="on">
        <font size="-1" face=Times New Roman, Times, serif>1999 Watchwords (Losung) 
        en Castellano (losung_es_99)</font></td>
    </tr>
    <tr> 
      <td width="48%">&nbsp;</td>
      <td width="50%"> 
        <input type="checkbox" name="losung_nl_99" value="on">
        <font size="-1" face=Times New Roman, Times, serif>1999 Watchwords (Losung) 
        in Dutch (losung_nl_99)</font></td>
    </tr>
  </table>
</form>

<form method="get" action="cgi-bin/dia-def.pl">
  Select default Bible version for cross-references:&nbsp;<select name="defversion" size="1">
  
<option value="AKJV">American King James Version (AKJV)</option>
<option value="ALB">Albanian Bible (ALB)</option>
<option value="ALT">Analytical-Literal Translation (ALT)</option>
<option value="ASV">1901 American Standard Version (ASV)</option>
<option value="Afr1953">1953 Afrikaans Bybel (Afr1953)</option>
<option value="Afr1983">1983 Afrikaans Bybel (Afr1983)</option>
<option value="AraSVD">Smith & Van Dyke Arabic Bible (AraSVD)</option>
<option value="BBE">1965 Bible in Basic English (BBE)</option>
<option value="BHS">Biblia Hebraica Stuttgartensia (BHS)</option>
<option value="BWE">Bible in Worldwide English (BWE)</option>
<option value="Brenton">Brenton's English Translation of the Septuagint (Brenton)</option>
<option value="Byz">1991 Byzantine/Majority Text (Byz)</option>
<option value="CLNT">Concordant Literal New Testament (CLNT)</option>
<option value="ChiGU">Chinese Glory Union Bible (ChiGU)</option>
<option value="Common">The Common Edition: New Testament (Common)</option>
<option value="CzeBKR">Czech Bible Kralicka (CzeBKR)</option>
<option value="CzeCEP">Czech Ekumenicky Cesky preklad (CzeCEP)</option>
<option value="CzeKMS">Czech Preklad KMS Nova smlouva (CzeKMS)</option>
<option value="CzeNKB">Czech Nova kralicka Bible (CzeNKB)</option>
<option value="DR">Douay-Rheims Bible (DR)</option>
<option value="DRA">Douay-Rheims 1899 American Edition (DRA)</option>
<option value="Dan">Danske Bibel (Dan)</option>
<option value="Darby">1889 Darby Bible (Darby)</option>
<option value="Diaglott">The Emphatic Diaglott (Diaglott)</option>
<option value="DutLEI">Dutch Leidse Vertaling (DutLEI)</option>
<option value="DutLU">Dutch Lutherse Vertaling (DutLU)</option>
<option value="DutNBG">Dutch Netherlands Bijbelgenootschap Vertaling 1951 (DutNBG)</option>
<option value="DutPALM">Dutch PALM-editie NT (DutPALM)</option>
<option value="DutSVV">Dutch Statenvertaling (DutSVV)</option>
<option value="EquShr">Equadorian Shuar NT (EquShr)</option>
<option value="Esperanto">Esperanto Bible (Esperanto)</option>
<option value="FinPR">Finnish 1938 PhyZ Raamattu (FinPR)</option>
<option value="FreBFC">French Bible en francais courant, edition revisee (FreBFC)</option>
<option value="FreBJ">French Bible de Jerusalem (FreBJ)</option>
<option value="FreCrl">French Haitian Creole Version (FreCrl)</option>
<option value="FreDrb">French Darby Version (FreDrb)</option>
<option value="FreLSG">1910 Louis Segond (FreLSG)</option>
<option value="FreNEG">French Nouvelle Edition de Geneve 1979 (FreNEG)</option>
<option value="FreTOB">French Traduction oecumenique de la Bible (FreTOB)</option>
<option value="GerBen">German Bengel NT (GerBen)</option>
<option value="GerEin">German Einheitsuebersetzung der Heilegen Schrift (GerEin)</option>
<option value="GerElb">German Darby Unrevidierte Elberfelder 1905 (GerElb)</option>
<option value="GerLut">German 1912 Luther (GerLut)</option>
<option value="GerLut1545">German 1545 Luther (GerLut1545)</option>
<option value="GerRElb">German Elberfelder Bibel revidierte Fassung 1993 (GerRElb)</option>
<option value="GerRLut">German Revised Lutherbibel 1984 (GerRLut)</option>
<option value="GerSch">German 1951 Schlachter Bibel (GerSch)</option>
<option value="GodsWord">GOD'S WORD Translation (GodsWord)</option>
<option value="GothicA">Gothic Codex Ambr. A & Mss. (GothicA)</option>
<option value="GothicB">Gothic Codex Ambr. B & Car. (GothicB)</option>
<option value="HNV">Hebrew Names Version of the World English Bible (HNV)</option>
<option value="HunKar">Hungarian Karoli (HunKar)</option>
<option value="IGNT">Interlinear Greek New Testament (IGNT)</option>
<option value="ISV">International Standard Version (ISV)</option>
<option value="Icelandic">Icelandic Bible (Icelandic)</option>
<option value="IndBIS">Indonesian Bahasa Indonesia Sehari-hari (IndBIS)</option>
<option value="IndTB">Indonesian Terjemahan Baru (IndTB)</option>
<option value="IndTL">Indonesian Terjemahan Baru (IndTL)</option>
<option value="ItaIEP">Italian NVB Nuovissima Versione della Bibbbia San Paolo Edizione (ItaIEP)</option>
<option value="ItaLND">Italian 1991 La Nuova Diodati (ItaLND)</option>
<option value="ItaNRV">Italian 1994 La Sacra Bibbia Nuova Riveduta (ItaNRV)</option>
<option value="JPS">Jewish Publication Society Old Testament (JPS)</option>
<option value="JST">Joseph Smith Translation (JST)</option>
<option value="JapKUG">Japanese JKUG Translation (JapKUG)</option>
<option value="JapSNKI">Japanese JSNKI Translation (JapSNKI)</option>
<option value="KJ21">21st Century King James Version (KJ21)</option>
<option value="KJV">King James Version of 1611 w/ Strongs Numbers (KJV)</option>
<option value="Ketchi">Ketchi Bible (Ketchi)</option>
<option value="Korean">Korean Bible (Korean)</option>
<option value="LITV">Green's Literal Translation (LITV)</option>
<option value="LO">The Living Oracles NT (LO)</option>
<option value="LXX">Septuagint (LXX)</option>
<option value="LXXM">Septuagint, Morphologically Tagged Rahlfs' (LXXM)</option>
<option value="Latvian">Latvian New Testament (Latvian)</option>
<option value="MKJV">Green's Modern King James Version (MKJV) (MKJV)</option>
<option value="ManxGaelic">Manx Gaelic Scripture Portions (ManxGaelic)</option>
<option value="Maori">Maori Bible (Maori)</option>
<option value="Mel">Melanesian Pidgin Bible (Mel)</option>
<option value="Montgomery">Montgomery New Testament (Montgomery)</option>
<option value="Murdock">James Murdock's Translation of the Syriac Peshitta (Murdock)</option>
<option value="N27U4">Nestle Aland 27th Ed./ UBS 4th Ed. Greek Text (N27U4)</option>
<option value="NAB">New American Bible (NAB)</option>
<option value="NASB">The New American Standard Bible (NASB)</option>
<option value="NASB95">The New American Standard Bible 1995 Update (NASB95)</option>
<option value="NCV">New Century Version (NCV)</option>
<option value="NIV">New International Version (NIV)</option>
<option value="NIVBr">New International Version, British Edition (NIVBr)</option>
<option value="NJB">New Jerusalem Bible (NJB)</option>
<option value="NKJV">New King James Version (NKJV)</option>
<option value="NLT">New Living Translation (NLT)</option>
<option value="NRSV">New Revised Standard Version (NRSV)</option>
<option value="NorBok">Norwegian 1930 Bokmal (NorBok)</option>
<option value="NorN38">Norwegian 1938 Nynorsk (NorN38)</option>
<option value="NorNBK">Norwegian Bibel Konkordant (NorNBK)</option>
<option value="NorNyn">Norwegian 1994 Nynorsk (NorNyn)</option>
<option value="Norsk">Norsk Bibelen (Norsk)</option>
<option value="ORTHJBC">The Orthodox Jewish Brit Chadasha (ORTHJBC)</option>
<option value="PhiCEB">Philippine Nga Cebuano (PhiCEB)</option>
<option value="Phillips">J B Phillips New Testament (Phillips)</option>
<option value="PolBTP">Polish Millenium Bible 1984, 4th Ed. (PolBTP)</option>
<option value="PorAA">Portuguese Joao Ferreira de Almeida Atualizada (PorAA)</option>
<option value="PorACF">Brazillian Portuguese Joao Ferreira de Almeida, Corrigada Fiel 1995 (PorACF)</option>
<option value="PorBRP">Portuguese 1994 Almeida Biblia (PorBRP)</option>
<option value="PorRA">Portuguese Almeida Revista e Atualizada (PorRA)</option>
<option value="PorRC">Portuguese Almeida Revista e Corrigida (PorRC)</option>
<option value="RNKJV">Restored Name King James Version (RNKJV)</option>
<option value="RST">Russian Synodal Translation (RST)</option>
<option value="RSV">Revised Standard Version (RSV)</option>
<option value="RVIC">Revised Version, Improved and Corrected (RVIC)</option>
<option value="RWebster">Revised 1833 Webster Version (RWebster)</option>
<option value="RomCor">Romanian Cornilescu Version (RomCor)</option>
<option value="Romani">Romani (Gypsy) New Testament (Romani)</option>
<option value="Rotherham">The Emphasized Bible by J. B. Rotherham (Rotherham)</option>
<option value="Sango">Le Sainte Bible en sango, 1996 (Sango)</option>
<option value="ScotsGaelic">Scots Gaelic Gospel of Mark (ScotsGaelic)</option>
<option value="Scrivner">1894 Scrivener Textus Receptus (Scrivner)</option>
<option value="SpaLBA">Spanish La Biblia de Las Americas (SpaLBA)</option>
<option value="SpaRV">Spanish Reina-Valera (SpaRV)</option>
<option value="SpaRV60">Spanish Reina-Valera Revised 1960 (SpaRV60)</option>
<option value="SpaRV95">Spanish Reina-Valera Update 1995 (SpaRV95)</option>
<option value="SpaRVA">Spanish Version Reina-Valera Actualizada (SpaRVA)</option>
<option value="SpaSEV">Spanish 1569 Sagradas Escrituras Version Antigua (SpaSEV)</option>
<option value="SpaVNT">Spanish 1858 Valera New Testament (SpaVNT)</option>
<option value="Stephanus">1550 Stephanus Textus Receptus (Stephanus)</option>
<option value="Swahili">Swahili New Testament (Swahili)</option>
<option value="SweSVE">Swedish Bible 1917 New Testament (SweSVE)</option>
<option value="TEV">Todays English Version (Good News Bible) 1966 and 1976 (TEV)</option>
<option value="TMB">Third Millenium Bible (TMB)</option>
<option value="Tagalog">Tagalog (John & James) (Tagalog)</option>
<option value="Tamil">Tamil Bible (Tamil)</option>
<option value="ThaiKJV">Thai KJV (ThaiKJV)</option>
<option value="Tisch">Tischendorf's Eighth Edition GNT (Tisch)</option>
<option value="Turkish">Turkish NT (Turkish)</option>
<option value="Twenty">Twentieth Century New Testament (Twenty)</option>
<option value="UMGreek">Unaccented Modern Greek Text (UMGreek)</option>
<option value="Ukrainian">Ukrainian Bible (Ukrainian)</option>
<option value="Uma">Uma New Testament (Uma)</option>
<option value="Viet">1934 Vietnamese Bible (Viet)</option>
<option value="Vulgate">Latin Vulgate (Vulgate)</option>
<option value="Vulgate_HebPs">Latin Vulgate Psalms from Hebrew (Vulgate_HebPs)</option>
<option value="WEB">World English Bible (WEB)</option>
<option value="WH">1881 Westcott-Hort Greek Text (WH)</option>
<option value="WHNU">Westcott-Hort with NA27U4 variants (WHNU)</option>
<option value="Websters">Webster Bible (Websters)</option>
<option value="Weymouth">1912 Weymouth NT (Weymouth)</option>
<option value="Xhosa">Xhosa Bible (Xhosa)</option>
<option value="YLT">1898 Young's Literal Translation (YLT)</option>
</select><input type="submit" name="Submit" value="Submit"></form><br/><form method="get" action="cgi-bin/dia-def.pl">Select locale:&nbsp;
<select name="locale" size="1"><option value="">browser default</option>
<option value="en">en</option>
<option value="de">de</option>
<option value="pt">pt</option>
<option value="sk">sk</option>
<option value="cs">cs</option>
<option value="da">da</option>
<option value="no">no</option>
</select>
<input type="submit" name="Submit" value="Submit">
</form>
Many of these modules require a browser with good Unicode support such as Internet 
Explorer 5.0+ and a good Unicode font such as Code 2000 (available at <a href="http://home.att.net/~jameskass/">http://home.att.net/~jameskass/</a>). 
</body>
</html>