function show(id) {
  document.getElementById(id).style.display=''
}
function hide(id) {
  document.getElementById(id).style.display='none'
}
function showA(id)
{
	document.getElementById(id).style.display=''
}
function hideA(id) {
  document.getElementById(id).style.display='none'
}