
function toggleMap(theTarget, theStatus) {
  if(theStatus == 'on') {
    document.getElementById(theTarget).style.backgroundPosition = "center bottom";
  }
  else {
    document.getElementById(theTarget).style.backgroundPosition = "center top";
  }
}