function showme(x, state)
{
	var obj = document.getElementById(x);
	obj.style.visibility = state;
	return true;
}


