﻿function Show(id) {
  show = document.getElementById(id).style;
  if(show.display == 'none')
  	show.display = "block";
  else
  	show.display = "none";
}

