function showDiv(objectID) {
	var theElementStyle = document.getElementById(objectID);
	if(theElementStyle.style.display == "inline"){
		theElementStyle.style.display = "none";
	}else{
		theElementStyle.style.display = "inline";
	}
}