var browser = navigator.appName;

/*	Function to open the page in a new pop-up window	
	Used to display the Faculty Profile.
*/
function openwindow(url)
{
window.open(url,'my_new_window','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width=500,height=500');
}

/*	Function to detect the client browser	
	Used for the slide show script.
*/
function tester(param)
{
	if (param=="home")
		changetextclick(content[0]);
	else 
	if (param=="programs")
		changetextclick(content[1]);
	else
	if (param=="services")
		changetextclick(content[2]);
	else
	if (param=="research")
		changetextclick(content[23]);
	else
	if (param=="pub")
		changetextclick(content[3]);
	else
	if (param=="fac")
		changetextclick(content[80]);
	else
	if (param=="announce")
		changetextclick(content[72]);
}
/*	Function to detect the client browser	
	Used for the slide show script.
*/
function which_browser(param)
{
  if (param!='')
	  tester(param);

  if (browser == "Microsoft Internet Explorer") 

    runSlideShow();

 else if (navigator.appVersion == "5.0 (Windows; en-US)") 
 {
	runSlideShownet_other();
}
	else 
  {
	runSlideShownet();}
}


/*function which_browser()
{
  if (browser == "Microsoft Internet Explorer") 

    runSlideShow();

 else if (navigator.appVersion == "5.0 (Windows; en-US)") 
 {
	runSlideShownet_other();
}
	else 
  {
	runSlideShownet();}
}
*/

// START SLIDE SHOW SCRIPT.

var SlideShowSpeed = 3500;	// determines the speed of the slide show in milli seconds. Here 3.5 sec

// Set the duration of crossfade (in seconds)
var CrossFadeDuration = 3;

var Picture = new Array();	// For the pictures in the IE version.
var Picturenet = new Array();  // For the pictures used in the Netscape version. Here the captions are included in the images so no need of separate array for the captions for Netscape.
var Caption1 = new Array(); // The captions array at the top of the image.
var Caption2 = new Array(); // For the captions at the bottom of the image.

/* The pictures array for the IE being initialized with the images.	*/
Picture[1]  = 'Pictures/viewingmonitors.jpg';
Picture[2]  = 'Pictures/doctor.jpg';
Picture[3]  = 'Pictures/mhpe.jpg';

/* The pictures array for the Netscape being initialized with the images.	*/
Picturenet[1]  = 'Pictures/newviewingmonitors.jpg';
Picturenet[2]  = 'Pictures/newdoctor.jpg';

/* The captions array for the IE being initialized with the captions.	*/
Caption1[1]  = "<B>Clinical Performance <br>Center</B>";
Caption1[2]  = "<B>General Competencies Assessment Center</B>";
Caption1[3]  = "<B>Master Of Health Professions Education</B>";

// The captions at the bottom of the images in the slide show.
Caption2[1]  = '<font face=arial size=2>Established in 1987, the <br>Clinical Performance Center at <br>UIC is one of the oldest and <br>largest centers in the United <br>States&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <a  class="one" href="#" onClick="changetextclick(content[18])"><u><i>Learn more</i></u></a> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font>';
Caption2[2]  = '<font face=arial size=2>Programs to evaluate your <br>resident\'s proficiency in the ACGME general competencies <a  class="one" href="#" onClick="changetextclick(content[18])"><u><i>Learn more</i></u></a></font>';
Caption2[3]  = '<font face=arial size=2>Programs to evaluate your <br>resident\'s proficiency in the ACGME general competencies <a  class="one" href="#" onClick="changetextclick(content[10])"><u><i>Learn more</i></u></a></font>';


//-----------------
var tss;
var iss =1; // intialized on Jul30,04.
var jss = 1;
var pss = Picture.length-1;
var pssnet = Picturenet.length-1;

var stop=0;
var flag=0;
var first=0;

var preLoad = new Array();
for (iss = 1; iss < pss+1; iss++){
preLoad[iss] = new Image();
preLoad[iss].src = Picture[iss];}

var preLoadnet = new Array();
for (iss = 1; iss < pssnet+1; iss++){
preLoadnet[iss] = new Image();
preLoadnet[iss].src = Picturenet[iss];}

/////////////////////////////////////////////////////////////
//	slide show function for IE --- Need not modify.
function runSlideShow(){
if (stop==0){
if (document.all || document.getElementById){
if(first == 0)
changetextclick1(content[11]);// for the middle layer.
first = 1;
if (flag==0) changetextagain1(content[12]);// for the right most layer.
document.images.PictureBox.style.filter="blendTrans(duration=2)";
document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox.filters.blendTrans.Apply();
if (document.getElementById) document.getElementById("CaptionBox1").innerHTML= Caption1[jss];
if (document.getElementById) document.getElementById("CaptionBox2").innerHTML= Caption2[jss];
if (document.all) document.images.PictureBox.filters.blendTrans.Play();
}
document.images.PictureBox.src = preLoad[jss].src; 

jss = jss + 1;
if (jss > pss) jss=1;
tss = setTimeout('runSlideShow()', SlideShowSpeed);
}
}
/////////////////////////////////////////////////////////////
//	slide show function for NETSCAPE --- Need not modify.
function runSlideShownet(){
if (stop==0){
if (document.layers || document.getElementById){
if(first == 0)
changetextclick1(content[11]);// for the middle layer.
first = 1;
if (flag==0) changetextagain1_net(content[99]);// for the right most layer.
document.d11_net.document.d21_net.document.images.PictureBox.src = preLoadnet[jss].src; 
if (document.getElementById) document.getElementById("CaptionBox1").innerHTML= Caption1[jss];
if (document.getElementById) document.getElementById("CaptionBox2").innerHTML= Caption2[jss];

jss = jss + 1;
if (jss > pssnet) jss=1;
tss = setTimeout('runSlideShownet()', SlideShowSpeed);
}
}}

///////////////////////////////////////////////////////////

function runSlideShownet_other(){
if (stop==0){
if (document.getElementById){
if(first == 0)
changetextclick1(content[11]);// for the middle layer.
first = 1;
if (flag==0) changetextagain1_net(content[12]);// for the right most layer.
if (document.getElementById) document.getElementById("CaptionBox1").innerHTML= Caption1[jss];
if (document.getElementById) document.getElementById("CaptionBox2").innerHTML= Caption2[jss];
}
document.images.PictureBox.src = preLoad[jss].src; 
jss = jss + 1;
if (jss > (pss)) jss=1;
tss = setTimeout('runSlideShownet_other()', SlideShowSpeed);
}
}

// END SLIDE SHOW SCRIPT.
/////////////////////////////////////////////////////////////////
/*
The whole content of the home page is displayed using Javascript and DHTML. The content to be displayed is stored 
in the content array, where each element of the array is used to display a section of data. (For eg. the faculty page
is stored in the content[80], similarly the data for the Hispanic center page is stored in the content[49].)

These content elements are used when the mouse is hovered over a link or a link is clicked. 
*/

//change the array below to the text associated with your links Expand or contract the array, depending on how many links you have
var content=new Array()
// content[0] for displaying the links when mouse hovered over the HOME link in the navigation panel.
//content[0]='<br><b><font face=arial size=2>Home</b></font><br><br><a class="one" a href="#" onClick="changetextagain(content[30])"><font face=arial size=2>DME Home</a></font><br><br><a class="one" href="JavaScript:onClick=changetextclick(content[72])"  onMouseOver="changetextagain(content[7])")"><font face=arial size=2>News and Events</a></font><br><br><a class="one" href="JavaScript:onClick=changetextagain(content[41])"> <font face=arial size=2>Related Sites</a></font><br><br><a class="one" href="dme_search.asp" target="blank" onMouseOver="changetextagain(content[7])"><font face=arial size=2>Search DME Web</a></font><br><br><a class="one" href="#"  onMouseOver="changetextagain(content[7])"><font face=arial size=2>Site Map</a></font><br><br><hr align=left width=100><br><a class="one" href="JavaScript:onClick=changetextclick(content[85])"  onMouseOver="changetextagain(content[7])")"><font face=arial size=2>Contact DME</a></font><br><br><a class="one" href="mailinglist.htm" target="blank" onMouseOver="changetextagain(content[7])")"><font face=arial size=2>Mailing List</a></font>'
// content[1] for displaying the links when mouse hovered over the EDUCATIONAL PROGRAMS link in the navigation panel.
content[1]='<br><b><font face=arial size=2>Educational Programs</b></font><br><br><a class="one" href="JavaScript:onClick=changetextagain(content[107])"><font face=arial size=2>Certificate Programs</a></font><br><br><a class="one" href="JavaScript:onClick=changetextagain(content[4])"><font face=arial size=2>Continuing Medical Education (CME)</a></font><br><br><a class="one" href="JavaScript:onClick=changetextagain(content[5])"><font face=arial size=2>Graduate Medical Education (GME)</a></font><br><br><a class="one" href="JavaScript:onClick=changetextagain(content[6])"> <font face=arial size=2>Master Of Health Professions Education (MHPE)</a></font><br><br><HR width = 100 align = left><br><a class="one" href="JavaScript:onClick=changetextagain(content[71])"><font face=arial size=2>DME Seminars</a></font><br><br><a class="one" href="JavaScript:onClick=changetextagain(content[113])"><font face=arial size=2>Traub-Byfield Lecture Series</a></font><br><br><a class="one" href="JavaScript:onClick=changetextagain(content[33])"><font face=arial size=2>Fellowships</a></font><br><br><a class="one" href="JavaScript:onClick=changetextagain(content[35])"> <font face=arial size=2>International Programs</a></font><br><br><a class="one" href="JavaScript:onClick=changetextagain(content[37])"> <font face=arial size=2>Medical Humanities</a></font><br><br><a class="one" href="JavaScript:onClick=changetextagain(content[39])"> <font face=arial size=2>Research Ethics</a></font>'
// content[2] for displaying the links when mouse hovered over the SERVICES & RESOURCES link in the navigation panel.
content[2]='<br><b><font face=arial size=2>Services & Resources</b><br><br></font> <a class="one" href="JavaScript:onClick=changetextagain(content[13])"><font face=arial size=2> Clinical Performance Center</a><br><br></font><a class="one" href="JavaScript:onClick=changetextagain(content[14])"><font face=arial size=2>Consulting</a></font><br><br><a class="one" href="JavaScript:onClick=changetextagain(content[104])"><font face=arial size=2>DME Alumni Community</a><br><br><a class="one" href="JavaScript:onClick=changetextagain(content[31])"><font face=arial size=2>DME Distance Education</a><br><br><a class="one" href="JavaScript:onClick=changetextagain(content[49])"><font face=arial size=2>Hispanic Center of Excellence</a></font><br><br><a class="one" href="JavaScript:onClick=changetextagain(content[15])"><font face=arial size=2>Library</a><br><br></font><a class="one" href="JavaScript:onClick=changetextagain(content[17])"><font face=arial size=2>Testing Services</a></font>'
// content[3] for displaying the links when mouse hovered over the PUBLICATIONS link in the navigation panel.
content[3]='<br><b><font face=arial size=2>Publications</b></font><br><br><font face=arial size=2><a class="one" href="JavaScript:onClick=changetextagain(content[25])">DME Bulletin</a><br><br><a class="one" href="JavaScript:onClick=changetextagain(content[24])">DME Annual Reports</a><br><br><a class="one" href="JavaScript:onClick=changetextagain(content[22])">Body Electric</a><br><br><a class="one" href="JavaScript:onClick=changetextagain(content[16])">Manual for Evaluating Teaching</a><br><br><a class="one" href="JavaScript:onClick=changetextagain(content[7])">Innovations in Medical Simulations</a></font>'
// content[4] for displaying the image of CME and the links below it when mouse hovered over EDUCATIONAL PROGRAMS > Continuing Medical Education.
content[4]='<img src="Pictures/cme_img.jpg" width="200" height="150" border="1" bordercolor=black><br><br>&nbsp;<b><I><font face=arial size=2 color="Green">Go to...</b></i><br><B><font face=arial size=1 color="Green">&nbsp; :: <a class="one" href="#"  onClick="changetextclick(content[8])">DME CME Programs</a></font><br></b>&nbsp;<b><font face=arial size=1 color="Green">&nbsp;:: <a class="one" href="http://cores33webs.mede.uic.edu/capp/public/" target="blank">UIC CME HomePage</a></font></b>'
// content[5] for displaying the image of GME and the links below it when mouse hovered over EDUCATIONAL PROGRAMS > Graduate Medical Education (GME).
content[5]='<img src="Pictures/gme_img.jpg" width="200" height="150" border="1" bordercolor=black><br><br><b><I><font face=arial size=2 color="Green">Go to...</b></i><br><b><font face=arial size=1 color="Green">&nbsp; :: <a class="one" href="#"  onClick="changetextclick(content[9])">GME Overview</a></font></b><br>&nbsp;<b><font face=arial size=1 color="Green">&nbsp;:: <a class="one" href="http://www.gme-core.org" target="blank">GME HomePage</a></font></B>'
// content[6] for displaying the image of MHPE and the links below it when mouse hovered over EDUCATIONAL PROGRAMS > Master Of Health Professions Education (MHPE).
content[6]='<img src="Pictures/mhpe_img.jpg" width="200" height="150" border="1" bordercolor=black><br><br>&nbsp;<b><I><font face=arial size=2 color="Green">Go to...</b></i><br><b><font face=arial size=1 color="Green">&nbsp; :: <a class="one" href="#"  onClick="changetextclick(content[10])">MHPE Overview</a></font></b><br>&nbsp;<b><font face=arial size=1 color="Green">&nbsp;:: <a class="one" href="http://www.uic.edu/com/mcme/mhpeweb" target="blank">MHPE HomePage</a></font></b>'
// content[107] for displaying the image of Certificate and the links below it when mouse hovered over EDUCATIONAL PROGRAMS > Certificate Programs.
content[107]='<img src="Pictures/certlink.gif" width="200" height="150" border="1" bordercolor=black><br><br>&nbsp;<b><I><font face=arial size=2 color="Green">Go to...</b></i><br>&nbsp;<b><font face=arial size=1 color="Green">&nbsp;:: <a class="one" href="http://www.uic-dme.org/certificate/index.html" target="self">Certificate Programs</a></font></b>'
// Blank content.
content[7]=''

//Overviews...
// CME Overview
content[8]="<font face=arial size=3><b>CME Overview:</b></font><font face=arial size=2><br><br> The Department of Medical Education participates in the development of many activities hosted by departments throughout the College of Medicine that are available for CME credit.&nbsp; You can search the listings for these activities by going to &quot;www.cme.uic.edu&quot; or by clicking &quot;UIC CME Homepage&quot; below the photo on the right. <br><br>The following additional activities which are currently offered or in development by DME have been or will be submitted for CME credit approval in the near future:<br><br> • DME Seminars (Medical Education) <br> • Medical Education Grand Rounds <br> • Prepare for Privacy (HIPAA Education) <br> • Emergency Preparedness and Response Training<br> • Teaching the GME Core Curriculum<br><br>For updated information about these opportunities email &quot;cme@uic-dme.org&quot;. <br><br>The University of Illinois at Chicago (UIC) College of Medicine is accredited by the Accreditation Council for Continuing Medical Education to sponsor continuing medical education for physicians.</p></font>"
// GME Overview
content[9]="<font face=arial size=3><b>GME Overview:</b></font><font face=arial size=2><br><br>We are happy to offer you an opportunity to complete this important part of your residency in an online format. You can logon to the UIC GME Core Curriculum anytime that is convenient for you from any computer with Internet access and a web browser. We hope you will find completing each of eleven course modules to be thought provoking and enjoyable. You will have the opportunity to engage in lively discussion with your peers and to explore topics that will have a day-to-day impact on your career in medicine. </font>"
// MHPE Overview
content[10]="<font face=arial size=3><b>MHPE Overview:</b></font><font face=arial size=2><br><br>Current economic and social indicators point to the need for educating leaders in the health professions who can manage change within their fields, overcome organizational barriers, and effectively direct the future of health care delivery systems. The purpose of the Master of Health Professions Education (MHPE) program is to provide the training necessary to produce effective leaders in health professions education. Accordingly, the program recruits health professionals who have, or are preparing for, educational leadership positions but who lack formal training in education and management.<br><br>Acknowledging a wide diversity in educational and professional backgrounds, the MHPE offers some flexibility for candidates to design a curriculum that fits their needs and interests. The program encourages the use of the professional's home institution as a laboratory for the application of practical educational and managerial concepts. The nontraditional format allows professionals, especially from out-of-state, to pursue their degrees while keeping full time jobs.<br><br>MHPE Features:<br><br>&nbsp;• Educational Leadership <br>&nbsp;• Non-Traditional Format <br>&nbsp;• Cross-Section of Health Professions <br>&nbsp;• Work-Study Curriculum<br>&nbsp;• Interdisciplinary Approach </font>"

// Message from Head(Dr.Sandlow) in the main page
// content[11]="<table><tr><td><br><IMG SRC='Pictures/ljs_010807c.jpg' WIDTH='96' HEIGHT='130' BORDER=0 ALT=''></td><td></td></tr></table><p align=left><font face=Arial size=2><b><font size=2>Greetings from the head: </font></b><br><br>Dear Colleagues:<br><br>A long standing tradition of our department has been our Monday evening wine and cheese reception at the annual meeting of the AAMC.  Once again we invite you to join us and enjoy the collegiality of this annual event.<br><br>This year we will hold our reception at the <b>Marriott Wardman Park Hotel in Washington on Monday evening, November 5, 2007, from 6:30-8:30 pm.</b>  Information on the specific suite will be available by visiting our booths at the IME exhibition.<br><br>DME continues to expand and improve its many programs like the Masters in Health Professions Education (MHPE), Distance Learning, Faculty Development, and various international activities.  Our Clinical Performance Center has evolved into a simulation center that is garnering much attention and will soon enjoy a new facility.  Please come and exchange information on your activities and ours together over a glass of wine.<br><br>What a wonderful opportunity to renew friendships, enjoy cameraderie, and good cheer.  We look forward to seeing you.<br><br>Leslie J. Sandlow, MD <br>Professor and Head<br><br><a class='one' href='JavaScript:onClick=changetextclick(content[105])' ><font face=arial size=2><u>DME Alumni Community</u></a></font><br><br><a class='one' href='JavaScript:onClick=changetextclick(content[103])'  onMouseOver='changetextagain(content[7])')'><font face=arial size=2><u>DME Mission Statement</u></a></font><br><br><a class='one' href='JavaScript:onClick=changetextclick(content[72])'  onMouseOver='changetextagain(content[7])')'><font face=arial size=2><u>DME News and Events</u></a></font><br><br><a class='one' href='dme_search.asp' target='_blank'><font face=arial size=2><u>DME Search</u></a></font><br><br><a class='one' href='JavaScript:onClick=changetextclick(content[85])'  onMouseOver='changetextagain(content[7])')'><font face=arial size=2><u>Contact DME</u></a></font><br><br><a class='one' href='mailinglist.htm' target='_blank'><font face=arial size=2><u>DME Mailing List</u></a></font>"

content[11]="<table><tr><td><br><IMG SRC='Pictures/ljs_010807c.jpg' WIDTH='96' HEIGHT='130' BORDER=0 ALT=''></td><td></td></tr></table><p align=left><font face=Arial size=2><b><font size=2>A special message from the head: </font></b><br><br>The Department of Medical Education (DME) is pleased to announce a new certificate program for clinical program directors.  This exciting new program will enhance the educational leadership and managerial skills of clinical program directors.  Please see the link below for more information.<br><br>The Department of Medical Education (DME) is a unit of the College of Medicine at the University of Illinois at Chicago. Established in 1959, it is nationally and internationally recognized for pioneering work in health professions education and research. The Department offers courses and programs to meet the needs of today's health professional, including graduate and continuing medical education.</font><font face=Arial size=2><br><br>The World Health Organization has designated DME as a collaborating center for education with emphasis on leadership development. National and international fellowships of interest to health professionals from all over the world are available in areas such as medical education, health systems research, and bioethics. <br><br>Leslie J. Sandlow, MD <br>Professor and Head<br><br><a class='one' href='JavaScript:onClick=changetextclick(content[105])' ><font face=arial size=2><u>DME Alumni Community</u></a></font><br><br><a class='one' href='JavaScript:onClick=changetextclick(content[103])'  onMouseOver='changetextagain(content[7])')'><font face=arial size=2><u>DME Mission Statement</u></a></font><br><br><a class='one' href='JavaScript:onClick=changetextclick(content[72])'  onMouseOver='changetextagain(content[7])')'><font face=arial size=2><u>DME News and Events</u></a></font><br><br><a class='one' href='dme_search.asp' target='_blank'><font face=arial size=2><u>DME Search</u></a></font><br><br><a class='one' href='JavaScript:onClick=changetextclick(content[85])'  onMouseOver='changetextagain(content[7])')'><font face=arial size=2><u>Contact DME</u></a></font><br><br><a class='one' href='mailinglist.htm' target='_blank'><font face=arial size=2><u>DME Mailing List</u></a></font><br><br><a class='one' href='http://www.uic-dme.org/certificate/index.html' target='_self'><font face=arial size=2><u>Certificate Programs</u></a></font><br><br>"
// Following content[11] is the normal text, this has been replaced temporarily with position announcment above
// content[11]="<table><tr><td><br><IMG SRC='Pictures/ljs_010807c.jpg' WIDTH='96' HEIGHT='130' BORDER=0 ALT=''></td><td></td></tr></table><p align=left><font face=Arial size=2><b><font size=2>A message from the head: </font></b><br><br>The Department of Medical Education (DME) is a unit of the College of Medicine at the University of Illinois at Chicago. Established in 1959, it is nationally and internationally recognized for pioneering work in health professions education and research. The Department offers courses and programs to meet the needs of today's health professional, including graduate and continuing medical education.</font><font face=Arial size=2><br><br>The World Health Organization has designated DME as a collaborating center for education with emphasis on leadership development. National and international fellowships of interest to health professionals from all over the world are available in areas such as medical education, health systems research, and bioethics. <br><br>Leslie J. Sandlow, MD <br>Professor and Head<br><br><a class='one' href='JavaScript:onClick=changetextclick(content[106])' ><font face=arial size=2><u>DME Faculty Position Search</u></a></font><br><br><a class='one' href='JavaScript:onClick=changetextclick(content[105])' ><font face=arial size=2><u>DME Alumni Community</u></a></font><br><br><a class='one' href='JavaScript:onClick=changetextclick(content[103])'  onMouseOver='changetextagain(content[7])')'><font face=arial size=2><u>DME Mission Statement</u></a></font><br><br><a class='one' href='JavaScript:onClick=changetextclick(content[72])'  onMouseOver='changetextagain(content[7])')'><font face=arial size=2><u>DME News and Events</u></a></font><br><br><a class='one' href='dme_search.asp' target='_blank'><font face=arial size=2><u>DME Search</u></a></font><br><br><a class='one' href='JavaScript:onClick=changetextclick(content[85])'  onMouseOver='changetextagain(content[7])')'><font face=arial size=2><u>Contact DME</u></a></font><br><br><a class='one' href='mailinglist.htm' target='_blank'><font face=arial size=2><u>DME Mailing List</u></a></font><br><br>"

// Positioning of the caption box for the slide show.
content[12]='<table><tr><td id="CaptionBox1" class=Caption></td></tr><tr><td width=350 height=100> <img src="Pictures/newdoctor.jpg" name=PictureBox border=1 width=180 height=100></td></tr><tr><td id=CaptionBox2 class=Caption></td></tr> </table>'
// Continued in content[99]

content[13]='<img src="Pictures/cpc.jpe" width="200" height="150" border="1" bordercolor=black><br><br>&nbsp;<b><I><font face=arial size=2 color="Green">Go to...</b></i><br><b><font face=arial size=1 color="Green">&nbsp; :: <a class="one" href="#"  onClick="changetextclick(content[18])">CPC Overview</a></font></b><br>&nbsp;<b><font face=arial size=1 color="Green">&nbsp;:: <a class="one" href="http://www.uic-cpc.com/" target="blank">CPC HomePage</a></font></b>'
content[14]='<img src="Pictures/ec4554-001.jpg" width="200" height="150" border="1" bordercolor=black><br><br>&nbsp;<b><I><font face=arial size=2 color="Green">Go to...</b></i><br><b><font face=arial size=1 color="Green">&nbsp; :: <a class="one" href="#"  onClick="changetextclick(content[20])">Consulting</a></font></b>'
content[15]='<img src="Pictures/AA039598.jpg" width="200" height="150" border="1" bordercolor=black><br><br>&nbsp;<b><I><font face=arial size=2 color="Green">Go to...</b></i><br><b><font face=arial size=1 color="Green">&nbsp; :: <a class="one" href="#"  onClick="changetextclick(content[21])">About Sajid Memorial Library</a></font></b><br>&nbsp;<b><font face=arial size=1 color="Green">&nbsp;:: <a class="one" href="http://www.uic.edu/htbin/wdb/wdb.cgi/meded_citation/citeq/form" target="blank">Search the library database</a></font></b>'
content[16]='<p align=left><font face=arial size=2>The overall purpose of this manual is to provide comprehensive overview of the process of evaluating teaching at the University of Illinois College of Medicine.  Its specific purposes include providing guidelines and forms for evaluation and documentation of faculty member\'s teaching efforts in a variety of areas, while, at the same time, meeting University informational requirements for Promotion and Tenure.<br><br><b><I><font face=arial size=2 color="Green">Go to...</b></i><br><b><font face=arial size=1 color="Green">:: <a class="one" onClick="changetextclick(content[29])" href="#">More about the Manual</a><br>:: <a class="one" href="http://www.uic.edu/com/mcme/teaching/COMTEACH.pdf" target="blank">Open Manual</a></font></b>'
content[17]='<img src="Pictures/868107-001.jpg" width="200" height="150" border="1" bordercolor=black><br><br>&nbsp;<b><I><font face=arial size=2 color="Green">Go to...</b></i><br><b><font face=arial size=1 color="Green">&nbsp;:: <a class="one" href="#"  onClick="changetextclick(content[19])">Testing Services Overview</a></font></b>'

//Overviews...
content[18]="<font face=arial size=3><b>CPC Overview:</b></font><font face=arial size=2><br> The Clinical Performance Center at UIC helps educators in the health professions improve clinical performance by using simulated clinical encounters for <br><br>&nbsp;• Training <br>&nbsp;• Assessment <br>&nbsp;• Quality improvement <br>&nbsp;• Research.<br><br>Simulated clinical encounters are especially powerful for teaching and assessing communication and interpersonal skills, attitudes, and procedural skills.<br><br>Standardized patients in these encounters are actors carefully trained to portray patients with specified histories and physical findings. These portrayals are so realistic and consistent that skilled clinicians cannot differentiate them from actual patients. When appropriate we recruit real patients (non-actors) with required physical findings and train them for standardized encounters. Encounters usually include a checklist, rating scale or other mechanism for providing feedback or assessing the participant's performance. <br>In addition to standardized patients, the Clinical Performance Center has a team of practical instructors who teach small groups of participants how to carry out various physical examination maneuvers. Practical instructors are trained to demonstrate physical exam techniques on their own bodies; students practice these techniques on the instructor and receive immediate feedback. <br><br>Simulated clinical encounters are used in medicine, nursing, pharmacy, dentistry, and many other health professions. Learners at any stage - from students to practicing clinicians - can benefit from these experiences.</font>" 

content[19]="<font face=arial size=3><b>Testing Services:</b></font><font face=arial size=2><br><br> <%response.write(date())%> <br>Testing Services at the University of Illinois—Chicago, College of Medicine is responsible for many areas of assessment.  Among these are the processes of Progress Exam test production, administration and scoring for the first (M-1) and second (M-2) year medical students.  The Blueprints pages show the examination components, number of items per examination, and examination dates.  Those pages are currently under construction and are not yet available. </font>"

content[20]="<font face=arial size=3><b>Consultations</b></font><font face=arial size=2><br> </font>"
content[21]="<font face=arial size=3><b>Abdul W. Sajid Memorial Library</b></font><font face=arial size=2><br><br> The library contains over 4000 reprints addressing health professions education issues. These reprints, taken from a variety of journals, books, newslettes, and conferences, are organized in an electronic database which can now be accessed online.</font>"
content[22]='<p align=left><font face=arial size=2>This student-edited journal is published annually by the Department of Medical Education at the University of Illinois College of Medicine—Chicago.  It features writing and visual arts created by medical students, staff, and faculty at the college and associated institutions.</font><br><br>&nbsp;<b><I><font face=arial size=2 color="Green">Go to...</font></b></i><br><font face=arial size=1 color="Green">&nbsp;:: <a class="one" href="http://www.uic.edu/com/mcme/body/start.htm" target="blank"><b>Body Electric Home Page</a></font></b>'
content[23]='<br><b><font face=arial size=2>Research Areas</b></font><br><br><a class="one" a href="recentgrants.html" onMouseOver="changetextagain(content[7])"><font face=arial size=2>Recent Grants</a></font>'
content[24]='<font face=arial size=2>Each edition of the DME Annual Report contains a variety of information about the department, our program areas, our faculty and their activities. Sections include: <ul><li>Report from the Department Head </li><li>Mission and Goals </li> <li>The Year in Review </li><li>National/International Professional Activities </li><li>Externally Funded Research Projects </li><li>Faculty Publications </li> <li>Professional Presentations</li></ul></font><br><b><I><font face=arial size=2 color="Green">Go to...</b></i><br><b><font face=arial size=1 color="Green">:: <a class="one" href="documents/ar07.pdf" target="blank"><big>Annual Report 2006-2007</big><font></a></b><br><b><font face=arial size=1 color="Green">:: <a class="one" href="#" onClick="changetextclick(content[43])">Select / Search Archives</font></a></b></font>'
content[25]='<font face=arial size=2>The DME Bulletin is published <br> tri-annually. Each issue contains scholarly articles on timely topics of interest to those engaged in medical education. In addition, each issue includes updates on the current activities of each of the following areas within the Department of Medical Education: curriculum development, competence assessment, program evaluation, educational research, clinical decision making, medical informatics, and medical humanities. Activities within the educational and international programs are reported. One issue each year is devoted to the medical humanities discipline.</font><br><br><b><I><font face=arial size=2 color="Green">Go to...</b></i><br><b><font face=arial size=1 color="Green">:: <a class="one" href="javascript:onClick=changetextclick(content[73])">Select Bulletin</a></font></b><br><font face=arial size=1 color="Green">:: <a class="one" href="bulletins/dme_bulletin_search.asp" target="blank"><b>Search Bulletins</a></font></b>'
content[26]='<br><b><font face=arial size=2>Faculty & Staff</b></font><br><br><a class="one" href="javascript:onClick=changetextclick(content[80])" onMouseOver="changetextagain(content[27])"><font face=arial size=2>Index</a></font><br><br><a class="one" href="#" onMouseOver="changetextagain(content[28])"><font face=arial size=2>Directory</a></font>'
content[27]=''
content[28]='<img src="Pictures/LS002044_dir.jpg" width="200" height="150" border="1" bordercolor=black><font face=arial size=1>:: <a class="one" href="javascript:onClick=changetextclick(content[86])"><br><br>Directory</a></font>'
content[29]='<font face=arial size=3><b>Manual for Evaluating Teaching and Developing Teaching Portfolio</b></font><br><font face=arial size=2><br>The overall purpose of this manual is to provide comprehensive overview of the process of evaluating teaching at the University of Illinois College of Medicine.  Its specific purposes include providing guidelines and forms for evaluation and documentation of faculty members\' teaching efforts in a variety of areas, while, at the same time, meeting University informational requirements for Promotion and Tenure.<p>In the past, the P&T process primarily emphasized faculty research and scholarly activity.  But over the last 10 years, with initiatives encouraged by the College Executive Committee, teaching has been given increasing consideration for academic promotion, and a mechanism better to address teaching contribution was needed.  The shift included addition of several new categories for documentation, among them: Instructional Innovations, Student Ratings of Instruction, Peer Ratings of Instruction (including both observation of teaching activities and instructional document review), Instructional Self-Review, and Information from Former Students.<p>Consequently the Academic Dean constituted a College Committee on Teaching charged with developing a reliable and comprehensive system to document teaching.  Committee members Gerald Bartlett, Daniel Bloomfield, Richard Foley, Mark Gelula, Joseph Levenstein, Michael Seefeldt, James Whalen, and Annette Yonke (Chair) represented various levels of expertise and drew from all four COM sites.  After work spanning several academic terms the original Evaluating Teaching in the College of Medicine: A Handbook, edited by Seefeldt and  Yonke was published in 1995.  It was based on the portfolio approach: assuming that systematically assembled "portfolios with fuller data may provide better evidence of excellence in teaching" and better support teaching\'s significance in decisions of promotion and tenure.<p>The Handbook fulfilled its avowed intention and was widely shared nationally and internationally, but  its implementation throughout the College both yielded new ideas and suggested modifications.   Meetings with P&T Committee chairs and members, suggestions from deans overseeing the process and from curriculum committees using the material, and reactions of faculty candidates and their administrators contributed.  This resultant edition fine-tunes some options, adds and alters others, and emphasizes the idea of long-term assembly of a teaching portfolio, as implied in the new title "Manual for Evaluating Teaching and Developing a Teaching Portfolio in the College of Medicine."  With these improvements, the manual will continue to elucidate the importance of teaching at UICOM generally, and, specifically, support a logical balance between the scholarships of teaching and research as criteria for promotion and tenure.<p>The Manual contains both explanations of the process for documenting and evaluating teaching and a wide array of forms for actual use in building a comprehensive portfolio.  It elaborates on criteria, establishes time lines for the P&T process, and provides directions on how to collect and submit data for teaching activities.  But it may also be used for purposes other than P&T, such as annual reviews, formative teaching evaluation and feedback, and faculty development. A rationale for emphasizing excellence in teaching - introducing Part I - underscores the College\'s strong commitment to promoting effective teaching.</font>'
//content[29]='<img src="Pictures/LS002044_dir.jpg" width="200" height="150" border="1" bordercolor=black><font face=arial size=1><a class="one" href="http://www.uic.edu/com/cpc/" target="blank">:: Recent Activities</a></font>'
content[30]='<img src="Pictures/cme5.jpe" border="1" bordercolor=black><br>&nbsp;<font face=arial size=1>:: <a class="one" href="http://www.uic.edu/com/mcme/index.htm">Old Website</a><br>&nbsp;:: <a class="one" href="http://cores33webs.mede.uic.edu/dme/warp/index.html">Current Website</a></font>'
content[31]='<img src="Pictures/868107-001.jpg" width="200" height="150" border="1" bordercolor=black><br><br>&nbsp;<b><I><font face=arial size=2 color="Green">Go to...</b></i><br><b><font face=arial size=1 color="Green">&nbsp;:: <a class="one" href="#"  onClick="changetextclick(content[32])">About DME Distance Education</a><br>&nbsp;:: <a class="one" href="#"  onClick="changetextclick(content[45])">Distance Education Programs</a><br>&nbsp;:: <a class="one" href="#" onClick="changetextclick(content[44])">Faculty Resources</a><br>&nbsp;:: <a class="one" href="#"  onClick="changetextclick(content[96])">Student Resources</a><br>&nbsp;:: <a class="one" href="#"  onClick="changetextclick(content[46])">Online Conference Center</a><br>&nbsp;:: <a class="one" href="#"  onClick="changetextclick(content[47])">Distance Education Staff</a><br>&nbsp;:: <a class="one" href="#"  onClick="changetextclick(content[48])">Help Desk</a></font></b>'

content[32]="<font face=arial size=3><b>About DME Distance Education</b></font><font face=arial size=2><br> </font>"
content[33]='<img src="Pictures/868107-001.jpg" width="200" height="150" border="1" bordercolor=black><br><br>&nbsp;<b><I><font face=arial size=2 color="Green">Go to...</b></i><br><b><font face=arial size=1 color="Green">&nbsp;:: <a class="one" href="#"  onClick="changetextclick(content[34])">Short-term Fellowships</a></font></b>'
content[34]='<font face=arial size=3><b>Short-Term Fellowships</b></font><font face=arial size=2><p>The short-term Fellowship program is intended to provide health professionals an opportunity to engage in intensive study or research on a problem of their own choice. Those who are accepted for the program are expected to arrive with a set of project goals that can usually be achieved within three months or less. Time extensions are negotiable. Subsequently, educational research, development, or study activities will be formulated to address each project goal. Each fellowship project is supervised by one or more DME faculty who, as an advisor(s) offers his or her educational expertise and guidance.</p> <p>Four selection criteria exist for the Short-Term Fellowship Program: <ol> <li>Participation in the program is restricted to health professionals who have, or expect to have, major educational responsibilities (e.g., administration, evaluation, instruction) at an educational institution, professional association, or related setting. <br><br><li>Candidates must clearly describe the nature and scope of the educational problem that will form the basis for their Fellowship experience. <br><br><li>Candidates are expected to have career goals that emphasize some aspect of health professions education. <br><br><li>Candidates are expected to present evidence of proficiency in English. </ol> Admission to Short-Term Fellowship Program is possible throughout the calendar year. Candidates will be notified about the admission decision within one month of the date of receipt of their <a href="http://www.uic.edu/com/mcme/stappln.htm" target=blank><u>application materials</u></a>. Tuition is $1500 per month.</font>'
content[35]='<img src="Pictures/868107-001.jpg" width="200" height="150" border="1" bordercolor=black><br><br>&nbsp;<b><I><font face=arial size=2 color="Green">Go to...</b></i><br><b><font face=arial size=1 color="Green">&nbsp;:: <a class="one" href="#"  onClick="changetextclick(content[36])">International Programs</a></font></b>'
//content[36]='<font face=arial size=3><b>International Programs</b></font><font face=arial size=2><p>The purpose of the DME\'s International Programs is to improve health professions education and health care delivery worldwide. DME is a World Health Organization collaborating center for education and health manpower development. The International Programs area offers Short-Term Fellowships Medical Specialty Training, a Combined MHPE-Residency Program, and an on-site Master of Health Professions Education (MHPE) program. International students compose almost 40 percent of MHPE students. They bring their experience from around the world to the classroom and other activities, adding a broader perspective to the program than the curriculum alone can offer.</p> <p><FONT SIZE=+1><B><I>Medical Education Fellowships</FONT></B></I><p>The <A HREF="stfellow.htm"><U>short-term fellowship</U></A> program is specifically designed for health professionals who have specific educational problems or issues to explore. A concentrated program of individualized research and consultation with DME faculty members is arranged for each participant. Duration of the program is one to six months. <p>Short-term fellows can take courses or independent studies in the following areas:</p><TABLE BORDER=0 CELLPADDING=0><TR><TD><UL><LI><I> Clinical decision making</I></LI><LI><I> Competency assessment</I></LI><LI><I> Computing applications</I></LI><LI><I> Curriculum planning</I></LI><LI><I> Educational research</I></LI><LI><I> Health care financing</I></LI><LI><I> Instructional methods</I></LI><LI><I> Leadership and organization</I></LI></UL></TD><TD><UL><LI><I> Medical humanities</I></LI><LI><I> Medical informatics</I></LI><LI><I> Primary care education</I></LI><LI><I> Program evaluation</I></LI><LI><I> Quality management and improvement</I></LI><LI><I> Statistical Data Analysis</I></LI><LI><I> Test construction</I></LI></TD></TR></TABLE><p><FONT SIZE=+1><B><I>Medical Specialty Training</FONT></B></I><p>This program is specifically designed for physicians who want to combine study in health professions education with direct patient care in their specialty areas. The clinical work is arranged at UIC by the Department of Medical Education, and is dependent on the candidate\'s ability to qualify for a 120-day medical license issued by the State of Illinois.</p><p><FONT SIZE=+1><B><I>Combined MHPE-Pediatrics Residency</FONT></B></I> <p>This four-year combined residency-MHPE program, The International Educational Partnership in Pediatrics (IEPP), is offered to international graduate physicians interested in pediatrics and medical education. It provides the required clinical training for certification by the American Board of Pediatrics and graduate work leading to the MHPE degree. The goal of the IEPP is to provide a clinical, scientific, and educational background to pediatricians who want to pursue academic or community health leadership positions in their home countries. Candidates are selected jointly by the UIC College of Medicine and health leaders in sponsoring countries.</p><p><FONT SIZE=+1><B><I>On-Site MHPE</FONT></B></I> <p>International Programs also offers the MHPE on site at institutions worldwide. Successful programs built around a modular format were completed at the Faculty of Medicine Suez Canal University in Ismalia Egypt (1988-89), and at the Beijing Medical University for physician leaders from throughout the People\'s Republic of China (1991-92). An on-site MHPE program offered to educational leaders from six medical schools in Brazil began in 1998. Planning continues with other international institutions interested in offering the MHPE program in their countries.</p> <p><I>For further information or application, please contact:</I><br> <a href=mailto:Ara.Tekian@uic.edu><U>Ara Tekian</U></A>, PhD, MHPE, Head International Programs</font>'
content[36]='<font face=arial size=3><b>International Programs</b></font><font face=arial size=2><p>The purpose of the DME\'s International Programs is to improve health professions education and health care delivery worldwide. DME is a World Health Organization collaborating center for education and health manpower development. The International Programs area offers Short-Term Fellowships Medical Specialty Training, a Combined MHPE-Residency Program, and an on-site Master of Health Professions Education (MHPE) program. International students compose almost 40 percent of MHPE students. They bring their experience from around the world to the classroom and other activities, adding a broader perspective to the program than the curriculum alone can offer.</p> <p align="right"> <a class="one" href="international.html" target="blank"  onMouseOver="changetextagain(content[35])"><i>...Learn more</i></a></font>'
content[37]='<img src="Pictures/868107-001.jpg" width="200" height="150" border="1" bordercolor=black><br><br>&nbsp;<b><I><font face=arial size=2 color="Green">Go to...</b></i><br></b><font face=arial size=1 color="Green">&nbsp;:: <a class="one" href="#"  onClick="changetextclick(content[38])">Medical Humanities</a></font></b>'
content[38]='<font face=arial size=3><b>Medical Humanities</b></font><font face=arial size=2><br><br>The Medical Humanities Program (MHP) is an interdisciplinary group of faculty who use their training in communication, ethics, history, literature, and philosophy to help describe and interpret the theory and practice of medicine. The Medical Humanities Program traces its roots to the Humanistic Studies faculty who in 1978 began to develop humanities instruction for the University of Illinois health sciences center. The Humanistic Studies faculty then joined the Center for Educational Development which itself was incorporated as the Department of Medical Education in the College of Medicine in 1988. <p align="right"> <a class="one" href="med_human.html" target="blank" onMouseOver="changetextagain(content[37])"><i>...Learn more</i></a></font>'
content[39]='<img src="Pictures/868107-001.jpg" width="200" height="150" border="1" bordercolor=black><br><br><b><I><font face=arial size=2 color="Green">Go to...</b></i><br><b><font face=arial size=1 Color="Green">:: <a class="one" href="#"  onClick="changetextclick(content[40])">Research Ethics</a><br>:: <a class="one" href="http://www.uic.edu/com/mcme/ethics/Home.html"  onClick="blank">Research Ethics Homepage</a></font></b>'
content[40]='<font face=arial size=3><b>Research Ethics</b></font><font face=arial size=2><br><p>The system charged with overseeing the ethics of research with human beings may be at a breaking point. Recent federal investigations have led to the suspension of research with human beings at major universities in the United States. Yes it is not clear that increased oversight can by itself ensure protection and equity in this kind of research. There are, for example, open questions about how the committees charged with oversight - Institutional Review Boards or I.R.B.s - actually work and with what effect. Moreover, these questions come at a particularly crucial moment in scientific history. The frontiers of medicine involve experimentation that is both complex and far-reaching in its effect.are I.R.B.s prepared to scrutinize these kinds of experiments? Are I.R.B.s equipped to identify the relevant ethical and social dimensions of this research? This conference will identify key problems that face I.R.B.s, especially questions of genetic research that will continue to test these oversight committees for the foreseeable future.<p align="right"><i><a class="one" href="researchethics.html" target="blank" onMouseOver="changetextagain(content[39])">... Learn more</a></i></font>'
content[41]='<img src="Pictures/868107-001.jpg" width="200" height="150" border="1" bordercolor=black><br>&nbsp;<font face=arial size=1>:: <a class="one" href="http://www.uic.edu" target="blank">UIC Home</a></font><br>&nbsp;<font face=arial size=1>:: <a class="one" href="http://www.uic.edu/depts/mcam/index2.html" target="blank">UIC College of Medicine</a></font>'
content[42]="<font face=arial size=3><b>Related Sites</b></font><font face=arial size=2><br> </font>"
content[43]='<font face=arial size=3><b>DME Annual Reports</b></font><BR><BR><table width="100%" border=0><tr><td><font face=arial size=2> <A class="one" HREF="Report95-96/index.html" target="blank">Annual Report 1995-96</A></font></td></tr><tr><td><font face=arial size=2> <A class="one" HREF="Report96-97/index.html"  target="blank">Annual Report 1996-97</font></a></td></tr> <tr><td><font face=arial size=2> <A class="one"  HREF="Report97-98/index.html" target="blank">Annual Report 1997-98</a></font></td></tr><tr><td><font face=arial size=2> <A class="one"  HREF="Report-02/head_report.html" target="blank">Annual Report 2000-02</a></font></td></tr><tr><td><font face=arial size=2> <A class="one"  HREF="Report-03/head_report.html" target="blank">Annual Report 2002-03</a></font></td></tr><tr><td><font face=arial size=2> <a class="one" href="documents/bar06.pdf" target="blank">Biannual Report 2004-06</a></font></td></tr><tr><td><font face=arial size=2> <a class="one" href="documents/ar07.pdf" target="blank">Annual Report 2006-07</a></font></td></tr><tr><td><font face=arial size=2> &nbsp;</font></td></tr><tr><td><font face=arial size=2> <A class="one"  HREF="dme_report_search.asp" target="blank">Search Annual Reports</a></font></td></tr></table>'
content[44]='<font face=arial size=3><b>Faculty Resources</b></font><BR><BR><table width="100%" border=0><tr><td><font face=arial size=2> <a class="one" href="javascript:changetextclick(content[63])" onMouseOver="changetextagain(content[31])">ACCC erooms</A></font></td></tr><tr><td><font face=arial size=2> <a class="one" href="javascript:changetextclick(content[64])" onMouseOver="changetextagain(content[31])">Audio & Video Recording</a></font></td></tr> <tr><td><font face=arial size=2> <a class="one" href="javascript:changetextclick(content[65])" onMouseOver="changetextagain(content[31])">BlackBoard</a></font></td></tr><tr><td><font face=arial size=2> <a class="one" href="javascript:changetextclick(content[62])" onMouseOver="changetextagain(content[31])">DME Online Conference Center</a></font></td></tr><tr><td><font face=arial size=2> <a class="one" href="javascript:changetextclick(content[66])" onMouseOver="changetextagain(content[31])">Flash</a></font></td></tr><tr><td><font face=arial size=2> <a class="one" href="javascript:changetextclick(content[67])" onMouseOver="changetextagain(content[31])">ltlTV</a></font></td></tr><tr><td><font face=arial size=2><a class="one" href="javascript:changetextclick(content[68])" onMouseOver="changetextagain(content[31])">Producer</a></font></td></tr><tr><td><font face=arial size=2><a class="one" href="javascript:changetextclick(content[69])" onMouseOver="changetextagain(content[31])">RealMedia</a></font></td></tr><tr><td><font face=arial size=2><a class="one" href="javascript:changetextclick(content[70])" onMouseOver="changetextagain(content[31])">WebBoard</a></font></td></tr></table>' 
//'<font face=arial size=3><b>Faculty Resources</b></font><font face=arial size=2><ul><li><a class="one" href="#" onClick="changetextclick(content[8])" onMouseOver="changetextagain(content[31])">ACCC erooms</a><li><a class="one" href="#" onClick="changetextclick(content[9])" onMouseOver="changetextagain(content[31])">Audio & Video Recording</a><li><a class="one" href="#" onClick="changetextclick(content[8])" onMouseOver="changetextagain(content[31])">Black Board</a><li><a class="one" href="#" onClick="changetextclick(content[10])" onMouseOver="changetextagain(content[31])">DME Online Conference Center</a><li><a class="one" href="#" onClick="changetextclick(content[8])" onMouseOver="changetextagain(content[31])">Flash</a><li><a class="one" href="#" onClick="changetextclick(content[8])" onMouseOver="changetextagain(content[31])">Producer</a><li><a class="one" href="#" onClick="changetextclick(content[8])" onMouseOver="changetextagain(content[31])">Real Player</a><li><a class="one" href="#" onClick="changetextclick(content[8])" onMouseOver="changetextagain(content[31])">Web Board</a></ul></font>'
content[45]='<font face=arial size=3><b>Distance Education Programs</b></font><BR><BR><table width="100%" border=0><tr><td><font face=arial size=2> <a class="one" href="http://www.uic.edu/classes/dme/cme/" target="blank" onMouseOver="changetextagain(content[31])">CME-Online</A></font></td></tr><tr><td><font face=arial size=2> <a class="one" href="http://cores33webs.mede.uic.edu/gme/R2portal/Home.html" target="blank" onMouseOver="changetextagain(content[31])">GME-Online</a></font></td></tr> <tr><td><font face=arial size=2> <a class="one" href="http://www.uic.edu/classes/dme/cme/hipaa/" target="blank" onMouseOver="changetextagain(content[31])">HIPAA-Online</a></font></td></tr><tr><td><font face=arial size=2> <a class="one" href="http://www.illinoisruralhealth.net" target="blank" onMouseOver="changetextagain(content[31])">Illinois Rural Health Network</a></font></td></tr><tr><td><font face=arial size=2> <a class="one" href="http://www.uic.edu/com/mcme/mhpeweb/" target="blank" onMouseOver="changetextagain(content[31])">MHPE-Online</a></font></td></tr><tr><td><font face=arial size=2> <a class="one" href="http://cores33webs.mede.uic.edu/ortho/orthoarchives/default.htm" target="blank" onMouseOver="changetextagain(content[31])">UICortho</a></font></td></tr><tr><td><font face=arial size=2><a class="one" href="http://cores33webs.mede.uic.edu/UICsleep/index.htm" target="blank" onMouseOver="changetextagain(content[31])">UICsleep</a></font></td></tr></table>'
content[46]='<font face=arial size=3><b>Online Conference Center</b></font><font face=arial size=2><br><br><br><br><a class=one href="http://128.248.74.210" target="blank">Join a DME online conference</a></font>'
content[47]='<font face=arial size=3><b>Distance Education Staff</b></font><font face=arial size=2><br> </font>'
content[48]='<font face=arial size=3><b>Help Desk</b></font><font face=arial size=2><br> <p>For online support</p><p>Email: <a href="mailto:dme-online@uic.edu">dme-online@uic.edu</a><br>Phone: 877-DME-ONLN (1-877-363-6656)<br><br></p><p>Mailing Address</p><p>UIC College of Medicine<br>Department of Medical Education MC 991<br>820 South Wood Street, Rm. 363<br>Chicago, IL 60612</p><p>Facsimile:312-996-1962 <br></p></font>'

//HISPANIC CENTER.
content[49]='<img src="Pictures/hispanic.jpg" width="200" height="150" border="1" bordercolor=black><br><br>&nbsp;<b><I><font face=arial size=2 color="Green">Go to...</b></i><br><b><font face=arial size=1 color="Green">&nbsp;:: <a class="one" href="#"  onClick="changetextclick(content[50])">About the Hispanic Center</a><br>&nbsp;:: <a class="one" href="#"  onClick="changetextclick(content[51])">History</a><br>&nbsp;:: <a class="one" href="#" onClick="changetextclick(content[52])">Programs</a><br>&nbsp;:: <a class="one" href="#"  onClick="changetextclick(content[53])">Hispanic Center Staff</a><br>&nbsp;:: <a class="one" href="#"  onClick="changetextclick(content[54])">Contact Information</a><br>&nbsp;:: <a class="one" href="http://tigger.uic.edu/depts/mcam/hcoe/index.htm" target="blank">Hispanic Center Home Page</a></font></B>'
	//SubMenu.
	content[50]='<font face=arial size=3><b>About the Hispanic Center</b></font><font face=arial size=2><p><b><font size=3>M</font>ission</b><br><br>The mission of the Hispanic Center of Excellence is to increase the capacity of College of Medicine to admit and graduate a greater number of Latino physicians; to promote the recruitment and development of Latino and other minority faculty; to foster faculty and student research on minority health issues; and to expand curricular opportunities that address the health care needs of underserved minority communities.</p> <p><b><font size=3>G</font>oals</B><ul><li>Increase the admissions of Latino students at the UIC-College of Medicine<li>Provide Latino students research opportunities on Latino health related issue<li>Introduce and expose students to Latino medical health issues and needs<li>Enhance Latino student performance in medical education</p> </font>'
	content[51]='<font face=arial size=3><b>History</b></font><font face=arial size=2><p>The U.S. Bureau of census projects that, in the year 2005, there will be 36 million Latinos in the U.S., or 13% of the total population, making them the largest minority group in the nation. Currently the Latino population is approximately 30 million or 11% of the total U.S. population.</p> <p>Although Latinos represent the fastest growing segment of the population, the number of Latino physicians in this country is disproportionately low. Hispanics make up 11 percent of the U.S. population, but only 4 percent of doctors.</p> <p>The Hispanic Center of Excellence (HCOE) at UICs College of Medicine is part of a national initiative from the Department of Health and Human Services to address critical issues in health workforce. The Center is one of ten Hispanic Centers of Excellence in the country, and the only one in the Midwest (the other centers are located in Arizona, New Mexico, Texas, New Jersey, New York, and Puerto Rico). The HCOEs focus their efforts on Hispanic students and faculty. In 1991, the University of Illinois at Chicago-College of Medicine received a grant to establish the Hispanic Center of Excellence in the Midwest. UIC-College of Medicine has gained national recognition for its recruitment and graduation of underrepresented students in the medical profession.</ul></font>'
	content[52]='<font face=arial size=3><b>Programs</b></font><font face=arial size=2><p>The Hispanic Center of Excellence sponsors a series of programs for Latino students deigned to enhance their educational experience. Click the link below to learn more about each program.</p> <ul><li><b><a class="one" href="javascript:changetextclick(content[55])" onMouseOver="changetextagain(content[49])">Advising</a><li><a class="one" href="javascript:changetextclick(content[56])" onMouseOver="changetextagain(content[49])">Eschucha! Network</a><li><a class="one" href="javascript:changetextclick(content[57])" onMouseOver="changetextagain(content[49])">Faculty Fellowship Program</a><li><a class="one" href="javascript:changetextclick(content[58])" onMouseOver="changetextagain(content[49])">Leadership Development Program</a><li><a class="one" href="javascript:changetextclick(content[59])" onMouseOver="changetextagain(content[49])">Summer Medical Student Research Fellowship Program</a><li><a class="one" href="javascript:changetextclick(content[60])" onMouseOver="changetextagain(content[49])">United States Medical Licensing Exam Review Step-1 </a><li><a class="one" href="javascript:changetextclick(content[61])" onMouseOver="changetextagain(content[49])">Urban Medicine & Cultural Competence Courses</a></b></ul></font>'
	content[53]='<font face=arial size=3><b>Hispanic Center Staff</b></font><font face=arial size=2><br> </font><table width="300" cellspacing="0" cellpadding="0"><tr><td align=left><br><font size=2 face=arial>Jorge A. Girotti, PhD<br><font size=1>Associate Dean and Director, Special Curricular Programs<br>Director, Medical College Admissions<br>Director, Hispanic Center of Excellence<br><a href="mailto:jorgeg@uic.edu">jorgeg@uic.edu</a></font></font></td></tr> <tr><td align=left><br><font size=2 face=arial>Pilar C. Bautista, MBA<br><font size=1>Associate Director<br>Special Curricular Programs, & Hispanic Center of Excellence<br><a href="mailto:pilarb@uic.edu">pilarb@uic.edu</a></font></font></td></tr> <tr><td align=left><br><font size=2 face=arial>Paula Melissa Hernandez<br><font size=1>Project Coordinator<br>Special Curricular Programs, & Hispanic Center of Excellence<br><a href="mailto:pmhern@uic.edu">pmhern@uic.edu</a><br>Office hours for student appointments: Wednesday 10:00am - 4:00pm</font></font></td></tr> <tr><td align=left><br><font size=2 face=arial>Christina Terrazas<br><font size=1>Information Research Specialist<br>Special Curricular Programs, & Hispanic Center of Excellence<br><a href="mailto:cterra2@uic.edu">cterra2@uic.edu</a></font></font></td></tr><tr><td align=left><br><font size=2 face=arial>Socorro Herrera<br><font size=1>Office Assistant<br>Special Curricular Programs, & Hispanic Center of Excellence<br><a href="mailto:socorroh@uic.edu">socorroh@uic.edu</a></font></font></td></tr><tr><td align=left><br><font size=2 face=arial>Mark Gelula, PhD<br><font size=1>Assistant Professor &amp; Director of Faculty Development<br>Department of Medical Education, College of Medicine<br><a href="mailto:mgelula@uic.edu">mgelula@uic.edu</a></font></font></td></tr><tr><td align=left><br><font size=2 face=arial>Jobe Payne, PhD<br><font size=1>Research Assistant Professor<br>Department of Medical Education<br><a href="mailto:jlpayne@uic.edu">jlpayne@uic.edu</a></font></font></td></tr><tr><td align=left><br><font size=2 face=arial>Cindy La Greca, MA<br><font size=1>Assistant to the Dean<br>Special Curricular Programs, & Hispanic Center of Excellence<br><a href="mailto:clagreca@uic.edu">clagreca@uic.edu</a></font></font></td></tr></table>'
	content[54]='<font face=arial size=3><b>Contact Information</b></font><font face=arial size=2><br><br> <b>Hispanic Center of Excellence</b><br>University of Illinois at Chicago<br>College of Medicine (MC 786)<br>1819 W.Polk St. Room 151<br>Chicago, IL 60612-7333 <br><br><b>Phone: (312) 996-4493<br>Fax: (312)996-9922</b></font>'
	content[55]='<font face=arial size=3><b>Programs</b></font><font face=arial size=2><p>The Hispanic Center of Excellence sponsors a series of programs for Latino students deigned to enhance their educational experience. Click the link below to learn more about each program.</p> <ul><li><b>Advising</b><br><i>The Hispanic Center of Excellence also provides extensive advising for Latino pre-medical students, as well tutorial assistance to recruit, train, and retain Latino medical students.</i><br><br><li><b><a class="one" href="javascript:changetextclick(content[56])">Eschucha! Network</a><li><a class="one" href="javascript:changetextclick(content[57])">Faculty Fellowship Program</a><li><a class="one" href="javascript:changetextclick(content[58])">Leadership Development Program</a><li><a class="one" href="javascript:changetextclick(content[59])">Summer Medical Student Research Fellowship Program</a><li><a class="one" href="javascript:changetextclick(content[60])">United States Medical Licensing Exam Review Step-1 </a><li><a class="one" href="javascript:changetextclick(content[61])">Urban Medicine & Cultural Competence Courses</a></b></ul></font>'
	content[56]='<font face=arial size=3><b>Programs</b></font><font face=arial size=2><p>The Hispanic Center of Excellence sponsors a series of programs for Latino students deigned to enhance their educational experience. Click the link below to learn more about each program.</p> <ul><li><b><a class="one" href="javascript:changetextclick(content[55])">Advising</a></b><li><b>Eschucha! Network</b><br><i>The network educates students about health care concerns of the Latino community through a series of workshops, seminars, and events. The network is comprised of various university Latino student organizations and medical students interested in pursuing careers in the health care professions. The Network enhances Latino students knowledge of medical education requirements, medicla specialities, provides mentorship, and opportunities for mock interviews.</i><br><br><li><b><a class="one" href="javascript:changetextclick(content[57])">Faculty Fellowship Program</a><li><a class="one" href="javascript:changetextclick(content[58])">Leadership Development Program</a><li><a class="one" href="javascript:changetextclick(content[59])">Summer Medical Student Research Fellowship Program</a><li><a class="one" href="javascript:changetextclick(content[60])">United States Medical Licensing Exam Review Step-1 </a><li><a class="one" href="javascript:changetextclick(content[61])">Urban Medicine & Cultural Competence Courses</a></b></ul></font>'
	content[57]='<font face=arial size=3><b>Programs</b></font><font face=arial size=2><p>The Hispanic Center of Excellence sponsors a series of programs for Latino students deigned to enhance their educational experience. Click the link below to learn more about each program.</p> <ul><li><b><a class="one" href="javascript:changetextclick(content[55])">Advising</a><li><a class="one" href="javascript:changetextclick(content[56])">Eschucha! Network</a></b><li><b>Faculty Fellowship Program</b><br><i>A two-year program established to address the need for under-represented minority faculty in academic medicine. The goal is to increase the number of new, tenure-track Hispanic junior faculty through strategic professional development. This fellowship provides physicians with future opportunities in administrative, academic instruction and research, while maintaining their clinical practice. Mentorship, enhancement of teaching, grant writing, and development of portfolios, are a few of the objectives in the fellowship. Medical students in residency, individuals in post-doctoral training or PhD. science graduates are encouraged to apply.</i><br><br><li><b><a class="one" href="javascript:changetextclick(content[58])">Leadership Development Program</a><li><a class="one" href="javascript:changetextclick(content[59])">Summer Medical Student Research Fellowship Program</a><li><a class="one" href="javascript:changetextclick(content[60])">United States Medical Licensing Exam Review Step-1 </a><li><a class="one" href="javascript:changetextclick(content[61])">Urban Medicine & Cultural Competence Courses</a></b></ul></font>'
	content[58]='<font face=arial size=3><b>Programs</b></font><font face=arial size=2><p>The Hispanic Center of Excellence sponsors a series of programs for Latino students deigned to enhance their educational experience. Click the link below to learn more about each program.</p> <ul><li><b><a class="one" href="javascript:changetextclick(content[55])">Advising</a><li><a class="one" href="javascript:changetextclick(content[56])">Eschucha! Network</a><li><a class="one" href="javascript:changetextclick(content[57])">Faculty Fellowship Program</a></b><li><b>Leadership Development Program</b><br><i>An annual program held each spring provides workshops to develop and strengthen leadership skills. These leadership skills help students increase their advocacy skills and empower others.</i><br><br><li><b><a class="one" href="javascript:changetextclick(content[59])">Summer Medical Student Research Fellowship Program</a><li><a class="one" href="javascript:changetextclick(content[60])">United States Medical Licensing Exam Review Step-1 </a><li><a class="one" href="javascript:changetextclick(content[61])">Urban Medicine & Cultural Competence Courses</a></b></ul></font>'
	content[59]='<font face=arial size=3><b>Programs</b></font><font face=arial size=2><p>The Hispanic Center of Excellence sponsors a series of programs for Latino students deigned to enhance their educational experience. Click the link below to learn more about each program.</p> <ul><li><b><a class="one" href="javascript:changetextclick(content[55])">Advising</a><li><a class="one" href="javascript:changetextclick(content[56])">Eschucha! Network</a><li><a class="one" href="javascript:changetextclick(content[57])">Faculty Fellowship Program</a><li><a class="one" href="javascript:changetextclick(content[58])">Leadership Development Program</a></b><li><b>Summer Medical Student Research Fellowship Program</b><br><i>A ten week summer program designed to introduce UIC medical students in their first year to the field of research. Selected students are matched with a preceptor and provided a stipend. Students build research skills and learn techniques that enhance their medical education.</i><br><br><li><b><a class="one" href="javascript:changetextclick(content[60])">United States Medical Licensing Exam Review Step-1 </a><li><a class="one" href="javascript:changetextclick(content[61])">Urban Medicine & Cultural Competence Courses</a></b></ul></font>'
	content[60]='<font face=arial size=3><b>Programs</b></font><font face=arial size=2><p>The Hispanic Center of Excellence sponsors a series of programs for Latino students deigned to enhance their educational experience. Click the link below to learn more about each program.</p> <ul><li><b><a class="one" href="javascript:changetextclick(content[55])">Advising</a><li><a class="one" href="javascript:changetextclick(content[56])">Eschucha! Network</a><li><a class="one" href="javascript:changetextclick(content[57])">Faculty Fellowship Program</a><li><a class="one" href="javascript:changetextclick(content[58])">Leadership Development Program</a><li><a class="one" href="javascript:changetextclick(content[59])">Summer Medical Student Research Fellowship Program</a></b><li><b>United States Medical Licensing Exam Review Step-1</b><br><i>This program is offered to Latino Medical students at UIC to help them prepare for the exams by reviewing major subject areas and enforcing test taking skills. The Center supports students to participate in four, eight, or 16 week programs.</i><br><br><li><b><a class="one" href="javascript:changetextclick(content[61])">Urban Medicine & Cultural Competence Courses</a></b></ul></font>'
	content[61]='<font face=arial size=3><b>Programs</b></font><font face=arial size=2><p>The Hispanic Center of Excellence sponsors a series of programs for Latino students deigned to enhance their educational experience. Click the link below to learn more about each program.</p> <ul><li><b><a class="one" href="javascript:changetextclick(content[55])">Advising</a><li><a class="one" href="javascript:changetextclick(content[56])">Eschucha! Network</a><li><a class="one" href="javascript:changetextclick(content[57])">Faculty Fellowship Program</a><li><a class="one" href="javascript:changetextclick(content[58])">Leadership Development Program</a><li><a class="one" href="javascript:changetextclick(content[59])">Summer Medical Student Research Fellowship Program</a><li><a class="one" href="javascript:changetextclick(content[60])">United States Medical Licensing Exam Review Step-1</a></b><li><b>Urban Medicine & Cultural Competence Courses</b><br><i>Curricular development and enrichment providing the best practices in diagnosis of patients to improve patient/doctor relationship. reduce health risks, and health care disparities. These courses provide medical students with an understanding of cultural beliefs, knowledge and skills to best treat their patients.</i></ul></font>'
//HIPANIC CENTER END...

//DME Distance Education.
content[62]='<font face=arial size=3><b>DME Online Conference Center</b></font><font face=arial size=2><p> Using the DME Online Conference Center, you can hold a real time web conference with up to ten participants.  Anyone with Internet access and a web browser can join the conference.  Participants can chat either via keyboard or voice, view a PowerPoint presentation on your computer, co-browse websites, and share documents.  Additional features include video conferencing and participant polling.  For information about setting up an online conference, contact Jerry Stapleton at 312-355-3716 or by email at <a class="two" href="mailto:gstapltn@uic.edu">gstapltn@uic.edu</a>. <p>To join a conference already scheduled click the link below: <br><br><a class=two href="http://128.248.74.210" target="blank">DME Online Conference Center</a></font>'
content[63]='<font face=arial size=3><b>ACCC e-Rooms</b></font><font face=arial size=2><br><br>Based on Centra Symposium, this new web conferencing system is being developed for UIC faculty by the ITL. At this time it is available on a special request basis. For more information about using ACCC e-Rooms, contact Jerry Stapleton at 312-355-3716 or by email at <a class=two href="mailto:gstapltn@uic.edu">gstapltn@uic.edu</a>.</font>'
content[64]='<font face=arial size=3><b>Audio & Video Recording</b></font><font face=arial size=2><p>The DME Distance Education staff can assist College of Medicine Faculty in recording presentations for online or CD playback.   For more information about these services, contact Jerry Stapleton at 312-355-3716 or by email at <a class=two href="mailto:gstapltn@uic.edu">gstapltn@uic.edu</a>.</font>'
content[65]='<font face=arial size=3><b>BlackBoard</b></font><font face=arial size=2><p>Formerly known as CourseInfo, BlackBoard is the recommended online course management system for UIC.  Faculty may set up course sites for either fully online courses or as a resource for use with face-to-face courses.  Features include document management, presentation tools, discussion boards, chat, and the virtual classroom. <p>The DME Distance Education staff can assist faculty with the use of BlackBoard.  For more information about using BlackBoard, contact Jerry Stapleton at 312-355-3716 or by email at <a class=two href="mailto:gstapltn@uic.edu">gstapltn@uic.edu</a> or visit the UIC BlackBoard site listed below.<p> <a class="two" href="http://blackboard.uic.edu" target="blank">http://blackboard.uic.edu</a></font>'
content[66]='<font face=arial size=3><b>Flash</b></font><font face=arial size=2><p>Macromedia Flash is a tool used to create streamed presentations and animations for the web.  Used in conjunction with audio recordings one can create multi-media presentations that can be viewed with most browsers.  The DME Distance Education staff can assist College of Medicine Faculty in preparing Flash presentations for online or CD playback.   For more information about these services, contact Jerry Stapleton at 312-355-3716 or by email at <a class=two href="mailto:gstapltn@uic.edu">gstapltn@uic.edu</a>.</font>'
content[67]='<font face=arial size=3><b>ltlTV</b></font><font face=arial size=2><p>The Instructional Technology Lab at UIC has developed itlTV for delivering live interactive multimedia and on-demand presentations over the Internet.  itlTV is primarily designed for use by UIC faculty to enhance traditional on-campus instruction as well as University of Illinois Online distance education. <p>Faculty interested in using itlTV can contact the ITL directly (see link below) or contact the DME Distance Education staff for assistance in working with the ITL.  For more information, contact Jerry Stapleton at 312-355-3716 or by email at <a class=two href="mailto:gstapltn@uic.edu">gstapltn@uic.edu</a>.<p><a class="two" href="http://www.uic.edu/depts/accc/itl/itltv.html" target="blank">http://www.uic.edu/depts/accc/itl/itltv.html</a></font>'
content[68]='<font face=arial size=3><b>Producer</b></font><font face=arial size=2><p>Microsoft Producer is a tool used to create streamed presentations from PowerPoint presentations.  Used in conjunction with audio recordings one can create multi-media presentations that can be viewed with most browsers.  The DME Distance Education staff can assist College of Medicine Faculty in preparing Producer presentations for online or CD playback.   For more information about these services, contact Jerry Stapleton at 312-355-3716 or by email at <a class=two href="mailto:gstapltn@uic.edu">gstapltn@uic.edu</a>.</font>'
content[69]='<font face=arial size=3><b>RealMedia</b></font><font face=arial size=2><p>For College of Medicine faculty, the most useful aspect of RealMedia is the use of its tools allowing one to create streaming videos from videotapes.  The Instructional Technology Lab at UIC has these tools available for faculty use and can host the files on their RealMedia server. <p>Faculty interested in using RealMedia can contact the ITL directly (see link below) or contact the DME Distance Education staff for assistance in working with the ITL.  For more information, contact Jerry Stapleton at 312-355-3716 or by email at <a class=two href="mailto:gstapltn@uic.edu">gstapltn@uic.edu</a> or visit the ITL\'s RealMedia site listed below.<p><a class="two" href="http://www.uic.edu/depts/accc/itl/realmedia/rm-intro.html" target="blank">http://www.uic.edu/depts/accc/itl/realmedia/rm-intro.html</a></font>'
content[70]='<font face=arial size=3><b>WebBoard</b></font><font face=arial size=2><p>The WebBoard is an asynchronous discussion environment for online and hybrid courses.  The DME Distance Education staff can assist faculty with the use of WebBoard.  For more information about using WebBoard, contact Jerry Stapleton at 312-355-3716 or by email at <a class=two href="mailto:gstapltn@uic.edu">gstapltn@uic.edu</a> or visit the UIC WebBoard site listed below. <p><a class="two" href="http://webboard.uic.edu/~docs" target="blank">http://webboard.uic.edu/~docs</a></font>'

//DME Seminars
content[71]='<img src="Pictures/868107-001.jpg" width="200" height="150" border="1" bordercolor=black><br><br><b><I><font face=arial size=2 color="Green">Go to...</b></i><br><b><font face=arial size=1 color="Green">&nbsp;:: <a class="one" href="#"  onClick="changetextclick(content[100])">Seminar Schedule</a><BR>&nbsp;:: <a class="one" href="#"  onClick="changetextclick(content[101])">Seminar Video Archives</a><BR>&nbsp;:: <a class="one" href="#"  onClick="changetextclick(content[102])">Seminar Podcast</a></font></b>'

//Traub-Byfield Lecture Series
content[113]='<img src="Pictures/868107-001.jpg" width="200" height="150" border="1" bordercolor=black><br><br><b><I><font face=arial size=2 color="Green">Go to...</b></i><br><b><font face=arial size=1 color="Green">&nbsp;:: <a class="one" href="#"  onClick="changetextclick(content[108])">Lecture Schedule</a><BR>&nbsp;:: <a class="one" href="#"  onClick="changetextclick(content[109])">Lecture Video Archives</a></b>'

// ANNOUNCEMENTS
//content[72]='<br><b><font face=arial size=2>Announcements</b></font><br><br><a class="one" a href="javascript:onClick=changetextclick(content[74])" onMouseOver="changetextagain(content[7])"><font face=arial size=2>Position Search - Director of Medical Humanities</a></font>'
content[72]='<b><font face=arial size=2>News and Events</b></font><br><br><font face=arial size=2><font color="#990000"><b>New Certificate Program Announced</b></font><br>The UIC Certificate Program for Clinical Program Directors has been custom designed to enhance the educational leadership and managerial skills of clinical program directors.  --> <a class="one" href="javascript:onClick=changetextclick(content[107])" onMouseOver="changetextagain(content[7])"><i><u>Learn more</u></i></a><br><br><font face=arial size=2><font color="#990000"><b>New DME Alumni Community Web Site</b></font><br>The UIC Department of Medical Education Alumni Community Web site is the first step in the development of an active and interactive alumni community. We have seen that interactions among our alumni, fellows, faculty, and students have led to useful and productive collaborations as well as abiding friendships. We would like to see these collaborations and friendships grow and we hope that this interactive website will foster such growth.  --> <a class="one" a href="javascript:onClick=changetextclick(content[105])" onMouseOver="changetextagain(content[7])"><i><u>Learn more</u></i></a></p></font><font face=arial size=2><font color="#990000"><b>Steve Downing’s New Book</b></font><br>DME’s Steve Downing, associate Professor, has a new book that has just been released. <i>Handbook of Test Development</i> (co-edited with Thomas Haladyna) is published by Lawrence Erlbaum Associates. Steve also has a chapter in this book entitled, “Twelve Steps for Effective Test Development.” The staff here at <i>Med Ed Herald</i> encourages you to pick up your own personal copy- hot off the press!</font><br><br><font face=arial size=2><font color="#990000"><b>Update: Alan Schwartz</b></font><br>Alan Schwartz, Associate Professor of Clinical Decision Making, has begun work on an NSF-funded grant  entitled “Adding Extrinsic Goals to the QALY Model.”  --> <a class="one" a href="javascript:onClick=changetextclick(content[75])" onMouseOver="changetextagain(content[7])"><i><u>Learn more</u></i></a></p></font>'

//content[72]='<b><font face=arial size=2>News and Events</b></font><br><br><font face=arial size=2><font color="#990000"><b>Search: Tenure-track Faculty Position</b></font><br>The University of Illinois at Chicago (UIC) Department of Medical Education (DME) invites applications for an open-rank, tenure-track faculty position; rank commensurate with experience.  The ideal candidate for this faculty position will be a junior or mid-career person in the social sciences or education with demonstrated scholarship in cognitive or organizational studies.  Practical experience in medical education or other health professions is desirable.  MD, PhD, or EdD degree is required.<br><br>This academic position carries responsibilities in research, teaching, and service in medical or health professions education.  Research and service activities will vary with the specific interests of the applicant.  Priority areas of application of the theories and methods of his/her specialty include simulations, faculty development or continuing professional development, distance learning, leadership, instruction, informatics, or performance assessment.  The individual in this position will collaborate with other DME and College of Medicine faculty to conduct research and development activities.  DME faculty members are also expected to teach and advise graduate students in the department’s Master of Health Professions Education (MHPE) program.  Candidates should indicate their specific field of expertise (e.g., “cognition and simulations” or “organizational studies and distance learning”) and their experience in teaching.<br><br>Applicants should indicate their interest by sending a letter, curriculum vitae, and selected publications or other works of scholarship (maximum 3).  Please send materials by January 15, 2008 to Georges Bordage, MD, PhD, Professor, Department of Medical Education (M/C 591), University of Illinois at Chicago, 808 S. Wood Street, 986-D CME, Chicago, IL 60612-7309.  (<a href="mailto:bordage@uic.edu">bordage@uic.edu</a>) UIC is AA/EOE.</p></font><br><br><font face=arial size=2><font color="#990000"><b>New DME Alumni Community Web Site</b></font><br>The UIC Department of Medical Education Alumni Community Web site is the first step in the development of an active and interactive alumni community. We have seen that interactions among our alumni, fellows, faculty, and students have led to useful and productive collaborations as well as abiding friendships. We would like to see these collaborations and friendships grow and we hope that this interactive website will foster such growth.  --> <a class="one" a href="javascript:onClick=changetextclick(content[105])" onMouseOver="changetextagain(content[7])"><i><u>Learn more</u></i></a></p></font><font face=arial size=2><font color="#990000"><b>Ninth Annual MHPE Conference</b></font><br>The Ninth Annual MHPE Summer Conference will be held at the College of Medicine, University of Illinois at Chicago on July 31 and August 1, 2008. We are pleased to announce that Dr. David Irby and Dr. Darrell Kirch will be our keynote speakers for the 2008 conference."  <br>--> <a class="one" href="javascript:onClick=changetextclick(content[74])" onMouseOver="changetextagain(content[7])"><i><u>Learn more</u></i></a></p></font><font face=arial size=2><font face=arial size=2><font color="#990000"><b>Steve Downing’s New Book</b></font><br>DME’s Steve Downing, associate Professor, has a new book that has just been released. <i>Handbook of Test Development</i> (co-edited with Thomas Haladyna) is published by Lawrence Erlbaum Associates. Steve also has a chapter in this book entitled, “Twelve Steps for Effective Test Development.” The staff here at <i>Med Ed Herald</i> encourages you to pick up your own personal copy- hot off the press!</font><br><br><font face=arial size=2><font color="#990000"><b>Update: Alan Schwartz</b></font><br>Alan Schwartz, Associate Professor of Clinical Decision Making, has begun work on an NSF-funded grant  entitled “Adding Extrinsic Goals to the QALY Model.”  --> <a class="one" a href="javascript:onClick=changetextclick(content[75])" onMouseOver="changetextagain(content[7])"><i><u>Learn more</u></i></a></p></font>'
//content[72]='<b><font face=arial size=2>News and Events</b></font><br><br><font face=arial size=2><font color="#990000"><b>New DME Alumni Community Web Site</b></font><br>The UIC Department of Medical Education Alumni Community Web site is the first step in the development of an active and interactive alumni community. We have seen that interactions among our alumni, fellows, faculty, and students have led to useful and productive collaborations as well as abiding friendships. We would like to see these collaborations and friendships grow and we hope that this interactive website will foster such growth.  --> <a class="one" a href="javascript:onClick=changetextclick(content[105])" onMouseOver="changetextagain(content[7])"><i><u>Learn more</u></i></a></p></font><font face=arial size=2><font color="#990000"><b>Eighth Annual MHPE Conference</b></font><br>The Eighth Annual MHPE Summer Conference will be held at the College of Medicine, University of Illinois at Chicago on August 2-3, 2007. The theme of the conference is "Performance Assessment: Scholarly Standards and Social Accountability."  <br>--> <a class="one" href="javascript:onClick=changetextclick(content[74])" onMouseOver="changetextagain(content[7])"><i><u>Learn more</u></i></a></p></font><font face=arial size=2><font color="#990000"><b>Georges Bordage Receives Prestigious Award</b></font><br>Professor Georges Bordage was the recipient of the 2005 Abraham Flexner Award. The Flexner Award is the AAMC’s most prestigious honor and is the “Nobel Prize” of medical education. Congratulations to Georges for this outstanding honor.</font><br><br><font face=arial size=2><font color="#990000"><b>Steve Downing’s New Book</b></font><br>DME’s Steve Downing, associate Professor, has a new book that has just been released. <i>Handbook of Test Development</i> (co-edited with Thomas Haladyna) is published by Lawrence Erlbaum Associates. Steve also has a chapter in this book entitled, “Twelve Steps for Effective Test Development.” The staff here at <i>Med Ed Herald</i> encourages you to pick up your own personal copy- hot off the press!</font><br><br><font face=arial size=2><font color="#990000"><b>Update: Alan Schwartz</b></font><br>Alan Schwartz, Associate Professor of Clinical Decision Making, has begun work on an NSF-funded grant  entitled “Adding Extrinsic Goals to the QALY Model.”  --> <a class="one" a href="javascript:onClick=changetextclick(content[75])" onMouseOver="changetextagain(content[7])"><i><u>Learn more</u></i></a></p></font>'
//content[72]='<br><b><font face=arial size=2>Announcements</b></font><br><br><a class="one" a href="javascript:onClick=changetextclick(content[74])" onMouseOver="changetextagain(content[7])"><font face=arial size=2><ul><li><u>Sixth Annual MHPE Conference</u></a><p>The Sixth Annual MHPE Summer Conference will be held at the College of Medicine, University of Illinois at Chicago on July 28-29, 2005. The theme of the conference is "Scholarship: Current Conceptions and Transformation."<p align="right"><a class="one" a href="javascript:onClick=changetextclick(content[74])" onMouseOver="changetextagain(content[7])"><i><u>Learn more</u></i></a><br><br><a class="one" a href="javascript:onClick=changetextclick(content[75])" onMouseOver="changetextagain(content[7])"><font face=arial size=2><li><u>Position Search - Director of Medical Humanities</u></a><p>The Department of Medical Education, University of Illinois at Chicago (UIC) College of Medicine, invites applicants for a senior-level position on the tenure track as Director of Medical Humanities. The applicant should hold a Ph.D. or an M.D./Ph.D. in such fields as anthropology, history, literature, philosophy, art history, communication, media studies, cultural studies, and science studies.<p align="right"><a class="one" a href="javascript:onClick=changetextclick(content[75])" onMouseOver="changetextagain(content[7])"><i><u>Learn more</u></i></a></ul></font>'
//content[72]='<br><b><font face=arial size=2>Announcements</b></font><br><br><a class="one" a href="javascript:onClick=changetextclick(content[75])" onMouseOver="changetextagain(content[7])"><font face=arial size=2><ul><li><u>Position Search - Director of Medical Humanities</u></a><p>The Department of Medical Education, University of Illinois at Chicago (UIC) College of Medicine, invites applicants for a senior-level position on the tenure track as Director of Medical Humanities. The applicant should hold a Ph.D. or an M.D./Ph.D. in such fields as anthropology, history, literature, philosophy, art history, communication, media studies, cultural studies, and science studies.<p align="right"><a class="one" a href="javascript:onClick=changetextclick(content[75])" onMouseOver="changetextagain(content[7])"><i><u>Learn more</u></i></a></ul></font>'

//DME Bulletins
content[73]='<font face=arial size=3><b>Select DME Bulletin</b></font><font face=arial size=2><ul><li><a class=one href="bulletins/May99/index.html" target="blank">May 1999</a><li><a class=one href="bulletins/Oct98/index.html" target="blank">October 1998</a><li><a class=one href="bulletins/Apr98/index.html" target="blank">April 1998</a><li><a class=one href="bulletins/Jan98/index.html" target="blank">January 1998</a></ul></font>'

// ANNOUNCEMENTS
content[77]='<font face=arial size=3><b>World Health Report 2006</b><br></font><font face=arial size=2>Investing in People: International Health in Medical Education Curricula</font><font face=arial size=2><p>The UIC College of Medicine and Department of Medical Education (DME) will host a one day conference on Tuesday, May 30 to celebrate the launching of the World Health Report 2006.  The title of the conference is "World Health Report 2006 - Investing in People:  International Health in Medical Education Curricula."  The morning session will address the key messages and ideas of the World Health Report, from a global perspective (WHO), a regional perspective (PAHO), and a national perspective (USA).  The afternoon session will be devoted to presentations and discussions about teaching international health to American medical professionals and involving medical professionals in international health work and humanitarian projects. DME has been a WHO collaborating Center since 1979 and is excited to join in the dissemination of the World Health Report.  Senior medical professionals representing colleges of medicine, nursing, public health, as well as academicians, members of boards of medical licensing, members from the American Medical Association, NGOs, and other partners will be in attendance at the one day conference.<br><br> <a class="one" href="http://www.who.int/entity/whr/2006/whr06_en.pdf" target="_blank"><u>World Health Report 2006</u></a> (entire report in pdf format)<br><br> <a class="one" href="documents/WHR 2006.pdf" target="_blank"><u>Conference Agenda</u></a> (pdf format)<br><br>For more information regarding the conference, please call 312-996-4493, or 312-996-8438.'

content[74]='<font face=arial size=3><b>Ninth Annual MHPE Conference</b></font><font face=arial size=2><p>The 9th Annual MHPE Conference will be held July 31 and August 1, 2008. Please save the date and plan to join your colleagues in DME and MHPE students and alumni for this important activity.  We have had eight successful and interesting summer conferences with increasingly strong scientific programs each year. We are most pleased to welcome Dr. David Irby and Dr. Darrell Kirch as our keynote speakers for the 2008 conference.<br><br>REGISTRATION: Free!!! Please email Laura Schaaf at <a href="mailto:lpschaaf@uic.edu">lpschaaf@uic.edu</a> to register or for additional information.</p></font>'
//2005 Summer Conference
//content[74]='<font face=arial size=3><b>Sixth Annual MHPE Conference</b></font><font face=arial size=2><p> The Sixth Annual MHPE Summer Conference will be held at the College of Medicine, University of Illinois at Chicago on July 28-29, 2005. Each year, the Department of Medical Education invites all MHPE students and alumni to submit presentation proposals for the MHPE Summer Conference The next conference will be held on Thursday and Friday July 28th and 29th, 2005 in Chicago. This two-day conference follows the residency for students completing core course work in the MHPE Online program and offers an opportunity for all MHPE students and alumni to: showcase completed projects, seek consultation on work in progress, network with peers, and plan future collaborations.  The theme of the 2005 conference is: Scholarship: Current Conceptions & Transformations. The keynote speaker is Dr. Rhee Fincher from the Medical College of Georgia. Dr. Finchaer is well-known for her work on scholarship, especially modern views of scholarship and how it applies to educational activities and academic promotion. Thursday evening features a reception, Poster Session, and a "Graduation/ Hooding" ceremony for all students who completed the MHPE program during the previous year.</font>'
content[75]='<font face=arial size=3><b>Update: Alan Schwartz</b></font><font face=arial size=2><p>Alan Schwartz, Associate Professor of Clinical Decision Making, has begun work on an NSF-funded grant  entitled “Adding Extrinsic Goals to the QALY Model.” Alan and Dr. Gordon Hazen at Northwestern University are exploring how the prospects of achieving life goals may impact how people evaluate their quality of life in medical decisions. Alan recently published a study evaluating how patient-physician fit impacts patient satisfaction [Schwartz, Memoona Hasnain (UIC Department of Family Medicine), Arnold R. Eiser (Mercy Catholic Medical Center and Drexel University College of Medicine), Elizabeth Lincoln (Yale University), and Arthur Elstein (Professor Emeritus, Department of Medical Education)], in press at the Journal of Medical Decision Making. Alan also continues his ongoing NIH-funded development of a web-based, evidence-based medicine librarian consult service with colleagues from Pediatrics, Family Medicine, and the Library of Health Sciences at Chicago and Peoria. He was just elected to the Board of Trustees of the Society for Medical Decision Making.</p></font>'
// Old job description:
//content[75]='<font face=arial size=3><b>Position Search - Director of Medical Humanities</b></font><font face=arial size=2><p> Director of Medical Humanities<br>University of Illinois at Chicago<p>The Department of Medical Education, University of Illinois at Chicago (UIC) College of Medicine, invites applicants for a senior-level position on the tenure track as Director of Medical Humanities. The applicant should hold a Ph.D. or an M.D./Ph.D. in such fields as anthropology, history, literature, philosophy, art history, communication, media studies, cultural studies, and science studies.  The Director of Medical Humanities, a member of the Department of Medical Education (DME), oversees the teaching and special programming in humanities for students and faculty in the College of Medicine.  Applicants should possess a proven track record in research, demonstrated teaching skills, and experience in administration and grant writing.  Rank and salary will be determined based on applicant\'s qualifications.  For fullest consideration, applications should be received by September 15, 2004.  Please send letter of application that describes areas of research interest, teaching experience, research and grant record, and administrative experience; curriculum vitae; and three letters of recommendation to Suzanne Poirier, Ph.D., at spoirier@uic.edu or Department of Medical Education (m/c591), University of Illinois at Chicago, 808 S. Wood Street 60612-7309.  A full job description is available at www.uic-dme.org.  Further information may be requested at the above addresses or by telephone (312-996-7954).  AA/EEO.</font>'
//Removed Position Ad for Humanities Director
//content[75]='<font face=arial size=3><b>Director of Medical Humanities</b></font><font face=arial size=2><p> Job Description<p>History and Context.  Humanities faculty have been a part of medical education at the University of Illinois at Chicago (UIC) for over twenty-five years.  They have taught required and elective courses in both classroom and clinical settings, and they have offered extra-curricular programs to students, staff and faculty in the areas of history, ethics, literature, cultural studies, disability studies, and philosophy.  This interdisciplinary faculty in housed in the equally interdisciplinary Department of Medical Education (DME), the leading department of its kind in the U.S.  DME offers a Masters in Health Professions Education (MHPE) that draws students from around the world and currently enrolls nearly one hundred students who take course both on site and on-line.  Its on-line curriculum has won both local and national acclaim.  The College of Medicine at Chicago is joined by sister campuses in Urbana-Champaign, Rockford, and Peoria.  The Chicago campus graduates about 180 students per year, with a diversity unparalleled by any other medical school in the country.  The health professions complex includes schools and colleges in medicine, nursing, pharmacy, dentistry, public health, and the allied health professions (which houses the only doctoral program in disability studies in the country).  The health science colleges are about a mile away from the other colleges at UIC, with both sides of campus connected by bus service.  Some DME faculty in medical humanities hold joint appointments in liberal arts departments, and vice versa.  Programs in medical humanities are often co-sponsored by units across the entire campus. <p>Research.  The Director of Medical Humanities is expected to be a recognized, active scholar in his/her area of expertise.  Opportunities for collaborative research in the pedagogy of medical humanities also exist within the Department of Medical Education.  Funded/fundable research is necessary. <p>Teaching.  Medical students currently study the humanities in a series of required short courses in their first year, a variety of individual lecture/plenary sessions in Essentials of Clinical Medicine in their first and second years, and a collection of elective courses during their third and fourth years.  The Director of Medical Humanities co-ordinates the short courses, is responsible for the content of several of the plenary sessions, and offers electives in his/her field of scholarship.  There are also opportunities to participate in teaching pre-med students in the Honors College, medical residents and faculty in grand round or other clinical didactic venues, students in the MHPE program, and graduate students in other humanities departments. <p>Service/Administration.  The Director of Medical Humanities\' most important role is that of liaison among the variety of faculty and educational opportunities at UIC, in terms of both teaching and programming.  Some endowed funds offer modest support for guest lectures, short-term visiting professorships, conferences, etc.  The Director of Medical Humanities works with the Head of the DME and draws on a wide breadth of faculty across UIC in an advisory capacity for developing short- and longer-term programs.  The current Director has served as faculty advisor to the editors of Body Electric, a student-run arts journal now in its twenty-first year of publication.</font>'
content[76]='<font face=arial size=3><b>Spotlight on Writer-in-Residence, Paul Bergstraesser, and Visiting Artist, Riva Lehrer</b></font><font face=arial size=2><p>Paul Bergstraesser holds an M.A. in writing from Northern Michigan University and is currently a Ph.D. candidate in English and fiction writing at UIC. He has taught courses ranging from composition to nonfiction to fiction writing. His own fiction has appeared in numerous literary  journals, including <i>Another Chicago Magazine</i> and <i>The Barcelona Review</i>. He has won several awards for his writing, such as an Illinois Arts Council award, the Chicago Literary Award 2000 for fiction, and the Chicago Bar Association Goodnow Award. Paul is an editor at the literary magazine <i>Other Voices</i>.</p><p>For the past two years, Paul has been teaching creative writing workshops to first-year medical students through the Department of Medical Education. In a partnership between the humanities and the sciences, Paul attends gross anatomy labs throughout the year and, in the workshops, guides students as they write (poetry, fiction, nonfiction) about their experiences in anatomy. He also maintains a site on Blackboard, entitled "Literary Anatomies," where students can read excerpts from varied authors about anatomy and the medical field in general. Paul also acts as an advisor/editor for Body Electric, a magazine published through the DME to which students can submit their writing and artwork.</p><p>Riva Lehrer is the DME Artist-in-Residence. As part of her duties Riva teaches monthly figure drawing classes to the first-year gross anatomy students. When Riva is not here at UIC sitting in on anatomy lectures and labs, she teaches at the Art Institute of Chicago as well as tries to find time to do her own artwork! Currently Riva is occupied with being a curator for an upcoming exhibit as part of Bodies of Work, a Chicago Festival of Disability Arts. Bodies of Work will be held from the 20th to 30th of April in venues all around town. More information about the event can be found at <a href="http://www.bodiesofwork.org" target="_blank">www.bodiesofwork.org</a></p><p>See an example of Riva’s work on the right but we also encourage you to visit her website <a href="http://www.rivalehrer.com" target="_blank">www.rivalehrer.com<a> to see more examples.</p></font>'

//DME Faculty & staff
content[80]='<font face=arial size=3><b>DME Faculty & Staff Index</b></font><br><br><font face=arial size=2><a class="one" href="javascript:onClick=changetextclick(content[80])" onMouseOver="changetextagain(content[27])">Faculty</a><br><a class="one" href="javascript:onClick=changetextclick(content[91])" onMouseOver="changetextagain(content[27])">Administration & Staff</a><br><a class="one" href="javascript:onClick=changetextclick(content[92])" onMouseOver="changetextagain(content[27])">Clinical Performance Center Staff</a><br><a class="one" href="javascript:onClick=changetextclick(content[93])" onMouseOver="changetextagain(content[27])">Distance Education Staff</a><br><a class="one" href="javascript:onClick=changetextclick(content[94])" onMouseOver="changetextagain(content[27])">Hispanic Center Staff</a><br><a class="one" href="javascript:onClick=changetextclick(content[95])" onMouseOver="changetextagain(content[27])">Testing Center Staff</a><br><br><hr><br></font><font face=arial size=2><P><B><FONT SIZE=2>Faculty</FONT></B><UL><LI><a class="two" href="javascript:onClick=openwindow(fac[1])" onMouseOver="changetextagain(content[27])"><U>Bashook, Philip</U></A>, EdD &nbsp; </LI><LI><a class="two" href="javascript:onClick=openwindow(fac[30])" onMouseOver="changetextagain(content[27])"><U>Beuttler, Fred</U></A>, PhD</LI><LI><a class="two" href="javascript:onClick=openwindow(fac[2])" onMouseOver="changetextagain(content[27])"><U>Bordage, Georges</U></A>, MD, PhD &nbsp; </LI><LI><a class="two" href="javascript:onClick=openwindow(fac[71])" onMouseOver="changetextagain(content[27])"><U>Conley, Patrick</U></A>, PhD</LI><LI><a class="two" href="javascript:onClick=openwindow(fac[3])" onMouseOver="changetextagain(content[27])"><U>Downing, Steven</U></A>, PhD</LI><LI><a class="two" href="javascript:onClick=openwindow(fac[4])" onMouseOver="changetextagain(content[27])"><U>Edison, Marcia</U></A>, PhD</LI><LI><a class="two" href="javascript:onClick=openwindow(fac[39])" onMouseOver="changetextagain(content[27])"><U>Flores, Nona</U></A>, PhD</LI><LI><a class="two" href="javascript:onClick=openwindow(fac[41])" onMouseOver="changetextagain(content[27])"><U>Garg, Mohan</U></A>, ScD</LI><LI><a class="two" href="javascript:onClick=openwindow(fac[5])" onMouseOver="changetextagain(content[27])"><U>Gelula, Mark</U></A>, PhD</LI><LI><a class="two" href="javascript:onClick=openwindow(fac[7])" onMouseOver="changetextagain(content[27])"><U>Girotti, Jorge </U></A>, PhD &nbsp; </LI><LI><a class="two" href="javascript:onClick=openwindow(fac[8])" onMouseOver="changetextagain(content[27])"><U>Goldberg, Julie</U></A>, PhD</LI><LI><a class="two" href="javascript:onClick=openwindow(fac[66])" onMouseOver="changetextagain(content[27])"><U>Gunderson, Anne</U></A>, EdD cand </LI><LI><a class="two" href="javascript:onClick=openwindow(fac[70])" onMouseOver="changetextagain(content[27])"><U>Harris, Ilene</U></A>, PhD</LI><LI><a class="two" href="javascript:onClick=openwindow(fac[53])" onMouseOver="changetextagain(content[27])"><U>McAuley, Robert</U></A>, PhD</LI><LI><a class="two" href="javascript:onClick=openwindow(fac[9])" onMouseOver="changetextagain(content[27])"><U>Mrtek, Robert</U></A>, PhD</LI><LI><a class="two" href="javascript:onClick=openwindow(fac[10])" onMouseOver="changetextagain(content[27])"><U>Murphy, Timothy</U></A>, PhD</LI><LI><a class="two" href="javascript:onClick=openwindow(fac[11])" onMouseOver="changetextagain(content[27])"><U>Payne, Jobe</U></A>, PhD</LI><LI><a class="two" href="javascript:onClick=openwindow(fac[65])" onMouseOver="changetextagain(content[27])"><U>Riddle, Janet</U></A>, MD</LI><LI><a class="two" href="javascript:onClick=openwindow(fac[0])" onMouseOver="changetextagain(content[27])"><U>Sandlow, Leslie J.</U></A>, MD&nbsp;</LI><LI><a class="two" href="javascript:onClick=openwindow(fac[13])" onMouseOver="changetextagain(content[27])"><U>Schwartz, Alan</U></A>, PhD</LI><LI><a class="two" href="javascript:onClick=openwindow(fac[14])" onMouseOver="changetextagain(content[27])"><U>Seefeldt, Michael</U></A>, PhD</LI><LI><a class="two" href="javascript:onClick=openwindow(fac[67])" onMouseOver="changetextagain(content[27])"><U>Stapleton, Gerald</U></A>, MS</LI><LI><a class="two" href="javascript:onClick=openwindow(fac[15])" onMouseOver="changetextagain(content[27])"><U>Sufian, Sandra M.</U></A>, PhD, MPH</LI><LI><a class="two" href="javascript:onClick=openwindow(fac[16])" onMouseOver="changetextagain(content[27])"><U>Tekian, Ara</U></A>, PhD, MHPE</LI><LI><a class="two" href="javascript:onClick=openwindow(fac[17])" onMouseOver="changetextagain(content[27])"><U>Troy, Loreen</U></A>, MHPE</LI><LI><a class="two" href="javascript:onClick=openwindow(fac[19])" onMouseOver="changetextagain(content[27])"><U>Yudkowsky, Rachel</U></A>, MD</LI></UL><i><b><a class="one" href="javascript:changetextclick(content[87])">Emeritus</a></b></i>&nbsp;(Click for listing)<br><i><b><a class="one" href="javascript:changetextclick(content[89])">Joint and Adjunct Appointments</a></b></i>&nbsp;(Click for listing)</font>'

//DME Home
content[81]='<img src="Pictures/cme_img.jpg" width="200" height="150" border="1" bordercolor=black><br><font face=arial size=1>:: <a class="one" href="javascript:onClick=changetextclick(content[82])">Medical Education Grand Rounds</a></font><br><font face=arial size=1>:: <a class="one" href="javascript:onClick=changetextclick(content[83])">DME Seminars - Works in Progress</a></font><br><div style="padding-left: 25px"><font face=arial size=1>:: <a class="one" href="#"  onClick="changetextclick(content[100])">Seminar Schedule</a></font><BR><font face=arial size=1>:: <a class="one" href="#"  onClick="changetextclick(content[101])">Seminar Video Archives</a></font><BR><font face=arial size=1>:: <a class="one" href="#"  onClick="changetextclick(content[102])">Seminar Podcast</a></font></div><font face=arial size=1>:: <a class="one" href="javascript:onClick=changetextclick(content[84])">MHPE Annual Conference</a></font>'
content[82]='<font face=arial size=3><b>DME Seminars - Medical Education Grand Rounds</b></font><font face=arial size=2><p> Guest speakers present topics of interest to medical educators on a monthly basis.  Grand Rounds are usually scheduled from 3:00 - 4:00 p.m. on the third Wednesday of each month, however, some variability is required to accommodate the schedules of our guest speakers.  Please check with Ms. Gladys Khan at 312-996-3594 for the current schedule of speakers.  Sessions are held in room 988A of the College of Medicine East building.<br></font>'
content[83]='<font face=arial size=3><b>DME Seminars - Works in Progress</b></font><font face=arial size=2><p> DME faculty present research topics in which they are currently involved in monthly "Works in Progress" seminars.  Sessions provide and opportunity to exchange ideas and obtain feedback on current projects.  Works in Progress sessions are usually scheduled from 3:00 - 4:00 p.m. on the first Wednesday of each month.  Please check with Ms. Gladys Khan at 312-996-3594 for the current schedule of speakers and to confirm dates.  Sessions are held in room 988A of the College of Medicine East building.<br></font>'
content[84]='<font face=arial size=3><b>MHPE Annual Conference</b></font><font face=arial size=2><p> The Seventh Annual MHPE Summer Conference will be held at the College of Medicine, University of Illinois at Chicago on July 27-28, 2006.  The theme of the conference is: Research That Moves the Field Forward: Broadening the Scope of Health Professions Education Scholarship.  We are most pleased to welcome Dr. Geoff Norman, a globally prominent and provocative medical educator, as our conference keynote speaker. Dr. Norman is professor, Department of Clinical Epidemiology & Biostatistics  and Assistant Dean, Programme for Educational Research and Development, at McMaster University, Hamilton, Ontario, Canada. <p>For additional information about the MHPE Annual Conference or to submit a paper for presentation, please visit the MHPE site below: <p><a class="two" href="http://www.mhpe-online.org/MHPE_Sum_conf.htm">http://www.mhpe-online.org/MHPE_Sum_conf.htm</a><br></font>'
//2005 Summer Conference
//content[84]='<font face=arial size=3><b>MHPE Annual Conference</b></font><font face=arial size=2><p> The Fifth Annual MHPE Summer Conference will be held at the College of Medicine, University of Illinois at Chicago on July 29-30, 2004. It addresses the global movement in defining professional competence and examining how it is nurtured and assessed in health professionals. At the conclusion of the conference we will celebrate the 45th anniversary of the founding of the Department of Medical Education. <p>For additional information about the MHPE Annual Conference or to submit a paper for presentation, please visit the MHPE site below: <p><a class="two" href="http://www.mhpe-online.org/MHPE_Sum_conf.htm">http://www.mhpe-online.org/MHPE_Sum_conf.htm</a><br></font>'
content[85]='<font face=arial size=3><b>Contact DME:</b></font><font face=arial size=2><p> DME Departmental Contact <p>Diane Rudall<br>Assistant to the Head<br>Department of Medical Education MC 591<br>808 South Wood Street, Rm. 986<br>Chicago, IL 60612 <p>Email: dianer@uic.edu<br>Phone: 312-996-3590<br>Facsimile: 312-413-2048 <p>DME Web: <a class="two" href="http://www.uic-dme.org">http://www.uic-dme.org</a></font>'
content[86]='<font face=arial size=3><b>DME Faculty & Staff Index</b></font><TABLE CELLPADDING=5 BORDER=0><font face=arial size=2><TR><TD WIDTH=170><B><I><FONT SIZE=+1>NAME</FONT></I></B></TD><TD WIDTH=90><B><I><FONT SIZE=+1>PHONE</FONT></I></B></TD><TD WIDTH=170><B><I><FONT SIZE=+1>E-MAIL</FONT></I></B></TD></TR><TR><TD>Anderson, Melissa</TD><TD>996-6738</TD><TD><A HREF="mailto:mjanders@uic.edu"><U>mjanders@uic.edu</A></U></TD></TR><TR><TD>Barnard, Craig</TD><TD>996-5708</TD><TD><A HREF="mailto:CBarnard@uic.edu"><U>CBarnard@uic.edu</A></U></TD></TR><TR><TD>Bordage, Georges</TD><TD>996-7349</TD><TD><A HREF="mailto:Bordage@uic.edu"><U>Bordage@uic.edu</A></U></TD></TR><TR><TD>Brannan, Tim</TD><TD>355-0800</TD><TD><A HREF="mailto:tbrann1@uic.edu"><U>tbrann1@uic.edu</A></U></TD></TR><TR><TD>Bratt, Jennifer</TD><TD>413-0113</TD><TD><A HREF="mailto:JenB@uic.edu"><U>JenB@uic.edu</A></U></TD></TR><TR><TD>Cassaro, Jennifer</TD><TD>996-7849</TD><TD><A HREF="mailto:JCassaro@uic.edu"><U>JCassaro@uic.edu</A></U></TD></TR><TR><TD>Clark, Edward</TD><TD>996-1175</TD><TD><A HREF="mailto:eclark@uic.edu"><U>eclark@uic.edu</A></U></TD></TR><TR><TD>Cohen, Jennifer</TD><TD>996-6738</TD><TD><A HREF="mailto:JLCohen@uic.edu"><U>JLCohen@uic.edu</A></U></TD></TR><TR><TD>Cull, William</TD><TD>996-7653</TD><TD><A HREF="mailto:WCull@uic.edu"><U>WCull@uic.edu</A></U></TD></TR><TR><TD>Edison, Marcia</TD><TD>996-8073</TD><TD><A HREF="mailto:marciae@uic.edu"><U>marciae@uic.edu</A></U></TD></TR><TR><TD>Elstein, Arthur</TD><TD>996-5451</TD><TD><A HREF="mailto:AElstein@uic.edu"><U>AElstein@uic.edu</A></U></TD></TR><TR><TD>Elster, Nanette</TD><TD>996-7216</TD><TD><A HREF="mailto:NElster@uic.edu"><U>NElster@uic.edu</A></U></TD></TR><TR><TD>Esposito, Mary</TD><TD>996-3590</TD><TD><A HREF="mailto:Esposito@uic.edu"><U>Esposito@uic.edu</A></U></TD></TR><TR><TD>Eulenberg, Barbara</TD><TD>996-5707</TD><TD><A HREF="mailto:Eulie@uic.edu"><U>Eulie@uic.edu</A></U></TD></TR><TR><TD>Fedoruk, Steven</TD><TD>996-2989</TD><TD><A HREF="mailto:SJF@uic.edu"><U>SJF@uic.edu</A></U></TD></TR><TR><TD>Garg, Mohan</TD><TD>996-7867</TD><TD><A HREF="mailto:MohanG@uic.edu"><U>MohanG@uic.edu</A></U></TD></TR><TR><TD>Gelula, Mark</TD><TD>996-2696</TD><TD><A HREF="mailto:MGelula@uic.edu"><U>MGelula@uic.edu</A></U></TD></TR><TR><TD>Gonzales, Chris</TD><TD>355-3607</TD><TD><A HREF="mailto:chrisg@uic.edu"><U>ChrisG@uic.edu</A></U></TD></TR><TR><TD>Hurm, Martin</TD><TD>996-6551</TD><TD><A HREF="mailto:MHurm@uic.edu"><U>MHurm@uic.edu</A></U></TD></TR><TR><TD>Johnson, Vivian</TD><TD>996-5406</TD><TD><A HREF="mailto:vjohns1@uic.edu"><U>VJohns1@uic.edu</A></U></TD></TR><TR><TD>Jasti, Kamal</TD><TD>996-4422</TD><TD><A HREF="mailto:ljasti1@uic.edu"><U>ljasti1@uic.edu</A></U></TD></TR><TR><TD>Khan, Gladys</TD><TD>996-3594</TD><TD><A HREF="mailto:GKhan@uic.edu"><U>GKhan@uic.edu</TD></TR><TR><TD>Krawczyk, Tony</TD><TD>996-6383</TD><TD><A HREF="mailto:Krawczyk@uic.edu"><U>Krawczyk@uic.edu</A></U></TD></TR><TR><TD>Langele, Emily</TD><TD>996-8956</TD><TD><A HREF="mailto:ELangele@uic.edu"><U>ELangele@uic.edu</A></U></TD></TR><TR><TD>Levi, Allan</TD><TD>996-7356</TD><TD><A HREF="mailto:AHLevi@uic.edu"><U>AHLevi@uic.edu</A></U></TD></TR><TR><TD>Lyon, Leslie</TD><TD>996-6494</TD><TD><A HREF="mailto:ljlyon@uic.edu"><U>LJLyon@uic.edu</A></U></TD></TR><TR><TD>Maddox, Margie</TD><TD>996-5899</TD><TD><A HREF="mailto:MMaddox@uic.edu"><U>MMaddox@uic.edu</A></U></TD></TR><TR><TD>Mrtek, Robert</TD><TD>996-7898</TD><TD><A HREF="mailto:Mrtek@uic.edu"><U>Mrtek@uic.edu</A></U></TD></TR><TR><TD>Murphy, Timothy</TD><TD>996-3595</TD><TD><A HREF="mailto:TMurphy@uic.edu"><U>TMurphy@uic.edu</A></U></TD></TR><TR><TD>Poirier, Suzanne</TD><TD>996-7954</TD><TD><A HREF="mailto:SPoirier@uic.edu"><U>SPoirier@uic.edu</A></U></TD></TR><TR><TD>Redding, Vannessa</TD><TD>996-6371</TD><TD><A HREF="mailto:VRedding@uic.edu"><U>VRedding@uic.edu</A></U></TD></TR><TR><TD>Robinson, Sharon</TD><TD>996-6381</TD><TD><A HREF="mailto:SRobinsn@uic.edu"><U>SRobinsn@uic.edu</A></U></TD></TR><TR><TD>Roe, Bonnie</TD><TD>996-6181</TD><TD><A HREF="mailto:BRoe@uic.edu"><U>BRoe@uic.edu</A></U></TD></TR><TR><TD>Rutz, Mary</TD><TD>996-1691</TD><TD><A HREF="mailto:MaryRutz@uic.edu"><U>MaryRutz@uic.edu</A></U></TD></TR><TR><TD>Sandlow, Leslie</TD><TD>996-3593</TD><TD><A HREF="mailto:LJS@uic.edu"><U>LJS@uic.edu</A></U></TD></TR><TR><TD>Schwartz, Alan</TD><TD>996-2070</TD><TD><A HREF="mailto:Alansz@uic.edu"><U>Alansz@uic.edu</A></U></TD></TR><TR><TD>Seefeldt, Michael</TD><TD>996-5432</TD><TD><A HREF="mailto:FMS@uic.edu"><U>FMS@uic.edu</A></U></TD></TR><TR><TD>Settle, Janet</TD><TD>996-4666</TD><TD><A HREF="mailto:JSettle@uic.edu"><U>JSettle@uicledu</A></U></TD></TR><TR><TD>Sharf, Barbara</TD><TD>&nbsp;</TD><TD><A HREF="mailto:bsharf@tamu.edu"><U>BSharf@tamu.edu</A></U></TD></TR><TR><TD>Smith, Joyce</TD><TD>413-1963</TD><TD><A HREF="mailto:JoyceS@uic.edu"><U>JoyceS@uic.edu</A></U></TD></TR><TR><TD>Stapleton, Jerry</TD><TD>355-3716</TD><TD><A HREF="mailto:gstapltn@uic.edu"><U>GStapltn@uic.edu</A></U></TD></TR><TR><TD>Tamplin, Tristan</TD><TD>996-6738</TD><TD><A HREF="mailto:TDT@uic.edu"><U>TDT@uic.edu</A></U></TD></TR><TR><TD>Tekian, Ara</TD><TD>996-8438</TD><TD><A HREF="mailto:Tekian@uic.edu"><U><U>Tekian@uic.edu</A></U></TD></TR><TR><TD>Troy, Loreen</TD><TD>996-7528</TD><TD><A HREF="mailto:LTroy@uic.edu"><U>LTroy@uic.edu</A></U></TD></TR><TR><TD>Valaski, Maureen</TD><TD>996-8580</TD><TD><A HREF="mailto:MValaski">MValaski@uic.edu</A></U></TD></TR></font></TABLE>'

//DME Faculty & staff
content[87]='<font face=arial size=3><b>DME Faculty & Staff Index</b></font><br><br><font face=arial size=2><a class="one" href="javascript:onClick=changetextclick(content[80])" onMouseOver="changetextagain(content[27])">Faculty</a><br><a class="one" href="javascript:onClick=changetextclick(content[91])" onMouseOver="changetextagain(content[27])">Administration & Staff</a><br><a class="one" href="javascript:onClick=changetextclick(content[92])" onMouseOver="changetextagain(content[27])">Clinical Performance Center Staff</a><br><a class="one" href="javascript:onClick=changetextclick(content[93])" onMouseOver="changetextagain(content[27])">Distance Education Staff</a><br><a class="one" href="javascript:onClick=changetextclick(content[94])" onMouseOver="changetextagain(content[27])">Hispanic Center Staff</a><br><a class="one" href="javascript:onClick=changetextclick(content[95])" onMouseOver="changetextagain(content[27])">Testing Center Staff</a><br><br><hr><br></font><font face=arial size=2><P><FONT SIZE=2><B><i><a class="one" href="javascript:changetextclick(content[80])">Faculty</a></i></B>&nbsp;(Click for listing)</FONT><br><b>Emeritus</b><UL><LI><a class="two" href="javascript:onClick=openwindow(fac[20])" onMouseOver="changetextagain(content[27])"><U>Elstein, Arthur</U></A>, PhD</LI><LI><a class="two" href="javascript:onClick=openwindow(fac[12])" onMouseOver="changetextagain(content[27])"><U>Poirier, Suzanne</U></A>, PhD</LI><LI><a class="two" href="javascript:onClick=openwindow(fac[21])" onMouseOver="changetextagain(content[27])"><U>Telder, Thomas</U></A>, PhD</LI></UL><br><i><b><a class="one" href="javascript:changetextclick(content[89])">Joint and Adjunct Appointments</a></b></i>&nbsp;(Click for listing)</font>'
content[89]='<font face=arial size=3><b>DME Faculty & Staff Index</b></font><br><br><font face=arial size=2><a class="one" href="javascript:onClick=changetextclick(content[80])" onMouseOver="changetextagain(content[27])">Faculty</a><br><a class="one" href="javascript:onClick=changetextclick(content[91])" onMouseOver="changetextagain(content[27])">Administration & Staff</a><br><a class="one" href="javascript:onClick=changetextclick(content[92])" onMouseOver="changetextagain(content[27])">Clinical Performance Center Staff</a><br><a class="one" href="javascript:onClick=changetextclick(content[93])" onMouseOver="changetextagain(content[27])">Distance Education Staff</a><br><a class="one" href="javascript:onClick=changetextclick(content[94])" onMouseOver="changetextagain(content[27])">Hispanic Center Staff</a><br><a class="one" href="javascript:onClick=changetextclick(content[95])" onMouseOver="changetextagain(content[27])">Testing Center Staff</a><br><br><hr><br></font><font face=arial size=2><P><FONT SIZE=2><B><i><a class="one" href="javascript:changetextclick(content[80])">Faculty</a></i></B>&nbsp;(Click for listing)</FONT><br><i><b><a class="one" href="javascript:changetextclick(content[87])">Emeritus</a></b></i>&nbsp;(Click for listing)<br><b>Joint and Adjunct Appointments</b><UL><LI><a class="two" href="javascript:onClick=openwindow(fac[68])" onMouseOver="changetextagain(content[27])"><U>Anderson-Shaw, Lisa</U></A>, DPH, MA, MSN </LI><LI><a class="two" href="javascript:onClick=openwindow(fac[26])" onMouseOver="changetextagain(content[27])"><U>Aparicio, Alejandro</U></A>, M.D., F.A.C.P </LI><LI><a class="two" href="javascript:onClick=openwindow(fac[29])" onMouseOver="changetextagain(content[27])"><U>Bernstein, Lionel</U></A>, MD, PhD</LI><LI><a class="two" href="javascript:onClick=openwindow(fac[31])" onMouseOver="changetextagain(content[27])"><U>Block, Keith</U></A>, M.D.</LI><LI><a class="two" href="javascript:onClick=openwindow(fac[32])" onMouseOver="changetextagain(content[27])"><U>Cannon, Bradley</U></A>, PharmD</LI><LI><a class="two" href="javascript:onClick=openwindow(fac[33])" onMouseOver="changetextagain(content[27])"><U>Chambers, Donald</U></A>,Ph.D. </LI><LI><a class="two" href="javascript:onClick=openwindow(fac[34])" onMouseOver="changetextagain(content[27])"><U>Cook, David</U></A>, M.D., M.H.P.E </LI><LI><a class="two" href="javascript:onClick=openwindow(fac[35])" onMouseOver="changetextagain(content[27])"><U>Cummins, Deborah</U></A>, Ph.D. </LI><LI><a class="two" href="javascript:onClick=openwindow(fac[36])" onMouseOver="changetextagain(content[27])"><U>Davis, Leonard</U></A>, PhD</LI><LI><a class="two" href="javascript:onClick=openwindow(fac[37])" onMouseOver="changetextagain(content[27])"><U>Desjardins, Claude</U></A>, Ph.D. </LI><LI><a class="two" href="javascript:onClick=openwindow(fac[38])" onMouseOver="changetextagain(content[27])"><U>Dorsch, Josephine</U></A></LI><LI><a class="two" href="javascript:onClick=openwindow(fac[40])" onMouseOver="changetextagain(content[27])"><U>Fox, Geraldine</U></A>, MD</LI><LI><a class="two" href="javascript:onClick=openwindow(fac[42])" onMouseOver="changetextagain(content[27])"><U>Gill, Carol</U></A>, PhD</LI><LI><a class="two" href="javascript:onClick=openwindow(fac[44])" onMouseOver="changetextagain(content[27])"><U>Halpern, Sidney</U></A>, PhD</LI><LI><a class="two" href="javascript:onClick=openwindow(fac[45])" onMouseOver="changetextagain(content[27])"><U>Hasnain, Memoona</U></A>, MD</LI><LI><a class="two" href="javascript:onClick=openwindow(fac[46])" onMouseOver="changetextagain(content[27])"><U>Heckerling, Paul</U></A>, MD</LI><LI><a class="two" href="javascript:onClick=openwindow(fac[47])" onMouseOver="changetextagain(content[27])"><U>Hupert, Jordan</U></A>, MD</LI><LI><a class="two" href="javascript:onClick=openwindow(fac[48])" onMouseOver="changetextagain(content[27])"><U>Joshi, Medha</U></A>, M.D. </LI><LI><a class="two" href="javascript:onClick=openwindow(fac[49])" onMouseOver="changetextagain(content[27])"><U>Juul, Dorthea</U></A>, PhD</LI><LI><a class="two" href="javascript:onClick=openwindow(fac[69])" onMouseOver="changetextagain(content[27])"><U>Kaplan, Kalman</U></A>, PhD </LI><LI><a class="two" href="javascript:onClick=openwindow(fac[50])" onMouseOver="changetextagain(content[27])"><U>Klamen, Debra</U></A>, MD</LI><LI><a class="two" href="javascript:onClick=openwindow(fac[51])" onMouseOver="changetextagain(content[27])"><U>Kusseling, Françoise</U></A>, PhD, MHPE</LI><LI><a class="two" href="javascript:onClick=openwindow(fac[52])" onMouseOver="changetextagain(content[27])"><U>Lagay, Faith</U></A>, Ph.D. </LI><LI><a class="two" href="javascript:onClick=openwindow(fac[55])" onMouseOver="changetextagain(content[27])"><U>McGaghie, William</U></A>, PhD</LI><LI><a class="two" href="javascript:onClick=openwindow(fac[57])" onMouseOver="changetextagain(content[27])"><U>Scherrer, Carol</U></A></LI><LI><a class="two" href="javascript:onClick=openwindow(fac[58])" onMouseOver="changetextagain(content[27])"><U>Shields, Mark</U></A>, M.D. </LI><LI><a class="two" href="javascript:onClick=openwindow(fac[60])" onMouseOver="changetextagain(content[27])"><U>Tranmer, Patrick</U></A>, M.D. </LI><LI><a class="two" href="javascript:onClick=openwindow(fac[61])" onMouseOver="changetextagain(content[27])"><U>Valenta, Annette</U></A>, PhD</LI><LI><a class="two" href="javascript:onClick=openwindow(fac[62])" onMouseOver="changetextagain(content[27])"><U>Vidyasagar, Dhamapuri</U></A>, MD</LI><LI><a class="two" href="javascript:onClick=openwindow(fac[64])" onMouseOver="changetextagain(content[27])"><U>Williams, Reed</U></A>, PhD</LI></UL></font>'
//content[90]='<DIV align="center" style="color: #000000; border: solid 1px #10480B; width: 450px; height: 900px; overflow: scroll;"><table width="95%" cellspacing="0" cellpadding="0"><tr><td><font face=arial size=3><b>Current DME Faculty Research Projects & Interests</b></font></td></tr> <tr><td>&nbsp;</td></tr> <tr><td><font face=arial size=2><p><strong>Philip Bashook</strong><ul><li>Case-based learning and assessment (case library theory) <li>Graduate Medical Education<li>Evaluating the competence of residents and practitioners <li>Case-based oral examinations <li>Survey research methodology<li>Design of Web-based curricula using branching simulations <li>Evaluation of multi-site and other complex educational programs <li>Educating about Bioterrorism defense<li>Accreditation, certification and licensure of health professionals</ul></font></td></tr>    <tr><td><font face=arial size=2><p><strong>Georges Bordage</strong><ul><li>Semantic and diagnostic competence of medical students and experienced physicians during clinical case presentations:  studies of reliability, validity and feasibility.<li>Educational diagnosis and criteria for educational prescription for physicians in difficulty. <li>Validity of written assessment of clinical decision-making (Key Features examinations.) <li>Scientific writing. <li>Outcomes research related to HPE.</ul></font></td></tr>   <tr><td><font face=arial size=2><p><strong>Steven M. Downing</strong><ul><li>Test development issues <li>Test validity issues <li>Psychometrics <li>High-stakes licensure and certification testing <li>Standard-setting, especially for performance examinations <li>Selected-response items <li>Construct-irrelevant variance <li>Generalizability Theory analysis</ul></td></tr>   <tr><td><font face=arial size=2><p><strong>Marcia Edison</strong><ul><li>Development of resident education programs for the Department of Surgery, the Minimally Invasive Surgery Center, and the Virtual Reality in MedicineLaboratory.<li>Curriculum Design for Skills Education</ul></td></tr>      <tr><td><font face=arial size=2><p><strong>Mark Gelula</strong><ul><li>Strategies for improvement of teaching <li>Optimal approaches to lecturing <li>Effectiveness of standardized students as foils for teaching improvement <li>Approaches to learning among health professions students <li>Outcomes and effectiveness of various approaches to Faculty development among clinical faculty <li>Outcomes and effectiveness of various approaches to continuing medical education <li>Online learning effectiveness and outcomes</ul></td></tr>      <tr><td><font face=arial size=2><p><strong>Sander Gilman</strong><ul><li>History of Medicine<li>Stigma, Disability, and Health</ul></td></tr>     <tr><td><font face=arial size=2><p><strong>Julie Goldberg</strong><ul><li>Applying the economic theory of mental accounting to patients preferences for experiencing health states <li>Translating health profile data into utility measures for cost-effectiveness analysis <li>Measuring patients evaluations of health states for decision-analytic models <li>Developing patient-level and community-level interventions to promote informed decision making.</ul></td></tr>     <tr><td><font face=arial size=2><p><strong>Ilene Harris</strong><ul><li>Curriculum development, theory, deliberation and reform <li>Qualitative research methods <li>Performance assessment of medical students, residents and practitioners <li>Design and assessment of faculty development programs <li>Evaluation of education programs <li>Teaching education in ambulatory settings <li>Conceptualization of professional competence </ul></td></tr>  <tr><td><font face=arial size=2><p><strong>Robert Mrtek</strong><ul><li>Development of teaching strategies for principles of evidence. Target audience: healthcare practitioners and knowledge managers <li>Development of a computerized database application (Lotus Notes/Domino) for clinical experiential data from distributed clerkships. <li>Use of Q sort technique and Q Methodology as a research strategy for affective domain investigations of subjective attitudes in the healthcare delivery process. </ul></td></tr>     <tr><td><font face=arial size=2><p><strong>Timothy Murphy</strong><ul><li>Ethical analysis of research with children<li>Ethical analysis of researcher conflict of interest<li>Ethical analysis of living organ donation </ul></td></tr>    <tr><td><font face=arial size=2><p><strong>Jobe Payne</strong><ul><li>History of blacks in the health professions<li>Design and teach courses in cultural competency for physicians in training.<li>Documenting the productivity of the selected health professional programs.</ul></td></tr>    <tr><td><font face=arial size=2><p><strong>Suzanne Poirier</strong><ul><li>A literary analysis of physicians memoirs, with particular attention to the professional development of physicians as shaped by their medical education.<li>A creative writing project for students in gross anatomy and general work in the uses of creative writing as a tool in medical education.<li>Pedagogical and hands-on study of use of literary works (fiction, poetry, memoir) to depict the experience of illness and disability.</ul></td></tr>    <tr><td><font face=arial size=2><p><strong>Leslie J. Sandlow</strong><ul><li>Health care outcomes in the ambulatory setting <li>Resource management educational impact and implementation <li>Innovative GIM curriculum in GME <li>Clinical teaching in the ambulatory setting <li>UGME: New approaches </ul></td></tr>  <tr><td><font face=arial size=2><p><strong>Alan Schwartz</strong><ul><li>Assessment of evidence-based medicine and its impact on learners and patients<li>Online tools for helping physicians interpret research results<li>Mental accounting of health outcomes<li>Risk perception and risk attitude in informed consent<li>Pediatrics education and decision making<li>Descriptive models of judgment and decision making</ul></td></tr>	<tr><td><font face=arial size=2><p><strong>Michael Seefeldt</strong><ul><li>Medical curriculum and evaluation<li>Program evaluation and curricular reform<li>Community-based health programs<li>Faculty evaluation and leadership in university culture<li>Program evaluation of Innovative medical education in developing countries<li>Evaluation theory and political implications of evaluation models</ul></td></tr>	<tr><td><font face=arial size=2><p><strong>Sandra Sufian</strong><br>Research Projects: In Progress Articles and Books<ul><li>Body Images in Political Cartoons of Hebrew and Arabic newspapers of Palestine<li>Transforming dissertation on Malaria in Mandatory Palestine (1920-1947) to book form<li>Integrating Medical History into the Historiography of the Middle East<li>Colonial Medicine and Arab Health from World War I to 1948: the case of Jerusalem</ul>General Research and Teaching Areas:<ul><li>History of Medicine of the modern Middle East<li>History of Medicine of America<li>History of Disability<li>Women\'s Health Issues<li>Global Health Problems<li>History of Epidemiology<li>Critical Medical Geography<li>Medical Anthropology<li>Feminist, Critical and Post-colonial Theory<li>Integrating Humanities methodologies/approaches into Medical Education, Medical Practice, and Public Health Research</ul></td></tr>	<tr><td><font face=arial size=2><p><strong>Ara Tekian</strong><ul><li>Longitudinal Studies related to undergraduate medical students\' profiles including admissions, ethnicity, academic performance, choice of specialty, site of training, etc.<li>Selection and retention of underrepresented minorities in medicals schools<li>MCAT as a predictor of USMLE Step 1 failure<li>Qualitative studies about personal statements<li>Student assessment and innovative testing methodologies<li>Assessment methods in PBL medical schools<li>Medical curriculum development and curricular change<li>Simulations in Medicine<li>Status of medical education in some countries in the Eastern Mediterranean Region and in Europe</ul></td></tr>	<tr><td><font face=arial size=2><p><strong>Rachel Yudkowsky</strong><ul><li>Outcomes of faculty development programs to improve clinical teaching using encounters with standardized health professions students<li>Outcomes of an intensive faculty development program to improve lecture skills<li>Teaching-skill interests of new residents<li>Utility of different types of post-encounter probes for standardizedpatient-based assessments<li>Assessment of student and resident interpersonal and communication skills<li>Competency assessment of students and residents</ul></td></tr></table> </DIV>'

content[91]='<font face=arial size=3><b>DME Faculty & Staff Index</b></font><br><br><font face=arial size=2><a class="one" href="javascript:onClick=changetextclick(content[80])">Faculty</a><br><a class="one" href="javascript:onClick=changetextclick(content[91])">Administration & Staff</a><br><a class="one" href="javascript:onClick=changetextclick(content[92])">Clinical Performance Center Staff</a><br><a class="one" href="javascript:onClick=changetextclick(content[93])">Distance Education Staff</a><br><a class="one" href="javascript:onClick=changetextclick(content[94])">Hispanic Center Staff</a><br><a class="one" href="javascript:onClick=changetextclick(content[95])">Testing Center Staff</a><br><br><hr><br></font><font face=arial size=2><P><B><I><FONT SIZE=2>DME Administration & Staff</FONT></B></I><P><FONT SIZE=2><UL><LI><a class="two" href="facbios.html#DiRu" onMouseOver="changetextagain(content[27])"><U>Rudall, Diane</U></A><br>Assistant to the Department Head<br><br></LI><LI><a class="two" href="facbios.html#AlLe" onMouseOver="changetextagaFin(content[27])"><U>Levi, Allan H.</U></A><br>Associate Director for Operations<br><br></LI><LI><a class="two" href="facbios.html#JaSe" onMouseOver="changetextagain(content[27])"><U>Settle, Janet</U></A><br>Coordinator of Graduate Medical Education & International Fellowships<br><br></LI><LI><U>Khan, Gladys M.</U></A><br>Administrative Secretary<br><br></LI><LI><U>Mesta, Margaret</U></A><br>Procedures & Systems Analyst<br><br></LI><LI><U>Davis, Linda D.</U></A><br>Secretary<br><br></LI><LI><U>Schaaf, Laura P.</U></A><br>Research Information Specialist<br><br></LI></UL></font>'
content[92]='<font face=arial size=3><b>DME Faculty & Staff Index</b></font><br><br><font face=arial size=2><a class="one" href="javascript:onClick=changetextclick(content[80])">Faculty</a><br><a class="one" href="javascript:onClick=changetextclick(content[91])">Administration & Staff</a><br><a class="one" href="javascript:onClick=changetextclick(content[92])">Clinical Performance Center Staff</a><br><a class="one" href="javascript:onClick=changetextclick(content[93])">Distance Education Staff</a><br><a class="one" href="javascript:onClick=changetextclick(content[94])">Hispanic Center Staff</a><br><a class="one" href="javascript:onClick=changetextclick(content[95])">Testing Center Staff</a><br><br><hr><br></font><font face=arial size=2><P><B><I><FONT SIZE=2>Clinical Performance Center Staff</FONT></B></I><P><FONT SIZE=2><UL><LI><U>Yudkowsky, Rachel, MD, MHPE</U></A><br>Director<br><br></LI><LI><U>Hurm, Martin, MFA</U></A><br>Associate Director<br><br></LI><LI><U>Noles, Jane</U></A><br>Assistant Director<br><br></LI><LI><U>Kiser, Bob</U></A><br>Standardized Patient Coordinator<br><br></LI><LI><U>Grover, Heather L.</U></A><br>Office Manager<br><br></LI></UL></font>'
content[93]='<font face=arial size=3><b>DME Faculty & Staff Index</b></font><br><br><font face=arial size=2><a class="one" href="javascript:onClick=changetextclick(content[80])">Faculty</a><br><a class="one" href="javascript:onClick=changetextclick(content[91])">Administration & Staff</a><br><a class="one" href="javascript:onClick=changetextclick(content[92])">Clinical Performance Center Staff</a><br><a class="one" href="javascript:onClick=changetextclick(content[93])">Distance Education Staff</a><br><a class="one" href="javascript:onClick=changetextclick(content[94])">Hispanic Center Staff</a><br><a class="one" href="javascript:onClick=changetextclick(content[95])">Testing Center Staff</a><br><br><hr><br></font><font face=arial size=2><P><B><I><FONT SIZE=2>Distance Education Staff</FONT></B></I><P><FONT SIZE=2><UL><LI><U>Stapleton, Gerald R., MS Ed Admin</U></A><br>Director for Distance Education<br><br></LI><LI><U>Joshi, Medha, MD</U></A><br>Core Curriculm Faculty<br><br></LI><LI><U>Aziz, Saman, MD</U></A><br>Core Curriculum Faculty<br><br></LI><LI><U>Pincuspy, KayC</U></A><br>Student Support Systems Manager<br><br></LI><LI><U>Bertulfo, Philip</U></A><br>Multi-media Systems Specialist<br><br></LI><LI><U>Zhang, Jufeng, MBA</U></A><br>Applications/Marketing Specialist<br><br></LI><LI><U>Patel, Yogeshkumar</U></A><br>Systems/Web Specialist<br><br></LI></UL></font>'
content[94]='<font face=arial size=3><b>DME Faculty & Staff Index</b></font><br><br><font face=arial size=2><a class="one" href="javascript:onClick=changetextclick(content[80])">Faculty</a><br><a class="one" href="javascript:onClick=changetextclick(content[91])">Administration & Staff</a><br><a class="one" href="javascript:onClick=changetextclick(content[92])">Clinical Performance Center Staff</a><br><a class="one" href="javascript:onClick=changetextclick(content[93])">Distance Education Staff</a><br><a class="one" href="javascript:onClick=changetextclick(content[94])">Hispanic Center Staff</a><br><a class="one" href="javascript:onClick=changetextclick(content[95])">Testing Center Staff</a><br><br><hr><br></font><font face=arial size=2><P><B><I><FONT SIZE=2>Hispanic Center Staff</FONT></B></I><P><FONT SIZE=2><UL><LI><U>Girotti, Jorge A., Ph.D.</U></A><br>Director<br><br></LI><LI><U>Bautista, Pilar Carmona, MBA</U></A><br>Associate Director<br><br></LI><LI><U>Campos, Norma</U></A><br>Visiting Project Coordinator<br><br></LI><LI><U>Martinez, Carlos Cesar</U></A><br>Program Coordinator<br><br></LI><LI><U>Vasquez, Raul J.</U></A><br>Information Research Specialist<br><br></LI></UL></font>'
content[95]='<font face=arial size=3><b>DME Faculty & Staff Index</b></font><br><br><font face=arial size=2><a class="one" href="javascript:onClick=changetextclick(content[80])">Faculty</a><br><a class="one" href="javascript:onClick=changetextclick(content[91])">Administration & Staff</a><br><a class="one" href="javascript:onClick=changetextclick(content[92])">Clinical Performance Center Staff</a><br><a class="one" href="javascript:onClick=changetextclick(content[93])">Distance Education Staff</a><br><a class="one" href="javascript:onClick=changetextclick(content[94])">Hispanic Center Staff</a><br><a class="one" href="javascript:onClick=changetextclick(content[95])">Testing Center Staff</a><br><br><hr><br></font><font face=arial size=2><P><B><I><FONT SIZE=2>Testing Center Staff</FONT></B></I><P><FONT SIZE=2><UL><LI><U>Conley, Patrick R., Ph.D.</U></A><br>Director<br><br></LI><LI><U>Eggert, Janille</U></A><br>Research Information Specialist<br><br></LI><LI><U>Smith, Robert N., MSW</U></A><br>Test Developer<br><br></LI><LI><U>Robinson, Sharon M.</U></A><br>Data Processing Analyst I<br><br></LI><LI><U>Krawczyk, Anthony J.</U></A><br>Data Processing Analyst II<br><br></LI></UL></font>'

//Student Resources
content[96]='<font face=arial size=3><b>Student Resources</b></font><BR><BR><font face=arial size=2><a class="one" href="javascript:onClick=changetextclick(content[97])">Is Online Learning for you?</a></font>'
content[97]='<DIV align="center" style="color: #000000; border: solid 1px #10480B; width: 320px; height: 700px; overflow: scroll;"><table width="100%" border="0" cellpadding="6"><tr><td> <p> </p> <p align="left"><font face="arial" size="3"><b>Is Online Learning for You?</b><br></font><font face="arial" size="1">(Following information taken from University of Illinois Online)</font></p><font face="arial" size="2"><p align="left">Online classes are often very different than traditional face-to-face classes in terms of how the material is presented, the nature of the interaction among class members, and the overall learning experience. Many students report that they actually learn more in online classes than in face-to-face classes and find the experience more rewarding. But online classes aren\'t right for everyone. Even if you are an excellent student, you may find that online classes are not compatible with your learning style. So, before enrolling in your first online class, give some thought to whether online learning is right for you. Answering the following questions may help you with this process:</p><p align="left"><b><font color="#000066"><span class="blue003366">Do you have self-discipline and motivation?</span></font></b><br>Unlike traditional courses in which the students and instructor meet face-to-face once or several times a week, most of the learning activities and communication in an online course are <i>asynchronous</i>, meaning that class members participate and complete their assignments at different times throughout the day and week. This arrangement can make it possible for you to do your class work when it\'s most convenient for you. However, with this increased freedom and flexibility comes responsibility. Without the structure of regular class meetings, it will be up to you to pace yourself and keep up with assignments.</p><p align="left"><b><font color="#000066"><span class="blue003366">Are you able to commit time each day or week to your online course(s)?</span></font></b><br>Online courses often require at least as much, if not more time and commitment than traditional courses. Completing course assignments and other learning activities can take from five to fifteen hours or more per week. And you may find that you need to be online almost every day. So before enrolling, be sure you can set aside enough time to keep up with your daily or weekly assignments.</p><p align="left"><b><font color="#000066"><span class="blue003366">Do you have good communication skills and enjoy expressing your ideas in writing?</span></font></b><br>In online courses, nearly all communication is written, so it is critical that you feel comfortable expressing yourself in writing. If you feel that you are weak in this area, try to brush up on your writing skills and find out how much writing is required for the course before enrolling.</p>      <p align="left"><b><font color="#000066"><span class="blue003366">Do you feel comfortable discussing problems with your instructors?</span></font></b><br>If you are having problems with the technology or the course content, you need to let your instructor know as soon as possible. Without this feedback, your instructor will never know what is wrong. Remember that many of the nonverbal cues that you use in the classroom to show frustration, boredom, or confusion (such as a yawn or a look of bewilderment) are not possible in an online class.</p> <p align="left"><b><font color="#000066"><span class="blue003366">Will you miss the experience of sitting in a classroom?</span></font></b><br>While the level of interaction can be very high in online courses, it is not the same face-to-face interaction. Some online students miss having the opportunity to see and listen to their instructor and classmates. If you feel that a traditional classroom is essential for learning or you want to experience campus and dorm life, online classes may not be right for you. </p><p align="left"><b><font color="#000066"><span class="blue003366">Are you comfortable using computers?</span></font></b><br>The personal computer is the primary learning and communication tool in most online courses. You don\'t need to be a computer guru or a geek to succeed, but you do need to have some basic technology skills, such as word processing and using a Web browser. Needless to say, you will also need regular access to a computer with an Internet connection. If you find computers scary or intimidating, you may want to get some computer training at a local community college before taking an online course</p><p align="left">While there are many points to consider when making a decision about online learning, ultimately you are in the best position to know whether it fits your personal learning style and life style. If you have the right qualities to be a successful online student, you will probably find it to be a very convenient and rewarding alternative to traditional classroom learning. For more help with deciding whether or not to become an online student, investigate the links below:</p></font></td></tr> <tr><td><font face="arial" size="2"><ul><li><a href="http://www.onlinelearning.net/ole/holwselfassess.html?s=827.o050w913x.009l102g51247429900" target="blank">Is Online Learning for Me?</a> <br>UCLA Extension\'s online quiz.<li><a href="http://www.cod.edu/dept/CIL/CIL_Surv.htm" target="blank">Are Distance Learning Courses for me?</a> <br>College of DuPage\'s online quiz.<li><a href="http://sln.suny.edu/admin/sln/original.nsf/40e29b6d09ba77a88525642d004a0bb4?OpenForm" target="blank">Distance Learning Calculator</a> <br>SUNY\'s tool for determining how much money is saved by taking a course from home.<li><a href="http://www.ion.uillinois.edu/IONresources/reid.html" target="blank">What Every Student Should Know about Online Learning</a> <br>An article by John E. Reid Jr., available on the <a href="http://www.ion.uillinois.edu" target="blank">Illinois Online Network</a> Web site.<li><a href="http://www.ion.uillinois.edu/IONresources/onlineLearning/tips.html" target="blank">Tips for Online Success</a> <br>Tips from the Illinois Online Network.<li><a href="http://www.terra.cc.oh.us/detips.html" target="blank">How to succeed at Distance Learning</a> <br>Several tips from Terra Community College.</ul></font></td></tr></table></div>'

// Positioning of the caption box for the slide show.
content[99]='<table><tr><td id="CaptionBox1" class=Caption></td></tr><tr><td width=350 height=100><img src="Pictures/newviewingmonitors.jpg" name=PictureBox border=0 width=180 height=300></td></tr><tr><td id=CaptionBox2 class=Caption></td></tr> </table>'

// DME Seminar Series Schedule and Archive
content[100]='<font face=arial size=3><b>DME Seminar Series Schedule</b></font><font face=arial size=2><p>The Department of Medical Education at the University of Illinois at Chicago sponsors regular seminars regarding works-in-progress as well as general topics of interest to medical educators.  Professionals in the health professions are invited to attend.  To expand the opportunity to participate and join in these discussions, we have recently begun webcasting these seminars as well.  Anyone with a windows based computer and speakers may participate (microphone optional.)  Please see the following information regarding up and coming seminars:<p><b>Presenter:</b><br> Ilene Harris, Ph.D.<br> Professor<br> UIC Department of Medical Education<p><b>Topic:</b> Qualitative Methods: What are they? How can we use them in our teaching, our scholarship, and our leadership?<p><b>Date:</b>  Wednesday, July 12, 2006<br><b>Time:</b>  3:00 - 4:00 p.m. Chicago Time (CDT)<p><a href="http://128.248.74.210/" target="blank"><font color="blue"><b><i><u>Join Seminar</u></i></b></font></a> (Prior registration required. See Webcast Information below.)<p><b>Location:</b><p>Seminars are held in Rooms 988 A&B of the College of Medicine East Tower, 808 South Wood Street, Chicago, Illinois.  For additional information contact Gladys Khan at 312-996-3594.<p><b>Webcast Information:</b><p>Webcasts are accessible from any windows based computer with Internet access and sound system. For registration and login information call toll-free 877-363-6656 or email "webinars@uic.edu".  Online participation is limited.</font>'
content[101]='<font face=arial size=3><b>DME Seminar Series Video Archives</b></font><font face=arial size=2><p>Videos of the lectures listed below have been archived for your review.  Click an archive title to open the archive with the RealPlayer plugin.<p>RealPlayer:  You will need to have speakers and the RealPlayer plugin installed on your system to view the archives.  If you do not have the RealPlayer plugin installed on your system, you may download it for free from the following site: <a href="http://forms.real.com/netzip/getrde601.html?h=software-dl.real.com&f=windows/RealPlayer10GOLD_bb.exe&p=RealOne+Player&oem=dlrhap_bb&tagtype=ie&type=dlrhap_bb" class="one" target="blank"><u>Download Free RealPlayer</u></a><p><a class="one" href="http://realvideo.uic.edu/ramgen/classes/dme/seminar/060308Schwartz/schwartz.smil"><u><b>Title:  Life Goals and Health Decisions: What will people live (or die) for?</u></a></b><br>Date:  Wednesday, March 8, 2006<br>Presenter: Alan Schwartz, Ph.D.<br>Associate Professor Clinical Decision Making<br>UIC Department of Medical Education<br><a href="2006-03_SCHWARTZ.ppt" target="blank">Powerpoint file</a><p><a class="one" href="http://realvideo.uic.edu/ramgen/classes/dme/seminar/060208Stapleton/stapleton.smil"><u><b>Title:  Connecting Learners in the Digital Classroom: Wikis, Blogs, Podcasts, and Other Tools for Communicating and Collaborating</u></a></b><br>Date:  Wednesday, February 8, 2006<br>Presenter: Gerald R. Stapleton<br>Director for Distance Education<br>UIC Department of Medical Education<br><a href="2006-02_STAPLETON.ppt" target="blank">Powerpoint file</a><p><a class="one" href="http://realvideo.uic.edu/ramgen/classes/dme/seminar/060111Goldberg/goldberg.smil"><u><b>Title:  <I>"You not the stud you think you was anyway"</I> - The Role of Experience in Prostate Cancer Decision Making</u></a></b><br>Date:  Wednesday, January 11, 2006<br>Presenter: Julie Goldberg, Ph.D.<br>Assistant Professor<br>UIC Department of Medical Education<br><a href="2006-01_GOLDBERG.ppt" target="blank">Powerpoint file</a><p><a class="one" href="http://realvideo.uic.edu/ramgen/classes/dme/seminar/050803Stapleton/stapleton.smil"><u><b>Title:  Addressing the ACGME General Competencies through a Multi-Institutional Online System: The GME Core Curriculum</u></a></b><br>Date:  Wednesday, August 3, 2005<br>Presenter: Gerald R. Stapleton<br>Director for Distance Education<br>UIC Department of Medical Education<br><a href="2005-08_STAPLETON.ppt" target="blank">Powerpoint file</a><p><a class="one" href="http://realvideo.uic.edu/ramgen/classes/dme/seminar/050601Murphy/murphy.smil"><u><b>Title:  Embryo Wars: The Ethics of Human Stem Cell Research</u></a></b><br>Date:  Wednesday, June 1, 2005<br>Presenter: Timothy Murphy, PhD<br>Associate Professor and Head, Medical Humanities<br>UIC Department of Medical Education<br><a href="2005-06_MURPHY.ppt" target="blank">Powerpoint file</a><p><a class="one" href="http://realvideo.uic.edu/ramgen/classes/dme/seminar/050504Harris/harris.smil"><u><b>Title:  Scholarship Reconsidered: Implications for our Work as Leaders in Health Professions Education</u></a></b><br>Date:  Wednesday, May 4, 2005<br>Presenter: Ilene Harris, Ph.D.<br>Professor and Director of Graduate Studies<br>UIC Department of Medical Education<br><a href="2005-05_HARRIS.ppt" target="blank">Powerpoint file</a><p><a class="one" href="http://realvideo.uic.edu/ramgen/classes/dme/seminar/050406Girotti/girotti.smil"><u><b>Title:  Medical Education for Cultural Competence</u></a></b><br>Date:  Wednesday, April 6, 2005<br>Presenter: Jorge Girotti, Ph.D.<br>Assistant Professor of Medical Education<br>UIC Department of Medical Education<br>Director<br>Hispanic Center of Excellence<br><a href="2005-04_GIROTTI.ppt" target="blank">Powerpoint file</a><p><a class="one" href="http://realvideo.uic.edu/ramgen/classes/dme/seminar/050302Downing/downing.smil"><u><b>Title:  Flawed Test Items as a Source of Bias in Basic Science Achievement Assessment: Negative Effects on Student Test Scores and Passing Rates</u></a></b><br>Date:  Wednesday, March 2, 2005<br>Presenter: Steven M. Downing, Ph.D.<br>Associate Professor of Medical Education<br>UIC Department of Medical Education<br><a href="2005-03_DOWNING.ppt" target="blank">Powerpoint file</a><p><a class="one" href="http://realvideo.uic.edu/ramgen/classes/dme/seminar/050202tekian/tekian.smil"><u><b>Title:  What Factors Influence Underrepresented Minorities in Their Choice of Medical Schools?</u></a></b><br>Date:  Wednesday, February 2, 2005<br>Presenter: Ara Tekian, Ph.D., MHPE<br>Associate Professor of Medical Education<br>UIC Department of Medical Education<br><a href="2005-02_TEKIAN.ppt" target="blank">Powerpoint file</a><p><a class="one" href="http://realvideo.uic.edu/ramgen/classes/dme/seminar/050105sandlow/sandlow.smil"><u><b>Title:  A Student Portfolio for Teaching, Learning, and Assessment</u></a></b><br>Date:  Wednesday, January 5, 2005<br>Presenter: L. J. Sandlow, M.D.<br>Professor and Head<br>UIC Department of Medical Education<br><a href="2005-01_SANDLOW.ppt" target="blank">Powerpoint file</a><p><a class="one" href="http://realvideo.uic.edu/ramgen/classes/dme/seminar/041201payne/payne.smil"><u><b>Title:  Combatting Oral-Health Disparities: A Manpower Approach</u></a></b><br>Date:  Wednesday, December 1, 2004<br>Co-presenter: Jobe L. Payne, Ph.D.<br>Research Assistant Professor<br>UIC Department of Medical Education<br>Co-presenter: Darryl Pendleton, DMD<br>Associate Dean for Student & Diversity Affairs<br>UIC College of Dentistry<br><a href="2004-12_PAYNE.ppt" target="blank">Powerpoint file</a><p><a class="one" href="http://realvideo.uic.edu/ramgen/classes/dme/seminar/rachel/rachel.smil"><u><b>Title:  Does Prior Experience with Standardized Patients Affect Resident Communication and Interpersonal Skill Scores?</u></a></b><br>Date:  Wednesday, August 4, 2004<br>Presenter: Rachel Yudkowsky, M.D., MHPE<br>Director of Clinical Performance Center, UIC<br>UIC Department of Medical Education<p><a class="one" href="http://realvideo.uic.edu/ramgen/classes/dme/seminar/test/schw_test.smil"><u><b>Title:  A Web-Based Evidence-Based Medicine Library Consult Service</u></a></b><br>Date:  Wednesday, June 9, 2004<br>Presenter: Alan Schwartz, Ph.D.<br>Assistant Professor of Clinical Decision Making<br>UIC Department of Medical Education<p><a class="one" href="http://realvideo.uic.edu/ramgen/classes/dme/seminar/gelula/gelula.smil"><u><b>Title:  Faculty Fellowship - A Work In Progress<br>Background, Current, and Future</b></u></a><br>Date:  Wednesday, May 5, 2004<br>Presenter: Mark Gelula, Ph.D.<br>Assistant Dean for Faculty Development<br>Research Assistant Professor of Medical Education<br>UIC Department of Medical Education</font>'
content[102]='<font face=arial size=3><b>DME Seminar Series Podcast</b></font><font face=arial size=2><p>Audio files for the seminars listed below are available for your review.  Playback options are listed below.</p><p><b>Play File</b>: Left click on archive title play immediately.<br><b>Download File</b>: Right click title and save to your computer.<br><b>Subscribe</b>: To subscribe to the podcast for the DME Seminar Series, add the following URL to your iTunes or Juice subcriptions.<p><input name="textfield" onFocus="this.select();" type="text" value="http://cores33webs.mede.uic.edu/podcast/DMESeminars/DMESeminarsPodcast.xml" style="width: 300px;"></p><p>MP3 Player Required:  You will need to have speakers or a headset and an MP3 player or plugin to listen to the podcast. If you do not have an MP3 player installed on your system, you may download the RealPlayer plugin for free from the following site: <a href="http://forms.real.com/netzip/getrde601.html?h=software-dl.real.com&f=windows/RealPlayer10GOLD_bb.exe&p=RealOne+Player&oem=dlrhap_bb&tagtype=ie&type=dlrhap_bb" class="one" target="blank"><u>Download Free RealPlayer</u></a><p><a class="one" href="http://cores33webs.mede.uic.edu/podcast/DMESeminars/2006-07_HARRIS.mp3"><u><b>Title:  Qualitative Methods: What are they? How can we use them in our teaching, our scholarship, and our leadership?</u></a></b><br>Date:  Wednesday, July 12, 2006<br>Presenter: Ilene Harris, Ph.D.<br> Professor and Director of Graduate Studies<br>UIC Department of Medical Education<br><a href="2006-07_HARRIS.ppt" target="blank">Powerpoint file</a><p><a class="one" href="http://cores33webs.mede.uic.edu/podcast/DMESeminars/2006-03_SCHWARTZ.mp3"><u><b>Title:  Life Goals and Health Decisions: What will people live (or die) for?</u></a></b><br>Date:  Wednesday, March 8, 2006<br>Presenter: Alan Schwartz, Ph.D.<br>Associate Professor Clinical Decision Making<br>UIC Department of Medical Education<br><a href="2006-03_SCHWARTZ.ppt" target="blank">Powerpoint file</a><p><a class="one" href="http://cores33webs.mede.uic.edu/podcast/DMESeminars/2006-02_STAPLETON.mp3"><u><b>Title:  Connecting Learners in the Digital Classroom: Wikis, Blogs, Podcasts, and Other Tools for Communicating and Collaborating</u></a></b><br>Date:  Wednesday, February 8, 2006<br>Presenter: Gerald R. Stapleton<br>Director for Distance Education<br>UIC Department of Medical Education<br><a href="2006-02_STAPLETON.ppt" target="blank">Powerpoint file</a><p><a class="one" href="http://cores33webs.mede.uic.edu/podcast/DMESeminars/2006-01_GOLDBERG.mp3"><u><b>Title:  <I>"You not the stud you think you was anyway"</I> - The Role of Experience in Prostate Cancer Decision Making</u></a></b><br>Date:  Wednesday, January 11, 2006<br>Presenter: Julie Goldberg, Ph.D.<br>Assistant Professor<br>UIC Department of Medical Education<br><a href="2006-01_GOLDBERG.ppt" target="blank">Powerpoint file</a><p><a class="one" href="http://cores33webs.mede.uic.edu/podcast/DMESeminars/2005-08_STAPLETON.mp3"><u><b>Title:  Addressing the ACGME General Competencies through a Multi-Institutional Online System: The GME Core Curriculum</u></a></b><br>Date:  Wednesday, August 3, 2005<br>Presenter: Gerald R. Stapleton<br>Director for Distance Education<br>UIC Department of Medical Education<br><a href="2005-08_STAPLETON.ppt" target="blank">Powerpoint file</a><p><a class="one" href="http://cores33webs.mede.uic.edu/podcast/DMESeminars/2005-06_MURPHY.mp3"><u><b>Title:  Embryo Wars: The Ethics of Human Stem Cell Research</u></a></b><br>Date:  Wednesday, June 1, 2005<br>Presenter: Timothy Murphy, PhD<br>Associate Professor and Head, Medical Humanities<br>UIC Department of Medical Education<br><a href="2005-06_MURPHY.ppt" target="blank">Powerpoint file</a><p><a class="one" href="http://cores33webs.mede.uic.edu/podcast/DMESeminars/2005-05_HARRIS.mp3"><u><b>Title:  Scholarship Reconsidered: Implications for our Work as Leaders in Health Professions Education</u></a></b><br>Date:  Wednesday, May 4, 2005<br>Presenter: Ilene Harris, Ph.D.<br>Professor and Director of Graduate Studies<br>UIC Department of Medical Education<br><a href="2005-05_HARRIS.ppt" target="blank">Powerpoint file</a><p><a class="one" href="http://cores33webs.mede.uic.edu/podcast/DMESeminars/2005-04_GIROTTI.mp3"><u><b>Title:  Medical Education for Cultural Competence</u></a></b><br>Date:  Wednesday, April 6, 2005<br>Presenter: Jorge Girotti, Ph.D.<br>Assistant Professor of Medical Education<br>UIC Department of Medical Education<br>Director<br>Hispanic Center of Excellence<br><a href="2005-04_GIROTTI.ppt" target="blank">Powerpoint file</a><p><a class="one" href="http://cores33webs.mede.uic.edu/podcast/DMESeminars/2005-03_DOWNING.mp3"><u><b>Title:  Flawed Test Items as a Source of Bias in Basic Science Achievement Assessment: Negative Effects on Student Test Scores and Passing Rates</u></a></b><br>Date:  Wednesday, March 2, 2005<br>Presenter: Steven M. Downing, Ph.D.<br>Associate Professor of Medical Education<br>UIC Department of Medical Education<br><a href="2005-03_DOWNING.ppt" target="blank">Powerpoint file</a><p><a class="one" href="http://cores33webs.mede.uic.edu/podcast/DMESeminars/2005-02_TEKIAN.mp3"><u><b>Title:  What Factors Influence Underrepresented Minorities in Their Choice of Medical Schools?</u></a></b><br>Date:  Wednesday, February 2, 2005<br>Presenter: Ara Tekian, Ph.D., MHPE<br>Associate Professor of Medical Education<br>UIC Department of Medical Education<br><a href="2005-02_TEKIAN.ppt" target="blank">Powerpoint file</a><p><a class="one" href="http://cores33webs.mede.uic.edu/podcast/DMESeminars/2005-01_SANDLOW.mp3"><u><b>Title:  A Student Portfolio for Teaching, Learning, and Assessment</u></a></b><br>Date:  Wednesday, January 5, 2005<br>Presenter: L. J. Sandlow, M.D.<br>Professor and Head<br>UIC Department of Medical Education<br><a href="2005-01_SANDLOW.ppt" target="blank">Powerpoint file</a><p><a class="one" href="http://cores33webs.mede.uic.edu/podcast/DMESeminars/2004-12_PAYNE.mp3"><u><b>Title:  Combatting Oral-Health Disparities: A Manpower Approach</u></a></b><br>Date:  Wednesday, December 1, 2004<br>Co-presenter: Jobe L. Payne, Ph.D.<br>Research Assistant Professor<br>UIC Department of Medical Education<br>Co-presenter: Darryl Pendleton, DMD<br>Associate Dean for Student & Diversity Affairs<br>UIC College of Dentistry<br><a href="2004-12_PAYNE.ppt" target="blank">Powerpoint file</a><p><a class="one" href="http://realvideo.uic.edu/ramgen/classes/dme/seminar/rachel/rachel.smil"><u><b>Title:  Does Prior Experience with Standardized Patients Affect Resident Communication and Interpersonal Skill Scores?</u></a></b><br>Podcast not available<br>Date:  Wednesday, August 4, 2004<br>Presenter: Rachel Yudkowsky, M.D., MHPE<br>Director of Clinical Performance Center, UIC<br>UIC Department of Medical Education<p><a class="one" href="http://realvideo.uic.edu/ramgen/classes/dme/seminar/test/schw_test.smil"><u><b>Title:  A Web-Based Evidence-Based Medicine Library Consult Service</u></a></b><br>Podcast not available<br>Date:  Wednesday, June 9, 2004<br>Presenter: Alan Schwartz, Ph.D.<br>Assistant Professor of Clinical Decision Making<br>UIC Department of Medical Education<p><a class="one" href="http://realvideo.uic.edu/ramgen/classes/dme/seminar/gelula/gelula.smil"><u><b>Title:  Faculty Fellowship - A Work In Progress<br>Background, Current, and Future</b></u></a><br>Podcast not available<br>Date:  Wednesday, May 5, 2004<br>Presenter: Mark Gelula, Ph.D.<br>Assistant Dean for Faculty Development<br>Research Assistant Professor of Medical Education<br>UIC Department of Medical Education</font>'

// Traub-Byfield Lecture Series Schedule and Archive
content[108]='<font face=arial size=3><b>Traub-Byfield Lecture Series Schedule</b></font><font face=arial size=2><p>The Department of Medical Education at the University of Illinois at Chicago hosts a series of lectures by Traub-Byfield fellows, supported by a gift to promote ethics education in the UIC College of Medicine.  These lectures are free and open to all. The lecture archives are available via the Web.  Please see the following information regarding up and coming seminars:<p><b>Presenter:</b> Julian Savulescu<br><b>Topic:</b> The Moral Obligation to Create Children with the Best Chance of the Best Life<br><b>Date:</b>  Friday, April 18, 2008<br><b>Time:</b>  TBA<br><b>Location:</b> Room 106, College of Medicine West Tower, Chicago, Illinois.<p><p><b>Presenter:</b> Mark Sheldon<br><b>Topic:</b> In Defense of Physician-Assisted Suicide<br><b>Date:</b>  Wednesday, May 7, 2008<br><b>Time:</b>  TBA<br><b>Location:</b> TBD<p><p><b>Presenter:</b> Edmund Howe<br><b>Topic:</b> Military Medical Ethics Since 9/11<br><b>Date:</b>  Wednesday, June 18, 2008<br><b>Time:</b>  TBA<br><b>Location:</b> Room 1135, UIMC, Chicago, Illinois.<p>For additional information about the lecture series, please contact Kristin Jacobson at "kjacob5@uic.edu".<p></font>'
content[109]='<font face=arial size=3><b>Traub-Byfield Lecture Series Video Archives</b></font><font face=arial size=2><p>Webcasts of the seminars listed below have been archived for your review.  Click an archive title to open the archive with the RealPlayer plugin.<p>RealPlayer:  You will need to have speakers and the RealPlayer plugin installed on your system to view the archives.  If you do not have the RealPlayer plugin installed on your system, you may download it for free from the following site: <a href="http://forms.real.com/netzip/getrde601.html?h=software-dl.real.com&f=windows/RealPlayer10GOLD_bb.exe&p=RealOne+Player&oem=dlrhap_bb&tagtype=ie&type=dlrhap_bb" class="one" target="blank"><u>Download Free RealPlayer</u></a><p><a class="one" href="http://realvideo.uic.edu/ramgen/classes/dme/lectures/Rhodes.rm"><u><b>Title:  How Not to Make Hard Medical Decisions</u></a></b><br>Date:  Wednesday, February 20, 2008<br>Presenter: Rosamond Rhodes, Ph.D.<br>Professor of Bioethics and Director of Bioethics Education<br>Mount Sinai School of Medicine<p></font>'
//content[110]='<font face=arial size=3><b>Traub-Byfield Lecture Series Podcast</b></font><font face=arial size=2><p>Audio files for the seminars listed below are available for your review.  Playback options are listed below.</p><p><b>Play File</b>: Left click on archive title play immediately.<br><b>Download File</b>: Right click title and save to your computer.<br><b>Subscribe</b>: To subscribe to the podcast for the DME Seminar Series, add the following URL to your iTunes or Juice subcriptions.<p><input name="textfield" onFocus="this.select();" type="text" value="http://cores33webs.mede.uic.edu/podcast/DMESeminars/DMESeminarsPodcast.xml" style="width: 300px;"></p><p>MP3 Player Required:  You will need to have speakers or a headset and an MP3 player or plugin to listen to the podcast. If you do not have an MP3 player installed on your system, you may download the RealPlayer plugin for free from the following site: <a href="http://forms.real.com/netzip/getrde601.html?h=software-dl.real.com&f=windows/RealPlayer10GOLD_bb.exe&p=RealOne+Player&oem=dlrhap_bb&tagtype=ie&type=dlrhap_bb" class="one" target="blank"><u>Download Free RealPlayer</u></a><p><a class="one" href="http://cores33webs.mede.uic.edu/podcast/DMESeminars/2006-07_HARRIS.mp3"><u><b>Title:  Qualitative Methods: What are they? How can we use them in our teaching, our scholarship, and our leadership?</u></a></b><br>Date:  Wednesday, July 12, 2006<br>Presenter: Ilene Harris, Ph.D.<br> Professor and Director of Graduate Studies<br>UIC Department of Medical Education<br><a href="2006-07_HARRIS.ppt" target="blank">Powerpoint file</a><p><a class="one" href="http://cores33webs.mede.uic.edu/podcast/DMESeminars/2006-03_SCHWARTZ.mp3"><u><b>Title:  Life Goals and Health Decisions: What will people live (or die) for?</u></a></b><br>Date:  Wednesday, March 8, 2006<br>Presenter: Alan Schwartz, Ph.D.<br>Associate Professor Clinical Decision Making<br>UIC Department of Medical Education<br><a href="2006-03_SCHWARTZ.ppt" target="blank">Powerpoint file</a><p><a class="one" href="http://cores33webs.mede.uic.edu/podcast/DMESeminars/2006-02_STAPLETON.mp3"><u><b>Title:  Connecting Learners in the Digital Classroom: Wikis, Blogs, Podcasts, and Other Tools for Communicating and Collaborating</u></a></b><br>Date:  Wednesday, February 8, 2006<br>Presenter: Gerald R. Stapleton<br>Director for Distance Education<br>UIC Department of Medical Education<br><a href="2006-02_STAPLETON.ppt" target="blank">Powerpoint file</a><p><a class="one" href="http://cores33webs.mede.uic.edu/podcast/DMESeminars/2006-01_GOLDBERG.mp3"><u><b>Title:  <I>"You not the stud you think you was anyway"</I> - The Role of Experience in Prostate Cancer Decision Making</u></a></b><br>Date:  Wednesday, January 11, 2006<br>Presenter: Julie Goldberg, Ph.D.<br>Assistant Professor<br>UIC Department of Medical Education<br><a href="2006-01_GOLDBERG.ppt" target="blank">Powerpoint file</a><p><a class="one" href="http://cores33webs.mede.uic.edu/podcast/DMESeminars/2005-08_STAPLETON.mp3"><u><b>Title:  Addressing the ACGME General Competencies through a Multi-Institutional Online System: The GME Core Curriculum</u></a></b><br>Date:  Wednesday, August 3, 2005<br>Presenter: Gerald R. Stapleton<br>Director for Distance Education<br>UIC Department of Medical Education<br><a href="2005-08_STAPLETON.ppt" target="blank">Powerpoint file</a><p><a class="one" href="http://cores33webs.mede.uic.edu/podcast/DMESeminars/2005-06_MURPHY.mp3"><u><b>Title:  Embryo Wars: The Ethics of Human Stem Cell Research</u></a></b><br>Date:  Wednesday, June 1, 2005<br>Presenter: Timothy Murphy, PhD<br>Associate Professor and Head, Medical Humanities<br>UIC Department of Medical Education<br><a href="2005-06_MURPHY.ppt" target="blank">Powerpoint file</a><p><a class="one" href="http://cores33webs.mede.uic.edu/podcast/DMESeminars/2005-05_HARRIS.mp3"><u><b>Title:  Scholarship Reconsidered: Implications for our Work as Leaders in Health Professions Education</u></a></b><br>Date:  Wednesday, May 4, 2005<br>Presenter: Ilene Harris, Ph.D.<br>Professor and Director of Graduate Studies<br>UIC Department of Medical Education<br><a href="2005-05_HARRIS.ppt" target="blank">Powerpoint file</a><p><a class="one" href="http://cores33webs.mede.uic.edu/podcast/DMESeminars/2005-04_GIROTTI.mp3"><u><b>Title:  Medical Education for Cultural Competence</u></a></b><br>Date:  Wednesday, April 6, 2005<br>Presenter: Jorge Girotti, Ph.D.<br>Assistant Professor of Medical Education<br>UIC Department of Medical Education<br>Director<br>Hispanic Center of Excellence<br><a href="2005-04_GIROTTI.ppt" target="blank">Powerpoint file</a><p><a class="one" href="http://cores33webs.mede.uic.edu/podcast/DMESeminars/2005-03_DOWNING.mp3"><u><b>Title:  Flawed Test Items as a Source of Bias in Basic Science Achievement Assessment: Negative Effects on Student Test Scores and Passing Rates</u></a></b><br>Date:  Wednesday, March 2, 2005<br>Presenter: Steven M. Downing, Ph.D.<br>Associate Professor of Medical Education<br>UIC Department of Medical Education<br><a href="2005-03_DOWNING.ppt" target="blank">Powerpoint file</a><p><a class="one" href="http://cores33webs.mede.uic.edu/podcast/DMESeminars/2005-02_TEKIAN.mp3"><u><b>Title:  What Factors Influence Underrepresented Minorities in Their Choice of Medical Schools?</u></a></b><br>Date:  Wednesday, February 2, 2005<br>Presenter: Ara Tekian, Ph.D., MHPE<br>Associate Professor of Medical Education<br>UIC Department of Medical Education<br><a href="2005-02_TEKIAN.ppt" target="blank">Powerpoint file</a><p><a class="one" href="http://cores33webs.mede.uic.edu/podcast/DMESeminars/2005-01_SANDLOW.mp3"><u><b>Title:  A Student Portfolio for Teaching, Learning, and Assessment</u></a></b><br>Date:  Wednesday, January 5, 2005<br>Presenter: L. J. Sandlow, M.D.<br>Professor and Head<br>UIC Department of Medical Education<br><a href="2005-01_SANDLOW.ppt" target="blank">Powerpoint file</a><p><a class="one" href="http://cores33webs.mede.uic.edu/podcast/DMESeminars/2004-12_PAYNE.mp3"><u><b>Title:  Combatting Oral-Health Disparities: A Manpower Approach</u></a></b><br>Date:  Wednesday, December 1, 2004<br>Co-presenter: Jobe L. Payne, Ph.D.<br>Research Assistant Professor<br>UIC Department of Medical Education<br>Co-presenter: Darryl Pendleton, DMD<br>Associate Dean for Student & Diversity Affairs<br>UIC College of Dentistry<br><a href="2004-12_PAYNE.ppt" target="blank">Powerpoint file</a><p><a class="one" href="http://realvideo.uic.edu/ramgen/classes/dme/seminar/rachel/rachel.smil"><u><b>Title:  Does Prior Experience with Standardized Patients Affect Resident Communication and Interpersonal Skill Scores?</u></a></b><br>Podcast not available<br>Date:  Wednesday, August 4, 2004<br>Presenter: Rachel Yudkowsky, M.D., MHPE<br>Director of Clinical Performance Center, UIC<br>UIC Department of Medical Education<p><a class="one" href="http://realvideo.uic.edu/ramgen/classes/dme/seminar/test/schw_test.smil"><u><b>Title:  A Web-Based Evidence-Based Medicine Library Consult Service</u></a></b><br>Podcast not available<br>Date:  Wednesday, June 9, 2004<br>Presenter: Alan Schwartz, Ph.D.<br>Assistant Professor of Clinical Decision Making<br>UIC Department of Medical Education<p><a class="one" href="http://realvideo.uic.edu/ramgen/classes/dme/seminar/gelula/gelula.smil"><u><b>Title:  Faculty Fellowship - A Work In Progress<br>Background, Current, and Future</b></u></a><br>Podcast not available<br>Date:  Wednesday, May 5, 2004<br>Presenter: Mark Gelula, Ph.D.<br>Assistant Dean for Faculty Development<br>Research Assistant Professor of Medical Education<br>UIC Department of Medical Education</font>'

content[103]='<font face=arial size=3><b>Mission Statement</b></font><font face=arial size=2><p>The DME, through the educational expertise of its faculty and in fulfillment of the urban land grant mission of the University of Illinois, seeks to build and develop appropriate curricula and effective appraisal programs for the UIC College of Medicine. A main goal of the Department is to assist, support, and facilitate the College of Medicines mission to provide a continuum of medical education to medical students, GME residents, and practicing physicians. A key aspect of this goal is the maintenance of an academic environment that encourages research and intellectual creativity; is professionally stimulating and rewarding; enables faculty to pursue their collective and individual intellectual and academic interests; and uses the hospital and college as the laboratory for educational research.</p></font>'

//DME Alumni Community
content[104]='<img src="Pictures/DMEcommunity.jpg" width="200" height="150" border="1" bordercolor=black><br><br>&nbsp;<b><I><font face=arial size=2 color="Green">Go to...</b></i><br><b><font face=arial size=1 color="Green">&nbsp;:: <a class="one" href="#"  onClick="changetextclick(content[105])">About DME Alumni Community</a><br>&nbsp;:: <a class="one" href="http://community.uic-dme.org" target="blank">Go to DME Alumni Community</a></font></b>'
	//SubMenu.
	content[105]='<font face=arial size=3><b>About the DME Alumni Community</b></font><font face=arial size=2><p>The UIC Department of Medical Education Alumni Community Web site is the first step in the development of an active and interactive alumni community. We have seen that interactions among our alumni, fellows, faculty, and students have led to useful and productive collaborations as well as abiding friendships. We would like to see these collaborations and friendships grow and we hope that this interactive website will foster such growth.</p><p><b>Getting Started</b></p><p>The site can be found at:<br><a class="one" href="http://community.uic-dme.org" target=blank>http://community.uic-dme.org</a>.</p><p>Access to the DME Alumni Community Web site is restricted to current and former DME Faculty, DME Fellows, and MHPE Students and Alumni.  As a DME community member, you already have an account on this site and may have previously received your login information in an email.  If not, please contact the DME Online Support Staff at <a href="mailto:dme-online@uic.edu">dme-online@uic.edu</a> for your login information.  Once you log in, we suggest that you use the "my account" link to change your password and edit your account information, contact details, and professional interests to make it easier for your fellow community members to get to you know. You can also upload a digital photo of yourself.</p><p>After you have edited your account, visit the "discussion forums" and get involved with the community. There are forums for reading and posting professional news and accomplishments, current events and issues in health professions education, as well as scholarly collaboration with other community members.  You will also find the Cybercafe forum, for relaxing socialization, and forums for receiving help with the site and providing feedback.</p><p>We hope you will use the site and look forward to your ideas and thoughts and to hearing about your new endeavors.</p></font>'

//Position Searches
content[106]='<font face=arial size=3><b>Search: Tenure-track Faculty Position</b></font><font face=arial size=2><p>The University of Illinois at Chicago (UIC) Department of Medical Education (DME) invites applications for an open-rank, tenure-track faculty position; rank commensurate with experience.  The ideal candidate for this faculty position will be a junior or mid-career person in the social sciences or education with demonstrated scholarship in cognitive or organizational studies.  Practical experience in medical education or other health professions is desirable.  MD, PhD, or EdD degree is required.<br><br>This academic position carries responsibilities in research, teaching, and service in medical or health professions education.  Research and service activities will vary with the specific interests of the applicant.  Priority areas of application of the theories and methods of his/her specialty include simulations, faculty development or continuing professional development, distance learning, leadership, instruction, informatics, or performance assessment.  The individual in this position will collaborate with other DME and College of Medicine faculty to conduct research and development activities.  DME faculty members are also expected to teach and advise graduate students in the department’s Master of Health Professions Education (MHPE) program.  Candidates should indicate their specific field of expertise (e.g., “cognition and simulations” or “organizational studies and distance learning”) and their experience in teaching.<br><br>Applicants should indicate their interest by sending a letter, curriculum vitae, and selected publications or other works of scholarship (maximum 3).  Please send materials by January 15, 2008 to Georges Bordage, MD, PhD, Professor, Department of Medical Education (M/C 591), University of Illinois at Chicago, 808 S. Wood Street, 986-D CME, Chicago, IL 60612-7309.  (<a href="mailto:bordage@uic.edu">bordage@uic.edu</a>) UIC is AA/EOE.</p></font>'


//Links to Faculty Pages
var fac=new Array()
fac[0]="faculty/sandlow.html"
fac[1]="faculty/bashook_philip.html"
fac[2]="faculty/bordage_georges.html"
fac[3]="faculty/downing_steven.html"
fac[4]="faculty/edison_marcia.html"
fac[5]="faculty/gelula_mark.html"
fac[6]="faculty/gilman_sander.html"
fac[7]="faculty/girotti_jorge.html"
fac[8]="faculty/goldberg_julie.html"
fac[70]="faculty/harris_ilene.html"
fac[9]="faculty/mrtek_robert.html"
fac[10]="faculty/murphy_timothy.html"
fac[11]="faculty/payne_jobe.html"
fac[12]="faculty/poirier_suzanne.html"
fac[65]="faculty/riddle_janet.html"
fac[13]="faculty/schwartz_alan.html"
fac[14]="faculty/seefeldt_michael.html"
fac[15]="faculty/sufian_sandra.html"
fac[16]="faculty/tekian_ara.html"
fac[17]="faculty/troy_loreen.html"
fac[66]="faculty/Gunderson_Anne.html"
fac[67]="faculty/stapleton_gerald.html"


fac[19]="faculty/yudkowsky_rachel.html"

//Emeritus Faculty Pages
fac[20]="faculty/elstein_arthur.html"
fac[21]="faculty/telder_thomas.html"

//Voluntary Faculty Pages
fac[22]="faculty/garg_mohan.html"


//Joint and Adjunct Appointments
fac[25]="faculty/ahrens_william.html"
fac[26]="faculty/aparicio_alejandro.html"
fac[27]="faculty/barzansky_barbara.html"
fac[28]="faculty/beardsley_lisa.html"
fac[29]="faculty/bernstein_lionel.html"
fac[30]="faculty/beuttler_fred.html"
fac[31]="faculty/block_keith.html"
fac[32]="faculty/cannon_bradley.html"
fac[33]="faculty/chambers_donald.html"
fac[34]="faculty/cook_david.html"
fac[35]="faculty/cummins_deborah.html"
fac[36]="faculty/davis_lennard.html"
fac[37]="faculty/desjardins_claude.html"
fac[38]="faculty/dorsch_josephine.html"
fac[39]="faculty/flores_nona.html"
fac[40]="faculty/fox_geraldine.html"
fac[41]="faculty/garg_mohan.html"
fac[42]="faculty/gill_carol.html"
fac[43]="faculty/haleyur_arun.html"
fac[44]="faculty/halpern_sydney.html"
fac[45]="faculty/hasnain_memoona.html"
fac[46]="faculty/heckerling_paul.html"
fac[47]="faculty/hupert_jordan.html"
fac[48]="faculty/joshi_megha.html"
fac[49]="faculty/juul_dorthea.html"
fac[50]="faculty/klamen_debra.html"
fac[51]="faculty/kusseling_francoise.html"
fac[52]="faculty/lagay_faith.html"
fac[53]="faculty/mcAuley_robert.html"
fac[54]="faculty/mcElmurry_beverly.html"
fac[55]="faculty/mcGaghie_william.html"
fac[56]="faculty/poirier_suzanne.html"
fac[57]="faculty/scherrer_carol.html"
fac[58]="faculty/shields_mark.html"
fac[59]="faculty/telder_thomas.html"
fac[60]="faculty/tranmer_patrick.html"
fac[61]="faculty/valenta_annette.html"
fac[62]="faculty/vidyasagar_dhampuri.html"
fac[63]="faculty/weller_ann.html"
fac[64]="faculty/williams_reed.html"
fac[68]="faculty/Anderson-Shaw_Lisa.html"
fac[69]="faculty/kaplan_kalman.html"
fac[71]="faculty/conley_patrick.html"

// The following are the functions used to display the content in the layers.
// For IE.

function regenerate(){
window.location.reload()
}
function regenerate2(){
if (document.layers)
setTimeout("window.onresize=regenerate",450)
else if (document.getElementById) {
setTimeout("window.onresize=regenerate",450)
}
}

function changetext(whichcontent){
stop=1;
changetextagain(content[7])
if (document.all)
descriptions.innerHTML=whichcontent
else if (document.layers){
stop=1;
document.layers["d11_net"].document.layers["d21_net"].visibility = "hide";
document.d1.document.d2.document.write(whichcontent)
document.d1.document.d2.document.close()
}
else if (document.getElementById) {
stop=1;
document.getElementById("descriptions").innerHTML = whichcontent
}
}

function changetextagain(whichcontent){
stop=1;
if (document.all)
descriptions_again.innerHTML=whichcontent
else if (document.layers){
stop=1;
document.d11.document.d21.document.write(whichcontent)
document.d11.document.d21.document.close()
}
else if (document.getElementById) {
stop=1;
document.getElementById("descriptions_again").innerHTML = whichcontent
}
}

function changetextclick(whichcontent){
stop=1;
if (document.all)
descriptions.innerHTML=whichcontent
else if (document.layers){
stop=1;
document.d1.document.d2.document.write(whichcontent)
document.d1.document.d2.document.close()
}
else if (document.getElementById) {
stop=1;
document.getElementById("descriptions").innerHTML = whichcontent
}
}

//------
// For Netscape.

function changetextagain1_net(whichcontent){
flag=1;
if (document.all)
descriptions_again.innerHTML=whichcontent
else if (document.layers){
flag=1;
document.d11_net.document.d21_net.document.write(whichcontent)
document.d11_net.document.d21_net.document.close()
}
else if (document.getElementById) {
flag=1;
document.getElementById("descriptions_again").innerHTML = whichcontent
}
}

function changetextagain1(whichcontent){
flag=1;
if (document.all)
descriptions_again.innerHTML=whichcontent
else if (document.layers){
flag=1;
document.d11.document.d21.document.write(whichcontent)
document.d11.document.d21.document.close()
}
else if (document.getElementById) {
flag=1;
document.getElementById("descriptions_again").innerHTML = whichcontent
}
}

function changetextclick1(whichcontent){
if (document.all)
descriptions.innerHTML=whichcontent
else if (document.layers){
document.d1.document.d2.document.write(whichcontent)
document.d1.document.d2.document.close()
}
else if (document.getElementById) {
document.getElementById("descriptions").innerHTML =whichcontent
}
}



//------


function welcome(content1,content2){
if (document.all){
descriptions.innerHTML=content1
changetextagain(content2)
}
else if (document.layers){
document.d1.document.d2.document.write(content1)
document.d1.document.d2.document.close()
document.d11.document.d21.document.write(content2)
document.d11.document.d21.document.close()
}
}
