function show_hide(id) {
  if(id.style.display == '') {
  id.style.display='none'
  }
  else {
  id.style.display=''
    
  }
}
