How to name a function which changes “hidden”/”showed” state of a object?

Well, I have a function which hides or shows a html element:

function myFunction(show) {
  if (show) {
    foo.show()
  } else {
    foo.hide()
  }
}

Is there a cool way to name myFunction and the variable it takes?