function toggleDiv(divName) {
	var thisDiv = document.getElementById(divName);
	if (thisDiv) thisDiv.style.display = !thisDiv.offsetWidth ? "block" :"none";
	else alert("Error: Could not locate div with id: " + divName);
}