function inverseDisplayPresentation() {
  if(document.getElementById('presentation').style.display != 'block' ) {
    document.getElementById('presentation').style.display = 'block';
  }
  else {
    document.getElementById('presentation').style.display = 'none';
  }
}

function inverseDisplayPresentation1() {
  if(document.getElementById('presentation1').style.display != 'block' ) {
    document.getElementById('presentation1').style.display = 'block';
  }
  else {
    document.getElementById('presentation1').style.display = 'none';
  }
}
function show(id) {
  document.getElementById(id).style.display = 'block';
}
function hide(id) {
  document.getElementById(id).style.display = 'none';
}
