function togglehidden(id)
{
	if(document.getElementById(id).style.visibility == 'hidden')
	{
		unhide(id);
	}
	else
	{
		hide(id);
	}
}

function hide(id)
{
	document.getElementById(id).style.visibility = 'hidden';
	document.getElementById(id).style.display = 'none';
}

function unhide(id)
{
	document.getElementById(id).style.visibility = 'visible';
	document.getElementById(id).style.display = 'inline';
}
