var last = '';
function showContent(id) {
  //Hide old div
  if(last.length)
    document.getElementById(last).style.display = 'none';
  //Show new div
  document.getElementById(id).style.display = 'block';
  last = id;
}
