function gotoDiv() {
  var url = location.href;
  var start = url.indexOf('?')+1;
  if (start == 0) {
    var div = 'home'; }
  else {
    var div = url.substring(start); }
  document.getElementById(div).style.display = 'block';
}
function toggleDiv(divid) {
  if(document.getElementById(divid).style.display == 'none') {
    document.getElementById(divid).style.display = 'block';
  }
  else {
    document.getElementById(divid).style.display = 'none';
  }
}