
function showHide(obj)
{
	if (obj.style.display!="none")
		{obj.style.display="none";}
	else
		{obj.style.display="";}

}