function talk_about(current, next)
{
  document.getElementById('step_' + current).style.display = 'none';
  document.getElementById('step_' + next).style.display = '';
}

