// JavaScript Document
function showtab(a)
	{
		document.getElementById(a).style.display="block";
	}
function hidetab(a)
	{
		document.getElementById(a).style.display="none";
	}