function showHide(id){

	var table = document.getElementById(id);

	if (table.style.display == "none") table.style.display = "block";

	else table.style.display = "none";

}
