function toggleDisplay(currDisplay) {
  if (document.getElementById) {
	thisDisplay = document.getElementById(currDisplay).style
	if (thisDisplay.display == "block") {
	thisDisplay.display = "none"
	}
  else {
	thisDisplay.display = "block"
	}
	return false
	}
  else {
	return true
	}
}


