function swtch(id)
{
	if (!document.getElementById(id))
	{
		return true;
	}
	document.getElementById(id).style.visibility = 
		(document.getElementById(id).style.visibility == 'visible')
		?
		'hidden'
		:
		'visible';
	return false;
}