function setDisplay(objectID, state) {
	var object = document.getElementById(objectID);
	object.style.display = state;
}