// This file lists publications

function makePublication(authorsF,authorsL,title,year,journal,volume,pages,pubmedlink) {
	this.authorsF = authorsF;	// First name;
	this.authorsL = authorsL;	// Last name;
	this.title = title;
	this.journal = journal;
	this.year = year;
	this.volume = volume;
	this.pages = pages;
	if (!pubmedlink) {
		this.link = 'javascript:alert(\'No abstract available\')';
	} else {
		this.link = pubmedlink;
	}
	return this;
}

function catAuthors(who,authorsF,authorsL) {
	// String authors in order, hiliting the author in question.
	outString = '';
	for (var i= 0; i < authorsF.length; i++) {
		if (who == authorsL[i]) {
			outString += '<span style="color:orange; font-weight:bold;">'+authorsL[i]+ ' '+authorsF[i]+'</span>, ';
		} else {
			outString += authorsL[i]+ ' '+authorsF[i]+', ';
		}
	}
	return outString;
}

function sortArrByYear(arrIn) {
	// Sort publist array by year
	var dateArr = new Array();
	for (var i=0; i< arrIn.length; i++) {
		// Append the index on the end since this should also be sorted
		dateArr[i] = arrIn[i].year+'::'+i;
	}
	dateArr.sort();
	dateArr.reverse();
	var arrOut = new Array();
	for (var i=0; i< dateArr.length; i++) {
		ind = dateArr[i].split('::')[1];	// Extract the sorted index
		arrOut[i] = arrIn[ind];	// Let the output array be adjusted according to sort index
	}
	return arrOut;
}
		


function listAllPubs() {
	// Call this on loading the document.
	var who = '';
	var outString0 = '<div id="pubs"></div>';
	var outString = '<div id="publist">'
	outString += '<h4>All Staff Publications/Presentations</h4>';
	outString += '<ul>';
	var plen = 0;
	var sortedList = new Array();
	for (var i=0; i< publist.length; i++) {
		var authorsL = publist[i].authorsL;
		var authorsF = publist[i].authorsF;
		var isFound = true;
		//for (var j=0; j< authorsL.length; j++) {
		//	isFound = true;
		//	plen++;
		//}
		plen++;
		if (isFound) {
			sortedList[plen-1] = publist[i];
		}
	}
	if (plen != 0) {
		sortedList = sortArrByYear(sortedList);
		for (var i=0; i< sortedList.length; i++) {
			var authorsL = sortedList[i].authorsL;
			var authorsF = sortedList[i].authorsF;
			outString += '<li>'+catAuthors(who,authorsF,authorsL);
			if (sortedList[i].link.substring(0,4)=='java') {
				//outString += '<a href="'+sortedList[i].link+'">';
				outString += sortedList[i].title+', ';
			} else {
				outString += '<a href="'+sortedList[i].link+'" target="new">'
				outString += sortedList[i].title+'</a>, ';
			}
			outString += sortedList[i].journal+', ';
			outString += sortedList[i].year+', ';
			outString += sortedList[i].volume+': ';
			outString += sortedList[i].pages+'.';
			outString += '</li>';
		}
	}	
	outString += '</ul>';
	outString1 = '</div>';
	outString = outString0+outString+outString1;
	if (plen == 0) outString = '';
	return outString;
}

function listPubs(who) {
	// Call this on loading the document.
	var outString0 = '<div id="pubs" onClick="showPubs()"><b>Show Individual\'s Publications</b><br>'+
			'<a href="publications.html">(All Gait Lab Publications)</a></div>';
	var outString = '<div id="publist" style="visibility:hidden;">'
	outString += '<h4>Publications/Presentations</h4>';
	outString += '<ul>';
	var plen = 0;
	var sortedList = new Array();
	for (var i=0; i< publist.length; i++) {
		var authorsL = publist[i].authorsL;
		var authorsF = publist[i].authorsF;
		var isFound = false;
		for (var j=0; j< authorsL.length; j++) {
			if (who == authorsL[j]) {
				isFound = true;
				plen++;
			}
		}
		if (isFound) {
			sortedList[plen-1] = publist[i];
			/*
			outString += '<li>'+catAuthors(who,authorsF,authorsL);
			if (publist[i].link.substring(0,4)=='java') {
				//outString += '<a href="'+publist[i].link+'">';
				outString += publist[i].title+', ';
			} else {
				outString += '<a href="'+publist[i].link+'" target="new">'
				outString += publist[i].title+'</a>, ';
			}
			outString += publist[i].journal+', ';
			outString += publist[i].year+', ';
			outString += publist[i].volume+': ';
			outString += publist[i].pages+'.';
			outString += '</li>';
			*/
		}
	}
	if (plen != 0) {
		sortedList = sortArrByYear(sortedList);
		for (var i=0; i< sortedList.length; i++) {
			var authorsL = sortedList[i].authorsL;
			var authorsF = sortedList[i].authorsF;
			outString += '<li>'+catAuthors(who,authorsF,authorsL);
			if (sortedList[i].link.substring(0,4)=='java') {
				//outString += '<a href="'+sortedList[i].link+'">';
				outString += sortedList[i].title+', ';
			} else {
				outString += '<a href="'+sortedList[i].link+'" target="new">'
				outString += sortedList[i].title+'</a>, ';
			}
			outString += sortedList[i].journal+', ';
			outString += sortedList[i].year+', ';
			outString += sortedList[i].volume+': ';
			outString += sortedList[i].pages+'.';
			outString += '</li>';
		}
	}	
	outString += '</ul>';
	outString1 = '</div>';
	outString = outString0+outString+outString1;
	if (plen == 0) outString = '';
	return outString;
}

var pubsAreVisible = false;
function showPubs() {
	if (pubsAreVisible) {
		pubsAreVisible = false;
		document.getElementById("publist").style.visibility = 'hidden';
		document.getElementById("pubs").innerHTML = '<b>Show Publications</b>';
	} else {
		pubsAreVisible = true;
		document.getElementById("publist").style.visibility = 'visible';
		document.getElementById("pubs").innerHTML = '<b>Hide Publications</b>';
	}
}

var publist = new Array();
// Begin publication data below;

var pl=0;
// Don't show stuff that's in review!
//publist[pl++] = new makePublication(['T','J','F'],['Niiler','Henley','Miller'],'A new kinematic index to define dynamic balance.','(2007)','In Review','','');
publist[pl++] = new makePublication(['T','J','F'],['Niiler','Richards','Miller'],'Concurrent Surgeries are a Factor in Predicting Success of Rectus Transfer Outcomes','(2007)','Gait & Posture', '26(1)', '76-81','http://www.ncbi.nlm.nih.gov/pubmed/16996271?ordinalpos=1&itool=EntrezSystem2.PEntrez.Pubmed.Pubmed_ResultsPanel.Pubmed_RVDocSum');
publist[pl++] = new makePublication(['F','P','J','N','E','T'],['Miller','Castagno','Richards','Lennon','Quigley','Niiler'],'Reliability of Kinematics During Clinical Gait analysis: A Comparison Between Normal and Children with Cerebral Palsy','(1996)', 'Gait & Posture', '4(2)', '169-170');
publist[pl++] = new makePublication(['T','F','S','J'],['Niiler','Miller','Marchesi','Henley'], 'Comparison of CP and Normal Gait Using a Kinematic Balance Index','(2007)', 'Podium Paper presented at European Society of Motion Analysis in Adults and Children', '(ESMAC)','Athens,Greece');
publist[pl++] = new makePublication(['T','J','F','T'],['Niiler','Henley','Miller','Yamauchi'], 'A new kinematic index to define dynamic balance in Gait', '(2007)','Podium paper presented at Gait and Clinical Movement Analysis Society','(GCMAS)','Springfield,MA');
publist[pl++] = new makePublication(['T','J','F','T'],['Niiler','Richards','Miller','Royer'], 'Use of Distance Metrics to Improve Neural Network Predictions of Post Surgical Gait','(2002)','Podium Paper presented at Gait and Clinical Movement Analysis Society','(GCMAS)','Chattanooga,TN');
publist[pl++] = new makePublication(['WN','J','A','F','T','R','N','L'],['Chang','Schuyler','Tsirikos','Miller','Niiler','Starr','Lennon','Kerstetter'], 'Using the Shape Analysis Method to Recognize the Pattern and Analyze the Variability of Kinesiological Surface Electromyography in Normal Children','(2002)','Poster Paper presented at Gait and Clinical Movement Analysis Society', '(GCMAS)','Chattanooga,TN');
publist[pl++] = new makePublication(['T','J','P','F','T'],['Niiler','Richards','Castagno','Miller','Royer'],  'Determining the Limitations in Neural Network Gait Predictions Using a Web Based Clinical Survey','(2001)','Poster Paper presented at the Gait and Clinical Movement Analysis Society','(GCMAS)', 'Sacramento,CA');
publist[pl++] = new makePublication(['T','F','P','J','R','J','N'],['Niiler','Miller','Castagno','Richards', 'Hertzog', 'Schuyler', 'Lennon'],'Predicting Variations in Kinetics and Kinematics of Normal Gait','(2000)','Poster Paper presented at the Gait and Clinical Movement Analysis Society','(GCMAS)', 'Rochester,MN');
publist[pl++] = new makePublication(['T','J','F','J','P'],['Niiler','Richards','Miller','Sun','Castagno'],'Reliability of Predictions of Post-Operative Gait in Rectus Transfer Patients Using FFT Neural Networks','(1999)','Podium paper presented at the Gait and Clinical Movement Analysis Society','(GCMAS)', 'Dallas,TX');
publist[pl++] = new makePublication(['AI','G','WN','KW','F'],['Tsirikos','Lipton','Chang','Dabney','Miller'],'Surgical correction of scoliosis in pediatric patients with cerebral palsy using the unit rod instrumentation','(2008)','Spine','33(10)','1133-40','http://www.ncbi.nlm.nih.gov/pubmed/18449049?ordinalpos=1&itool=EntrezSystem2.PEntrez.Pubmed.Pubmed_ResultsPanel.Pubmed_RVDocSum');
publist[pl++] = new makePublication(['G','MV','AG','KW','F'],['Bajelidze','Belthur','Littleton','Dabney','Miller'],'Diagnostic evaluation using whole-body technetium bone scan in children with cerebral palsy and pain','(2008)','J Pediatr Orthop','28(1)','112-7','http://www.ncbi.nlm.nih.gov/pubmed/18157055?ordinalpos=2&itool=EntrezSystem2.PEntrez.Pubmed.Pubmed_ResultsPanel.Pubmed_RVDocSum');
publist[pl++] = new makePublication(['J','Y','F'],['Riad','Haglund-Akerlind','Miller'],'Power generation in children with spastic hemiplegic cerebral palsy','Gait and Posture','(2008)','27(4)','641-7','http://www.ncbi.nlm.nih.gov/pubmed/17951060?ordinalpos=4&itool=EntrezSystem2.PEntrez.Pubmed.Pubmed_ResultsPanel.Pubmed_RVDocSum');
publist[pl++] = new makePublication(['JW','F','N'],['Fee','Miller','Lennon'],'EMG reaction in muscles about the knee to passive velocity, acceleration, and jerk manipulations','(2007)','J Electromyogr Kinesiol','Nov 19','Epub','http://www.ncbi.nlm.nih.gov/pubmed/18032067?ordinalpos=3&itool=EntrezSystem2.PEntrez.Pubmed.Pubmed_ResultsPanel.Pubmed_RVDocSum');
publist[pl++] = new makePublication(['JW','F','N'],['Fee','Miller','Lennon'],'EMG reaction in muscles about the knee to passive velocity, acceleration and jerk manipulations','(2006)','Conf Proc IEEE Eng Med Biol Soc','1','284-7','http://www.ncbi.nlm.nih.gov/pubmed/17946390?ordinalpos=5&itool=EntrezSystem2.PEntrez.Pubmed.Pubmed_ResultsPanel.Pubmed_RVDocSum');
publist[pl++] = new makePublication(['H','SA','A','KW','JW','F'],['Senaran','Shah','Presedo','Dabney','Glutting','Miller'],'The risk of progression of scoliosis in cerebral palsy patients after intrathecal baclofen therapy','(2007)','Spine','32(21)','2348-54','http://www.ncbi.nlm.nih.gov/pubmed/17906577?ordinalpos=6&itool=EntrezSystem2.PEntrez.Pubmed.Pubmed_ResultsPanel.Pubmed_RVDocSum');
publist[pl++] = new makePublication(['J','Y','F'],['Riad','Haglund-Akerlind','Miller'],'Classification of spastic hemiplegic cerebral palsy in children','(2007)','J Pediatr Orthop','27(7)','758-64','http://www.ncbi.nlm.nih.gov/pubmed/17878781?ordinalpos=7&itool=EntrezSystem2.PEntrez.Pubmed.Pubmed_ResultsPanel.Pubmed_RVDocSum');
publist[pl++] = new makePublication(['G','J','F','EC','MK','SJ'],['Chan','Sampath','Miller','Riddle','Nagai','Kumar'],'The role of the dynamic pedobarograph in assessing treatment of cavovarus feet in children with Charcot-Marie-Tooth disease','(2007)','J Pediatr Orthop','27(5)','510-6','http://www.ncbi.nlm.nih.gov/pubmed/17585258?ordinalpos=8&itool=EntrezSystem2.PEntrez.Pubmed.Pubmed_ResultsPanel.Pubmed_RVDocSum');
publist[pl++] = new makePublication(['M','PG','M','F','KW'],['Inan','Gabos','Domzalski','Miller','Dabney'],'Incomplete transiliac osteotomy in skeletally mature adolescents with cerebral palsy','(2007)','Clin Orthop Relat Res','462','169-74','http://www.ncbi.nlm.nih.gov/pubmed/17563700?ordinalpos=9&itool=EntrezSystem2.PEntrez.Pubmed.Pubmed_ResultsPanel.Pubmed_RVDocSum');
publist[pl++] = new makePublication(['M','M','AG','F'],['Domzalski','Inan','Littleton','Miller'],'Pectoralis major release to improve shoulder abduction in children with cerebral palsy','(2007)','J Pediatr Orthop','27(4)','457-61','http://www.ncbi.nlm.nih.gov/pubmed/17513970?ordinalpos=10&itool=EntrezSystem2.PEntrez.Pubmed.Pubmed_ResultsPanel.Pubmed_RVDocSum');
publist[pl++] = new makePublication(['A','KW','F'],['Presedo','Dabney','Miller'],'Fractures in patients with cerebral palsy','(2007)','J Pediatr Orthop','27(2)','147-53','http://www.ncbi.nlm.nih.gov/pubmed/17314638?ordinalpos=11&itool=EntrezSystem2.PEntrez.Pubmed.Pubmed_ResultsPanel.Pubmed_RVDocSum');
publist[pl++] = new makePublication(['J','S','F'],['Riad','Coleman','Miller'],'Arm posturing during walking in children with spastic hemiplegic cerebral palsy','(2007)','J Pediatr Orthop','27(2)','137-41','http://www.ncbi.nlm.nih.gov/pubmed/17314636?ordinalpos=12&itool=EntrezSystem2.PEntrez.Pubmed.Pubmed_ResultsPanel.Pubmed_RVDocSum');
publist[pl++] = new makePublication(['F'],['Miller'],'Spinal deformity secondary to impaired neurologic control','(2007)','J Bone Joint Surg Am','89 Suppl 1','143-7','http://www.ncbi.nlm.nih.gov/pubmed/17272430?ordinalpos=13&itool=EntrezSystem2.PEntrez.Pubmed.Pubmed_ResultsPanel.Pubmed_RVDocSum');
publist[pl++] = new makePublication(['H','C','KW','F'],['Senaran','Holden','Dabney','Miller'],'Anterior knee pain in children with cerebral palsy','(2007)','J Pediatr Ortho','27(1)','12-6','http://www.ncbi.nlm.nih.gov/pubmed/17195790?ordinalpos=14&itool=EntrezSystem2.PEntrez.Pubmed.Pubmed_ResultsPanel.Pubmed_RVDocSum');
publist[pl++] = new makePublication(['CW','A','KW','F'],['Oh','Presedo','Dabney','Miller'],'Factors affecting femoral varus osteotomy in cerebral palsy: a long-term result over 10 years','(2007)','J Pediatr Ortho','16(1)','23-30','http://www.ncbi.nlm.nih.gov/pubmed/17159529?ordinalpos=15&itool=EntrezSystem2.PEntrez.Pubmed.Pubmed_ResultsPanel.Pubmed_RVDocSum');
publist[pl++] = new makePublication(['H','SA','JJ','KW','F'],['Senaran','Shah','Glutting','Dabney','Miller'],'The associated effects of untreated unilateral hip dislocation in cerebral palsy scoliosis','(2006)','J Pediatr Orthop','26(6)','769-72','http://www.ncbi.nlm.nih.gov/pubmed/17065943?ordinalpos=16&itool=EntrezSystem2.PEntrez.Pubmed.Pubmed_ResultsPanel.Pubmed_RVDocSum');
publist[pl++] = new makePublication(['JE','S','B','K','F'],['Tis','Sharif','Shannon','Dabney','Miller'],'Complications associated with multiple, sequential osteotomies for children with cerebral palsy','(2006)','J Pediatr Orthop','15(6)','408-13','http://www.ncbi.nlm.nih.gov/pubmed/17001246?ordinalpos=17&itool=EntrezSystem2.PEntrez.Pubmed.Pubmed_ResultsPanel.Pubmed_RVDocSum');
publist[pl++] = new makePublication(['M','G','K','F'],['Inan','Chan','Dabney','Miller'],'Heterotopic ossification following hip osteotomies in cerebral palsy: incidence and risk factors','(2006)','J Pediatr Orthop','26(4)','551-6','http://www.ncbi.nlm.nih.gov/pubmed/16791079?ordinalpos=19&itool=EntrezSystem2.PEntrez.Pubmed.Pubmed_ResultsPanel.Pubmed_RVDocSum');
publist[pl++] = new makePublication(['M','H','M','A','K','F'],['Inan','Seneran','Domzalski','Littleton','Dabney','Miller'],'Unilateral versus bilateral peri-ilial pelvic osteotomies combined with proximal femoral osteotomies in children with cerebral palsy: perioperative complications','(2006)','J Pediatr Orthop','26(4)','547-50','http://www.ncbi.nlm.nih.gov/pubmed/16791078?ordinalpos=20&itool=EntrezSystem2.PEntrez.Pubmed.Pubmed_ResultsPanel.Pubmed_RVDocSum');
publist[pl++] = new makePublication(['M','M','C','F','WG','D'],['Inan','Thacker','Church','Miller','Mackenzie','Conklin'],'Dynamic lower extremity alignment in children with achondroplasia','(2006)','J Pediatr Orthop','26(4)','526-9','http://www.ncbi.nlm.nih.gov/pubmed/16791073?ordinalpos=21&itool=EntrezSystem2.PEntrez.Pubmed.Pubmed_ResultsPanel.Pubmed_RVDocSum');
publist[pl++] = new makePublication(['SJ','HH','HT','RK','F','RC'],['Bachrach','Kecskemethy','Harcke','Lark','Miller','Henderson'],'Pamidronate treatment and posttreatment bone density in children with spastic quadriplegic cerebral palsy','(2006)','J Clin Densitom','9(2)','167-74','http://www.ncbi.nlm.nih.gov/pubmed/16785077?ordinalpos=22&itool=EntrezSystem2.PEntrez.Pubmed.Pubmed_ResultsPanel.Pubmed_RVDocSum');
publist[pl++] = new makePublication(['WN','JS','AI','F'],['Chang','Lipton','Tsirikos','Miller'],'Kinesiological surface electromyography in normal children: range of normal activity and pattern analysis','(2007)','J Electromyogr Kinesiol','17(4)','437-45','http://www.ncbi.nlm.nih.gov/pubmed/16603385?ordinalpos=23&itool=EntrezSystem2.PEntrez.Pubmed.Pubmed_ResultsPanel.Pubmed_RVDocSum');
publist[pl++] = new makePublication(['N','S','C','J','T','F'],['Lennon','Coleman','Church','Henley','Angeli','Miller'],'Tracking Dynamic Foot Pressure Patterns in Young Children with Spastic Cerebral Palsy','(2006)','Presented at 1st Joint meeting of ESMAC-GCMAS','(ESMAC-GCMAS)','Amsterdam, the Netherlands');
publist[pl++] = new makePublication(['C','J','N','T','S','B','F'],['Church','Henley','Lennon','Angeli','Coleman','Borkhuu','Miller'],'Comparison of multi-segment foot kinematics with traditional methods of quantifying foot deformity','(2006)','Presented at 1st Joint meeting of ESMAC-GCMAS','(ESMAC-GCMAS)','Amsterdam, the Netherlands');
publist[pl++] = new makePublication(['T','C','J','S','N','F'],['Angeli','Church','Henley','Coleman','Lennon','Miller'],'A quantative tool to measure dynamic stability during gait in children with cerebral palsy','(2006)','Presented at 1st Joint meeting of ESMAC-GCMAS','(ESMAC-GCMAS)','Amsterdam, the Netherlands');
publist[pl++] = new makePublication(['C','J','S','N','T','F'],['Church','Henley','Coleman','Lennon','Angeli','Miller'],' Multi-segment kinematics of the planovalgus foot', '(2006)','Presented at 1st Joint meeting of ESMAC-GCMAS','(ESMAC-GCMAS)','Amsterdam, the Netherlands'); 
publist[pl++] = new makePublication(['J','S','J','F'],['Riad','Coleman','Henley','Miller'],'Reliability of pedoiobarographs for pediatric foot deformity','(2006)','Presented at 1st Joint meeting of ESMAC-GCMAS','(ESMAC-GCMAS)','Amsterdam, the Netherlands');
publist[pl++] = new makePublication(['J','J','D','C','S','L','F'],['Henley','Richards','Hudson','Church','Coleman','Kerstetter','Miller'],'Reliability of a Clinically Practical Multi-segment Foot Marker Set/Model','(2004)','Presented at Gait and Clinical Movement Analysis Society Conference','(GCMAS)','Lexington, KY');
publist[pl++] = new makePublication(['J','J','D','J'],['Hicks','Richards','Hudson','Henley'],'Clinical Implications of Using Spherical Fitting to Find Hip Joint Centers','(2003)','Presented at Gait and Clinical Movement Analysis Society Conference','(GCMAS)','Wilmington, DE');
publist[pl++] = new makePublication(['K','J','G','J'],['Wesdock','Henley','Masiello','Nogi'],'The Effects of Backpack Use on Posture and Gait in School-Age Children - A Pilot Study','(2002)','Presented at Gait and Clinical Movement Analysis Society Conference','(GCMAS)','Chattanooga, TN');
publist[pl++] = new makePublication(['J','K','G','J'],['Henley','Wesdock','Masiello','Nogi'],'A new Three-Segment Foot Model for Gait Analysis in Children and Adults','(2001)','Presented at Gait and Clinical Movement Analysis Society Conference','(GCMAS)','Sacramento, CA');
publist[pl++] = new makePublication(['K','G','J','J'],['Wesdock','Masiello','Henley','Nogi'],'Anteromedial Rotatory Instability of the Knee in Cerebral Palsy - A Phenomenon After Rhizotomy?','(2000)','Presented at Gait and Clinical Movement Analysis Society Conference','(GCMAS)','Rochester, MN');
publist[pl++] = new makePublication(['JG','JD'],['Richards','Henley'],'The effects of ankle mobility on landing forces in skating','(1996)','International Congress on the Sports Medicine and Sports Sciences of Skating','','San Jose, CA');
publist[pl++] = new makePublication(['PR','J'],['Cavanagh','Henley'],'The computer era in gait analysis','(1993)','In Clinics in Podiatric Medicine and Surgery','10(3)','471-84');
publist[pl++] = new makePublication(['J'],['Henley'],'Effect of handle height on the bobsled start','(1990)','Presented at American College of Sports Medicine Conference','(ACSM)','Salt Lake City, UT');
publist[pl++] = new makePublication(['DM','JG','PW','JD','MH','PF','JS','RM'],['Drewlinger','Richards','Castagno','Henley','Rescino','Vint','White','Fenton'],'Effects of an energy return device on jumping','(1990)','Univ of Del Sports Science Center and Rebock Int LTD','Joint Report','Newark, DE/ Stoughton, MA');
publist[pl++] = new makePublication(['JG','MJ','P','P','J'],['Richards','Axe','Gillerlain','Castagno','Henley'],'Analysis of ground reaction forces in pitching','(1990)','Proceedings of Throwing Injuries in Baseball','American Sports Medicine Institute','Birmingham, AL');
publist[pl++] = new makePublication(['M','J','J','R','P','J'],['Fees','Richards','Kent','Duncan','Castagno','Henley'],'Effects of groove configuration on golf ball spin rates','(1990)','Presented at American Association of Health, Physical Education, Recreation and Dance','(AAHPERD)','New Orleans, LA');
publist[pl++] = new makePublication(['F'],['Miller'],'Other articles','(up to 2006)','pubmed.org','','','http://www.ncbi.nlm.nih.gov/sites/entrez');

