function showBox (personid) {
	document.getElementById('person' + personid).style.display = "block";
	return false;
}

function hideBox (personid) {
	document.getElementById('person' + personid).style.display = "none";
	return false;
}