-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path5276.xml
2020 lines (2020 loc) · 134 KB
/
5276.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<?xml-model href="https://raw.githubusercontent.com/YaleArchivesSpace/EAD3-to-PDF-UA/master/ead3-yale.sch" type="application/xml" schematypens="http://purl.oclc.org/dsdl/schematron"?>
<?xml-model href="https://raw.githubusercontent.com/SAA-SDT/EAD3/master/ead3.rng"
type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
<ead xmlns="http://ead3.archivists.org/schema/">
<control countryencoding="iso3166-1"
dateencoding="iso8601"
langencoding="iso639-2b"
relatedencoding="marc"
repositoryencoding="iso15511"
scriptencoding="iso15924">
<recordid instanceurl="https://hdl.handle.net/10079/fa/med.ms.0053">med.ms.0053</recordid>
<otherrecordid localtype="BIB">12501592</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Marjorie Morse Crunden Papers </titleproper>
<titleproper localtype="filing">Crunden (Marjorie Morse) Papers</titleproper>
<author>Toby A. Appel</author>
</titlestmt>
<publicationstmt>
<publisher>Medical Historical Library, Cushing/Whitney Medical Library</publisher>
<address>
<addressline>Yale University</addressline>
<addressline>333 Cedar St.</addressline>
<addressline>New Haven, CT 06520-8014</addressline>
<addressline localtype="telephone">203-737-1192 </addressline>
<addressline localtype="fax">203-785-5636</addressline>
<addressline localtype="email">[email protected]</addressline>
<addressline>
<ref href="http://historical.medicine.yale.edu/"
linktitle="http://historical.medicine.yale.edu/"
show="new">http://historical.medicine.yale.edu/</ref>
</addressline>
</address>
<date>2015</date>
<num>Ms Coll 53</num>
</publicationstmt>
<notestmt>
<controlnote localtype="onsite">
<p>Boxes: 1, 1, 1-3</p>
</controlnote>
</notestmt>
</filedesc>
<maintenancestatus value="derived"/>
<maintenanceagency countrycode="US">
<agencycode>US-CtY-M</agencycode>
<agencyname>Medical Historical Library, Cushing/Whitney Medical Library</agencyname>
</maintenanceagency>
<languagedeclaration>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
<descriptivenote>
<p>Finding aid written in English.</p>
</descriptivenote>
</languagedeclaration>
<conventiondeclaration>
<abbr>dacs</abbr>
<citation>Describing Archives: A Content Standard</citation>
</conventiondeclaration>
<rightsdeclaration>
<abbr>CC0</abbr>
<citation href="https://creativecommons.org/publicdomain/zero/1.0/"/>
<descriptivenote>
<p>Finding aid description and metadata in Archives at Yale are licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. This means that anyone may copy, modify, and distribute this descriptive metadata without restriction or permission. The CC0 license is explained in full on the Creative Commons website: <ref href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0 Universal (CC0 1.0) Public Domain Dedication</ref>. More information is available on our <ref href="https://archives.yale.edu/help">Help page</ref>.</p>
</descriptivenote>
</rightsdeclaration>
<localcontrol localtype="findaidstatus">
<term>completed</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-08T22:01:49-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Wednesday January 8, 2025 at 22:01</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/10/resources/5276" level="collection">
<did>
<unittitle>Marjorie Morse Crunden Papers</unittitle>
<unitid>Ms Coll 53</unitid>
<repository>
<corpname>
<part>Medical Historical Library, Cushing/Whitney Medical Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="eng">English</language>
<descriptivenote>
<p>Materials are in English, with a small amount of Chinese.</p>
</descriptivenote>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1.5</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">3 boxes</physdesc>
<unitdatestructured altrender="1924-1942" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1924">1924</fromdate>
<todate standarddate="1942">1942</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_e65c142767c2cf2ed012d8d067118862">Marjorie Morse Crunden, the daughter of a Baptist medical missionary in China, was educated in the United States, including at Yale School of Nursing. Correspondence includes letters from her parents; from her fiancé, Allan B. Crunden, a Yale medical student who transferred to Temple University School of Medicine; and from other friends and family. The collection also includes a five-year diary.</abstract>
<origination label="Creator">
<persname source="local">
<part localtype="agent_person">Crunden, Marjorie Morse, 1913-2000</part>
</persname>
</origination>
</did>
<bioghist id="aspace_74c79b8299a91188cec1c49299c74710">
<head>Biographical / Historical</head>
<p>Marjorie Morse was born in China in 1913 to Dr. William Reginald Morse and Anne (Anna) Crosse Kinney Morse of Canada who were Baptist medical missionaries in China from 1909 to 1937. Dr. Morse grew up in a large family in Lawrencetown, Annapolis County, Nova Scotia. Marjorie, an only child, came with her parents to the United States in 1924 and remained there for her education after her parents returned to China. She lived with relatives and friends as she attended Newton High School in Newton, Massachusetts (graduated 1930), and Wellesley College (1930-1934), where she majored in sociology. In 1934, she began a three-year program for an R.N. and masters degree in nursing at the Yale School of Nursing. In New Haven in 1934, she met Allan B. Crunden, Jr. of Montclair, New Jersey, a graduate of Georgetown University, and a member of the Yale School of Medicine class of 1937. By the end of the year, she had agreed to marry him after completing her training. Crunden decided at this time that he did not like the "Yale System" with its lack of examinations, and thought that hospital training would be better in a larger city. He returned to Montclair, where he lived with his recently widowed father, and took laboratory and social science courses at Columbia University in the spring of 1936. In the fall of 1936, he resumed his medical education, taking his clinical years at Temple University School of Medicine, Philadelphia. Marjorie Morse continued her nursing education, much of it in hospital wards, in New Haven, West Haven, and on rotations to Rhode Island until her graduation in 1937. Much had to be decided on where and when they could be married and who would marry them. She was a Baptist and he a devout Catholic, she was not an American citizen, and she hoped her paents could attend. In the end, they married in July 1937 in London in a Church of England ceremony. Her parents were able to meet them in London on their way home from China to retirement in Lawrencetown. The Crundens lived in Philadelphia in the school year 1937-1938 where she served as a nurse-administrator at Temple and he completed his medical degree. The following two years, while Allan Crunden was serving hospital residency appointments in Jersey City and New York, Marjorie Crunden obtained an M.A. in education from Columbia University Teacher's College. She served briefly as an assistant in nursing education at Columbia. In 1940 they spent a year in Chicago with Allan Crunden's father. Allan Crunden was called into medical service in the Air Force in World War II. After the war, they lived in Montclair and other locations in New Jersey. He practiced as an obstetrician, while she was active in numerous civic and charitable organizations including the Montclair Board of Education, the Essex County Board of Health, the Montclair Public Health Nursing Service, and the Community Child Study Group of Montclair, which she organized. She was an expert tennis player and a local champion. The Crundens had two children, Robert Morse Crunden, later a prominent professor of American Studies at University of Texas, Austin, and Joan Crunden Lewis.</p>
</bioghist>
<scopecontent id="aspace_0c1ff688db2a4c474b2f95af1e1f463c">
<head>Scope and Contents</head>
<p>The collection contains sparse correspondence from Marjorie Morse's parents to her; letters from Marjorie Crunden to her mother in 1940-1941; hundreds of letters written every few days from her fiancé and then husband, Allan B. Crunden, Jr., at periods when they were living apart between 1935 and 1940; letters by Marjorie Morse sent as part of a round robin to friends who graduated from Wellesley; and many letters from friends and family. Also in the collection are Marjorie Morse's five-year diary (1932-1936), memorabilia from Newton High School, Wellesley College, and Yale School of Nursing, and miscellanea. There is some material on Morse's training as a nurse, and considerable material, including texts of examinations, on Crunden's clinical training at Temple University School of Medicine. Above all, the letters are a record of an upper middle class courtship in the 1930s. The collection includes a few photos of Marjorie Morse and Allan Crunden and of their son, Robert Morse Crunden, as a baby.</p>
</scopecontent>
<acqinfo id="aspace_19ef2b5ec4432cb3a71a5d34aa618db5">
<head>Immediate Source of Acquisition</head>
<p>This collection was part of a larger collection purchased in 2015 jointly with the Divinity School Library. The medical missionary papers of Marjorie Morse Crunden's parents are in the Divinity School Library.</p>
</acqinfo>
<arrangement id="aspace_0fa40427eb1fd26f06e23cb39736c26e">
<head>Arrangement</head>
<p>Organized into two series: 1. Correspondence. 2. Diary, memorabilia, and miscellany.</p>
</arrangement>
<accessrestrict id="aspace_f3e069be1e1ae99522c86324919ff351">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<relatedmaterial id="aspace_229700dd7ceba99824921f4b0e70e556">
<head>Related Materials</head>
<p>Morse family papers: William Reginald and Anne Crosse Kinney Morse, 1909-1941, Special Collections, Divinity School Library, Yale University.</p>
</relatedmaterial>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2009122221"
source="lcsh">
<part localtype="topical">Courtship</part>
<part localtype="geographic">United States</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85067473"
source="lcsh">
<part localtype="topical">Interns (Medicine)</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2008107628"
source="lcsh">
<part localtype="topical">Medical education</part>
<part localtype="geographic">United States</part>
</subject>
<subject source="local">
<part localtype="topical">Missionaries, Medical</part>
<part localtype="geographic">China</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2008108536"
source="lcsh">
<part localtype="topical">Nursing</part>
<part localtype="topical">Study and teaching</part>
<part localtype="geographic">United States</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85093781"
source="lcsh">
<part localtype="topical">Obstetrics</part>
<part localtype="topical">Study and teaching</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85113135"
source="lcsh">
<part localtype="topical">Residents (Medicine)</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85133890"
source="lcsh">
<part localtype="topical">Tennis</part>
</subject>
<genreform identifier="http://vocab.getty.edu/aat/300026877" source="aat">
<part localtype="genre_form">Correspondence </part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300027112" source="aat">
<part localtype="genre_form">Diaries</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300026778" source="aat">
<part localtype="genre_form">Greeting cards</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300046300" source="aat">
<part localtype="genre_form">Photographs</part>
</genreform>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85083034"
source="lcsh">
<part localtype="topical">Medical students</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85093434"
source="lcsh">
<part localtype="topical">Nursing students</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85093349"
source="lcsh">
<part localtype="topical">Nurses</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85101610"
source="lcsh">
<part localtype="topical">Physicians</part>
</subject>
<persname source="local">
<part localtype="agent_person">Crunden, Allan B., 1878-</part>
</persname>
<persname rules="aacr" source="local">
<part localtype="agent_person">Crunden, Allan Bernard, 1912-1977</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Crunden, Robert Morse, 1940-</part>
</persname>
<persname>
<part localtype="agent_person">Morse, William R. (William Reginald), 1874-1939</part>
</persname>
<persname source="local">
<part localtype="agent_person">Morse, Anne Crosse, 1875-1951</part>
</persname>
<corpname>
<part localtype="agent_corporate_entity">Columbia University. Teachers College</part>
</corpname>
<corpname>
<part localtype="agent_corporate_entity">New Haven Hospital (New Haven, Conn.)</part>
</corpname>
<corpname source="local">
<part localtype="agent_corporate_entity">Newton High School (Newton, Mass.)</part>
</corpname>
<corpname rules="aacr">
<part localtype="agent_corporate_entity">Temple University. School of Medicine</part>
</corpname>
<corpname source="local">
<part localtype="agent_corporate_entity">Vassar College. Institute of Euthenics</part>
</corpname>
<corpname>
<part localtype="agent_corporate_entity">Wellesley College</part>
</corpname>
<corpname>
<part localtype="agent_corporate_entity">Yale University. School of Medicine</part>
</corpname>
<corpname rules="aacr" source="local">
<part localtype="agent_corporate_entity">Yale Universty. School of Nursing</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/10/archival_objects/2097685"
id="aspace_737b151d714201783f4cf48d346ac43c"
level="series">
<did>
<unittitle>Correspondence</unittitle>
<unitid>Series I</unitid>
<unitdatestructured altrender="1925-1942" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1925">1925</fromdate>
<todate standarddate="1942">1942</todate>
</daterange>
</unitdatestructured>
</did>
<c altrender="/repositories/10/archival_objects/2097686"
id="aspace_3c1b52dda678fef1542f421899589677"
level="subseries">
<did>
<unittitle>Letters to and from parents (William Reginald Morse and Anne Crosse Morse)</unittitle>
<unitid>Subseries 1</unitid>
<unitdatestructured altrender="1925-1942" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1925">1925</fromdate>
<todate standarddate="1942">1942</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_502b4c7b4469b7015d4e4e53f5654d33">
<head>Scope and Contents</head>
<p>This subseries contains letters and greting cards sent by Marjorie Morse's parents in China to her in the United States. Only a small number of letters have survived. One early letter offers a lengthy description of her parents' activities in China. The last folder of this series contains letters by Marjorie Morse Crunden in 1941-1942 writing from Chicago to her widowed mother in Lawrencetown, Annapolis County, Nova Scotia.</p>
</scopecontent>
<c altrender="/repositories/10/archival_objects/2102539"
id="aspace_4f0708f3f4afff8300be175f619b4498"
level="file">
<did>
<unittitle>From parents</unittitle>
<unitdatestructured altrender="1925, 1929, and no date"
label="creation"
unitdatetype="bulk">
<daterange>
<fromdate standarddate="1925">1925</fromdate>
<todate standarddate="1929">1929</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/224733"
encodinganalog="archive letter"
id="aspace_4f0708f3f4afff8300be175f619b4498_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_4f0708f3f4afff8300be175f619b4498_c2"
localtype="folder"
parent="aspace_4f0708f3f4afff8300be175f619b4498_c1">1</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/2102540"
id="aspace_9577240295dcc71a3d8517ed9ef61f85"
level="file">
<did>
<unittitle>From parents</unittitle>
<unitdatestructured altrender="1932-1935" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1932">1932</fromdate>
<todate standarddate="1935">1935</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/224750"
encodinganalog="archive letter"
id="aspace_9577240295dcc71a3d8517ed9ef61f85_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_9577240295dcc71a3d8517ed9ef61f85_c2"
localtype="folder"
parent="aspace_9577240295dcc71a3d8517ed9ef61f85_c1">2</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/2102730"
id="aspace_4767ce81597d50a864d006aa07fda0e1"
level="file">
<did>
<unittitle>From parents</unittitle>
<unitdatestructured altrender="1937" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1937">1937</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/224752"
encodinganalog="archive letter"
id="aspace_4767ce81597d50a864d006aa07fda0e1_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_4767ce81597d50a864d006aa07fda0e1_c2"
localtype="folder"
parent="aspace_4767ce81597d50a864d006aa07fda0e1_c1">3</container>
</did>
<scopecontent id="aspace_94967efd5c095ac37213c1abe8f06c3f">
<head>Scope and Contents</head>
<p>The letters relate to her father's illness, their plans to return to Canada via London, and their arrangements for Marjorie Morse to marry Allan Crunden in London.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2102731"
id="aspace_6d272309c7f58f2da6491715a3f9f8b4"
level="file">
<did>
<unittitle>From parents</unittitle>
<unitdatestructured altrender="1938" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1938">1938</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/224733"
encodinganalog="archive letter"
id="aspace_6d272309c7f58f2da6491715a3f9f8b4_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_6d272309c7f58f2da6491715a3f9f8b4_c2"
localtype="folder"
parent="aspace_6d272309c7f58f2da6491715a3f9f8b4_c1">4</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/2102732"
id="aspace_9e9e81c00dcd28deddba9dabf5ba6e37"
level="file">
<did>
<unittitle>Marjorie Morse Crunden to her mother</unittitle>
<unitdatestructured altrender="1941-1942" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1941">1941</fromdate>
<todate standarddate="1942">1942</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/224733"
encodinganalog="archive letter"
id="aspace_9e9e81c00dcd28deddba9dabf5ba6e37_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_9e9e81c00dcd28deddba9dabf5ba6e37_c2"
localtype="folder"
parent="aspace_9e9e81c00dcd28deddba9dabf5ba6e37_c1">5</container>
</did>
<scopecontent id="aspace_c1c403de6a0b7e00e6997f1443821779">
<head>Scope and Contents</head>
<p>Marjorie Crunden writes to her mother in Canada from Chicago where Allan Crunden is undertaking further training in obstetrics and she is taking care of their son, Robert Morse Crunden, born in 1940. Included is a photograph of Robert.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/10/archival_objects/2102733"
id="aspace_efeb60fa5312907d0dace9d0a973a7f2"
level="subseries">
<did>
<unittitle>Letters from Allan Bernard Crunden, Jr. to Marjorie Morse</unittitle>
<unitid>Subseries 2</unitid>
<unitdatestructured altrender="1935-1940" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1935">1935</fromdate>
<todate standarddate="1940">1940</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_9a57358de25578948f80386addfce8f8">
<head>Scope and Contents</head>
<p>This subseries contains hundreds of letters written by Allan B. Crunden, Jr. to Marjorie Morse from before their formal engagement in 1935 to periods when were married but living apart in 1938 and 1940. Marjorie Morse met Allan Crunden, of Montclair, New Jersey, in New Haven where he was a Yale medical student (Class of 1937) and she was a student at the Yale School of Nursing. At the end of 1935, Crunden decided not to continue his medical education at Yale and instead enrolled in the fall of 1936 at Temple University School of Medicine for his clinical years. He graduated in 1938. Marjorie Morse graduated from Yale School of Nursing in 1937. They married in July 1937. The next batch of correspondence takes place in the summer of 1938 when Allan Crunden was taking courses at Columbia and Marjorie Crunden was visiting her parents in Canada and then serving for six weeks as a nurse for the summer program of the Institute of Euthenics at Vassar College. For the last batch of letters in 1940, Allan Crunden was doing a residency in Jersey City, New Jersey and Marjorie Crunden was living in Montclair and studying for a master's degree in education at Teacher's College, Columbia University.</p>
</scopecontent>
<c altrender="/repositories/10/archival_objects/2102734"
id="aspace_1b5425143313a58dbc47926a130ad094"
level="file">
<did>
<unittitle>From Allan Crunden</unittitle>
<unitdatestructured altrender="1935" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1935">1935</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/224733"
encodinganalog="archive letter"
id="aspace_1b5425143313a58dbc47926a130ad094_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_1b5425143313a58dbc47926a130ad094_c2"
localtype="folder"
parent="aspace_1b5425143313a58dbc47926a130ad094_c1">6</container>
</did>
<scopecontent id="aspace_aee2cbe55d4b08681ae3c40b5216c353">
<head>Scope and Contents</head>
<p>Marjorie Morse met Allan Crunden in the fall of 1934 and by the early spring of 1935, she had visited his parents in Montclair. He was trying to persuade her to become engaged to him. See Box 2, folder 13. In these letters, Allan notes that he is corresponding with Marjorie's father in China, sending him medical books and journal issues. (He continues to do this throughout the courtship.) In the summer Allan writes from his parents' home in Montclair to Marjorie in Lawrencetown, Annapolis County, Nova Scotia (henceforth Lawrencetown), where her father's family lived. Later letters are to Marjorie in New Haven. One letter, 1935 October 21, suggests various disagreements. An important letter of 1935 December 10 discusses why he wants to complete his medical studies elsewhere than at Yale where he is currently enrolled. See also undated letters, Box 2, Folder 12.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2102736"
id="aspace_543a814d2a120ae08524d3a1bc905fdd"
level="file">
<did>
<unittitle>From Allan Crunden</unittitle>
<unitdatestructured altrender="1936 January-February"
label="other"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1936-01-01">1936 January 1</fromdate>
<todate standarddate="1936-02-29">1936 February 29</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/224733"
encodinganalog="archive letter"
id="aspace_543a814d2a120ae08524d3a1bc905fdd_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_543a814d2a120ae08524d3a1bc905fdd_c2"
localtype="folder"
parent="aspace_543a814d2a120ae08524d3a1bc905fdd_c1">7</container>
</did>
<scopecontent id="aspace_0cfd7cda26b976906ea90ea32337faa4">
<head>Scope and Contents</head>
<p>These letters are from Allan in Montclair to Marjorie in New Haven and then to her at Butler Hospital, Providence, Rhode Island, where she is doing a psychiatric nursing rotation. He is taking courses at Columbia University on clinical diagnosis and sex education for children. Sometime before February 1936, Allan's mother had died. He and his father are settling the estate.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2102737"
id="aspace_ecb4c155cab8b7186255eb671b27eb32"
level="file">
<did>
<unittitle>From Allan Crunden</unittitle>
<unitdatestructured altrender="1936 March 1-15" label="other" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1936-03-01">1936 March 1</fromdate>
<todate standarddate="1936-03-15">1936 March 15</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/224733"
encodinganalog="archive letter"
id="aspace_ecb4c155cab8b7186255eb671b27eb32_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ecb4c155cab8b7186255eb671b27eb32_c2"
localtype="folder"
parent="aspace_ecb4c155cab8b7186255eb671b27eb32_c1">8</container>
</did>
<scopecontent id="aspace_9fbb1d51db4500844f66869d3597c903">
<head>Scope and Contents</head>
<p>Letters are to Marjorie at Butler Hospital, Providence, Rhode Island. He mentions taking his father to hear talks at New York Academy of Medicine by Yale professors including Ashley Oughterson and Clements C. Fry. He has gotten permission from the registrar to take some courses in May at the Post-Graduate Medical School attached to Columbia University.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2102738"
id="aspace_617ccdcd9c59304cfacb6a3c37459ca9"
level="file">
<did>
<unittitle>From Allan Crunden</unittitle>
<unitdatestructured altrender="1936 March 16-20" label="other" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1936-03-16">1936 March 16</fromdate>
<todate standarddate="1936-03-31">1936 March 31</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/224733"
encodinganalog="archive letter"
id="aspace_617ccdcd9c59304cfacb6a3c37459ca9_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_617ccdcd9c59304cfacb6a3c37459ca9_c2"
localtype="folder"
parent="aspace_617ccdcd9c59304cfacb6a3c37459ca9_c1">9</container>
</did>
<scopecontent id="aspace_c9014b161ebaa4640e5a88513165c56b">
<head>Scope and Contents</head>
<p>Letters are written to Marjorie Morse at Charles V. Chapin Hospital, Providence, Rhode Island, where she is doing a clinical rotation. Marjorie has had scarlet fever and there is further discusssion of a scarlet fever epidemic.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2102739"
id="aspace_f398bdf228bac25e3aba7c29ea635550"
level="file">
<did>
<unittitle>From Allan Crunden</unittitle>
<unitdatestructured altrender="1936 April" label="other" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1936-04-01">1936 April 1</fromdate>
<todate standarddate="1936-04-30">1936 April 30</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/224733"
encodinganalog="archive letter"
id="aspace_f398bdf228bac25e3aba7c29ea635550_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_f398bdf228bac25e3aba7c29ea635550_c2"
localtype="folder"
parent="aspace_f398bdf228bac25e3aba7c29ea635550_c1">10</container>
</did>
<scopecontent id="aspace_b3c7ace89953544079a3e9774e58a8c5">
<head>Scope and Contents</head>
<p>Letters written to Marjorie Morse at Charles V. Chapin Hospital.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2102740"
id="aspace_ce41bd61effb09628b97d2a9c6624d8e"
level="file">
<did>
<unittitle>From Allan Crunden</unittitle>
<unitdatestructured altrender="1936 May" label="other" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1936-05-01">1936 May 1</fromdate>
<todate standarddate="1936-05-31">1936 May 31</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/224733"
encodinganalog="archive letter"
id="aspace_ce41bd61effb09628b97d2a9c6624d8e_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ce41bd61effb09628b97d2a9c6624d8e_c2"
localtype="folder"
parent="aspace_ce41bd61effb09628b97d2a9c6624d8e_c1">11</container>
</did>
<scopecontent id="aspace_aa0ddc8cb9b732c538ea29d8c547454c">
<head>Scope and Contents</head>
<p>Marjorie Morse has returned to her usual address, the Yale School of Nursing dormitory at 350 Congress Avenue. By May 18 she is living in the nurses dormitory at William Wirt Winchester Hospital, West Haven, the tuberculosis sanitarium of New Haven Hospital, where she is on rotation. The letters discuss politics of the 1936 election. Allan and his father are staunch Republicans opposed to Franklin Roosevelt and the New Deal. Allan sends Marjorie a telegram on May 27 with his medical board examination scores.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2102741"
id="aspace_0d0f4016e38d340f9cf549c45e46c9a5"
level="file">
<did>
<unittitle>From Allan Crunden</unittitle>
<unitdatestructured altrender="1936 June" label="other" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1936-06-01">1936 June 1</fromdate>
<todate standarddate="1936-06-30">1936 June 30</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/224733"
encodinganalog="archive letter"
id="aspace_0d0f4016e38d340f9cf549c45e46c9a5_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_0d0f4016e38d340f9cf549c45e46c9a5_c2"
localtype="folder"
parent="aspace_0d0f4016e38d340f9cf549c45e46c9a5_c1">12</container>
</did>
<scopecontent id="aspace_6ff8c398e45a88993009e7cc2484582e">
<head>Scope and Contents</head>
<p>Letters are to Marjorie Morse at William Wirt Winchester Hospital, and then at 350 Congress Ave., New Haven. Allan's letter of June 2 describes his visit to Temple University, Philadelphia, and the improbable story of how he got admitted as a third year student to the Medical School. He sends a clipping on tennis tournaments in the Montclair area. Marjorie is an expert tennis player. The letter of June 13 mentions politics.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2102742"
id="aspace_9494a1ee56a7180c69ec6220a9a33910"
level="file">
<did>
<unittitle>From Allan Crunden</unittitle>
<unitdatestructured altrender="1936 July" label="other" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1936-07-01">1936 July 1</fromdate>
<todate standarddate="1936-07-31">1936 July 31</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/224733"
encodinganalog="archive letter"
id="aspace_9494a1ee56a7180c69ec6220a9a33910_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_9494a1ee56a7180c69ec6220a9a33910_c2"
localtype="folder"
parent="aspace_9494a1ee56a7180c69ec6220a9a33910_c1">13</container>
</did>
<scopecontent id="aspace_e2467254929ac9017eb75818d1f20a10">
<head>Scope and Contents</head>
<p>For part of the month, Marjorie is visiting relatives in Nova Scotia. Allan begins a trip out West with his father.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2102743"
id="aspace_a7baf00e5d200c1ddcb13e075ee1315e"
level="file">
<did>
<unittitle>From Allan Crunden</unittitle>
<unitdatestructured altrender="1936 August" label="other" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1936-08-01">1936 August 1</fromdate>
<todate standarddate="1936-08-31">1936 August 31</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/224733"
encodinganalog="archive letter"
id="aspace_a7baf00e5d200c1ddcb13e075ee1315e_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_a7baf00e5d200c1ddcb13e075ee1315e_c2"
localtype="folder"
parent="aspace_a7baf00e5d200c1ddcb13e075ee1315e_c1">14</container>
</did>
<scopecontent id="aspace_a233e2366cefa9ff0e8c73d2d5d64772">
<head>Scope and Contents</head>
<p>For most of the month, Allan writes from National Parks in western United States and in Canada where he is traveling with his father.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2102744"
id="aspace_1153f8fa37cdad8b97d0c47a21010aed"
level="file">
<did>
<unittitle>From Allan Crunden</unittitle>
<unitdatestructured altrender="1936 September" label="other" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1936-09-01">1936 September 1</fromdate>
<todate standarddate="1936-09-30">1936 September 30</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/224733"
encodinganalog="archive letter"
id="aspace_1153f8fa37cdad8b97d0c47a21010aed_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_1153f8fa37cdad8b97d0c47a21010aed_c2"
localtype="folder"
parent="aspace_1153f8fa37cdad8b97d0c47a21010aed_c1">15</container>
</did>
<scopecontent id="aspace_4598f934a2f8722dcb0566079d95d3fb">
<head>Scope and Contents</head>
<p>The September 9 letter includes four photographs of Allan Crunden and Marjorie Morse. Later in September, Allan Crunden moves to Philadelphia where he is living in the Psi Chi Medical Fraternity dormitory. He starts his clinical training at Temple University School of Medicine.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2102745"
id="aspace_7eaaca42b869930f945398476b35474d"
level="file">
<did>
<unittitle>From Allan Crunden</unittitle>
<unitdatestructured altrender="1936 October 1-15"
label="other"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1936-10-01">1936 October 1</fromdate>
<todate standarddate="1936-10-15">1936 October 15</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/224733"
encodinganalog="archive letter"
id="aspace_7eaaca42b869930f945398476b35474d_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_7eaaca42b869930f945398476b35474d_c2"
localtype="folder"
parent="aspace_7eaaca42b869930f945398476b35474d_c1">16</container>
</did>
<scopecontent id="aspace_6615018a72ad7bd8b7182af39291a52b">
<head>Scope and Contents</head>
<p>In this and later months, Allan writes about working on the wards and the frequent examinations he has to take. He is much interested in their eventual marriage and sends news and clippings related to weddings.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2102746"
id="aspace_65c8b154b0ea9f139124180ef4adf06e"
level="file">
<did>
<unittitle>From Allan Crunden</unittitle>
<unitdatestructured altrender="1936 October 16-31"
label="other"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1936-10-16">1936 October 16</fromdate>
<todate standarddate="1936-10-31">1936 October 31</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/224733"
encodinganalog="archive letter"
id="aspace_65c8b154b0ea9f139124180ef4adf06e_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_65c8b154b0ea9f139124180ef4adf06e_c2"
localtype="folder"
parent="aspace_65c8b154b0ea9f139124180ef4adf06e_c1">17</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/2102747"
id="aspace_d9dc9d7aa38cdba523401d557efb739a"
level="file">
<did>
<unittitle>From Allan Crunden</unittitle>
<unitdatestructured altrender="1936 November" label="other" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1936-11-01">1936 November 1</fromdate>
<todate standarddate="1936-11-30">1936 November 30</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/224733"
encodinganalog="archive letter"
id="aspace_d9dc9d7aa38cdba523401d557efb739a_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_d9dc9d7aa38cdba523401d557efb739a_c2"
localtype="folder"
parent="aspace_d9dc9d7aa38cdba523401d557efb739a_c1">18</container>
</did>
<scopecontent id="aspace_53e4aac5ad82d7ac0cff2fb6b4a09c50">
<head>Scope and Contents</head>
<p>He writes about the election and about Mrs. Roosevelt's post-election visit to Temple University. He comments on a clipping, "She appears to be unmuzzled again."</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2102748"
id="aspace_3ec76fd10af47746741dabe8e8a784f2"
level="file">
<did>
<unittitle>From Allan Crunden</unittitle>
<unitdatestructured altrender="1936 December" label="other" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1936-12-01">1936 December 1</fromdate>
<todate standarddate="1936-12-31">1936 December 31</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/224733"
encodinganalog="archive letter"
id="aspace_3ec76fd10af47746741dabe8e8a784f2_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_3ec76fd10af47746741dabe8e8a784f2_c2"
localtype="folder"
parent="aspace_3ec76fd10af47746741dabe8e8a784f2_c1">19</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/2102749"
id="aspace_600aab92bec6131afca46e91776df75b"
level="file">
<did>
<unittitle>From Allan Crunden</unittitle>
<unitdatestructured altrender="1937 January 1-15"
label="other"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1937-01-01">1937 January 1</fromdate>
<todate standarddate="1937-01-15">1937 January 15</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/224733"
encodinganalog="archive letter"
id="aspace_600aab92bec6131afca46e91776df75b_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_600aab92bec6131afca46e91776df75b_c2"
localtype="folder"
parent="aspace_600aab92bec6131afca46e91776df75b_c1">20</container>
</did>
<scopecontent id="aspace_5cba12a3d1677882caac7ab6e71c4c68">
<head>Scope and Contents</head>
<p>In his January 2 letter, he mentions his negative view of women doctors, and the issue of their differing religions. See also Box 2, Folder 12 on this issue. He continues to write about various clinics and examinations.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2102750"
id="aspace_007c5f9b7a0588c6eff42968333256bd"
level="file">
<did>
<unittitle>From Allan Crunden</unittitle>
<unitdatestructured altrender="1937 January 16-31"
label="other"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1937-01-16">1937 January 16</fromdate>
<todate standarddate="1937-01-31">1937 January 31</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/224733"
encodinganalog="archive letter"
id="aspace_007c5f9b7a0588c6eff42968333256bd_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_007c5f9b7a0588c6eff42968333256bd_c2"
localtype="folder"
parent="aspace_007c5f9b7a0588c6eff42968333256bd_c1">21</container>
</did>
<scopecontent id="aspace_703bd5b6b76d681812789d0b38b37b99">
<head>Scope and Contents</head>
<p>He writes in some detail about clinical training in obstetrics, his eventual specialty.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2102751"
id="aspace_069627dffed9430eb1f5feb716e1b7c2"
level="file">
<did>
<unittitle>From Allan Crunden</unittitle>
<unitdatestructured altrender="1937 February" label="other" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1937-02-01">1937 February 1</fromdate>
<todate standarddate="1937-02-28">1937 February 28</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/224733"
encodinganalog="archive letter"
id="aspace_069627dffed9430eb1f5feb716e1b7c2_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_069627dffed9430eb1f5feb716e1b7c2_c2"
localtype="folder"
parent="aspace_069627dffed9430eb1f5feb716e1b7c2_c1">22</container>
</did>
<scopecontent id="aspace_4a6c806e19035c51ef876bfb8e42a37c">
<head>Scope and Contents</head>
<p>On February 23, he sends a clipping of Dr. Tyson's pediatrics examination.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2102752"
id="aspace_0073962b56dd697d03bf54afe620df60"
level="file">
<did>
<unittitle>From Allan Crunden</unittitle>
<unitdatestructured altrender="1937 March" label="other" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1937-03-01">1937 March 1</fromdate>
<todate standarddate="1937-03-31">1937 March 31</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/224733"
encodinganalog="archive letter"
id="aspace_0073962b56dd697d03bf54afe620df60_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_0073962b56dd697d03bf54afe620df60_c2"
localtype="folder"
parent="aspace_0073962b56dd697d03bf54afe620df60_c1">23</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/2102753"
id="aspace_7fe0ad6691064c0b038349a9b069a437"
level="file">
<did>
<unittitle>From Allan Crunden</unittitle>
<unitdatestructured altrender="1937 April 1-15" label="other" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1937-04-01">1937 April 1</fromdate>
<todate standarddate="1937-04-15">1937 April 15</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/224754"
containerid="39002087826088"
encodinganalog="archive letter"
id="aspace_7fe0ad6691064c0b038349a9b069a437_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_7fe0ad6691064c0b038349a9b069a437_c2"
localtype="folder"
parent="aspace_7fe0ad6691064c0b038349a9b069a437_c1">1</container>
</did>
<scopecontent id="aspace_bceb1be0ce8ada0f721d1df4fad43fb9">
<head>Scope and Contents</head>
<p>In his letter of April 7, he asks if she has the nerve to get Harvey Cushing to autograph his copy of Consecratio Medici. He will be going on the wards on April 15.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2102754"
id="aspace_094bf35a76b5d808b799893865e0216d"
level="file">
<did>
<unittitle>From Allan Crunden</unittitle>
<unitdatestructured altrender="1937 April 16-30"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1937-04-16">1937 April 16</fromdate>
<todate standarddate="1937-04-30">1937 April 30</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/224754"
containerid="39002087826088"
encodinganalog="archive letter"
id="aspace_094bf35a76b5d808b799893865e0216d_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_094bf35a76b5d808b799893865e0216d_c2"
localtype="folder"
parent="aspace_094bf35a76b5d808b799893865e0216d_c1">2</container>
</did>
<scopecontent id="aspace_a17fb8cf8e28f7f5cc20016302475e62">
<head>Scope and Contents</head>
<p>He is on the ward and in private homes doing obstetrics. He writes about having wedding invitations made, although the date and place of the wedding is still undecided, and depends on whether and when Marjorie's parents can get to the wedding. He wants to be married as soon as possible. His father is remarrying in August.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2103408"
id="aspace_2691457b222e9ae12be35b5776f0094c"
level="file">
<did>
<unittitle>From Allan Crunden</unittitle>
<unitdatestructured altrender="1937 May" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1937-05-01">1937 May 1</fromdate>
<todate standarddate="1937-05-31">1937 May 31</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/224754"
containerid="39002087826088"
encodinganalog="archive letter"
id="aspace_2691457b222e9ae12be35b5776f0094c_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_2691457b222e9ae12be35b5776f0094c_c2"
localtype="folder"
parent="aspace_2691457b222e9ae12be35b5776f0094c_c1">3</container>
</did>
<scopecontent id="aspace_fcead8d88dfbe71ddc0befbadb4763c3">
<head>Scope and Contents</head>
<p>On May 9, he notes that he's been asked to edit his medical class's yearbook. On May 24, he writes on the other side of professor Babcock's "Final Examination in Surgery." The wedding place and date remain undecided.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2102755"
id="aspace_58a239b0b28bba34001079ed9e0e7cdf"
level="file">
<did>
<unittitle>From Allan Crunden</unittitle>
<unitdatestructured altrender="1937 June" label="other" unitdatetype="inclusive">
<datesingle standarddate="1937-06">1937 June</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/224754"
containerid="39002087826088"
encodinganalog="archive letter"
id="aspace_58a239b0b28bba34001079ed9e0e7cdf_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_58a239b0b28bba34001079ed9e0e7cdf_c2"
localtype="folder"
parent="aspace_58a239b0b28bba34001079ed9e0e7cdf_c1">4</container>
</did>
<scopecontent id="aspace_1b7e52307600632aa49ca246b6e1666a">
<head>Scope and Contents</head>
<p>They will be sailing to London for their wedding but the actual date is undecided, because it is not clear when her parents will arrive from China. They may need to have a legal waiting period before they can get married. If the wedding is delayed too long, they will travel in England on their own, since they have to get back to the U.S. by August.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2102756"
id="aspace_277caf1a19e3269d33c32e87bd06f758"
level="file">
<did>
<unittitle>From Allan Crunden</unittitle>
<unitdatestructured altrender="1938 June 1-15" label="other" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1938-06-01">1938 June 1</fromdate>
<todate standarddate="1938-06-15">1938 June 15</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/224754"
containerid="39002087826088"
encodinganalog="archive letter"
id="aspace_277caf1a19e3269d33c32e87bd06f758_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_277caf1a19e3269d33c32e87bd06f758_c2"
localtype="folder"
parent="aspace_277caf1a19e3269d33c32e87bd06f758_c1">5</container>
</did>
<scopecontent id="aspace_8743e453d63e9f27e8dd1da1cb8169bd">
<head>Scope and Contents</head>
<p>Having graduated from Yale School of Nursing in May 1937, Marjorie Morse married Allan Crunden in London on July 10, 1937 and spent the school year 1937-1938 in Philadelphia. He completed his medical degree while she worked as a nurse-administrator at the Temple University School of Nursing. The letters from Allan Crunden to Marjorie Morse Crunden resume in June 1938 when she is visiting her parents in Lawrencetown. He sends her his grades and the "Final Examination in Senior Surgery" with Prof. Babcock. She has been invited to serve as nurse at the six-week summer program for children of the Vassar College, Summer Institute of Euthenics. Euthenics, the name of a Vassar department, meant right living and was a positive form of eugenics. On June 2, he mentioned that he was officer of the day at a base hospital.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2102757"
id="aspace_edf6249e4440766a5e7806adec54a73d"
level="file">
<did>
<unittitle>From Allan Crunden</unittitle>
<unitdatestructured altrender="1938 June 16-30" label="other" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1938-06-16">1938 June 16</fromdate>
<todate standarddate="1938-06-30">1938 June 30</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/224754"
containerid="39002087826088"
encodinganalog="archive letter"
id="aspace_edf6249e4440766a5e7806adec54a73d_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_edf6249e4440766a5e7806adec54a73d_c2"
localtype="folder"
parent="aspace_edf6249e4440766a5e7806adec54a73d_c1">6</container>
</did>
<scopecontent id="aspace_faff4f5d872eac9b43da08943a6735e3">
<head>Scope and Contents</head>
<p>He has been assigned to a base hospital at Fort George Meade in Maryland. She has returned from Lawrencetown and is in Montclair.</p>
</scopecontent>
</c>