function toggleDisplay(theID) {
 var theElement = document.getElementById(theID);
 if (theElement.className == 'amiciDetails'){
	theElement.className = 'amiciDetailsShow'
	}
 else { 
 	theElement.className = 'amiciDetails'
	}
}
