// Showing and hiding elements
function show(id) {
     if (document.getElementById(id).style.display == 'none') {
          document.getElementById(id).style.display = '';
     }
}

function hide(id) {
          document.getElementById(id).style.display = 'none';
}