function expandContractSimple(objectID){
	expObj = document.getElementById(objectID);
	if (expObj.style.display=="block"){
		expObj.style.display = "none";
	} else {
		expObj.style.display = "block"; 
	}
}
