<script>
function toggleSection(show) {
  if (show) {
    AJS.$('.mysection').show();
  } else {
	AJS.$('.mysection').hide();
  }
}
</script>