function showhide(id, aux) {
  var summary = document.getElementById(id + '-summary');
  var description = document.getElementById(id + '-description'); 
  
  if (aux == 'hide') {
      summary.style.display = 'block';
      description.style.display = 'none';
  }
  else {
      summary.style.display = 'none';
      description.style.display = 'block';
  }   
}

function showbyhash() {
	var hash = document.location.hash;
	if (!hash) return;
  notice_id = hash.replace('#', '');
  var summary = document.getElementById('news' + notice_id + '-summary');
  var description = document.getElementById('news' + notice_id + '-description'); 

  summary.style.display = 'none';
  description.style.display = 'block';
}