function popBox(theId) {
	var theBox = document.getElementById(theId);
	if(theBox.style.display == "none") {
		theBox.style.display = "block";
	} else {
		theBox.style.display = "none";
	}
}