-
Notifications
You must be signed in to change notification settings - Fork 0
/
brown-test.txt
1272 lines (510 loc) · 115 KB
/
brown-test.txt
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
The/at Fulton/np-tl County/nn-tl Grand/jj-tl Jury/nn-tl said/vbd Friday/nr an/at investigation/nn of/in Atlanta's/np$ recent/jj primary/nn election/nn produced/vbd ``/`` no/at evidence/nn ''/'' that/cs any/dti irregularities/nns took/vbd place/nn ./.
The/at jury/nn further/rbr said/vbd in/in term-end/nn presentments/nns that/cs the/at City/nn-tl Executive/jj-tl Committee/nn-tl ,/, which/wdt had/hvd over-all/jj charge/nn of/in the/at election/nn ,/, ``/`` deserves/vbz the/at praise/nn and/cc thanks/nns of/in the/at City/nn-tl of/in-tl Atlanta/np-tl ''/'' for/in the/at manner/nn in/in which/wdt the/at election/nn was/bedz conducted/vbn ./.
The/at September-October/np term/nn jury/nn had/hvd been/ben charged/vbn by/in Fulton/np-tl Superior/jj-tl Court/nn-tl Judge/nn-tl Durwood/np Pye/np to/to investigate/vb reports/nns of/in possible/jj ``/`` irregularities/nns ''/'' in/in the/at hard-fought/jj primary/nn which/wdt was/bedz won/vbn by/in Mayor-nominate/nn-tl Ivan/np Allen/np Jr./np ./.
``/`` Only/rb a/at relative/jj handful/nn of/in such/jj reports/nns was/bedz received/vbn ''/'' ,/, the/at jury/nn said/vbd ,/, ``/`` considering/in the/at widespread/jj interest/nn in/in the/at election/nn ,/, the/at number/nn of/in voters/nns and/cc the/at size/nn of/in this/dt city/nn ''/'' ./.
The/at jury/nn said/vbd it/pps did/dod find/vb that/cs many/ap of/in Georgia's/np$ registration/nn and/cc election/nn laws/nns ``/`` are/ber outmoded/jj or/cc inadequate/jj and/cc often/rb ambiguous/jj ''/'' ./.
It/pps recommended/vbd that/cs Fulton/np legislators/nns act/vb ``/`` to/to have/hv these/dts laws/nns studied/vbn and/cc revised/vbn to/in the/at end/nn of/in modernizing/vbg and/cc improving/vbg them/ppo ''/'' ./.
The/at grand/jj jury/nn commented/vbd on/in a/at number/nn of/in other/ap topics/nns ,/, among/in them/ppo the/at Atlanta/np and/cc Fulton/np-tl County/nn-tl purchasing/vbg departments/nns which/wdt it/pps said/vbd ``/`` are/ber well/ql operated/vbn and/cc follow/vb generally/rb accepted/vbn practices/nns which/wdt inure/vb to/in the/at best/jjt interest/nn of/in both/abx governments/nns ''/'' ./.
However/wrb ,/, the/at jury/nn said/vbd it/pps believes/vbz ``/`` these/dts two/cd offices/nns should/md be/be combined/vbn to/to achieve/vb greater/jjr efficiency/nn and/cc reduce/vb the/at cost/nn of/in administration/nn ''/'' ./.
The/at City/nn-tl Purchasing/vbg-tl Department/nn-tl ,/, the/at jury/nn said/vbd ,/, ``/`` is/bez lacking/vbg in/in experienced/vbn clerical/jj personnel/nns as/cs a/at result/nn of/in city/nn personnel/nns policies/nns ''/'' ./.
It/pps urged/vbd that/cs the/at city/nn ``/`` take/vb steps/nns to/to remedy/vb ''/'' this/dt problem/nn ./.
Implementation/nn of/in Georgia's/np$ automobile/nn title/nn law/nn was/bedz also/rb recommended/vbn by/in the/at outgoing/jj jury/nn ./.
It/pps urged/vbd that/cs the/at next/ap Legislature/nn-tl ``/`` provide/vb enabling/vbg funds/nns and/cc re-set/vb the/at effective/jj date/nn so/cs that/cs an/at orderly/jj implementation/nn of/in the/at law/nn may/md be/be effected/vbn ''/'' ./.
The/at grand/jj jury/nn took/vbd a/at swipe/nn at/in the/at State/nn-tl Welfare/nn-tl Department's/nn$-tl handling/nn of/in federal/jj funds/nns granted/vbn for/in child/nn welfare/nn services/nns in/in foster/jj homes/nns ./.
``/`` This/dt is/bez one/cd of/in the/at major/jj items/nns in/in the/at Fulton/np-tl County/nn-tl general/jj assistance/nn program/nn ''/'' ,/, the/at jury/nn said/vbd ,/, but/cc the/at State/nn-tl Welfare/nn-tl Department/nn-tl ``/`` has/hvz seen/vbn fit/jj to/to distribute/vb these/dts funds/nns through/in the/at welfare/nn departments/nns of/in all/abn the/at counties/nns in/in the/at state/nn with/in the/at exception/nn of/in Fulton/np-tl County/nn-tl ,/, which/wdt receives/vbz none/pn of/in this/dt money/nn ./.
The/at jurors/nns said/vbd they/ppss realize/vb ``/`` a/at proportionate/jj distribution/nn of/in these/dts funds/nns might/md disable/vb this/dt program/nn in/in our/pp$ less/ql populous/jj counties/nns ''/'' ./.
Nevertheless/rb ,/, ``/`` we/ppss feel/vb that/cs in/in the/at future/nn Fulton/np-tl County/nn-tl should/md receive/vb some/dti portion/nn of/in these/dts available/jj funds/nns ''/'' ,/, the/at jurors/nns said/vbd ./.
``/`` Failure/nn to/to do/do this/dt will/md continue/vb to/to place/vb a/at disproportionate/jj burden/nn ''/'' on/in Fulton/np taxpayers/nns ./.
The/at jury/nn also/rb commented/vbd on/in the/at Fulton/np ordinary's/nn$ court/nn which/wdt has/hvz been/ben under/in fire/nn for/in its/pp$ practices/nns in/in the/at appointment/nn of/in appraisers/nns ,/, guardians/nns and/cc administrators/nns and/cc the/at awarding/nn of/in fees/nns and/cc compensation/nn ./.
The/at jury/nn said/vbd it/pps found/vbd the/at court/nn ``/`` has/hvz incorporated/vbn into/in its/pp$ operating/vbg procedures/nns the/at recommendations/nns ''/'' of/in two/cd previous/jj grand/jj juries/nns ,/, the/at Atlanta/np-tl Bar/nn-tl Association/nn-tl and/cc an/at interim/nn citizens/nns committee/nn ./.
``/`` These/dts actions/nns should/md serve/vb to/to protect/vb in/in fact/nn and/cc in/in effect/nn the/at court's/nn$ wards/nns from/in undue/jj costs/nns and/cc its/pp$ appointed/vbn and/cc elected/vbn servants/nns from/in unmeritorious/jj criticisms/nns ''/'' ,/, the/at jury/nn said/vbd ./.
Regarding/in Atlanta's/np$ new/jj multi-million-dollar/jj airport/nn ,/, the/at jury/nn recommended/vbd ``/`` that/cs when/wrb the/at new/jj management/nn takes/vbz charge/nn Jan./np 1/cd the/at airport/nn be/be operated/vbn in/in a/at manner/nn that/wps will/md eliminate/vb political/jj influences/nns ''/'' ./.
The/at jury/nn did/dod not/* elaborate/vb ,/, but/cc it/pps added/vbd that/cs ``/`` there/ex should/md be/be periodic/jj surveillance/nn of/in the/at pricing/vbg practices/nns of/in the/at concessionaires/nns for/in the/at purpose/nn of/in keeping/vbg the/at prices/nns reasonable/jj ''/'' ./.
On/in other/ap matters/nns ,/, the/at jury/nn recommended/vbd that/cs :/: (/( 1/cd )/)
Four/cd additional/jj deputies/nns be/be employed/vbn at/in the/at Fulton/np-tl County/nn-tl Jail/nn-tl and/cc ``/`` a/at doctor/nn ,/, medical/jj intern/nn or/cc extern/nn be/be employed/vbn for/in night/nn and/cc weekend/nn duty/nn at/in the/at jail/nn ''/'' ./.
Fulton/np legislators/nns ``/`` work/vb with/in city/nn officials/nns to/to pass/vb enabling/vbg legislation/nn that/wps will/md permit/vb the/at establishment/nn of/in a/at fair/jj and/cc equitable/jj ''/'' pension/nn plan/nn for/in city/nn employes/nns ./.
The/at jury/nn praised/vbd the/at administration/nn and/cc operation/nn of/in the/at Atlanta/np-tl Police/nns-tl Department/nn-tl ,/, the/at Fulton/np-tl Tax/nn-tl Commissioner's/nn$-tl Office/nn-tl ,/, the/at Bellwood/np and/cc Alpharetta/np prison/nn farms/nns ,/, Grady/np-tl Hospital/nn-tl and/cc the/at Fulton/np-tl Health/nn-tl Department/nn-tl ./.
Mayor/nn-tl William/np B./np Hartsfield/np filed/vbd suit/nn for/in divorce/nn from/in his/pp$ wife/nn ,/, Pearl/np Williams/np Hartsfield/np ,/, in/in Fulton/np-tl Superior/jj-tl Court/nn-tl Friday/nr ./.
His/pp$ petition/nn charged/vbd mental/jj cruelty/nn ./.
The/at couple/nn was/bedz married/vbn Aug./np 2/cd ,/, 1913/cd ./.
They/ppss have/hv a/at son/nn ,/, William/np Berry/np Jr./np ,/, and/cc a/at daughter/nn ,/, Mrs./np J./np M./np Cheshire/np of/in Griffin/np ./.
Attorneys/nns for/in the/at mayor/nn said/vbd that/cs an/at amicable/jj property/nn settlement/nn has/hvz been/ben agreed/vbn upon/rb ./.
The/at petition/nn listed/vbd the/at mayor's/nn$ occupation/nn as/cs ``/`` attorney/nn ''/'' and/cc his/pp$ age/nn as/cs 71/cd ./.
It/pps listed/vbd his/pp$ wife's/nn$ age/nn as/cs 74/cd and/cc place/nn of/in birth/nn as/cs Opelika/np ,/, Ala./np ./.
The/at petition/nn said/vbd that/cs the/at couple/nn has/hvz not/* lived/vbn together/rb as/cs man/nn and/cc wife/nn for/in more/ap than/in a/at year/nn ./.
The/at Hartsfield/np home/nr is/bez at/in 637/cd E./np Pelham/np Rd./nn-tl Aj/nn ./.
Henry/np L./np Bowden/np was/bedz listed/vbn on/in the/at petition/nn as/cs the/at mayor's/nn$ attorney/nn ./.
Hartsfield/np has/hvz been/ben mayor/nn of/in Atlanta/np ,/, with/in exception/nn of/in one/cd brief/jj interlude/nn ,/, since/in 1937/cd ./.
His/pp$ political/jj career/nn goes/vbz back/rb to/in his/pp$ election/nn to/in city/nn council/nn in/in 1923/cd ./.
The/at mayor's/nn$ present/jj term/nn of/in office/nn expires/vbz Jan./np 1/cd ./.
He/pps will/md be/be succeeded/vbn by/in Ivan/np Allen/np Jr./np ,/, who/wps became/vbd a/at candidate/nn in/in the/at Sept./np 13/cd primary/nn after/cs Mayor/nn-tl Hartsfield/np announced/vbd that/cs he/pps would/md not/* run/vb for/in reelection/nn ./.
Georgia/np Republicans/nps are/ber getting/vbg strong/jj encouragement/nn to/to enter/vb a/at candidate/nn in/in the/at 1962/cd governor's/nn$ race/nn ,/, a/at top/jjs official/nn said/vbd Wednesday/nr ./.
Robert/np Snodgrass/np ,/, state/nn GOP/nn chairman/nn ,/, said/vbd a/at meeting/nn held/vbn Tuesday/nr night/nn in/in Blue/jj-tl Ridge/nn-tl brought/vbd enthusiastic/jj responses/nns from/in the/at audience/nn ./.
State/nn-tl Party/nn-tl Chairman/nn-tl James/np W./np Dorsey/np added/vbd that/cs enthusiasm/nn was/bedz picking/vbg up/rp for/in a/at state/nn rally/nn to/to be/be held/vbn Sept./np 8/cd in/in Savannah/np at/in which/wdt newly/rb elected/vbn Texas/np Sen./nn-tl John/np Tower/np will/md be/be the/at featured/vbn speaker/nn ./.
In/in the/at Blue/jj-tl Ridge/nn-tl meeting/nn ,/, the/at audience/nn was/bedz warned/vbn that/cs entering/vbg a/at candidate/nn for/in governor/nn would/md force/vb it/ppo to/to take/vb petitions/nns out/rp into/in voting/vbg precincts/nns to/to obtain/vb the/at signatures/nns of/in registered/vbn voters/nns ./.
Despite/in the/at warning/vbg ,/, there/ex was/bedz a/at unanimous/jj vote/nn to/to enter/vb a/at candidate/nn ,/, according/in to/in Republicans/nps who/wps attended/vbd ./.
When/wrb the/at crowd/nn was/bedz asked/vbn whether/cs it/pps wanted/vbd to/to wait/vb one/cd more/ap term/nn to/to make/vb the/at race/nn ,/, it/pps voted/vbd no/rb --/-- and/cc there/ex were/bed no/at dissents/nns ./.
The/at largest/jjt hurdle/nn the/at Republicans/nps would/md have/hv to/to face/vb is/bez a/at state/nn law/nn which/wdt says/vbz that/cs before/cs making/vbg a/at first/od race/nn ,/, one/cd of/in two/cd alternative/jj courses/nns must/md be/be taken/vbn :/: 1/cd
The/at Republicans/nps must/md hold/vb a/at primary/nn under/in the/at county/nn unit/nn system/nn --/-- a/at system/nn which/wdt the/at party/nn opposes/vbz in/in its/pp$ platform/nn ./.
Sam/np Caldwell/np ,/, State/nn-tl Highway/nn-tl Department/nn-tl public/jj relations/nns director/nn ,/, resigned/vbd Tuesday/nr to/to work/vb for/in Lt./nn-tl Gov./nn-tl Garland/np Byrd's/np$ campaign/nn ./.
Caldwell's/np$ resignation/nn had/hvd been/ben expected/vbn for/in some/dti time/nn ./.
He/pps will/md be/be succeeded/vbn by/in Rob/np Ledford/np of/in Gainesville/np ,/, who/wps has/hvz been/ben an/at assistant/nn more/ap than/in three/cd years/nns ./.
When/wrb the/at gubernatorial/jj campaign/nn starts/vbz ,/, Caldwell/np is/bez expected/vbn to/to become/vb a/at campaign/nn coordinator/nn for/in Byrd/np ./.
The/at Georgia/np-tl Legislature/nn-tl will/md wind/vb up/rp its/pp$ 1961/cd session/nn Monday/nr and/cc head/vb for/in home/nr --/-- where/wrb some/dti of/in the/at highway/nn bond/nn money/nn it/pps approved/vbd will/md follow/vb shortly/rb ./.
Before/in adjournment/nn Monday/nr afternoon/nn ,/, the/at Senate/nn-tl is/bez expected/vbn to/to approve/vb a/at study/nn of/in the/at number/nn of/in legislators/nns allotted/vbn to/in rural/jj and/cc urban/jj areas/nns to/to determine/vb what/wdt adjustments/nns should/md be/be made/vbn ./.
Gov./nn-tl Vandiver/np is/bez expected/vbn to/to make/vb the/at traditional/jj visit/nn to/in both/abx chambers/nns as/cs they/ppss work/vb toward/in adjournment/nn ./.
Vandiver/np likely/rb will/md mention/vb the/at $100/nns million/cd highway/nn bond/nn issue/nn approved/vbn earlier/rbr in/in the/at session/nn as/cs his/pp$ first/od priority/nn item/nn ./.
Meanwhile/rb ,/, it/pps was/bedz learned/vbn the/at State/nn-tl Highway/nn-tl Department/nn-tl is/bez very/ql near/rb being/beg ready/jj to/to issue/vb the/at first/od $30/nns million/cd worth/nn of/in highway/nn reconstruction/nn bonds/nns ./.
The/at bond/nn issue/nn will/md go/vb to/in the/at state/nn courts/nns for/in a/at friendly/jj test/nn suit/nn to/to test/vb the/at validity/nn of/in the/at act/nn ,/, and/cc then/rb the/at sales/nns will/md begin/vb and/cc contracts/nns let/vbn for/in repair/nn work/nn on/in some/dti of/in Georgia's/np$ most/ql heavily/rb traveled/vbn highways/nns ./.
A/at Highway/nn-tl Department/nn-tl source/nn said/vbd there/ex also/rb is/bez a/at plan/nn there/rb to/to issue/vb some/dti $3/nns million/cd to/in $4/nns million/cd worth/nn of/in Rural/jj-tl Roads/nns-tl Authority/nn-tl bonds/nns for/in rural/jj road/nn construction/nn work/nn ./.
The/at department/nn apparently/rb intends/vbz to/to make/vb the/at Rural/jj-tl Roads/nns-tl Authority/nn-tl a/at revolving/vbg fund/nn under/in which/wdt new/jj bonds/nns would/md be/be issued/vbn every/at time/nn a/at portion/nn of/in the/at old/jj ones/nns are/ber paid/vbn off/rp by/in tax/nn authorities/nns ./.
Vandiver/np opened/vbd his/pp$ race/nn for/in governor/nn in/in 1958/cd with/in a/at battle/nn in/in the/at Legislature/nn-tl against/in the/at issuance/nn of/in $50/nns million/cd worth/nn of/in additional/jj rural/jj roads/nns bonds/nns proposed/vbn by/in then/rb Gov./nn-tl Marvin/np Griffin/np ./.
The/at Highway/nn-tl Department/nn-tl source/nn told/vbd The/at-tl Constitution/nn-tl ,/, however/wrb ,/, that/cs Vandiver/np has/hvz not/* been/ben consulted/vbn yet/rb about/in the/at plans/nns to/to issue/vb the/at new/jj rural/jj roads/nns bonds/nns ./.
Schley/np County/nn-tl Rep./nn-tl B./np D./np Pelham/np will/md offer/vb a/at resolution/nn Monday/nr in/in the/at House/nn-tl to/to rescind/vb the/at body's/nn$ action/nn of/in Friday/nr in/in voting/vbg itself/ppl a/at $10/nns per/in day/nn increase/nn in/in expense/nn allowances/nns ./.
Pelham/np said/vbd Sunday/nr night/nn there/ex was/bedz research/nn being/beg done/vbn on/in whether/cs the/at ``/`` quickie/nn ''/'' vote/nn on/in the/at increase/nn can/md be/be repealed/vbn outright/rb or/cc whether/cs notice/nn would/md have/hv to/to first/rb be/be given/vbn that/cs reconsideration/nn of/in the/at action/nn would/md be/be sought/vbn ./.
While/cs emphasizing/vbg that/cs technical/jj details/nns were/bed not/* fully/rb worked/vbn out/rp ,/, Pelham/np said/vbd his/pp$ resolution/nn would/md seek/vb to/to set/vb aside/rb the/at privilege/nn resolution/nn which/wdt the/at House/nn-tl voted/vbd through/in 87-31/cd ./.
A/at similar/jj resolution/nn passed/vbd in/in the/at Senate/nn-tl by/in a/at vote/nn of/in 29-5/cd ./.
As/in of/in Sunday/nr night/nn ,/, there/ex was/bedz no/at word/nn of/in a/at resolution/nn being/beg offered/vbn there/rb to/to rescind/vb the/at action/nn ./.
Pelham/np pointed/vbd out/rp that/cs Georgia/np voters/nns last/ap November/np rejected/vbd a/at constitutional/jj amendment/nn to/to allow/vb legislators/nns to/to vote/vb on/in pay/nn raises/nns for/in future/jj Legislature/nn-tl sessions/nns ./.
A/at veteran/jj Jackson/np-tl County/nn-tl legislator/nn will/md ask/vb the/at Georgia/np-tl House/nn-tl Monday/nr to/to back/vb federal/jj aid/nn to/in education/nn ,/, something/pn it/pps has/hvz consistently/rb opposed/vbn in/in the/at past/nn ./.
Rep./nn-tl Mac/np Barber/np of/in Commerce/nn-tl is/bez asking/vbg the/at House/nn-tl in/in a/at privilege/nn resolution/nn to/to ``/`` endorse/vb increased/vbn federal/jj support/nn for/in public/jj education/nn ,/, provided/vbn that/cs such/jj funds/nns be/be received/vbn and/cc expended/vbn ''/'' as/cs state/nn funds/nns ./.
Barber/np ,/, who/wps is/bez in/in his/pp$ 13th/od year/nn as/cs a/at legislator/nn ,/, said/vbd there/ex ``/`` are/ber some/dti members/nns of/in our/pp$ congressional/jj delegation/nn in/in Washington/np who/wps would/md like/vb to/to see/vb it/ppo (/( the/at resolution/nn )/) passed/vbn ''/'' ./.
But/cc he/pps added/vbd that/cs none/pn of/in Georgia's/np$ congressmen/nns specifically/rb asked/vbd him/ppo to/to offer/vb the/at resolution/nn ./.
The/at resolution/nn ,/, which/wdt Barber/np tossed/vbd into/in the/at House/nn-tl hopper/nn Friday/nr ,/, will/md be/be formally/rb read/vbn Monday/nr ./.
It/pps says/vbz that/cs ``/`` in/in the/at event/nn Congress/np does/doz provide/vb this/dt increase/nn in/in federal/jj funds/nns ''/'' ,/, the/at State/nn-tl Board/nn-tl of/in-tl Education/nn-tl should/md be/be directed/vbn to/to ``/`` give/vb priority/nn ''/'' to/in teacher/nn pay/nn raises/nns ./.
--/-- After/in a/at long/jj ,/, hot/jj controversy/nn ,/, Miller/np-tl County/nn-tl has/hvz a/at new/jj school/nn superintendent/nn ,/, elected/vbn ,/, as/cs a/at policeman/nn put/vbd it/ppo ,/, in/in the/at ``/`` coolest/jjt election/nn I/ppss ever/rb saw/vbd in/in this/dt county/nn ''/'' ./.
The/at new/jj school/nn superintendent/nn is/bez Harry/np Davis/np ,/, a/at veteran/jj agriculture/nn teacher/nn ,/, who/wps defeated/vbd Felix/np Bush/np ,/, a/at school/nn principal/nn and/cc chairman/nn of/in the/at Miller/np-tl County/nn-tl Democratic/jj-tl Executive/jj-tl Committee/nn-tl ./.
Davis/np received/vbd 1,119/cd votes/nns in/in Saturday's/nr$ election/nn ,/, and/cc Bush/np got/vbd 402/cd ./.
Ordinary/nn-tl Carey/np Williams/np ,/, armed/vbn with/in a/at pistol/nn ,/, stood/vbd by/in at/in the/at polls/nns to/to insure/vb order/nn ./.
``/`` This/dt was/bedz the/at coolest/jjt ,/, calmest/jjt election/nn I/ppss ever/rb saw/vbd ''/'' ,/, Colquitt/np-tl Policeman/nn-tl Tom/np Williams/np said/vbd ./.
``/`` Being/beg at/in the/at polls/nns was/bedz just/rb like/cs being/beg at/in church/nn ./.
I/ppss didn't/dod* smell/vb a/at drop/nn of/in liquor/nn ,/, and/cc we/ppss didn't/dod* have/hv a/at bit/nn of/in trouble/nn ''/'' ./.
The/at campaign/nn leading/vbg to/in the/at election/nn was/bedz not/* so/ql quiet/jj ,/, however/wrb ./.
It/pps was/bedz marked/vbn by/in controversy/nn ,/, anonymous/jj midnight/nn phone/nn calls/nns and/cc veiled/vbn threats/nns of/in violence/nn ./.
The/at former/ap county/nn school/nn superintendent/nn ,/, George/np P./np Callan/np ,/, shot/vbd himself/ppl to/in death/nn March/np 18/cd ,/, four/cd days/nns after/cs he/pps resigned/vbd his/pp$ post/nn in/in a/at dispute/nn with/in the/at county/nn school/nn board/nn ./.
During/in the/at election/nn campaign/nn ,/, both/abx candidates/nns ,/, Davis/np and/cc Bush/np ,/, reportedly/rb received/vbd anonymous/jj telephone/nn calls/nns ./.
Ordinary/nn-tl Williams/np said/vbd he/pps ,/, too/rb ,/, was/bedz subjected/vbn to/in anonymous/jj calls/nns soon/rb after/cs he/pps scheduled/vbd the/at election/nn ./.
Many/ap local/jj citizens/nns feared/vbd that/cs there/ex would/md be/be irregularities/nns at/in the/at polls/nns ,/, and/cc Williams/np got/vbd himself/ppl a/at permit/nn to/to carry/vb a/at gun/nn and/cc promised/vbd an/at orderly/jj election/nn ./.
Sheriff/nn-tl Felix/np Tabb/np said/vbd the/at ordinary/nn apparently/rb made/vbd good/jj his/pp$ promise/nn ./.
``/`` Everything/pn went/vbd real/ql smooth/jj ''/'' ,/, the/at sheriff/nn said/vbd ./.
``/`` There/ex wasn't/bedz* a/at bit/nn of/in trouble/nn ''/'' ./.
--/-- Committee/nn approval/nn of/in Gov./nn-tl Price/np Daniel's/np$ ``/`` abandoned/vbn property/nn ''/'' act/nn seemed/vbd certain/jj Thursday/nr despite/in the/at adamant/jj protests/nns of/in Texas/np bankers/nns ./.
Daniel/np personally/rb led/vbd the/at fight/nn for/in the/at measure/nn ,/, which/wdt he/pps had/hvd watered/vbn down/rp considerably/rb since/in its/pp$ rejection/nn by/in two/cd previous/jj Legislatures/nns-tl ,/, in/in a/at public/jj hearing/nn before/in the/at House/nn-tl Committee/nn-tl on/in-tl Revenue/nn-tl and/cc-tl Taxation/nn-tl ./.
Under/in committee/nn rules/nns ,/, it/pps went/vbd automatically/rb to/in a/at subcommittee/nn for/in one/cd week/nn ./.
But/cc questions/nns with/in which/wdt committee/nn members/nns taunted/vbd bankers/nns appearing/vbg as/cs witnesses/nns left/vbd little/ap doubt/nn that/cs they/ppss will/md recommend/vb passage/nn of/in it/ppo ./.
Daniel/np termed/vbd ``/`` extremely/rb conservative/jj ''/'' his/pp$ estimate/nn that/cs it/pps would/md produce/vb 17/cd million/cd dollars/nns to/to help/vb erase/vb an/at anticipated/vbn deficit/nn of/in 63/cd million/cd dollars/nns at/in the/at end/nn of/in the/at current/jj fiscal/jj year/nn next/ap Aug./np 31/cd ./.
He/pps told/vbd the/at committee/nn the/at measure/nn would/md merely/rb provide/vb means/nns of/in enforcing/vbg the/at escheat/nn law/nn which/wdt has/hvz been/ben on/in the/at books/nns ``/`` since/in Texas/np was/bedz a/at republic/nn ''/'' ./.
It/pps permits/vbz the/at state/nn to/to take/vb over/rp bank/nn accounts/nns ,/, stocks/nns and/cc other/ap personal/jj property/nn of/in persons/nns missing/vbg for/in seven/cd years/nns or/cc more/ap ./.
The/at bill/nn ,/, which/wdt Daniel/np said/vbd he/pps drafted/vbd personally/rb ,/, would/md force/vb banks/nns ,/, insurance/nn firms/nns ,/, pipeline/nn companies/nns and/cc other/ap corporations/nns to/to report/vb such/jj property/nn to/in the/at state/nn treasurer/nn ./.
The/at escheat/nn law/nn cannot/md* be/be enforced/vbn now/rb because/cs it/pps is/bez almost/rb impossible/jj to/to locate/vb such/jj property/nn ,/, Daniel/np declared/vbd ./.
Dewey/np Lawrence/np ,/, a/at Tyler/np lawyer/nn representing/vbg the/at Texas/np-tl Bankers/nns-tl Association/nn-tl ,/, sounded/vbd the/at opposition/nn keynote/nn when/wrb he/pps said/vbd it/pps would/md force/vb banks/nns to/to violate/vb their/pp$ contractual/jj obligations/nns with/in depositors/nns and/cc undermine/vb the/at confidence/nn of/in bank/nn customers/nns ./.
``/`` If/cs you/ppss destroy/vb confidence/nn in/in banks/nns ,/, you/ppss do/do something/pn to/in the/at economy/nn ''/'' ,/, he/pps said/vbd ./.
``/`` You/ppss take/vb out/rp of/in circulation/nn many/ap millions/nns of/in dollars/nns ''/'' ./.
Rep./nn-tl Charles/np E./np Hughes/np of/in Sherman/np ,/, sponsor/nn of/in the/at bill/nn ,/, said/vbd a/at failure/nn to/to enact/vb it/pps would/md amount/vb ``/`` to/in making/vbg a/at gift/nn out/rp of/in the/at taxpayers'/nns$ pockets/nns to/in banks/nns ,/, insurance/nn and/cc pipeline/nn companies/nns ''/'' ./.
His/pp$ contention/nn was/bedz denied/vbn by/in several/ap bankers/nns ,/, including/in Scott/np Hudson/np of/in Sherman/np ,/, Gaynor/np B./np Jones/np of/in Houston/np ,/, J./np B./np Brady/np of/in Harlingen/np and/cc Howard/np Cox/np of/in Austin/np ./.
Cox/np argued/vbd that/cs the/at bill/nn is/bez ``/`` probably/rb unconstitutional/jj ''/'' since/cs ,/, he/pps said/vbd ,/, it/pps would/md impair/vb contracts/nns ./.
He/pps also/rb complained/vbd that/cs not/* enough/ap notice/nn was/bedz given/vbn on/in the/at hearing/nn ,/, since/cs the/at bill/nn was/bedz introduced/vbn only/rb last/ap Monday/nr ./.
--/-- Senators/nns unanimously/rb approved/vbd Thursday/nr the/at bill/nn of/in Sen./nn-tl George/np Parkhouse/np of/in Dallas/np authorizing/vbg establishment/nn of/in day/nn schools/nns for/in the/at deaf/jj in/in Dallas/np and/cc the/at four/cd other/ap largest/jjt counties/nns ./.
The/at bill/nn is/bez designed/vbn to/to provide/vb special/jj schooling/nn for/in more/ap deaf/jj students/nns in/in the/at scholastic/jj age/nn at/in a/at reduced/vbn cost/nn to/in the/at state/nn ./.
There/ex was/bedz no/at debate/nn as/cs the/at Senate/nn-tl passed/vbd the/at bill/nn on/in to/in the/at House/nn-tl ./.
It/pps would/md authorize/vb the/at Texas/np-tl Education/nn-tl Agency/nn-tl to/to establish/vb county-wide/jj day/nn schools/nns for/in the/at deaf/jj in/in counties/nns of/in 300,000/cd or/cc more/ap population/nn ,/, require/vb deaf/jj children/nns between/in 6/cd and/cc 13/cd years/nns of/in age/nn to/to attend/vb the/at day/nn schools/nns ,/, permitting/vbg older/jjr ones/nns to/to attend/vb the/at residential/jj Texas/np-tl School/nn-tl for/in-tl the/at-tl Deaf/jj-tl here/rb ./.
Operating/vbg budget/nn for/in the/at day/nn schools/nns in/in the/at five/cd counties/nns of/in Dallas/np ,/, Harris/np ,/, Bexar/np ,/, Tarrant/np and/cc El/np Paso/np would/md be/be $451,500/nns ,/, which/wdt would/md be/be a/at savings/nns of/in $157,460/nns yearly/rb after/in the/at first/od year's/nn$ capital/nn outlay/nn of/in $88,000/nns was/bedz absorbed/vbn ,/, Parkhouse/np told/vbd the/at Senate/nn-tl ./.
The/at TEA/nn estimated/vbd there/ex would/md be/be 182/cd scholastics/nns to/to attend/vb the/at day/nn school/nn in/in Dallas/np-tl County/nn-tl ,/, saving/vbg them/ppo from/in coming/vbg to/in Austin/np to/to live/vb in/in the/at state/nn deaf/jj school/nn ./.
Dallas/np may/md get/vb to/to hear/vb a/at debate/nn on/in horse/nn race/nn parimutuels/nns soon/rb between/in Reps./nns-tl V./np E./np (/( Red/np )/) Berry/np and/cc Joe/np Ratcliff/np ./.
While/cs details/nns are/ber still/rb to/to be/be worked/vbn out/rp ,/, Ratcliff/np said/vbd he/pps expects/vbz to/to tell/vb home/nr folks/nns in/in Dallas/np why/wrb he/pps thinks/vbz Berry's/np$ proposed/vbn constitutional/jj amendment/nn should/md be/be rejected/vbn ./.
``/`` We're/ppss+ber getting/vbg more/ap '/' pro/jj '/' letters/nns than/in '/' con/jj '/' on/in horse/nn race/nn betting/nn ''/'' ,/, said/vbd Ratcliff/np ./.
``/`` But/cc I/ppss believe/vb if/cs people/nns were/bed better/rbr informed/vbn on/in this/dt question/nn ,/, most/ap of/in them/ppo would/md oppose/vb it/ppo also/rb ./.
I'm/ppss+bem willing/jj to/to stake/vb my/pp$ political/jj career/nn on/in it/ppo ''/'' ./.
Rep./nn-tl Berry/np ,/, an/at ex-gambler/nn from/in San/np Antonio/np ,/, got/vbd elected/vbn on/in his/pp$ advocacy/nn of/in betting/vbg on/in the/at ponies/nns ./.
A/at House/nn-tl committee/nn which/wdt heard/vbd his/pp$ local/jj option/nn proposal/nn is/bez expected/vbn to/to give/vb it/ppo a/at favorable/jj report/nn ,/, although/cs the/at resolution/nn faces/vbz hard/jj sledding/nn later/rbr ./.
The/at house/nn passed/vbd finally/rb ,/, and/cc sent/vbd to/in the/at Senate/nn-tl ,/, a/at bill/nn extending/vbg the/at State/nn-tl Health/nn-tl Department's/nn$-tl authority/nn to/to give/vb planning/vbg assistance/nn to/in cities/nns ./.
The/at senate/nn quickly/rb whipped/vbd through/in its/pp$ meager/jj fare/nn of/in House/nn-tl bills/nns approved/vbn by/in committees/nns ,/, passing/vbg the/at three/cd on/in the/at calendar/nn ./.
One/cd validated/vbd acts/nns of/in school/nn districts/nns ./.
Another/dt enlarged/vbd authority/nn of/in the/at Beaumont/np-tl Navigation/nn-tl District/nn-tl ./.
The/at third/od amended/vbd the/at enabling/vbg act/nn for/in creation/nn of/in the/at Lamar/np-tl county/nn-tl Hospital/nn-tl District/nn-tl ,/, for/in which/wdt a/at special/jj constitutional/jj amendment/nn previously/rb was/bedz adopted/vbn ./.
Without/in dissent/nn ,/, senators/nns passed/vbd a/at bill/nn by/in Sen./nn-tl A./np R./np Schwartz/np of/in Galveston/np authorizing/vbg establishment/nn in/in the/at future/nn of/in a/at school/nn for/in the/at mentally/rb retarded/vbn in/in the/at Gulf/nn-tl Coast/nn-tl district/nn ./.
Money/nn for/in its/pp$ construction/nn will/md be/be sought/vbn later/rbr on/rp but/cc in/in the/at meantime/nn the/at State/nn-tl Hospital/nn-tl board/nn can/md accept/vb gifts/nns and/cc donations/nns of/in a/at site/nn ./.
Two/cd tax/nn revision/nn bills/nns were/bed passed/vbn ./.
One/cd ,/, by/in Sen./nn-tl Louis/np Crump/np of/in San/np Saba/np ,/, would/md aid/vb more/ap than/in 17,000/cd retailers/nns who/wps pay/vb a/at group/nn of/in miscellaneous/jj excise/nn taxes/nns by/in eliminating/vbg the/at requirement/nn that/cs each/dt return/nn be/be notarized/vbn ./.
Instead/rb ,/, retailers/nns would/md sign/vb a/at certificate/nn of/in correctness/nn ,/, violation/nn of/in which/wdt would/md carry/vb a/at penalty/nn of/in one/cd to/in five/cd years/nns in/in prison/nn ,/, plus/cc a/at $1,000/nns fine/nn ./.
It/pps was/bedz one/cd of/in a/at series/nn of/in recommendations/nns by/in the/at Texas/np-tl Research/nn-tl League/nn-tl ./.
The/at other/ap bill/nn ,/, by/in Sen./nn-tl A./np M./np Aikin/np Jr./np of/in Paris/np ,/, would/md relieve/vb real/jj estate/nn brokers/nns ,/, who/wps pay/vb their/pp$ own/jj annual/jj licensing/vbg fee/nn ,/, from/in the/at $12/nns annual/jj occupation/nn license/nn on/in brokers/nns in/in such/jj as/cs stocks/nns and/cc bonds/nns ./.
Natural/jj gas/nn public/jj utility/nn companies/nns would/md be/be given/vbn the/at right/nn of/in eminent/jj domain/nn ,/, under/in a/at bill/nn by/in Sen./nn-tl Frank/np Owen/np 3/cd-tl ,/, of/in El/np Paso/np ,/, to/to acquire/vb sites/nns for/in underground/jj storage/nn reservoirs/nns for/in gas/nn ./.
Marshall/np Formby/np of/in Plainview/np ,/, former/ap chairman/nn of/in the/at Texas/np-tl Highway/nn-tl Commission/nn-tl ,/, suggested/vbd a/at plan/nn to/to fill/vb by/in appointment/nn future/jj vacancies/nns in/in the/at Legislature/nn-tl and/cc Congress/np ,/, eliminating/vbg the/at need/nn for/in costly/jj special/jj elections/nns ./.
Under/in Formby's/np$ plan/nn ,/, an/at appointee/nn would/md be/be selected/vbn by/in a/at board/nn composed/vbn of/in the/at governor/nn ,/, lieutenant/nn governor/nn ,/, speaker/nn of/in the/at House/nn-tl ,/, attorney/nn general/nn and/cc chief/jjs justice/nn of/in the/at Texas/np-tl Supreme/jj-tl Court/nn-tl ./.
--/-- State/nn representatives/nns decided/vbd Thursday/nr against/in taking/vbg a/at poll/nn on/in what/wdt kind/nn of/in taxes/nns Texans/nps would/md prefer/vb to/to pay/vb ./.
An/at adverse/jj vote/nn of/in 81/cd to/in 65/cd kept/vbd in/in the/at State/nn-tl Affairs/nns-tl Committee/nn-tl a/at bill/nn which/wdt would/md order/vb the/at referendum/nn on/in the/at April/np 4/cd ballot/nn ,/, when/wrb Texas/np votes/vbz on/in a/at U.S./np senator/nn ./.
Rep./nn-tl Wesley/np Roberts/np of/in Seminole/np ,/, sponsor/nn of/in the/at poll/nn idea/nn ,/, said/vbd that/cs further/jjr delay/nn in/in the/at committee/nn can/md kill/vb the/at bill/nn ./.
The/at West/jj-tl Texan/np-tl reported/vbd that/cs he/pps had/hvd finally/rb gotten/vbn Chairman/nn-tl Bill/np Hollowell/np of/in the/at committee/nn to/to set/vb it/ppo for/in public/jj hearing/nn on/in Feb./np 22/cd ./.
The/at proposal/nn would/md have/hv to/to receive/vb final/jj legislative/jj approval/nn ,/, by/in two-thirds/nns majorities/nns ,/, before/in March/np 1/cd to/to be/be printed/vbn on/in the/at April/np 4/cd ballot/nn ,/, Roberts/np said/vbd ./.
Opponents/nns generally/rb argued/vbd that/cs the/at ballot/nn couldn't/md* give/vb enough/ap information/nn about/in tax/nn proposals/nns for/in the/at voters/nns to/to make/vb an/at intelligent/jj choice/nn ./.
All/abn Dallas/np members/nns voted/vbd with/in Roberts/np ,/, except/in Rep./nn-tl Bill/np Jones/np ,/, who/wps was/bedz absent/jj ./.
--/-- Paradise/nn-tl lost/vbd to/in the/at alleged/vbn water/nn needs/nns of/in Texas'/np$ big/jj cities/nns Thursday/nr ./.
Rep./nn-tl James/np Cotten/np of/in Weatherford/np insisted/vbd that/cs a/at water/nn development/nn bill/nn passed/vbn by/in the/at Texas/np-tl House/nn-tl of/in-tl Representatives/nns-tl was/bedz an/at effort/nn by/in big/jj cities/nns like/cs Dallas/np and/cc Fort/nn-tl Worth/np to/to cover/vb up/rp places/nns like/cs Paradise/nn-tl ,/, a/at Wise/np-tl County/nn-tl hamlet/nn of/in 250/cd people/nns ./.
When/wrb the/at shouting/nn ended/vbd ,/, the/at bill/nn passed/vbd ,/, 114/cd to/in 4/cd ,/, sending/vbg it/ppo to/in the/at Senate/nn-tl ,/, where/wrb a/at similar/jj proposal/nn is/bez being/beg sponsored/vbn by/in Sen./nn-tl George/np Parkhouse/np of/in Dallas/np ./.
Most/ap of/in the/at fire/nn was/bedz directed/vbn by/in Cotten/np against/in Dallas/np and/cc Sen./nn-tl Parkhouse/np ./.
The/at bill/nn would/md increase/vb from/in $5,000,000/nns to/in $15,000,000/nns the/at maximum/jj loan/nn the/at state/nn could/md make/vb to/in a/at local/jj water/nn project/nn ./.
Cotten/np construed/vbd this/dt as/cs a/at veiled/vbn effort/nn by/in Parkhouse/np to/to help/vb Dallas/np and/cc other/ap large/jj cities/nns get/vb money/nn which/wdt Cotten/np felt/vbd could/md better/vb be/be spent/vbn providing/vbg water/nn for/in rural/jj Texas/np ./.
Statements/nns by/in other/ap legislators/nns that/cs Dallas/np is/bez paying/vbg for/in all/abn its/pp$ water/nn program/nn by/in local/jj bonds/nns ,/, and/cc that/cs less/ql populous/jj places/nns would/md benefit/vb most/rbt by/in the/at pending/jj bill/nn ,/, did/dod not/* sway/vb Cotten's/np$ attack/nn ./.
The/at bill's/nn$ defenders/nns were/bed mostly/rb small-town/nn legislators/nns like/cs J./np W./np Buchanan/np of/in Dumas/np ,/, Eligio/np (/( Kika/np )/) De/np La/np Garza/np of/in Mission/nn-tl ,/, Sam/np F./np Collins/np of/in Newton/np and/cc Joe/np Chapman/np of/in Sulphur/nn-tl Springs/nns-tl ./.
``/`` This/dt is/bez a/at poor/jj boy's/nn$ bill/nn ''/'' ,/, said/vbd Chapman/np ./.
``/`` Dallas/np and/cc Fort/nn-tl Worth/np can/md vote/vb bonds/nns ./.
This/dt would/md help/vb the/at little/jj peanut/nn districts/nns ''/'' ./.
--/-- A/at Houston/np teacher/nn ,/, now/rb serving/vbg in/in the/at Legislature/nn-tl ,/, proposed/vbd Thursday/nr a/at law/nn reducing/vbg the/at time/nn spent/vbn learning/vbg ``/`` educational/jj methods/nns ''/'' ./.
Rep./nn-tl Henry/np C./np Grover/np ,/, who/wps teaches/vbz history/nn in/in the/at Houston/np public/jj schools/nns ,/, would/md reduce/vb from/in 24/cd to/in 12/cd semester/nn hours/nns the/at so-called/jj ``/`` teaching/vbg methods/nns ''/'' courses/nns required/vbn to/to obtain/vb a/at junior/jj or/cc senior/jj high/jj school/nn teaching/vbg certificate/nn ./.
A/at normal/jj year's/nn$ work/nn in/in college/nn is/bez 30/cd semester/nn hours/nns ./.
Grover/np also/rb would/md require/vb junior-senior/jj high/nn teachers/nns to/to have/hv at/in least/ap 24/cd semester/nn hours/nns credit/vb in/in the/at subject/nn they/ppss are/ber teaching/vbg ./.
The/at remainder/nn of/in the/at 4-year/jj college/nn requirement/nn would/md be/be in/in general/jj subjects/nns ./.
``/`` A/at person/nn with/in a/at master's/nn$ degree/nn in/in physics/nn ,/, chemistry/nn ,/, math/nn or/cc English/np ,/, yet/rb who/wps has/hvz not/* taken/vbn Education/nn-tl courses/nns ,/, is/bez not/* permitted/vbn to/to teach/vb in/in the/at public/jj schools/nns ''/'' ,/, said/vbd Grover/np ./.
College/nn teachers/nns in/in Texas/np are/ber not/* required/vbn to/to have/hv the/at Education/nn-tl courses/nns ./.
Fifty-three/cd of/in the/at 150/cd representatives/nns immediately/rb joined/vbd Grover/np as/cs co-signers/nns of/in the/at proposal/nn ./.
--/-- The/at board/nn of/in regents/nns of/in Paris/np-tl Junior/jj-tl College/nn-tl has/hvz named/vbn Dr./nn-tl Clarence/np Charles/np Clark/np of/in Hays/np ,/, Kan./np as/cs the/at school's/nn$ new/jj president/nn ./.
Dr./nn-tl Clark/np will/md succeed/vb Dr./nn-tl J./np R./np McLemore/np ,/, who/wps will/md retire/vb at/in the/at close/nn of/in the/at present/jj school/nn term/nn ./.
Dr./nn-tl Clark/np holds/vbz an/at earned/vbn Doctor/nn-tl of/in-tl Education/nn-tl degree/nn from/in the/at University/nn-tl of/in-tl Oklahoma/np-tl ./.
He/pps also/rb received/vbd a/at Master/nn-tl of/in-tl Science/nn-tl degree/nn from/in Texas/np A/nn &/cc I/nn College/nn-tl and/cc a/at Bachelor/nn-tl of/in-tl Science/nn-tl degree/nn from/in Southwestern/jj-tl State/nn-tl College/nn-tl ,/, Weatherford/np ,/, Okla./np ./.
In/in addition/nn ,/, Dr./nn-tl Clark/np has/hvz studied/vbn at/in Rhode/np-tl Island/nn-tl State/nn-tl College/nn-tl and/cc Massachusetts/np-tl Institute/nn-tl of/in-tl Technology/nn-tl ./.
During/in his/pp$ college/nn career/nn ,/, Dr./nn-tl Clark/np was/bedz captain/nn of/in his/pp$ basketball/nn team/nn and/cc was/bedz a/at football/nn letterman/nn ./.
Dr./nn-tl Clark/np has/hvz served/vbn as/cs teacher/nn and/cc principal/nn in/in Oklahoma/np high/jj schools/nns ,/, as/cs teacher/nn and/cc athletic/jj director/nn at/in Raymondville/np ,/, Texas/np ,/, High/jj-tl School/nn-tl ,/, as/cs an/at instructor/nn at/in the/at University/nn-tl of/in-tl Oklahoma/np-tl ,/, and/cc as/cs an/at associate/jj professor/nn of/in education/nn at/in Fort/nn-tl Hays/np ,/, Kan./np ,/, State/nn-tl College/nn-tl ./.
He/pps has/hvz served/vbn as/cs a/at border/nn patrolman/nn and/cc was/bedz in/in the/at Signal/nn-tl Corps/nn-tl of/in the/at U.S./np-tl Army/nn-tl ./.
--/-- Principals/nns of/in the/at 13/cd schools/nns in/in the/at Denton/np-tl Independent/jj-tl School/nn-tl District/nn-tl have/hv been/ben re-elected/vbn for/in the/at 1961-62/cd session/nn upon/in the/at recommendation/nn of/in Supt./nn-tl Chester/np O./np Strickland/np ./.
State/nn and/cc federal/jj legislation/nn against/in racial/jj discrimination/nn in/in employment/nn was/bedz called/vbn for/in yesterday/nr in/in a/at report/nn of/in a/at ``/`` blue/jj ribbon/nn ''/'' citizens/nns committee/nn on/in the/at aid/nn to/in dependent/jj children/nns program/vb ./.
The/at report/nn ,/, culminating/vbg a/at year/nn long/jj study/nn of/in the/at ADC/nn program/nn in/in Cook/np county/nn by/in a/at New/jj-tl York/np-tl City/nn-tl welfare/nn consulting/vbg firm/nn ,/, listed/vbd 10/cd long/jj range/nn recommendations/nns designed/vbn to/to reduce/vb the/at soaring/vbg ADC/nn case/nn load/nn ./.
The/at report/nn called/vbd racial/jj discrimination/nn in/in employment/nn ``/`` one/cd of/in the/at most/ql serious/jj causes/nns of/in family/nn breakdown/nn ,/, desertion/nn ,/, and/cc ADC/nn dependency/nn ''/'' ./.
The/at monthly/jj cost/nn of/in ADC/nn to/in more/ap than/in 100,000/cd recipients/nns in/in the/at county/nn is/bez 4.4/cd million/cd dollars/nns ,/, said/vbd C./np Virgil/np Martin/np ,/, president/nn of/in Carson/np Pirie/np Scott/np &/cc-tl Co./nn-tl ,/, committee/nn chairman/nn ./.
``/`` We/ppss must/md solve/vb the/at problems/nns which/wdt have/hv forced/vbn these/dts people/nns to/to depend/vb upon/in ADC/nn for/in subsistence/nn ''/'' ,/, Martin/np said/vbd ./.
The/at volume/nn of/in ADC/nn cases/nns will/md decrease/vb ,/, Martin/np reported/vbd ,/, when/wrb the/at community/nn is/bez able/jj to/to deal/vb effectively/rb with/in two/cd problems/nns :/: Relatively/rb limited/vbn skills/nns and/cc discrimination/nn in/in employment/nn because/rb of/in color/nn ./.
These/dts ,/, he/pps said/vbd ,/, are/ber ``/`` two/cd of/in the/at principal/jjs underlying/vbg causes/nns for/in family/nn breakups/nns leading/vbg to/in ADC/nn ''/'' ./.
Other/ap recommendations/nns made/vbn by/in the/at committee/nn are/ber :/:
Extension/nn of/in the/at ADC/nn program/nn to/in all/abn children/nns in/in need/nn living/vbg with/in any/dti relatives/nns ,/, including/in both/abx parents/nns ,/, as/cs a/at means/nns of/in preserving/vbg family/nn unity/nn ./.
Research/nn projects/nns as/ql soon/rb as/cs possible/jj on/in the/at causes/nns and/cc prevention/nn of/in dependency/nn and/cc illegitimacy/nn ./.
Several/ap defendants/nns in/in the/at Summerdale/np police/nn burglary/nn trial/nn made/vbd statements/nns indicating/vbg their/pp$ guilt/nn at/in the/at time/nn of/in their/pp$ arrest/nn ,/, Judge/nn-tl James/np B./np Parsons/np was/bedz told/vbn in/in Criminal/jj-tl court/nn yesterday/nr ./.
The/at disclosure/nn by/in Charles/np Bellows/np ,/, chief/jjs defense/nn counsel/nn ,/, startled/vbd observers/nns and/cc was/bedz viewed/vbn as/cs the/at prelude/nn to/in a/at quarrel/nn between/in the/at six/cd attorneys/nns representing/vbg the/at eight/cd former/ap policemen/nns now/rb on/in trial/nn ./.
Bellows/np made/vbd the/at disclosure/nn when/wrb he/pps asked/vbd Judge/nn-tl Parsons/np to/to grant/vb his/pp$ client/nn ,/, Alan/np Clements/np ,/, 30/cd ,/, a/at separate/jj trial/nn ./.
Bellows/np made/vbd the/at request/nn while/cs the/at all-woman/jj jury/nn was/bedz out/in of/in the/at courtroom/nn ./.
``/`` The/at statements/nns may/md be/be highly/ql prejudicial/jj to/in my/pp$ client/nn ''/'' ,/, Bellows/np told/vbd the/at court/nn ./.
``/`` Some/dti of/in the/at defendants/nns strongly/rb indicated/vbd they/ppss knew/vbd they/ppss were/bed receiving/vbg stolen/vbn property/nn ./.
It/pps is/bez impossible/jj to/to get/vb a/at fair/jj trial/nn when/wrb some/dti of/in the/at defendants/nns made/vbd statements/nns involving/vbg themselves/ppls and/cc others/nns ''/'' ./.
Judge/nn-tl Parsons/np leaned/vbd over/in the/at bench/nn and/cc inquired/vbd ,/, ``/`` You/ppss mean/vb some/dti of/in the/at defendants/nns made/vbd statements/nns admitting/vbg this/dt ''/'' ?/. ?/.
``/`` Yes/rb ,/, your/pp$ honor/nn ''/'' ,/, replied/vbd Bellows/np ./.
``/`` What/wdt this/dt amounts/vbz to/in ,/, if/cs true/jj ,/, is/bez that/cs there/ex will/md be/be a/at free-for-all/jj fight/nn in/in this/dt case/nn ./.
There/ex is/bez a/at conflict/nn among/in the/at defendants/nns ''/'' ./.
--/-- President/nn-tl Kennedy/np today/nr pushed/vbd aside/rb other/ap White/jj-tl House/nn-tl business/nn to/to devote/vb all/abn his/pp$ time/nn and/cc attention/nn to/in working/vbg on/in the/at Berlin/np crisis/nn address/nn he/pps will/md deliver/vb tomorrow/nr night/nn to/in the/at American/jj people/nns over/in nationwide/jj television/nn and/cc radio/nn ./.
The/at President/nn-tl spent/vbd much/ap of/in the/at week-end/nn at/in his/pp$ summer/nn home/nn on/in Cape/nn-tl Cod/nn-tl writing/vbg the/at first/od drafts/nns of/in portions/nns of/in the/at address/nn with/in the/at help/nn of/in White/jj-tl House/nn-tl aids/nns in/in Washington/np with/in whom/wpo he/pps talked/vbd by/in telephone/nn ./.
Shortly/rb after/cs the/at Chief/jjs-tl Executive/nn-tl returned/vbd to/in Washington/np in/in midmorning/nn from/in Hyannis/np Port/nn-tl ,/, Mass./np ,/, a/at White/jj-tl House/nn-tl spokesman/nn said/vbd the/at address/nn text/nn still/rb had/hvd ``/`` quite/abl a/at way/nn to/to go/vb ''/'' toward/in completion/nn ./.
Asked/vbn to/to elaborate/vb ,/, Pierre/np Salinger/np ,/, White/jj-tl House/nn-tl press/nn secretary/nn ,/, replied/vbd ,/, ``/`` I/ppss would/md say/vb it's/pps+hvz got/vbn to/to go/vb thru/in several/ap more/ap drafts/nns ''/'' ./.
Salinger/np said/vbd the/at work/nn President/nn-tl Kennedy/np ,/, advisers/nns ,/, and/cc members/nns of/in his/pp$ staff/nn were/bed doing/vbg on/in the/at address/nn involved/vbd composition/nn and/cc wording/vbg ,/, rather/in than/in last/ap minute/nn decisions/nns on/in administration/nn plans/nns to/to meet/vb the/at latest/jjt Berlin/np crisis/nn precipitated/vbn by/in Russia's/np$ demands/nns and/cc proposals/nns for/in the/at city/nn ./.
The/at last/ap 10/cd cases/nns in/in the/at investigation/nn of/in the/at Nov./np 8/cd election/nn were/bed dismissed/vbn yesterday/nr by/in Acting/vbg-tl Judge/nn-tl John/np M./np Karns/np ,/, who/wps charged/vbd that/cs the/at prosecution/nn obtained/vbd evidence/nn ``/`` by/in unfair/jj and/cc fundamentally/ql illegal/jj means/nns ''/'' ./.
Karns/np said/vbd that/cs the/at cases/nns involved/vbd a/at matter/nn ``/`` of/in even/ql greater/jjr significance/nn than/cs the/at guilt/nn or/cc innocence/nn ''/'' of/in the/at 50/cd persons/nns ./.
He/pps said/vbd evidence/nn was/bedz obtained/vbn ``/`` in/in violation/nn of/in the/at legal/jj rights/nns of/in citizens/nns ''/'' ./.
Karns'/np$ ruling/nn pertained/vbd to/in eight/cd of/in the/at 10/cd cases/nns ./.
In/in the/at two/cd other/ap cases/nns he/pps ruled/vbd that/cs the/at state/nn had/hvd been/ben ``/`` unable/jj to/to make/vb a/at case/nn ''/'' ./.
Contempt/nn proceedings/nns originally/rb had/hvd been/ben brought/vbn against/in 677/cd persons/nns in/in 133/cd precincts/nns by/in Morris/np J./np Wexler/np ,/, special/jj prosecutor/nn ./.
Wexler/np admitted/vbd in/in earlier/jjr court/nn hearings/nns that/cs he/pps issued/vbd grand/jj jury/nn subpenas/nns to/in about/rb 200/cd persons/nns involved/vbn in/in the/at election/nn investigation/nn ,/, questioned/vbd the/at individuals/nns in/in the/at Criminal/jj-tl courts/nns building/nn ,/, but/cc did/dod not/* take/vb them/ppo before/in the/at grand/jj jury/nn ./.
Mayer/np Goldberg/np ,/, attorney/nn for/in election/nn judges/nns in/in the/at 58th/od precinct/nn of/in the/at 23d/od ward/nn ,/, argued/vbd this/dt procedure/nn constituted/vbd intimidation/nn ./.
Wexler/np has/hvz denied/vbn repeatedly/rb that/cs coercion/nn was/bedz used/vbn in/in questioning/vbg ./.
Karns/np said/vbd it/pps was/bedz a/at ``/`` wrongful/jj act/nn ''/'' for/in Wexler/np to/to take/vb statements/nns ``/`` privately/rb and/cc outside/in of/in the/at grand/jj jury/nn room/nn ''/'' ./.
He/pps said/vbd this/dt constituted/vbd a/at ``/`` very/ql serious/jj misuse/nn ''/'' of/in the/at Criminal/jj-tl court/nn-tl processes/nns ./.
``/`` Actually/rb ,/, the/at abuse/nn of/in the/at process/nn may/md have/hv constituted/vbn a/at contempt/nn of/in the/at Criminal/jj-tl court/nn-tl of/in-tl Cook/np county/nn ,/, altho/cs vindication/nn of/in the/at authority/nn of/in that/dt court/nn is/bez not/* the/at function/nn of/in this/dt court/nn ''/'' ,/, said/vbd Karns/np ,/, who/wps is/bez a/at City/nn-tl judge/nn in/in East/jj-tl St./np-tl Louis/np-tl sitting/vbg in/in Cook/np-tl County/nn-tl court/nn-tl ./.
Karns/np had/hvd been/ben scheduled/vbn this/dt week/nn to/to hear/vb seven/cd cases/nns involving/vbg 35/cd persons/nns ./.
Wexler/np had/hvd charged/vbn the/at precinct/nn judges/nns in/in these/dts cases/nns with/in ``/`` complementary/jj ''/'' miscount/nn of/in the/at vote/nn ,/, in/in which/wdt votes/nns would/md be/be taken/vbn from/in one/cd candidate/nn and/cc given/vbn to/in another/dt ./.
The/at cases/nns involved/vbd judges/nns in/in the/at 33d/od ,/, 24th/od ,/, and/cc 42d/od precincts/nns of/in the/at 31st/od ward/nn ,/, the/at 21st/od and/cc 28th/od precincts/nns of/in the/at 29th/od ward/nn ,/, the/at 18th/od precinct/nn of/in the/at 4th/od ward/nn ,/, and/cc the/at 9th/od precinct/nn of/in the/at 23d/od ward/nn ./.
The/at case/nn of/in the/at judges/nns in/in the/at 58th/od precinct/nn of/in the/at 23d/od ward/nn had/hvd been/ben heard/vbn previously/rb and/cc taken/vbn under/in advisement/nn by/in Karns/np ./.
Two/cd other/ap cases/nns also/rb were/bed under/in advisement/nn ./.
After/in reading/vbg his/pp$ statement/nn discharging/vbg the/at 23d/od ward/nn case/nn ,/, Karns/np told/vbd Wexler/np that/cs if/cs the/at seven/cd cases/nns scheduled/vbn for/in trial/nn also/rb involved/vbd persons/nns who/wps had/hvd been/ben subpenaed/vbn ,/, he/pps would/md dismiss/vb them/ppo ./.
--/-- President/nn-tl Kennedy/np today/nr proposed/vbd a/at mammoth/jj new/jj medical/jj care/nn program/nn whereby/wrb social/jj security/nn taxes/nns on/in 70/cd million/cd American/jj workers/nns would/md be/be raised/vbn to/to pay/vb the/at hospital/nn and/cc some/dti other/ap medical/jj bills/nns of/in 14.2/cd million/cd Americans/nps over/in 65/cd who/wps are/ber covered/vbn by/in social/jj security/nn or/cc railroad/nn retirement/nn programs/nns ./.
The/at President/nn-tl ,/, in/in a/at special/jj message/nn to/in Congress/np ,/, tied/vbd in/rp with/in his/pp$ aged/vbn care/nn plan/nn requests/nns for/in large/jj federal/jj grants/nns to/to finance/vb medical/jj and/cc dental/jj scholarships/nns ,/, build/vb 20/cd new/jj medical/jj and/cc 20/cd new/jj dental/jj schools/nns ,/, and/cc expand/vb child/nn health/nn care/nn and/cc general/jj medical/jj research/nn ./.
The/at aged/vbn care/nn plan/nn ,/, similar/jj to/in one/cd the/at President/nn-tl sponsored/vbd last/ap year/nn as/cs a/at senator/nn ,/, a/at fight/nn on/in Capitol/nn-tl hill/nn-tl ./.
It/pps was/bedz defeated/vbn in/in Congress/np last/ap year/nn ./.
It/pps would/md be/be financed/vbn by/in boosting/vbg the/at social/jj security/nn payroll/nn tax/nn by/in as/ql much/ap as/cs $37/nns a/at year/nn for/in each/dt of/in the/at workers/nns now/rb paying/vbg such/jj taxes/nns ./.
The/at social/jj security/nn payroll/nn tax/nn is/bez now/rb 6/cd per/in cent/nn --/-- 3/cd per/in cent/nn on/in each/dt worker/nn and/cc employer/nn --/-- on/in the/at first/od $4,800/nns of/in pay/nn per/in year/nn ./.
The/at Kennedy/np plan/nn alone/rb would/md boost/vb the/at base/nn to/in $5,000/nns a/at year/nn and/cc the/at payroll/nn tax/nn to/in 6.5/cd per/in cent/nn --/-- 3.25/cd per/in cent/nn each/dt ./.
Similar/jj payroll/nn tax/nn boosts/nns would/md be/be imposed/vbn on/in those/dts under/in the/at railroad/nn retirement/nn system/nn ./.
The/at payroll/nn tax/nn would/md actually/rb rise/vb to/in 7.5/cd per/in cent/nn starting/vbg Jan./np 1/cd ,/, 1963/cd ,/, if/cs the/at plan/nn is/bez approved/vbn ,/, because/cs the/at levy/nn is/bez already/rb scheduled/vbn to/to go/vb up/rp by/in 1/cd per/in cent/nn on/in that/dt date/nn to/to pay/vb for/in other/ap social/jj security/nn costs/nns ./.
Officials/nns estimated/vbd the/at annual/jj tax/nn boost/nn for/in the/at medical/jj plan/nn would/md amount/vb to/in 1.5/cd billion/cd dollars/nns and/cc that/cs medical/jj benefits/nns paid/vbn out/rp would/md run/vb 1/cd billion/cd or/cc more/ap in/in the/at first/od year/nn ,/, 1963/cd ./.
Both/abx figures/nns would/md go/vb higher/rbr in/in later/jjr years/nns ./.
Other/ap parts/nns of/in the/at Kennedy/np health/nn plan/nn would/md entail/vb federal/jj grants/nns of/in 750/cd million/cd to/in 1/cd billion/cd dollars/nns over/in the/at next/ap 10/cd years/nns ./.
These/dts would/md be/be paid/vbn for/in out/in of/in general/jj ,/, not/* payroll/nn ,/, taxes/nns ./.
The/at aged/vbn care/nn plan/nn carries/vbz these/dts benefits/nns for/in persons/nns over/in 65/cd who/wps are/ber under/in the/at social/jj security/nn and/cc railroad/nn retirement/nn systems/nns :/: 1/cd
Full/jj payment/nn of/in hospital/nn bills/nns for/in stays/nns up/in to/in 90/cd days/nns for/in each/dt illness/nn ,/, except/in that/cs the/at patient/nn would/md pay/vb $10/nns a/at day/nn of/in the/at cost/nn for/in the/at first/od nine/cd days/nns ./.
Full/jj payment/nn of/in nursing/vbg home/nn bills/nns for/in up/in to/in 180/cd days/nns following/vbg discharge/nn from/in a/at hospital/nn ./.
A/at patient/nn could/md receive/vb up/in to/in 300/cd days/nns paid-for/jj nursing/vbg home/nn care/nn under/in a/at ``/`` unit/nn formula/nn ''/'' allowing/vbg more/ap of/in such/jj care/nn for/in those/dts who/wps use/vb none/pn or/cc only/ap part/nn of/in the/at hospital-care/nn credit/nn ./.
Hospital/nn outpatient/nn clinic/nn diagnostic/nn service/nn for/in all/abn costs/nns in/in excess/nn of/in $20/nns a/at patient/nn ./.
Community/nn visiting/vbg nurse/nn services/nns at/in home/nn for/in up/in to/in 240/cd days/nns an/at illness/nn ./.
The/at President/nn-tl noted/vbd that/cs Congress/np last/ap year/nn passed/vbd a/at law/nn providing/vbg grants/nns to/in states/nns to/to help/vb pay/vb medical/jj bills/nns of/in the/at needy/jj aged/vbn ./.
He/pps said/vbd his/pp$ plan/nn is/bez designed/vbn to/to ``/`` meet/vb the/at needs/nns of/in those/dts millions/nns who/wps have/hv no/at wish/nn to/to receive/vb care/nn at/in the/at taxpayers'/nns$ expense/nn ,/, but/cc who/wps are/ber nevertheless/rb staggered/vbn by/in the/at drain/nn on/in their/pp$ savings/nns --/-- or/cc those/dts of/in their/pp$ children/nns --/-- caused/vbn by/in an/at extended/vbn hospital/nn stay/nn ''/'' ./.
``/`` This/dt is/bez a/at very/ql modest/jj proposal/nn cut/vbn to/to meet/vb absolutely/rb essential/jj needs/nns ''/'' ,/, he/pps said/vbd ,/, ``/`` and/cc with/in sufficient/jj '/' deductible/jj '/' requirements/nns to/to discourage/vb any/dti malingering/nn or/cc unnecessary/jj overcrowding/nn of/in our/pp$ hospitals/nns ./.
``/`` This/dt is/bez not/* a/at program/nn of/in socialized/vbn medicine/nn ./.
It/pps is/bez a/at program/nn of/in prepayment/nn of/in health/nn costs/nns with/in absolute/jj freedom/nn of/in choice/nn guaranteed/vbn ./.
Every/at person/nn will/md choose/vb his/pp$ own/jj doctor/nn and/cc hospital/nn ''/'' ./.
The/at plan/nn does/doz not/* cover/vb doctor/nn bills/nns ./.
They/ppss would/md still/rb be/be paid/vbn by/in the/at patient/nn ./.
Apart/rb from/in the/at aged/vbn care/nn plan/nn the/at President's/nn$-tl most/ql ambitious/jj and/cc costly/jj proposals/nns were/bed for/in federal/jj scholarships/nns ,/, and/cc grants/nns to/to build/vb or/cc enlarge/vb medical/jj and/cc dental/jj schools/nns ./.
The/at President/nn-tl said/vbd the/at nation's/nn$ 92/cd medical/jj and/cc 47/cd dental/jj schools/nns cannot/md* now/rb handle/vb the/at student/nn load/nn needed/vbn to/to meet/vb the/at rising/vbg need/nn for/in health/nn care/nn ./.
Moreover/rb ,/, he/pps said/vbd ,/, many/ap qualified/vbn young/jj people/nns are/ber not/* going/vbg into/in medicine/nn and/cc dentistry/nn because/cs they/ppss can't/md* afford/vb the/at schooling/vbg costs/nns ./.
The/at scholarship/nn plan/nn would/md provide/vb federal/jj contributions/nns to/in each/dt medical/jj and/cc dental/jj school/nn equal/jj to/in $1,500/nns a/at year/nn for/in one-fourth/nn of/in the/at first/od year/nn students/nns ./.
The/at schools/nns could/md use/vb the/at money/nn to/to pay/vb 4-year/jj scholarships/nns ,/, based/vbn on/in need/nn ,/, of/in up/in to/in $2,000/nns a/at year/nn per/in student/nn ./.
In/in addition/nn ,/, the/at government/nn would/md pay/vb a/at $1,000/nns ``/`` cost/nn of/in education/nn ''/'' grant/nn to/in the/at schools/nns for/in each/dt $1,500/nns in/in scholarship/nn grants/nns ./.
Officials/nns estimated/vbd the/at combined/vbn programs/nns would/md cost/vb 5.1/cd million/cd dollars/nns the/at first/od year/nn and/cc would/md go/vb up/rp to/in 21/cd millions/nns by/in 1966/cd ./.
The/at President/nn-tl recommended/vbd federal/jj ``/`` matching/vbg grants/nns ''/'' totaling/vbg 700/cd million/cd dollars/nns in/in 10/cd years/nns for/in constructing/vbg new/jj medical/jj and/cc dental/jj schools/nns or/cc enlarging/vbg the/at capacity/nn of/in existing/vbg ones/nns ./.
In/in the/at area/nn of/in ``/`` community/nn health/nn services/nns ''/'' ,/, the/at President/nn-tl called/vbd for/in doubling/vbg the/at present/jj 10/cd million/cd dollar/nn a/at year/nn federal/jj grants/nns for/in nursing/vbg home/nn construction/nn ./.
He/pps asked/vbd for/in another/dt 10/cd million/cd dollar/nn ``/`` initial/jj ''/'' appropriation/nn for/in ``/`` stimulatory/jj grants/nns ''/'' to/in states/nns to/to improve/vb nursing/vbg homes/nns ./.
He/pps further/rbr proposed/vbd grants/nns of/in an/at unspecified/jj sum/nn for/in experimental/jj hospitals/nns ./.
In/in the/at child/nn health/nn field/nn ,/, the/at President/nn-tl said/vbd he/pps will/md recommend/vb later/rbr an/at increase/nn in/in funds/nns for/in programs/nns under/in the/at children's/nns$ bureau/nn ./.
He/pps also/rb asked/vbn Congress/np to/to approve/vb establishment/nn of/in a/at national/jj child/nn health/nn institute/nn ./.
The/at President/nn-tl said/vbd he/pps will/md ask/vb Congress/np to/to increase/vb grants/nns to/in states/nns for/in vocational/jj rehabilitation/nn ./.
He/pps did/dod not/* say/vb by/in how/ql much/ap ./.
For/in medical/jj research/nn he/pps asked/vbd a/at 20/cd million/cd dollar/nn a/at year/nn increase/nn ,/, from/in 30/cd to/in 50/cd millions/nns ,/, in/in matching/vbg grants/nns for/in building/vbg research/nn facilities/nns ./.
The/at President/nn-tl said/vbd he/pps will/md also/rb propose/vb increasing/vbg ,/, by/in an/at unspecified/jj amount/vb ,/, the/at 540/cd million/cd dollars/nns in/in the/at 1961-62/cd budget/nn for/in direct/jj government/nn research/nn in/in medicine/nn ./.
The/at President/nn-tl said/vbd his/pp$ proposals/nns combine/vb the/at ``/`` indispensable/jj elements/nns in/in a/at sound/jj health/nn program/nn --/-- people/nns ,/, knowledge/nn ,/, services/nns ,/, facilities/nns ,/, and/cc the/at means/nns to/to pay/vb for/in them/ppo ''/'' ./.
Congressional/jj reaction/nn to/in the/at message/nn was/bedz along/in expected/vbn lines/nns ./.
Legislators/nns who/wps last/ap year/nn opposed/vbd placing/vbg aged-care/nn under/in the/at social/jj security/nn system/nn criticized/vbd the/at President's/nn$-tl plan/nn ./.
Those/dts who/wps backed/vbd a/at similar/jj plan/nn last/ap year/nn hailed/vbd the/at message/nn ./.
Senate/nn-tl Republican/np-tl Leader/nn-tl Dirksen/np (/( Ill./np )/) and/cc House/nn-tl Republican/np-tl Leader/nn-tl Charles/np Halleck/np (/( Ind./np )/) said/vbd the/at message/nn did/dod not/* persuade/vb them/ppo to/to change/vb their/pp$ opposition/nn to/in compulsory/jj medical/jj insurance/nn ./.
Halleck/np said/vbd the/at voluntary/jj care/nn plan/nn enacted/vbn last/ap year/nn should/md be/be given/vbn a/at fair/jj trial/nn first/rb ./.
House/nn-tl Speaker/nn-tl Sam/np Rayburn/np (/( D./np ,/, Tex./np )/) called/vbd the/at Kennedy/np program/nn ``/`` a/at mighty/ql fine/jj thing/nn ''/'' ,/, but/cc made/vbd no/at prediction/nn on/in its/pp$ fate/nn in/in the/at House/nn-tl ./.
--/-- Acting/vbg hastily/rb under/in White/jj-tl House/nn-tl pressure/nn ,/, the/at Senate/nn-tl tonight/nr confirmed/vbd Robert/np C./np Weaver/np as/cs the/at nation's/nn$ federal/jj housing/vbg chief/nn ./.
Only/rb 11/cd senators/nns were/bed on/in the/at floor/nn and/cc there/ex was/bedz no/at record/nn vote/nn ./.
A/at number/nn of/in scattered/vbn ``/`` ayes/nns ''/'' and/cc ``/`` noes/nns ''/'' was/bedz heard/vbn ./.
Customary/jj Senate/nn-tl rules/nns were/bed ignored/vbn in/in order/nn to/to speed/vb approval/nn of/in the/at Negro/np leader/nn as/cs administrator/nn of/in the/at housing/vbg and/cc home/nn finance/nn agency/nn ./.
In/in the/at last/ap eight/cd years/nns ,/, all/abn Presidential/jj-tl appointments/nns ,/, including/in those/dts of/in cabinet/nn rank/nn ,/, have/hv been/ben denied/vbn immediate/jj action/nn because/rb of/in a/at Senate/nn-tl rule/nn requiring/vbg at/in least/ap a/at 24/cd hour/nn delay/nn after/cs they/ppss are/ber reported/vbn to/in the/at floor/nn ./.
The/at rule/nn was/bedz enforced/vbn by/in demand/nn of/in Sen./nn-tl Wayne/np Morse/np (/( D./np ,/, Ore./np )/) in/in connection/nn with/in President/nn-tl Eisenhower's/np$ cabinet/nn selections/nns in/in 1953/cd and/cc President/nn-tl Kennedy's/np$ in/in 1961/cd ./.
The/at most/ql positive/jj element/nn to/to emerge/vb from/in the/at Oslo/np meeting/nn of/in North/jj-tl Atlantic/np-tl Treaty/nn-tl Organization/nn-tl Foreign/jj-tl Ministers/nns-tl has/hvz been/ben the/at freer/jjr ,/, franker/jjr ,/, and/cc wider/jjr discussions/nns ,/, animated/vbn by/in much/ql better/jjr mutual/jj understanding/nn than/cs in/in past/jj meetings/nns ./.
This/dt has/hvz been/ben a/at working/vbg session/nn of/in an/at organization/nn that/wps ,/, by/in its/pp$ very/ap nature/nn ,/, can/md only/rb proceed/vb along/in its/pp$ route/nn step/nn by/in step/nn and/cc without/in dramatic/jj changes/nns ./.
In/in Oslo/np ,/, the/at ministers/nns have/hv met/vbn in/in a/at climate/nn of/in candor/nn ,/, and/cc made/vbn a/at genuine/jj attempt/nn to/to get/vb information/nn and/cc understanding/vbg one/pn another's/dt$ problems/nns ./.
This/dt atmosphere/nn of/in understanding/vbg has/hvz been/ben particularly/rb noticeable/jj where/wrb relations/nns are/ber concerned/vbn between/in the/at ``/`` colonialist/nn ''/'' powers/nns and/cc those/dts who/wps have/hv never/rb ,/, or/cc not/* for/in a/at long/jj time/nn ,/, had/hvn such/jj problems/nns ./.
The/at nightmare/nn of/in a/at clash/nn between/in those/dts in/in trouble/nn in/in Africa/np ,/, exacerbated/vbn by/in the/at difficulties/nns ,/, changes/nns ,/, and/cc tragedies/nns facing/vbg them/ppo ,/, and/cc other/ap allies/nns who/wps intellectually/rb and/cc emotionally/rb disapprove/vb of/in the/at circumstances/nns that/wps have/hv brought/vbn these/dts troubles/nns about/rp ,/, has/hvz been/ben conspicuous/jj by/in its/pp$ absence/nn ./.
In/in the/at case/nn of/in Portugal/np ,/, which/wdt a/at few/ap weeks/nns ago/rb was/bedz rumored/vbn ready/jj to/to walk/vb out/rp of/in the/at NATO/nn Council/nn-tl should/md critics/nns of/in its/pp$ Angola/np policy/nn prove/vb harsh/jj ,/, there/ex has/hvz been/ben a/at noticeable/jj relaxation/nn of/in tension/nn ./.
The/at general/jj ,/, remarkably/ql courteous/jj ,/, explanation/nn has/hvz left/vbn basic/jj positions/nns unchanged/jj ,/, but/cc there/ex has/hvz been/ben no/at explosion/nn in/in the/at council/nn ./.
There/ex should/md even/rb be/be no/at more/ap bitter/jj surprises/nns in/in the/at UN/nn General/jj-tl Assembly/nn-tl as/in to/in NATO/nn members'/nns$ votes/nns ,/, since/cs a/at new/jj ad/fw-in hoc/fw-dt NATO/nn committee/nn has/hvz been/ben set/vbn up/rp so/cs that/cs in/in the/at future/nn such/jj topics/nns as/cs Angola/np will/md be/be discussed/vbn in/in advance/nn ./.
Canada/np alone/rb has/hvz been/ben somewhat/ql out/in of/in step/nn with/in the/at Oslo/np attempt/nn to/to get/vb all/abn the/at allied/vbn cars/nns back/rb on/in the/at track/nn behind/in the/at NATO/nn locomotive/nn ./.
Even/rb Norway/np ,/, despite/in daily/jj but/cc limited/vbn manifestations/nns against/in atomic/jj arms/nns in/in the/at heart/nn of/in this/dt northernmost/jjs capital/nn of/in the/at alliance/nn ,/, is/bez today/nr closer/jjr to/in the/at NATO/nn line/nn ./.
On/in the/at negative/jj side/nn of/in the/at balance/nn sheet/nn must/md be/be set/vbn some/dti disappointment/nn that/cs the/at United/vbn-tl States/nns-tl leadership/nn has/hvz not/* been/ben as/ql much/rb in/in evidence/nn as/cs hoped/vbn for/in ./.
One/cd diplomat/nn described/vbd the/at tenor/nn of/in Secretary/nn-tl of/in-tl State/nn-tl Dean/np Rusk's/np$ speeches/nns as/cs ``/`` inconclusive/jj ''/'' ./.
But/cc he/pps hastened/vbd to/to add/vb that/cs ,/, if/cs United/vbn-tl States/nns-tl policies/nns were/bed not/* always/rb clear/jj ,/, despite/in Mr./np Rusk's/np$ analysis/nn of/in the/at various/jj global/jj danger/nn points/nns and/cc setbacks/nns for/in the/at West/nr-tl ,/, this/dt may/md merely/rb mean/vb the/at new/jj administration/nn has/hvz not/* yet/rb firmly/rb fixed/vbn its/pp$ policy/nn ./.
A/at certain/jj vagueness/nn may/md also/rb be/be caused/vbn by/in tactical/jj appreciation/nn of/in the/at fact/nn that/cs the/at present/jj council/nn meeting/nn is/bez a/at semipublic/jj affair/nn ,/, with/in no/at fewer/ap than/cs six/cd Soviet/nn-tl correspondents/nns accredited/vbn ./.
The/at impression/nn has/hvz nevertheless/rb been/ben given/vbn during/in these/dts three/cd days/nns ,/, despite/in Mr./np Rusk's/np$ personal/jj popularity/nn ,/, that/cs the/at United/vbn-tl States/nns-tl delegation/nn came/vbd to/in Oslo/np in/in a/at somewhat/ql tentative/jj and/cc exploratory/jj frame/nn of/in mind/nn ,/, more/ql ready/jj to/to listen/vb and/cc learn/vb than/cs to/to enunciate/vb firm/jj policy/nn on/in a/at global/jj scale/nn with/in detailed/vbn application/nn to/in individual/jj danger/nn spots/nns ./.
The/at Secretary/nn-tl of/in-tl State/nn-tl himself/ppl ,/, in/in his/pp$ first/od speech/nn ,/, gave/vbd some/dti idea/nn of/in the/at tremendous/jj march/nn of/in events/nns inside/in and/cc outside/in the/at United/vbn-tl States/nns-tl that/wps has/hvz preoccupied/vbn the/at new/jj administration/nn in/in the/at past/ap four/cd months/nns ./.
But/cc where/wrb the/at core/nn of/in NATO/nn is/bez concerned/vbn ,/, the/at Secretary/nn-tl of/in-tl State/nn-tl has/hvz not/* only/rb reiterated/vbn the/at United/vbn-tl States'/nns$-tl profound/jj attachment/nn to/in the/at alliance/nn ,/, ``/`` cornerstone/nn ''/'' of/in its/pp$ foreign/jj policy/nn ,/, but/cc has/hvz announced/vbn that/cs five/cd nuclear/jj submarines/nns will/md eventually/rb be/be at/in NATO's/nn disposal/nn in/in European/jj waters/nns ./.
The/at Secretary/nn-tl of/in-tl State/nn-tl has/hvz also/rb solemnly/rb repeated/vbn a/at warning/nn to/in the/at Soviet/nn-tl Union/nn-tl that/cs the/at United/vbn-tl States/nns-tl will/md not/* stand/vb for/in another/dt setback/nn in/in Berlin/np ,/, an/at affirmation/nn once/rb again/rb taken/vbn up/rp by/in the/at council/nn as/cs a/at whole/nn ./.
The/at secretary's/nn$ greatest/jjt achievement/nn is/bez perhaps/rb the/at rekindling/nn of/in NATO/nn realization/nn that/cs East-West/jj-tl friction/nn ,/, wherever/wrb it/pps take/vb place/nn around/in the/at globe/nn ,/, is/bez in/in essence/nn the/at general/jj conflict/nn between/in two/cd entirely/rb different/jj societies/nns ,/, and/cc must/md be/be treated/vbn as/cs such/jj without/in regard/nn to/in geographical/jj distance/nn or/cc lack/nn of/in apparent/jj connection/nn ./.
The/at annual/jj spring/nn meeting/nn has/hvz given/vbn an/at impetus/nn in/in three/cd main/nn directions/nns :/: more/ap ,/, deeper/jjr ,/, and/cc more/ql timely/jj political/jj consultation/nn within/in the/at alliance/nn ,/, the/at use/nn of/in the/at Organization/nn-tl for/in-tl Economic/jj-tl Cooperation/nn-tl and/cc-tl Development/nn-tl (/( when/wrb ratified/vbn )/) as/cs a/at method/nn of/in coordinating/vbg aid/nn to/in the/at underdeveloped/jj countries/nns ,/, and/cc the/at need/nn for/in strengthening/vbg conventional/jj forces/nns as/ql well/rb as/cs the/at maintenance/nn of/in the/at nuclear/jj deterrent/nn ./.
This/dt increase/nn in/in the/at ``/`` threshold/nn ''/'' ,/, as/cs the/at conventional/jj forces/nns strengthening/nn is/bez called/vbn ,/, will/md prove/vb one/cd of/in the/at alliance's/nn$ most/ql difficult/jj problems/nns in/in the/at months/nns to/to come/vb ./.
Each/dt ally/nn will/md have/hv to/to carry/vb out/rp obligations/nns long/rb since/cs laid/vbn down/rp ,/, but/cc never/rb completely/ql fulfilled/vbn ./.
The/at Kennedy/np administration/nn moves/vbz haltingly/rb toward/in a/at Geneva/np conference/nn on/in Laos/np just/rb as/cs serious/jj debate/nn over/in its/pp$ foreign/jj policy/nn erupts/vbz for/in the/at first/od time/nn ./.
There/ex is/bez little/ap optimism/nn here/rb that/cs the/at Communists/nns-tl will/md be/be any/dti more/ql docile/jj at/in the/at conference/nn table/nn than/cs they/ppss were/bed in/in military/jj actions/nns on/in the/at ground/nn in/in Laos/np ./.
The/at United/vbn-tl States/nns-tl ,/, State/nn-tl Department/nn-tl officials/nns explain/vb ,/, now/rb is/bez mainly/rb interested/vbn in/in setting/vbg up/rp an/at international/jj inspection/nn system/nn which/wdt will/md prevent/vb Laos/np from/in being/beg used/vbn as/cs a/at base/nn for/in Communist/nn-tl attacks/nns on/in neighboring/vbg Thailand/np and/cc South/jj-tl Viet/np-tl Nam/np-tl ./.
They/ppss count/vb on/in the/at aid/nn of/in the/at neutral/jj countries/nns attending/vbg the/at Geneva/np conference/nn to/to achieve/vb this/dt ./.
The/at United/vbn-tl States/nns-tl hopes/vbz that/cs any/dti future/jj Lao/np-tl Cabinet/nn-tl would/md not/* become/vb Communist/nn-tl dominated/vbn ./.
But/cc it/pps is/bez apparent/jj that/cs no/at acceptable/jj formula/nn has/hvz been/ben found/vbn to/to prevent/vb such/abl a/at possibility/nn ./.
The/at inclination/nn here/rb is/bez to/to accept/vb a/at de/fw-in facto/fw-nn cease-fire/nn in/in Laos/np ,/, rather/in than/in continue/vb to/to insist/vb on/in a/at verification/nn of/in the/at cease-fire/nn by/in the/at international/jj control/nn commission/nn before/cs participating/vbg in/in the/at Geneva/np conference/nn ./.
This/dt is/bez another/dt of/in the/at modifications/nns of/in policy/nn on/in Laos/np that/cs the/at Kennedy/np administration/nn has/hvz felt/vbn compelled/vbn to/to make/vb ./.
It/pps excuses/vbz these/dts actions/nns as/cs being/beg the/at chain/nn reaction/nn to/in basic/jj errors/nns made/vbn in/in the/at previous/jj administration/nn ./.
Its/pp$ spokesmen/nns insist/vb that/cs there/ex has/hvz not/* been/ben time/nn enough/ap to/to institute/vb reforms/nns in/in military/jj and/cc economic/jj aid/nn policies/nns in/in the/at critical/jj areas/nns ./.
But/cc with/in the/at months/nns moving/vbg on/rp --/-- and/cc the/at immediate/jj confrontations/nns with/in the/at Communists/nns-tl showing/vbg no/at gain/nn for/in the/at free/jj world/nn --/-- the/at question/nn arises/vbz :/:
How/wrb effective/jj have/hv Kennedy/np administration/nn first/od foreign/jj policy/nn decisions/nns been/ben in/in dealing/vbg with/in Communist/nn-tl aggression/nn ?/. ?/.
Former/ap Vice-President/nn-tl Richard/np M./np Nixon/np in/in Detroit/np called/vbd for/in a/at firmer/jjr and/cc tougher/jjr policy/nn toward/in the/at Soviet/nn-tl Union/nn-tl ./.
He/pps was/bedz critical/jj of/in what/wdt he/pps feels/vbz is/bez President/nn-tl Kennedy's/np$ tendency/nn to/to be/be too/ql conciliatory/jj ./.
It/pps does/doz not/* take/vb a/at Gallup/np poll/nn to/to find/vb out/rp that/cs most/ap Republicans/nps in/in Congress/np feel/vb this/dt understates/vbz the/at situation/nn as/cs Republicans/nps see/vb it/ppo ./.
They/ppss can/md hardly/rb restrain/vb themselves/ppls from/in raising/vbg the/at question/nn of/in whether/cs Republicans/nps ,/, if/cs they/ppss had/hvd been/ben in/in power/nn ,/, would/md have/hv made/vbn ``/`` amateurish/jj and/cc monumental/jj blunders/nns ''/'' in/in Cuba/np ./.
One/cd Republican/np senator/nn told/vbd this/dt correspondent/nn that/cs he/pps was/bedz constantly/rb being/beg asked/vbn why/wrb he/pps didn't/dod* attack/vb the/at Kennedy/np administration/nn on/in this/dt score/nn ./.
His/pp$ reply/nn ,/, he/pps said/vbd ,/, was/bedz that/cs he/pps agreed/vbd to/in the/at need/nn for/in unity/nn in/in the/at country/nn now/rb ./.
But/cc he/pps further/rbr said/vbd that/cs it/pps was/bedz better/jjr politics/nn to/to let/vb others/nns question/vb the/at wisdom/nn of/in administration/nn policies/nns first/rb ./.
The/at Republicans/nps some/dti weeks/nns ago/rb served/vbd notice/nn through/in Senator/nn-tl Thruston/np B./np Morton/np (/( R/np )/) of/in Kentucky/np ,/, chairman/nn of/in the/at Republican/np National/jj-tl Committee/nn-tl ,/, that/cs the/at Kennedy/np administration/nn would/md be/be held/vbn responsible/jj if/cs the/at outcome/nn in/in Laos/np was/bedz a/at coalition/nn government/nn susceptible/jj of/in Communist/nn-tl domination/nn ./.
Kennedy/np administration/nn policies/nns also/rb have/hv been/ben assailed/vbn now/rb from/in another/dt direction/nn by/in 70/cd Harvard/np ,/, Boston/np-tl University/nn-tl ,/, Brandeis/np ,/, and/cc Massachusetts/np-tl Institute/nn-tl of/in-tl Technology/nn-tl educators/nns ./.
This/dt group/nn pleads/vbz with/in the/at administration/nn to/to ``/`` give/vb no/at further/jjr support/nn for/in the/at invasion/nn of/in Cuba/np by/in exile/nn groups/nns ''/'' ./.
It/pps recommends/vbz that/cs the/at United/vbn-tl States/nns-tl ``/`` seek/vb instead/rb to/to detach/vb the/at Castro/np regime/nn from/in the/at Communist/nn-tl bloc/nn by/in working/vbg for/in a/at diplomatic/jj detente/nn and/cc a/at resumption/nn of/in trade/nn relations/nns ;/. ;/.
and/cc concentrate/vb its/pp$ constructive/jj efforts/nns on/in eliminating/vbg in/in other/ap parts/nns of/in Latin/jj-tl America/np-tl the/at social/jj conditions/nns on/in which/wdt totalitarian/jj nationalism/nn feeds/vbz ''/'' ./.
Mr./np Nixon/np ,/, for/in his/pp$ part/nn ,/, would/md oppose/vb intervention/nn in/in Cuba/np without/in specific/jj provocation/nn ./.
But/cc he/pps did/dod recommend/vb that/cs President/nn-tl Kennedy/np state/vb clearly/rb that/cs if/cs Communist/nn-tl countries/nns shipped/vbd any/dti further/jjr arms/nns to/in Cuba/np that/cs it/pps would/md not/* be/be tolerated/vbn ./.
Until/cs the/at Cuban/np fiasco/nn and/cc the/at Communist/nn-tl military/jj victories/nns in/in Laos/np ,/, almost/rb any/dti observer/nn would/md have/hv said/vbn that/cs President/nn-tl Kennedy/np had/hvd blended/vbn a/at program/nn that/wps respected/vbd ,/, generally/rb ,/, the/at opinions/nns voiced/vbn both/abx by/in Mr./np Nixon/np and/cc the/at professors/nns ./.
Very/ql early/rb in/in his/pp$ administration/nn he/pps informed/vbd the/at Kremlin/np through/in diplomatic/jj channels/nns ,/, a/at high/jj official/jj source/nn disclosed/vbd ,/, that/cs the/at new/jj administration/nn would/md react/vb even/ql tougher/rbr than/cs the/at Eisenhower/np administration/nn would/md during/in the/at formative/jj period/nn of/in the/at administration/nn ./.
Strenuous/jj efforts/nns were/bed made/vbn to/to remove/vb pin/nn pricking/vbg from/in administration/nn statements/nns ./.
Policies/nns on/in nuclear/jj test/nn ban/nn negotiations/nns were/bed reviewed/vbn and/cc changed/vbn ./.
But/cc thus/ql far/rb there/ex has/hvz been/ben no/at response/nn in/in kind/nn ./.
Foreign/jj aid/nn programs/nns were/bed revamped/vbn to/to give/vb greater/jjr emphasis/nn to/in economic/jj aid/nn and/cc to/to encourage/vb political/jj reform/nn in/in recipient/nn nations/nns ./.
In/in Laos/np ,/, the/at administration/nn looked/vbd at/in the/at Eisenhower/np administration/nn efforts/nns to/to show/vb determination/nn by/in sailing/vbg a/at naval/jj fleet/nn into/in Southeast/jj-tl Asian/jj-tl waters/nns as/cs a/at useless/jj gesture/nn ./.
Again/rb and/cc again/rb it/pps asked/vbd the/at Communists/nns-tl to/to ``/`` freeze/vb ''/'' the/at military/jj situation/nn in/in Laos/np ./.
But/cc the/at Communists/nns-tl aided/vbd the/at Pathet/np Lao/np at/in an/at even/ql faster/jjr rate/nn ./.
And/cc after/cs several/ap correspondents/nns went/vbd into/in Pathet/np Lao/np territory/nn and/cc exposed/vbd the/at huge/jj build-up/nn ,/, administration/nn spokesmen/nns acclaimed/vbd them/ppo for/cs performing/vbg a/at ``/`` great/jj service/nn ''/'' and/cc laid/vbd the/at matter/nn before/in the/at Southeast/jj-tl Asia/np-tl Treaty/nn-tl Organization/nn-tl ./.
SEATO/nn was/bedz steamed/vbn up/rp and/cc prepared/vbd contingency/nn plans/nns for/cs coping/vbg with/in the/at military/jj losses/nns in/in Laos/np ./.
But/cc the/at Communists/nns-tl never/rb gave/vbd sufficient/jj provocation/nn at/in any/dti one/cd time/nn for/cs the/at United/vbn-tl States/nns-tl to/to want/vb to/to risk/vb a/at limited/vbn or/cc an/at all-out/jj war/nn over/in Laos/np ./.
(/( Some/dti SEATO/nn nations/nns disagreed/vbd ,/, however/wrb ./.
There/ex was/bedz the/at further/jjr complication/nn that/cs the/at administration/nn had/hvd very/ql early/rb concluded/vbn that/cs Laos/np was/bedz ill/ql suited/vbn to/to be/be an/at ally/nn ,/, unlike/in its/pp$ more/ql determined/vbn neighbors/nns ,/, Thailand/np and/cc South/jj-tl Viet/np-tl Nam/np-tl ./.
The/at administration/nn declared/vbd itself/ppl in/in favor/nn of/in a/at neutralized/vbn Laos/np ./.
The/at pro-Western/jj government/nn ,/, which/wdt the/at United/vbn-tl States/nns-tl had/hvd helped/vbn in/in a/at revolt/nn against/in the/at Souvanna/np Phouma/np ``/`` neutralist/nn ''/'' government/nn ,/, never/rb did/dod appear/vb to/to spark/vb much/ap fighting/vbg spirit/nn in/in the/at Royal/jj-tl Lao/np Army/nn-tl ./.
There/ex certainly/rb was/bedz not/* any/dti more/ap energy/nn displayed/vbn after/cs it/pps was/bedz clear/jj the/at United/vbn-tl States/nns-tl would/md not/* back/vb the/at pro-Western/jj government/nn to/in the/at hilt/nn ./.
If/cs the/at administration/nn ever/rb had/hvd any/dti ideas/nns that/cs it/pps could/md find/vb an/at acceptable/jj alternative/nn to/in Prince/nn-tl Souvanna/np Phouma/np ,/, whom/wpo it/pps felt/vbd was/bedz too/ql trusting/jj of/in Communists/nns-tl ,/, it/pps gradually/rb had/hvd to/to relinquish/vb them/ppo ./.
One/cd factor/nn was/bedz the/at statement/nn of/in Senator/nn-tl J./np W./np Fulbright/np (/( D/np )/) of/in Arkansas/np ,/, chairman/nn of/in the/at Senate/nn-tl Foreign/jj-tl Relations/nns-tl Committee/nn-tl ./.
He/pps declared/vbd on/in March/np 25/cd that/cs the/at United/vbn-tl States/nns-tl had/hvd erred/vbn a/at year/nn and/cc a/at half/abn ago/rb by/in ``/`` encouraging/vbg the/at removal/nn ''/'' of/in Prince/nn-tl Souvanna/np ./.
The/at White/jj-tl House/nn-tl is/bez taking/vbg extraordinary/jj steps/nns to/to check/vb the/at rapid/jj growth/nn of/in juvenile/jj delinquency/nn in/in the/at United/vbn-tl States/nns-tl ./.
The/at President/nn-tl is/bez deeply/ql concerned/vbn over/in this/dt problem/nn and/cc its/pp$ effect/nn upon/in the/at ``/`` vitality/nn of/in the/at nation/nn ''/'' ./.
In/in an/at important/jj assertion/nn of/in national/jj leadership/nn in/in this/dt field/nn ,/, he/pps has/hvz issued/vbn an/at executive/nn order/nn establishing/vbg the/at President's/nn$-tl committee/nn on/in Juvenile/jj-tl Delinquency/nn-tl and/cc-tl Crime/nn-tl ,/, to/to be/be supported/vbn and/cc assisted/vbn by/in a/at Citizens/nns-tl Advisory/jj-tl Council/nn-tl of/in recognized/vbn authorities/nns on/in juvenile/jj problems/nns ./.
The/at President/nn-tl asks/vbz the/at support/nn and/cc cooperation/nn of/in Congress/np in/in his/pp$ efforts/nns through/in the/at enactment/nn of/in legislation/nn to/to provide/vb federal/jj grants/nns to/in states/nns for/in specified/vbn efforts/nns in/in combating/vbg this/dt disturbing/jj crime/nn trend/nn ./.
The/at President/nn-tl has/hvz also/rb called/vbn upon/rb the/at Attorney/nn-tl General/jj-tl ,/, the/at Secretary/nn-tl of/in-tl Health/nn-tl ,/, Education/nn-tl and/cc-tl Welfare/nn-tl ,/, and/cc the/at Secretary/nn-tl of/in-tl Labor/nn-tl to/to coordinate/vb their/pp$ efforts/nns ``/`` in/in the/at development/nn of/in a/at program/nn of/in federal/jj leadership/nn to/to assist/vb states/nns and/cc local/jj communities/nns in/in their/pp$ efforts/nns to/to cope/vb with/in the/at problem/nn ./.
Simultaneously/rb the/at President/nn-tl announced/vbd Thursday/nr the/at appointment/nn of/in David/np L./np Hackett/np ,/, a/at special/jj assistant/nn to/in the/at Attorney/nn-tl General/jj-tl ,/, as/cs executive/nn director/nn of/in the/at new/jj Committee/nn-tl on/in-tl Juvenile/jj-tl Delinquency/nn-tl and/cc-tl Youth/nn-tl Crime/nn-tl ./.
His/pp$ sense/nn of/in urgency/nn in/in this/dt matter/nn stems/vbz from/in the/at fact/nn that/cs court/nn cases/nns and/cc juvenile/jj arrests/nns have/hv more/ap than/in doubled/vbn since/in 1948/cd ,/, each/dt year/nn showing/vbg an/at increase/nn in/in offenders/nns ./.
Among/in arrests/nns reported/vbn by/in the/at Federal/jj-tl Bureau/nn-tl of/in-tl Investigation/nn-tl in/in 1959/cd ,/, about/rb half/abn for/in burglary/nn and/cc larceny/nn involved/vbd persons/nns under/in 18/cd years/nns of/in age/nn ./.
East/jj-tl Providence/np-tl should/md organize/vb its/pp$ civil/jj defense/nn setup/nn and/cc begin/vb by/in appointing/vbg a/at full-time/jj director/nn ,/, Raymond/np H./np Hawksley/np ,/, the/at present/jj city/nn CD/nn head/nn ,/, believes/vbz ./.
Mr./np Hawksley/np said/vbd yesterday/nr he/pps would/md be/be willing/jj to/to go/vb before/in the/at city/nn council/nn ``/`` or/cc anyone/pn else/rb locally/rb ''/'' to/to outline/vb his/pp$ proposal/nn at/in the/at earliest/jjt possible/jj time/nn ./.
East/jj-tl Providence/np-tl now/rb has/hvz no/rb civil/jj defense/nn program/nn ./.
Mr./np Hawksley/np ,/, the/at state's/nn$ general/jj treasurer/nn ,/, has/hvz been/ben a/at part-time/jj CD/nn director/nn in/in the/at city/nn for/in the/at last/ap nine/cd years/nns ./.
He/pps is/bez not/* interested/vbn in/in being/beg named/vbn a/at full-time/jj director/nn ./.
Noting/vbg that/cs President/nn-tl Kennedy/np has/hvz handed/vbn the/at Defense/nn-tl Department/nn-tl the/at major/jj responsibility/nn for/in the/at nation's/nn$ civil/jj defense/nn program/nn ,/, Mr./np Hawksley/np said/vbd the/at federal/jj government/nn would/md pay/vb half/abn the/at salary/nn of/in a/at full-time/jj local/jj director/nn ./.
He/pps expressed/vbd the/at opinion/nn the/at city/nn could/md hire/vb a/at CD/nn director/nn for/in about/rb $3,500/nns a/at year/nn and/cc would/md only/rb have/hv to/to put/vb up/rp half/abn that/dt amount/nn on/in a/at matching/vbg fund/nn basis/nn to/to defray/vb the/at salary/nn costs/nns ./.
Mr./np Hawksley/np said/vbd he/pps believed/vbd there/ex are/ber a/at number/nn of/in qualified/vbn city/nn residents/nns who/wps would/md be/be willing/jj to/to take/vb the/at full-time/jj CD/nn job/nn ./.
One/cd of/in these/dts men/nns is/bez former/ap Fire/nn-tl Chief/nn-tl John/np A./np Laughlin/np ,/, he/pps said/vbd ./.
Along/rb with/in a/at director/nn ,/, the/at city/nn should/md provide/vb a/at CD/nn headquarters/nn so/cs that/cs pertinent/jj information/nn about/in the/at local/jj organization/nn would/md be/be centralized/vbn ./.
Mr./np Hawksley/np said/vbd ./.
One/cd advantage/nn that/wps would/md come/vb to/in the/at city/nn in/in having/hvg a/at full-time/jj director/nn ,/, he/pps said/vbd ,/, is/bez that/cs East/jj-tl Providence/np-tl would/md become/vb eligible/jj to/to apply/vb to/in the/at federal/jj government/nn for/in financial/jj aid/nn in/in purchasing/vbg equipment/nn needed/vbn for/in a/at sound/jj civil/jj defense/nn program/nn ./.
Matching/vbg funds/nns also/rb can/md be/be obtained/vbn for/in procurement/nn of/in such/jj items/nns as/cs radios/nns ,/, sirens/nns and/cc rescue/nn trucks/nns ,/, he/pps said/vbd ./.
Mr./np Hawksley/np believes/vbz that/cs East/jj-tl Providence/np-tl could/md use/vb two/cd more/ap rescue/nn trucks/nns ,/, similar/jj to/in the/at CD/nn vehicle/nn obtained/vbn several/ap years/nns ago/rb and/cc now/rb detailed/vbn to/in the/at Central/jj-tl Fire/nn-tl Station/nn-tl ./.
He/pps would/md assign/vb one/cd of/in the/at rescue/nn trucks/nns to/in the/at Riverside/np section/nn of/in the/at city/nn and/cc the/at other/ap to/in the/at Rumford/np area/nn ./.
Speaking/vbg of/in the/at present/jj status/nn of/in civil/jj defense/nn in/in the/at city/nn ,/, Mr./np Hawksley/np said/vbd he/pps would/md be/be willing/jj to/to bet/vb that/cs not/* more/ap than/in one/cd person/nn in/in a/at hundred/cd would/md know/vb what/wdt to/to do/do or/cc where/wrb to/to go/vb in/in the/at event/nn of/in an/at enemy/nn attack/nn ./.
The/at Narragansett/np-tl Race/nn-tl Track/nn-tl grounds/nns is/bez one/cd assembly/nn point/nn ,/, he/pps said/vbd ,/, and/cc a/at drive-in/nn theater/nn in/in Seekonk/np would/md be/be another/dt ./.
Riverside/np residents/nns would/md go/vb to/in the/at Seekonk/np assembly/nn point/nn ./.
Mr./np Hawksley/np said/vbd he/pps was/bedz not/* critical/jj of/in city/nn residents/nns for/in not/* knowing/vbg what/wdt to/to do/do or/cc where/wrb to/to assemble/vb in/in case/nn of/in an/at air/nn attack/nn ./.
Such/jj vital/jj information/nn ,/, he/pps said/vbd ,/, has/hvz to/to be/be made/vbn available/jj to/in the/at public/nn frequently/rb and/cc at/in regular/jj intervals/nns for/cs residents/nns to/to know/vb ./.
If/cs the/at city/nn council/nn fails/vbz to/to consider/vb appointment/nn of/in a/at full-time/jj CD/nn director/nn ,/, Mr./np Hawksley/np said/vbd ,/, then/rb he/pps plans/vbz to/to call/vb a/at meeting/nn early/rb in/in September/np so/cs that/cs a/at civil/jj defense/nn organization/nn will/md be/be developed/vbn locally/rb ./.
One/cd of/in the/at first/od things/nns he/pps would/md do/do ,/, he/pps said/vbd ,/, would/md be/be to/to organize/vb classes/nns in/in first/od aid/nn ./.
Other/ap steps/nns would/md be/be developed/vbn after/cs information/nn drifts/vbz down/rp to/in the/at local/jj level/nn from/in the/at federal/jj government/nn ./.
Rhode/np-tl Island/nn-tl is/bez going/vbg to/to examine/vb its/pp$ Sunday/nr sales/nns law/nn with/in possible/jj revisions/nns in/in mind/nn ./.
Governor/nn-tl Notte/np said/vbd last/ap night/nn he/pps plans/vbz to/to name/vb a/at committee/nn to/to make/vb the/at study/nn and/cc come/vb up/rp with/in recommendations/nns for/in possible/jj changes/nns in/in time/nn for/in the/at next/ap session/nn of/in the/at General/jj-tl Assembly/nn-tl ./.
The/at governor's/nn$ move/nn into/in the/at so-called/jj ``/`` blue/jj law/nn ''/'' controversy/nn came/vbd in/in the/at form/nn of/in a/at letter/nn to/in Miss/np Mary/np R./np Grant/np ,/, deputy/jj city/nn clerk/nn of/in Central/jj-tl Falls/nns-tl ./.
A/at copy/nn was/bedz released/vbn to/in the/at press/nn ./.
Mr./np Notte/np was/bedz responding/vbg to/in a/at resolution/nn adopted/vbn by/in the/at Central/jj-tl Falls/nns-tl City/nn-tl Council/nn-tl on/in July/np 10/cd and/cc sent/vbn to/in the/at state/nn house/nn by/in Miss/np Grant/np ./.
The/at resolution/nn urges/vbz the/at governor/nn to/to have/hv a/at complete/jj study/nn of/in the/at Sunday/nr sales/nns laws/nns made/vbn with/in an/at eye/nn to/in their/pp$ revision/nn at/in the/at next/ap session/nn of/in the/at legislature/nn ./.
While/cs the/at city/nn council/nn suggested/vbd that/cs the/at Legislative/jj-tl Council/nn-tl might/md perform/vb the/at review/nn ,/, Mr./np Notte/np said/vbd that/ql instead/rb he/pps will/md take/vb up/rp the/at matter/nn with/in Atty./nn-tl Gen./jj-tl J./np Joseph/np Nugent/np to/to get/vb ``/`` the/at benefit/nn of/in his/pp$ views/vbz ''/'' ./.
He/pps will/md then/rb appoint/vb the/at study/nn committee/nn with/in Mr./np Nugent's/np$ cooperation/nn ,/, the/at governor/nn said/vbd ./.
``/`` I/ppss would/md expect/vb the/at proposed/vbn committee/nn to/to hold/vb public/jj hearings/nns ''/'' ,/, Mr./np Notte/np said/vbd ,/, ``/`` to/to obtain/vb the/at views/nns of/in the/at general/jj public/nn and/cc religious/jj ,/, labor/nn and/cc special-interest/nn groups/nns affected/vbn by/in these/dts laws/nns ''/'' ./.
The/at governor/nn wrote/vbd Miss/np Grant/np that/cs he/pps has/hvz been/ben concerned/vbn for/in some/dti time/nn ``/`` with/in the/at continuous/jj problem/nn which/wdt confronts/vbz our/pp$ local/jj and/cc state/nn law/nn enforcement/nn officers/nns as/cs a/at result/nn of/in the/at laws/nns regulating/vbg Sunday/nr sales/nns ''/'' ./.
The/at attorney/nn general/nn has/hvz advised/vbn local/jj police/nns that/cs it/pps is/bez their/pp$ duty/nn to/to enforce/vb the/at blue/jj laws/nns ./.
Should/md there/ex be/be evidence/nn they/ppss are/ber shirking/vbg ,/, he/pps has/hvz said/vbn ,/, the/at state/nn police/nns will/md step/vb into/in the/at situation/nn ./.
There/ex has/hvz been/ben more/ap activity/nn across/in the/at state/nn line/nn in/in Massachusetts/np than/cs in/in Rhode/np-tl Island/nn-tl in/in recent/jj weeks/nns toward/in enforcement/nn of/in the/at Sunday/nr sales/nns laws/nns ./.
The/at statutes/nns ,/, similar/jj in/in both/abx the/at Bay/nn-tl State/nn-tl and/cc Rhode/np-tl Island/nn-tl and/cc dating/vbg back/rb in/in some/dti instances/nns to/in colonial/jj times/nns ,/, severely/rb limit/vb the/at types/nns of/in merchandise/nn that/wps may/md be/be sold/vbn on/in the/at Sabbath/np ./.
The/at Central/jj-tl Falls/nns-tl City/nn-tl Council/nn-tl expressed/vbd concern/nn especially/rb that/cs more/ap foods/nns be/be placed/vbn on/in the/at eligible/jj list/nn and/cc that/dt neighborhood/nn grocery/nn and/cc variety/nn stores/nns be/be allowed/vbn to/to do/do business/nn on/in Sunday/nr ./.
The/at only/ap day/nn they/ppss ``/`` have/hv a/at chance/nn to/to compete/vb with/in large/jj supermarkets/nns is/bez on/in Sunday/nr ''/'' ,/, the/at council's/nn$ resolution/nn said/vbd ./.
The/at small/jj shops/nns ``/`` must/md be/be retained/vbn ,/, for/cs they/ppss provide/vb essential/jj service/nn to/in the/at community/nn ''/'' ,/, according/in to/in the/at resolution/nn ,/, which/wdt added/vbd that/cs they/ppss ``/`` also/rb are/ber the/at source/nn of/in livelihood/nn for/in thousands/nns of/in our/pp$ neighbors/nns ''/'' ./.
It/pps declares/vbz that/cs Sunday/nr sales/nns licenses/nns provide/vb ``/`` great/jj revenue/nn ''/'' to/in the/at local/nn government/nn ./.
The/at council/nn advised/vbd the/at governor/nn that/cs ``/`` large/jj supermarkets/nns ,/, factory/nn outlets/nns and/cc department/nn stores/nns not/* be/be allowed/vbn to/to do/do business/nn ''/'' on/in Sunday/nr ./.
They/ppss ``/`` operate/vb on/in a/at volume/nn basis/nn ''/'' ,/, it/pps was/bedz contended/vbn ,/, ``/`` and/cc are/ber not/* essential/nn to/to provide/vb the/at more/ql limited/vbn but/cc vital/jj shopping/vbg needs/nns of/in the/at community/nn ''/'' ./.