	function show_table(table)
	{
		x = document.getElementById(table);
		
		if (x.style.display == "none")
		{
			x.style.display = "";
		}
		else
		{
			x.style.display = "none";
		}
	}
