533 lines
36 KiB
HTML
533 lines
36 KiB
HTML
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<link href="/static/styles/reset.css" rel="stylesheet" type="text/css" media="all" />
|
|
<link href="/static/styles/master.css" rel="stylesheet" type="text/css" media="screen" />
|
|
<link href="/static/styles/footeronly.css" rel="stylesheet" type="text/css" media="screen" />
|
|
<!--Call jQuery-->
|
|
<script type="text/javascript" src="/static/scripts/jquery-min.js"></script>
|
|
<!--[if lte IE 8]>
|
|
<script type="text/javascript" src="/static/scripts/PIE.js"></script>
|
|
<![endif]-->
|
|
<script type="text/javascript" src="/static/scripts/master.js"></script>
|
|
<link rel="stylesheet" href="/static/styles/print.css" type="text/css" media="print" />
|
|
<title>Changing the Face of Medicine| Physicians Search</title>
|
|
<link rel="schema.DC" href="http://purl.org/dc/elements/1.1/" title="The Dublin Core metadata Element Set" />
|
|
<meta name="DC.Title" content="Changing the Face of Medicine| Physicians Search" />
|
|
<meta name="DC.Publisher" content="U.S. National Library of Medicine" />
|
|
<meta name="DC.Date.Issued" content="2003-10-14" />
|
|
<meta name="DC.Date.Modified" content="2015-06-03" />
|
|
<meta name="NLMDC.Date.Expiration" content="2016-06-02" />
|
|
<meta name="NLM.Contact.Email" content="hmdweb@nlm.nih.gov" />
|
|
<meta name="DC.Type" content="Exhibitions" />
|
|
<meta name="NLM.Permanence.Level" content="Permanent: Stable Content" />
|
|
<meta name="NLM.Permanence.Guarantor" content="U.S. National Library of Medicine" />
|
|
<meta name="DC.Rights" content="Public Domain" />
|
|
<meta name="DC.Language" content="eng" />
|
|
<link href="/static/css/nlm.css" rel="stylesheet" type="text/css" />
|
|
<link href="/static/changingtheface.css" rel="stylesheet" type="text/css" />
|
|
<!-- STYLING ADDED -->
|
|
<style>
|
|
.home, .physicians, .resources, .activities {
|
|
width: 232px !important;
|
|
height: 27px !important;
|
|
border: 1px solid #d8e8ea;
|
|
text-align: center;
|
|
text-transform: uppercase;
|
|
font-size: 12px;
|
|
line-height: 2.3;
|
|
color: #316068 !important;
|
|
background-color: #f9fbfc;
|
|
}
|
|
|
|
.home a, .physicians a, .resources a, .activities a
|
|
{text-decoration: none !important;
|
|
color: #316068 !important;
|
|
}
|
|
|
|
.home:hover, .physicians:hover, .resources:hover, .activities:hover {
|
|
background-color: #FFFFFF;
|
|
}
|
|
.physicians, .activities {float: right;}
|
|
|
|
|
|
#changingTheFace #changingTheFaceNav div.physicians {
|
|
margin: -29px 0px 0px 370px !important;
|
|
}
|
|
#changingTheFace #changingTheFaceNav div.resources {
|
|
margin: -1px 0px 0px 189px !important;
|
|
}
|
|
|
|
</style>
|
|
|
|
<!--STYLING ENDED -->
|
|
|
|
<script language="JavaScript" type="text/javascript">
|
|
<!--
|
|
browser=navigator.appName;
|
|
version=navigator.appVersion;
|
|
Vmajor=parseInt(navigator.appVersion);
|
|
Vminor=parseFloat(navigator.appVersion);
|
|
isNav = false;
|
|
isMac = false;
|
|
isExp = false;
|
|
if (version.indexOf('Mac') != -1) isMac=true;
|
|
if (browser=="Microsoft Internet Explorer") {
|
|
if ( version.indexOf('MSIE 5.0; Macintosh;') != -1 ) {
|
|
isExp=true;
|
|
}
|
|
// IE 4 to 5.5 return 4 as the version
|
|
else if ( (Vmajor==4) ) {
|
|
isExp=true;
|
|
}
|
|
}
|
|
if (browser=="Netscape" && Vmajor==4 && !isMac) {
|
|
document.write('<link href="/static/css/ns4.css" rel="stylesheet" type="text/css" />');
|
|
} else if (browser=="Netscape" && Vmajor==4 && isMac) {
|
|
document.write('<link href="/static/css/ns4mac.css" rel="stylesheet" type="text/css" />');
|
|
}
|
|
//-->
|
|
</script>
|
|
<script language="JavaScript" src="/static/js/nlm.js" type="text/javascript"></script>
|
|
<script language="JavaScript" type="text/javascript">
|
|
<!--
|
|
var metaNavItems = new Array();
|
|
var metaNavOn = new Array();
|
|
var metaNavOff = new Array();
|
|
var subNavItems = new Array();
|
|
var subNavOn = new Array();
|
|
var subNavOff = new Array();
|
|
var subNavAdj = new Array();
|
|
function initializeMetaNav(root, current) {
|
|
if (document.images) {
|
|
/* MAIN NAV */
|
|
metaNavItems = new Array("exhibition", "home", "visit", "physicians", "resources", "activities", "share");
|
|
for (var i = 0; i <= metaNavItems.length; i++) {
|
|
metaNavOn[i] = new Image();
|
|
metaNavOn[i].src = root + "img/meta_" + metaNavItems[i] + "_on.gif";
|
|
metaNavOff[i] = new Image();
|
|
if (metaNavItems[i] == current && i != 0) {
|
|
metaNavOff[i].src = root + "img/meta_" + metaNavItems[i] + "_on.gif";
|
|
} else {
|
|
metaNavOff[i].src = root + "img/meta_" + metaNavItems[i] + ".gif";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
function initializeSubNav(root, current) {
|
|
/* do nothing */
|
|
}
|
|
function initialize() {
|
|
initializeMetaNav("../", "physicians");
|
|
initializeSubNav("../", "index.html");
|
|
// clear out form
|
|
if (document.filterForm) {
|
|
if (document.filterForm.location) {
|
|
document.filterForm.location.selectedIndex = -1;
|
|
}
|
|
if (document.filterForm.specialties) {
|
|
document.filterForm.specialties.selectedIndex = -1;
|
|
}
|
|
if (document.filterForm.medicalschools) {
|
|
document.filterForm.medicalschools.selectedIndex = -1;
|
|
}
|
|
if (document.filterForm.ethnicity) {
|
|
document.filterForm.ethnicity.selectedIndex = -1;
|
|
}
|
|
}
|
|
if (document.keyForm && document.keyForm.keywords) {
|
|
document.keyForm.keywords.value="";
|
|
}
|
|
}
|
|
//-->
|
|
</script>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','GTM-MT6MLL');</script>
|
|
</head>
|
|
<body>
|
|
<noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-MT6MLL" height="0" width="0" style="display:none;visibility:hidden" title="googletagmanager"></iframe></noscript>
|
|
<div id="skip"><a href="#skip">Skip to Main Content</a></div>
|
|
<div id="page"><a name="top" id="top"></a>
|
|
<a name="skip" id="skipnav"></a>
|
|
<div id="body">
|
|
<div id="changingTheFace">
|
|
<a name="top"></a>
|
|
<div class="center">
|
|
<div class="faceHeader">
|
|
<img src="/static/img/hdr_celebrating.gif" alt="Celebrating America's Women Physicians" class="imgRight" />
|
|
<br class="clearboth" />
|
|
<script language="JavaScript" type="text/javascript">
|
|
<!--
|
|
writePhysicianStrip("/static/");
|
|
//-->
|
|
</script><noscript><a href="../physicians/biography_167.html"><img src="../img/icons/167.jpg" width="44" height="44" alt="Dr. Nancy E. Jasso" border="0" /></a><img src="../img/spacer.gif" width="3" height="1" alt="Transparent spacer" border="0" /><a href="../physicians/biography_253.html"><img src="../img/icons/253.jpg" width="44" height="44" alt="Dr. Susan La Flesche Picotte" border="0" /></a><img src="../img/spacer.gif" width="3" height="1" alt="Transparent spacer" border="0" /><a href="../physicians/biography_82.html"><img src="../img/icons/82.jpg" width="44" height="44" alt="Dr. Helen Octavia Dickens" border="0" /></a><img src="../img/spacer.gif" width="3" height="1" alt="Transparent spacer" border="0" /><a href="../physicians/biography_248.html"><img src="../img/icons/248.jpg" width="44" height="44" alt="Dr. Louise Pearce" border="0" /></a><img src="../img/spacer.gif" width="3" height="1" alt="Transparent spacer" border="0" /><a href="../physicians/biography_273.html"><img src="../img/icons/273.jpg" width="44" height="44" alt="Dr. Helen Rodriguez-Trias" border="0" /></a><img src="../img/spacer.gif" width="3" height="1" alt="Transparent spacer" border="0" /><a href="../physicians/biography_49.html"><img src="../img/icons/49.jpg" width="44" height="44" alt="Dr. Mary Steichen Calderone" border="0" /></a><img src="../img/spacer.gif" width="3" height="1" alt="Transparent spacer" border="0" /><a href="../physicians/biography_250.html"><img src="../img/icons/250.jpg" width="44" height="44" alt="Dr. Fernande Marie Pelletier" border="0" /></a><img src="../img/spacer.gif" width="3" height="1" alt="Transparent spacer" border="0" /><a href="../physicians/biography_12.html"><img src="../img/icons/12.jpg" width="44" height="44" alt="Dr. Virginia Apgar" border="0" /></a><img src="../img/spacer.gif" width="3" height="1" alt="Transparent spacer" border="0" /><a href="../physicians/biography_316.html"><img src="../img/icons/316.jpg" width="44" height="44" alt="Dr. Helen Brooke Taussig" border="0" /></a><img src="../img/spacer.gif" width="3" height="1" alt="Transparent spacer" border="0" /><a href="../physicians/biography_81.html"><img src="../img/icons/81.jpg" width="44" height="44" alt="Dr. Katherine M. Detre" border="0" /></a><img src="../img/spacer.gif" width="3" height="1" alt="Transparent spacer" border="0" /><a href="../physicians/biography_293.html"><img src="../img/icons/293.jpg" width="44" height="44" alt="Dr. Linda M. Dairiki Shortliffe" border="0" /></a><img src="../img/spacer.gif" width="3" height="1" alt="Transparent spacer" border="0" /><a href="../physicians/biography_279.html"><img src="../img/icons/279.jpg" width="44" height="44" alt="Dr. Barbara Ross-Lee" border="0" /></a><img src="../img/spacer.gif" width="3" height="1" alt="Transparent spacer" border="0" /><a href="../physicians/biography_7.html"><img src="../img/icons/7.jpg" width="44" height="44" alt="Dr. Lori Arviso Alvord" border="0" /></a><img src="../img/spacer.gif" width="3" height="1" alt="Transparent spacer" border="0" /><a href="../physicians/biography_212.html"><img src="../img/icons/212.jpg" width="44" height="44" alt="Dr. Joann Elisabeth Manson" border="0" /></a></noscript>
|
|
<br class="clearboth" />
|
|
<div id="changingTheFaceNav">
|
|
<div class="exhibition" style="display: inline-block;">
|
|
<a href="/exhibition/" id="anch_18"><img src="/static/img/meta_exhibition.gif" alt="Changing the face of Medicine" title="Changing the face of Medicine"></a>
|
|
</div>
|
|
<div class="menu_container">
|
|
|
|
<div class="home" style="background-image: none">
|
|
<a href="/">Home</a>
|
|
</div>
|
|
<div class="physicians" style="background-image: none">
|
|
<a href="/physicians/">Physicians</a>
|
|
</div>
|
|
<div class="resources" style="background-image: none">
|
|
<a href="/resources/">Resources</a>
|
|
</div>
|
|
<div class="activities" style="background-image: none">
|
|
<a href="/activities/">Activities</a>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
<br class="clearboth" />
|
|
</div>
|
|
<img src="/static/img/divider.gif" alt="Transparent spacer" height="1" width="655" />
|
|
<br class="clearboth" /><br />
|
|
<img src="/static/img/desc_bar_physicians.gif" alt="Physicians" title="Physicians" />
|
|
<br class="clearboth" /><br />
|
|
<div class="pictureBox">
|
|
<script language="JavaScript" type="text/javascript">
|
|
writePhysicianBlock('/static/');
|
|
//-->
|
|
</script>
|
|
<noscript>
|
|
<a href="../physicians/biography_235.html"><img src="../img/thumbs/235.jpg" alt="Dr. Kate Pelham Newcomb" class="imgLeft" /></a>
|
|
<a href="../physicians/biography_191.html"><img src="../img/thumbs/191.jpg" alt="Dr. Joyce Cohen Lashof" class="imgLeft" /></a>
|
|
<a href="../physicians/biography_222.html"><img src="../img/thumbs/222.jpg" alt="Dr. Flavia Elaine Mercado" class="imgLeft" /></a>
|
|
<br class="clearboth" />
|
|
<a href="../physicians/biography_291.html"><img src="../img/thumbs/291.jpg" alt="Dr. Georgeanna Seegar Jones" class="imgLeft" /></a>
|
|
<a href="../physicians/biography_348.html"><img src="../img/thumbs/348.jpg" alt="Dr. Elizabeth D. A. Magnus Cohen" class="imgLeft" /></a>
|
|
<a href="../physicians/biography_318.html"><img src="../img/thumbs/318.jpg" alt="Dr. Debi Thomas" class="imgLeft" /></a>
|
|
</noscript>
|
|
<br class="clearboth" />
|
|
<p class="searchInstruction">Click on a picture to learn more about a physician.</p>
|
|
</div>
|
|
<div class="featuredPhysicians1">
|
|
<h2><img src="/static/img/hdr_featured_physicians.gif" alt="Featured Physicians" title="Featured Physicians" /></h2><p>This exhibition celebrates the lives and careers of some of America's extraordinary women physicians. Their stories begin in the 19th century. Their impact transcends time. Each woman has a unique story to share. Start with the six physicians featured here to learn more about their lives—what inspired them to become doctors, who their mentors were, and why medicine is important to them.</p>
|
|
</div>
|
|
<br class="clearboth" />
|
|
<img src="/static/img/divider.gif" alt="divider" border="0" height="1" width="655" />
|
|
<br class="clearboth" />
|
|
<form action="/physicians/search/1/" method="get" id="filterForm" name="filterForm">
|
|
<input type="hidden" name="csrfmiddlewaretoken" value="grdyxuiFo14B5qnf84jTci1qqFSVV7vuDpzKprAEnkqvpcoukmzB6ilJN8mSWLO4">
|
|
<div class="physiciansBox1">
|
|
<div class="bg">
|
|
<div class="searchLabel">
|
|
<img src="/static/img/arrow_search_down.gif" alt="" /> <label for="location">LOCATION</label><br />
|
|
<select name="location" id="location" multiple="multiple" size="5" class="physLeft">
|
|
<option value="Alabama">Alabama</option>
|
|
<option value="Alaska">Alaska</option>
|
|
<option value="Arizona">Arizona</option>
|
|
<option value="Arkansas">Arkansas</option>
|
|
<option value="California">California</option>
|
|
<option value="Colorado">Colorado</option>
|
|
<option value="Connecticut">Connecticut</option>
|
|
<option value="Delaware">Delaware</option>
|
|
<option value="District of Columbia">District of Columbia</option>
|
|
<option value="Florida">Florida</option>
|
|
<option value="Georgia">Georgia</option>
|
|
<option value="Hawaii">Hawaii</option>
|
|
<option value="Idaho">Idaho</option>
|
|
<option value="Illinois">Illinois</option>
|
|
<option value="Indiana">Indiana</option>
|
|
<option value="Iowa">Iowa</option>
|
|
<option value="Kansas">Kansas</option>
|
|
<option value="Kentucky">Kentucky</option>
|
|
<option value="Louisiana">Louisiana</option>
|
|
<option value="Maine">Maine</option>
|
|
<option value="Maryland">Maryland</option>
|
|
<option value="Massachusetts">Massachusetts</option>
|
|
<option value="Michigan">Michigan</option>
|
|
<option value="Minnesota">Minnesota</option>
|
|
<option value="Mississippi">Mississippi</option>
|
|
<option value="Missouri">Missouri</option>
|
|
<option value="Montana">Montana</option>
|
|
<option value="Nebraska">Nebraska</option>
|
|
<option value="Nevada">Nevada</option>
|
|
<option value="New Hampshire">New Hampshire</option>
|
|
<option value="New Jersey">New Jersey</option>
|
|
<option value="New Mexico">New Mexico</option>
|
|
<option value="New York">New York</option>
|
|
<option value="North Carolina">North Carolina</option>
|
|
<option value="North Dakota">North Dakota</option>
|
|
<option value="Ohio">Ohio</option>
|
|
<option value="Oklahoma">Oklahoma</option>
|
|
<option value="Oregon">Oregon</option>
|
|
<option value="Pennsylvania">Pennsylvania</option>
|
|
<option value="Puerto Rico">Puerto Rico</option>
|
|
<option value="Rhode Island">Rhode Island</option>
|
|
<option value="South Carolina">South Carolina</option>
|
|
<option value="South Dakota">South Dakota</option>
|
|
<option value="Tennessee">Tennessee</option>
|
|
<option value="Texas">Texas</option>
|
|
<option value="Utah">Utah</option>
|
|
<option value="Vermont">Vermont</option>
|
|
<option value="Virginia">Virginia</option>
|
|
<option value="Virgin Islands">Virgin Islands</option>
|
|
<option value="Washington">Washington</option>
|
|
<option value="West Virginia">West Virginia</option>
|
|
<option value="Wisconsin">Wisconsin</option>
|
|
<option value="Wyoming">Wyoming</option>
|
|
<option value="Australia">Australia</option>
|
|
<option value="Canada">Canada</option>
|
|
<option value="China">China</option>
|
|
<option value="England">England</option>
|
|
<option value="France">France</option>
|
|
<option value="Germany">Germany</option>
|
|
<option value="Ghana">Ghana</option>
|
|
<option value="India">India</option>
|
|
<option value="Korea">Korea</option>
|
|
</select>
|
|
</div>
|
|
<div class="searchLabel">
|
|
<img src="/static/img/arrow_search_down.gif" alt="" /> <label for="ethnicity">ETHNICITY</label><br />
|
|
<select name="ethnicity" id="ethnicity" multiple="multiple" size="5" class="physRight">
|
|
<option value="American Indian or Alaskan Native">American Indian or Alaskan Nativ...</option>
|
|
<option value="Asian or Pacific Islander">Asian or Pacific Islander</option>
|
|
<option value="Black, not of Hispanic Origin">Black, not of Hispanic Origin</option>
|
|
<option value="Hispanic">Hispanic</option>
|
|
<option value="White, not of Hispanic Origin">White, not of Hispanic Origin</option>
|
|
</select>
|
|
</div>
|
|
<br class="clearboth" />
|
|
<div class="searchLabel">
|
|
<img src="/static/img/arrow_search_down.gif" alt="" /> <label for="specialties">CAREER OPTIONS</label><br />
|
|
<select name="specialties" id="specialties" multiple="multiple" size="5" class="physLeft">
|
|
<option value="10">Administration</option>
|
|
<option value="5">Diagnostic and therapeutic servi...</option>
|
|
<option value="7">Education</option>
|
|
<option value="8">General medicine</option>
|
|
<option value="1">Internal medicine</option>
|
|
<option value="4">Obstetrics and gynecology</option>
|
|
<option value="2">Pediatric medicine</option>
|
|
<option value="11">Psychiatry</option>
|
|
<option value="9">Public health</option>
|
|
<option value="6">Research</option>
|
|
<option value="3">Surgery</option>
|
|
</select>
|
|
</div>
|
|
<div class="searchLabel">
|
|
<img src="/static/img/arrow_search_down.gif" alt="" /> <label for="medicalschools">MEDICAL SCHOOLS</label><br />
|
|
<select name="medicalschools" id="medicalschools" multiple="multiple" size="5" class="physRight">
|
|
<option value="Ahmadu Bello University">Ahmadu Bello University</option>
|
|
<option value="Albert Einstein College of Medicine">Albert Einstein College of Medic...</option>
|
|
<option value="Albert-Ludwig University, College of Medicine">Albert-Ludwig University, Colleg...</option>
|
|
<option value="Baylor College of Medicine">Baylor College of Medicine</option>
|
|
<option value="Bishop's Medical College">Bishop's Medical College</option>
|
|
<option value="Boston University School of Medicine">Boston University School of Medi...</option>
|
|
<option value="Case Western Reserve University School of Medicine">Case Western Reserve University ...</option>
|
|
<option value="Central Medical College">Central Medical College</option>
|
|
<option value="Central University of Venezuela">Central University of Venezuela</option>
|
|
<option value="Christian Medical College">Christian Medical College</option>
|
|
<option value="Columbia University College of Physicians and Surgeons">Columbia University College of P...</option>
|
|
<option value="Cornell University Weill Medical College">Cornell University Weill Medical...</option>
|
|
<option value="Creighton University School of Medicine">Creighton University School of M...</option>
|
|
<option value="Dartmouth Medical School">Dartmouth Medical School</option>
|
|
<option value="Duke University School of Medicine">Duke University School of Medici...</option>
|
|
<option value="Emory University School of Medicine">Emory University School of Medic...</option>
|
|
<option value="Female Medical College of Pennsylvania">Female Medical College of Pennsy...</option>
|
|
<option value="Geneva Medical College">Geneva Medical College</option>
|
|
<option value="The George Washington University School of Medicine and Health Sciences">George Washington University...</option>
|
|
<option value="Georgetown University School of Medicine">Georgetown University School of ...</option>
|
|
<option value="German University of Prague">German University of Prague</option>
|
|
<option value="Hahnemann Medical College">Hahnemann Medical College</option>
|
|
<option value="Harvard Medical School">Harvard Medical School</option>
|
|
<option value="Hering Medical College">Hering Medical College</option>
|
|
<option value="Howard University College of Medicine">Howard University College of Med...</option>
|
|
<option value="Hygeio-Therapeutic Medical College">Hygeio-Therapeutic Medical Colle...</option>
|
|
<option value="Indiana Medical College">Indiana Medical College</option>
|
|
<option value="Indiana University School of Medicine">Indiana University School of Med...</option>
|
|
<option value="The Johns Hopkins University School of Medicine">Johns Hopkins University Sch...</option>
|
|
<option value="Kansas City Medical College">Kansas City Medical College</option>
|
|
<option value="Keokuk Medical College of Physicians and Surgeons">Keokuk Medical College of Physic...</option>
|
|
<option value="Loma Linda University">Loma Linda University</option>
|
|
<option value="Louisiana State University School of Medicine">Louisiana State University Schoo...</option>
|
|
<option value="Loyola University Chicago Stritch School of Medicine">Loyola University Chicago Stritc...</option>
|
|
<option value="McGill University Faculty of Medicine">McGill University Faculty of Med...</option>
|
|
<option value="Medical College of Georgia">Medical College of Georgia</option>
|
|
<option value="Medical College of Ohio at Toledo">Medical College of Ohio at Toled...</option>
|
|
<option value="Medical College of Pennsylvania">Medical College of Pennsylvania</option>
|
|
<option value="Medical College of Virginia">Medical College of Virginia</option>
|
|
<option value="Medical College of Wisconsin">Medical College of Wisconsin</option>
|
|
<option value="Meharry Medical College">Meharry Medical College</option>
|
|
<option value="Michigan State University College of Human Medicine">Michigan State University Colleg...</option>
|
|
<option value="Mt. Sinai School of Medicine">Mt. Sinai School of Medicine</option>
|
|
<option value="New England Female Medical College">New England Female Medical Colle...</option>
|
|
<option value="New York Medical College">New York Medical College</option>
|
|
<option value="New York University School of Medicine">New York University School of Me...</option>
|
|
<option value="New York Women's Medical School">New York Women's Medical School</option>
|
|
<option value="Northwestern University Medical School">Northwestern University Medical ...</option>
|
|
<option value="Ohio State University College of Medicine">Ohio State University College of...</option>
|
|
<option value="Philadelphia College of Osteopathic Medicine">Philadelphia College of Osteopat...</option>
|
|
<option value="Queen's University Medical School">Queen's University Medical Schoo...</option>
|
|
<option value="Royal College of Physicians and Surgeons">Royal College of Physicians and ...</option>
|
|
<option value="St. Louis University School of Medicine">St. Louis University School of M...</option>
|
|
<option value="Stanford University School of Medicine">Stanford University School of Me...</option>
|
|
<option value="State University of New York at Buffalo">State University of New York at ...</option>
|
|
<option value="State University of New York, Downstate Medical Center">State University of New York, Do...</option>
|
|
<option value="Tufts University School of Medicine">Tufts University School of Medic...</option>
|
|
<option value="Tulane University School of Medicine">Tulane University School of Medi...</option>
|
|
<option value="Universidad Central del Caribe School of Medicine">Universidad Central del Caribe S...</option>
|
|
<option value="Universidad de Carabobo">Universidad de Carabobo</option>
|
|
<option value="Universita' degli Studi di Brescia">Universita' degli Studi di Bresc...</option>
|
|
<option value="University and Bellevue Hospital Medical College">University and Bellevue Hospital...</option>
|
|
<option value="University of Adelaide Medical School">University of Adelaide Medical S...</option>
|
|
<option value="University of Alabama at Birmingham">University of Alabama at Birming...</option>
|
|
<option value="University of Arizona College of Medicine">University of Arizona College of...</option>
|
|
<option value="University of Arkansas for Medical Sciences">University of Arkansas for Medic...</option>
|
|
<option value="University of California, Davis, School of Medicine">University of California, Davis,...</option>
|
|
<option value="University of California, Irvine, College of Medicine">University of California, Irvine...</option>
|
|
<option value="University of California, Los Angeles, School of Medicine">University of California, Los An...</option>
|
|
<option value="University of California, San Diego, School of Medicine">University of California, San Di...</option>
|
|
<option value="University of California, San Francisco, School of Medicine">University of California, San Fr...</option>
|
|
<option value="University of Chicago School of Medicine">University of Chicago School of ...</option>
|
|
<option value="University of Cincinnati College of Medicine">University of Cincinnati College...</option>
|
|
<option value="University of Colorado School of Medicine">University of Colorado School of...</option>
|
|
<option value="University of Heidelberg Medical School">University of Heidelberg Medical...</option>
|
|
<option value="University of Illinois College of Medicine">University of Illinois College o...</option>
|
|
<option value="University of Kansas School of Medicine">University of Kansas School of M...</option>
|
|
<option value="University of Louisville School of Medicine">University of Louisville School ...</option>
|
|
<option value="University of Massachusetts Medical School">University of Massachusetts Medi...</option>
|
|
<option value="University of Melbourne School of Medicine">University of Melbourne School o...</option>
|
|
<option value="University of Michigan Medical School">University of Michigan Medical S...</option>
|
|
<option value="University of Minnesota Medical School">University of Minnesota Medical ...</option>
|
|
<option value="University of Missouri-Columbia School of Medicine">University of Missouri-Columbia ...</option>
|
|
<option value="University of Nevada School of Medicine">University of Nevada School of M...</option>
|
|
<option value="University of New Mexico School of Medicine">University of New Mexico School ...</option>
|
|
<option value="University of North Carolina at Chapel Hill School of Medicine">University of North Carolina at ...</option>
|
|
<option value="University of North Dakota School of Medicine and Health Sciences">University of North Dakota Schoo...</option>
|
|
<option value="University of Oklahoma College of Medicine">University of Oklahoma College o...</option>
|
|
<option value="University of Oregon Medical School">University of Oregon Medical Sch...</option>
|
|
<option value="University of Pennsylvania School of Medicine">University of Pennsylvania Schoo...</option>
|
|
<option value="University of Pittsburgh School of Medicine">University of Pittsburgh School ...</option>
|
|
<option value="University of Puerto Rico School of Medicine">University of Puerto Rico School...</option>
|
|
<option value="University of Rochester School of Medicine and Dentistry">University of Rochester School o...</option>
|
|
<option value="University of South Dakota School of Medicine">University of South Dakota Schoo...</option>
|
|
<option value="University of Tennessee School of Medicine">University of Tennessee School o...</option>
|
|
<option value="University of Texas Health Science Center at San Antonio">University of Texas Health Scien...</option>
|
|
<option value="University of Texas Medical Branch">University of Texas Medical Bran...</option>
|
|
<option value="University of Texas Medical School at Houston">University of Texas Medical Scho...</option>
|
|
<option value="University of the West Indies">University of the West Indies</option>
|
|
<option value="University of Utah School of Medicine">University of Utah School of Med...</option>
|
|
<option value="University of Vermont School of Medicine">University of Vermont School of ...</option>
|
|
<option value="University of Vienna">University of Vienna</option>
|
|
<option value="University of Virginia School of Medicine">University of Virginia School of...</option>
|
|
<option value="University of Wisconsin Medical School">University of Wisconsin Medical ...</option>
|
|
<option value="University of Zurich">University of Zurich</option>
|
|
<option value="Vanderbilt University School of Medicine">Vanderbilt University School of ...</option>
|
|
<option value="Warsaw University Medical School">Warsaw University Medical School...</option>
|
|
<option value="Washington University School of Medicine">Washington University School of ...</option>
|
|
<option value="Wayne State University">Wayne State University</option>
|
|
<option value="Woman's Medical College of Baltimore">Woman's Medical College of Balti...</option>
|
|
<option value="Woman's Medical College of Pennsylvania">Woman's Medical College of Penns...</option>
|
|
<option value="Woman's Medical College of the New York Infirmary">Woman's Medical College of the N...</option>
|
|
<option value="Yale University School of Medicine">Yale University School of Medici...</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<p class="searchInstruction">To deselect an option or select multiple options, hold down the <br />Control key (PC) or Command key (Mac) while clicking.</p>
|
|
</div>
|
|
<script language="JavaScript" type="text/javascript">
|
|
<!--
|
|
if (browser=="Netscape" && Vmajor==4) {
|
|
document.write("<div class=\"featuredPhysicians2\">");
|
|
document.write("<h2><img src=\"/static/img/hdr_physician_search.gif\" alt=\"Physician Search\" /></h2>");
|
|
document.write("<p>Access the stories of the women in this exhibition by selecting from the categories displayed to the left. Your search result will display all of the featured physicians who fit the criteria you select. <br /><br /></p>");
|
|
document.write("</div>");
|
|
}
|
|
else {
|
|
document.write("<div class=\"featuredPhysicians2\">");
|
|
document.write("<h2><img src=\"/static/img/hdr_physician_search.gif\" alt=\"Physician Search\" /></h2>");
|
|
document.write("<p>Access the stories of the women in this exhibition by selecting from the categories displayed to the left. Your search result will display all of the featured physicians who fit the criteria you select. <br /><br /><input type=\"image\" src=\"/static/img/btn_search.gif\" alt=\"Search\" /></p>");
|
|
document.write("</div>");
|
|
}
|
|
//-->
|
|
</script>
|
|
<noscript>
|
|
<div class="featuredPhysicians2">
|
|
<h2><img src="/static/img/hdr_physician_search.gif" alt="Physician Search" /></h2><p>Access the stories of the women in this exhibition by selecting from the categories displayed to the left. Your search result will display all of the featured physicians who fit the criteria you select. <br /><br /><input src="/static/img/btn_search.gif" alt="Search" type="image" /></p>
|
|
</div>
|
|
</noscript>
|
|
</form>
|
|
<br class="clearboth" />
|
|
|
|
<!--- temporarily unavailable
|
|
<img src="/static/img/divider.gif" alt="" height="1" width="655" />
|
|
<br class="clearboth" /><br />
|
|
<img src="/static/img/hdr_keyword.gif" alt="Keyword Search" class="floatLeft" />
|
|
<p> Search the database of featured physicians by keywords or last name.</p>
|
|
<br class="clearboth" />
|
|
<div class="physiciansBox2">
|
|
<div class="bg">
|
|
<form action="//vsearch.nlm.nih.gov/vivisimo/cgi-bin/query-meta" target="_self" method="post" id="keyForm" name="keyForm">
|
|
<div class="searchLabel"><img src="/static/img/arrow_search_down.gif" alt="" /> <label for="keywords">ENTER KEYWORDS</label></div>
|
|
<br class="clearboth" />
|
|
<input class="searchKeywords" name="query" id="keywords" size="30" maxlength="100" type="text" />
|
|
<input src="/static/img/btn_search.gif" alt="Search" type="image" />
|
|
<input name="v:project" value="query-meta" type="hidden" />
|
|
<input name="v:sources" value="changing_face" type="hidden" />
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<br class="clearboth" />
|
|
--->
|
|
|
|
<img src="/static/img/divider.gif" alt="" height="1" width="655" />
|
|
<br class="clearboth" /><br />
|
|
<img src="/static/img/hdr_physician_index.gif" alt="Index of Physicians" class="floatLeft" />
|
|
<p> Search the database of featured physicians by last name.</p>
|
|
<br class="clearboth" />
|
|
<div class="physiciansBox2">
|
|
<div class="bg">
|
|
<div class="searchLabel"><img src="/static/img/arrow_search_down.gif" alt="" /> SELECT A LETTER</div>
|
|
<br class="clearboth" />
|
|
<div class="physIndexDiv">
|
|
<a href="/physicians/search/1/?letter=A">A</a> | <a href="/physicians/search/1/?letter=B">B</a> | <a href="/physicians/search/1/?letter=C">C</a> | <a href="/physicians/search/1/?letter=D">D</a> | <a href="/physicians/search/1/?letter=E">E</a> | <a href="/physicians/search/1/?letter=F">F</a> | <a href="/physicians/search/1/?letter=G">G</a> | <a href="/physicians/search/1/?letter=H">H</a> | <a href="/physicians/search/1/?letter=I">I</a> | <a href="/physicians/search/1/?letter=J">J</a> | <a href="/physicians/search/1/?letter=K">K</a> | <a href="/physicians/search/1/?letter=L">L</a> | <a href="/physicians/search/1/?letter=M">M</a> | <a href="/physicians/search/1/?letter=N">N</a> | <a href="/physicians/search/1/?letter=O">O</a> | <a href="/physicians/search/1/?letter=P">P</a> | <a href="/physicians/search/1/?letter=Q">Q</a> | <a href="/physicians/search/1/?letter=R">R</a> | <a href="/physicians/search/1/?letter=S">S</a> | <a href="/physicians/search/1/?letter=T">T</a> | <a href="/physicians/search/1/?letter=U">U</a> | <a href="/physicians/search/1/?letter=V">V</a> | <a href="/physicians/search/1/?letter=W">W</a> | <a href="/physicians/search/1/?letter=X">X</a> | <a href="/physicians/search/1/?letter=Y">Y</a> | <a href="/physicians/search/1/?letter=Z">Z</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div id="foot">
|
|
<div class="footer">
|
|
<a href="http://www.nlm.nih.gov/hmd/about/exhibition/index.html"><img src="/static/img/logo-exhibitionprogram.png" height="38" alt="Exhibition Program" title="Exhibition Program logo" class="floatLeft" /></a>
|
|
<ul>
|
|
<li><a href="http://www.nlm.nih.gov/hmd/about/exhibition/exhibitions.html">More Exhibitions</a></li>
|
|
<li><a href="http://www.nlm.nih.gov/hmd/about/exhibition/education-resources-all.html">More Educational Resources</a></li>
|
|
</ul>
|
|
<form method="get" action="//vsearch.nlm.nih.gov/vivisimo/cgi-bin/query-meta" target="_self" name="searchForm" id="exhibitionsearch">
|
|
<label for="searchexhibition">Search</label>
|
|
<input name="query" id="searchexhibition" value="" type="text" />
|
|
<input name="v:project" value="hmdExhibition" type="hidden" />
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div> <!--body-->
|
|
<!-- ************************* Content end ************************* -->
|
|
<!-- BEGIN NLM FOOTER -->
|
|
<!-- EXPDATE="2016-06-02" -->
|
|
<!-- EMAIL="hmdweb@nlm.nih.gov" -->
|
|
<!-- Start Footer-->
|
|
<div id="footer-sub">
|
|
<p id="footer-info"><a href="http://www.nlm.nih.gov/copyright.html">Copyright</a>, <a href="http://www.nlm.nih.gov/privacy.html">Privacy</a>, <a href="http://www.nlm.nih.gov/accessibility.html">Accessibility</a>, <a href="http://www.nlm.nih.gov/sitemap.html">Site Map</a>, <a href="http://www.nlm.nih.gov/plugins.html">Viewers and Players</a> <br />
|
|
U.S. National Library of Medicine, 8600 Rockville Pike, Bethesda, MD 20894 <br />
|
|
<a href="http://www.nih.gov/">National Institutes of Health</a>, <a href="http://www.hhs.gov/">Health & Human Services</a> <br />
|
|
<a href="http://www.nih.gov/icd/od/foia/index.htm">Freedom of Information Act</a>, <a class="paratureLink" href="//support.nlm.nih.gov?from=" target="_blank">NLM Customer Support</a>, <a href="https://www.hhs.gov/vulnerability-disclosure-policy/index.html">HHS Vulnerability Disclosure</a></p>
|
|
<div id="footer-usa"> <a href="http://www.usa.gov/"><img src="/static/images/usagov_logo.gif" alt="USA.gov logo" width="109" height="30" /></a> </div>
|
|
<p id="footer-review">
|
|
<strong>Last reviewed:</strong> 03 June 2015<br /><strong>Last updated:</strong> 03 June 2015<br /><strong>First published:</strong> 14 October 2003<br />
|
|
</p>
|
|
</div>
|
|
</div> <!--page-->
|
|
<script type="text/javascript">
|
|
$nlm(document).ready(function(){
|
|
$nlm('.paratureLink').attr('href', $nlm('.paratureLink').attr('href') + window.location.href);
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|