// showdesc.js
function showDescription(text){
  document.getElementById('information').innerHTML = text;
}
function clearDescription(){
  document.getElementById('information').innerHTML = '';
}
