function setDrs(dr,drPhoto) {
//	alert("setDrs");
i=0;
dr[i]="Rubina Alvi:";
i++;
dr[i]="Nafisa Y. Bhoori:";
i++;
dr[i]="Wayne R. Braendle:";
i++;
dr[i]="James M. Chapman:16999506";
i++;
dr[i]="Willard H. Cook:";
i++;
dr[i]="Raafat Ghobraiel:";
i++;
dr[i]="Caryn M. Giacona:16999505";
i++;
dr[i]="Jan S. Glowacki:2";
i++;
dr[i]="A. John Haddad:17016643";
i++;
dr[i]="Denise Hayward:";
i++;
dr[i]="Christopher Johnston:";
i++;
dr[i]="Mary Lynn Krisza:";
i++;
dr[i]="Lizett Marza:16999624";
i++;
dr[i]="Charles L. Miller:";
i++;
dr[i]="Timothy Mui:";
i++;
dr[i]="Brendan J. Mulholland:";
i++;
dr[i]="Danielle Nardone:";
i++;
dr[i]="Dominic C. Pamintuan:";
i++;
dr[i]="Vincent T. Randazzo:2";
i++;
dr[i]="Marianne Roosels:16999623";
i++;
dr[i]="Katherine Schneebaum:17016644";
i++;
dr[i]="Roger M. Thompson:16999504";
i++;
dr[i]="Jeanne Tomaino:2";
i++;
dr[i]="Victoria Triola:17016645";
i++;
dr[i]="";
//alert("setDrs i=" + i);
i=0;
drPhoto[i]="Rubina Alvi:A";
i++;
drPhoto[i]="Nafisa Y. Bhoori:A";
i++;
drPhoto[i]="Wayne R. Braendle:B";
i++;
drPhoto[i]="James M. Chapman:A";
i++;
drPhoto[i]="Willard H. Cook:A";
i++;
drPhoto[i]="Raafat Ghobraiel:A";
i++;
drPhoto[i]="Caryn M. Giacona:A";
i++;
drPhoto[i]="Jan S. Glowacki:C";
i++;
drPhoto[i]="A. John Haddad:A";
i++;
drPhoto[i]="Denise Hayward:A";
i++;
drPhoto[i]="Christopher Johnston:C";
i++;
drPhoto[i]="Lizett Marza:A";
i++;
drPhoto[i]="Charles L. Miller:A";
i++;
drPhoto[i]="Timothy Mui:A";
i++;
drPhoto[i]="Brendan J. Mulholland:A";
i++;
drPhoto[i]="Danielle Nardone:A";
i++;
drPhoto[i]="Dominic C. Pamintuan:A";
i++;
drPhoto[i]="Vincent T. Randazzo:A";
i++;
drPhoto[i]="Marianne Roosels:A";
i++;
drPhoto[i]="Katherine Schneebaum:A";
i++;
drPhoto[i]="Roger M. Thompson:B";
i++;
drPhoto[i]="Jeanne Tomaino:A";
i++;
drPhoto[i]="Victoria Triola:A";
i++;
drPhoto[i]="";

}
function drList(selectType) {
	alert("drList 1");
	u=document.URL;
	alert(u);
	p=u.split("?dr=");
	alert(p);
	pd=decodeURI(p[1]);
//	alert(pd);
	drn=pd.split(" ");
	currentDr=drn[drn.length-1];
	currentDrFull=pd;
if (selectType=="bio")
	document.write ("<select name=\"doctor\" class=\"text10n\" onChange=javascript:biog(this)>");
else
	document.write ("<select name=\"doctor\" class=\"text10n\" onChange=javascript:patForms(this)>");
document.write ("<option value=\"0\">- Select A Physician -</option>");
//alert("drList 2");
for (i=0;(i<drPhoto.length && drPhoto[i]!="");i++) {
//	alert(dr[i]);
	u=drPhoto[i].split(" ");
	drName=u[u.length-1];
	document.write ("<option value=\"" + drName + "\">Dr." + drPhoto[i] + "</option>");
}
document.write ("</select>");
}
function changeImages(t) {
//	alert(t.src);
	p=t.src;
	y=p.search("100");
	x=p.search(".jpg");
	if (y>0)
		img=p.slice(0,x-3) + ".jpg";
	else
		img=p.slice(0,x) + "100.jpg";
	
	//alert(img);
//	if (document.images && (preloadFlag == true)) {
//		for (var i=0; i<changeImages.arguments.length; i+=2) {
	t.src = img;
//		}
//	}
}
