function toggleDisplay(elId, visibility)
{
	if(visibility)
		elId.style.display = "block";
	else
		elId.style.display = "none";
}
