function listControl(listId)
{
	var hiddenList = document.getElementById(listId);
	
	if (hiddenList.style.display == 'none') hiddenList.style.display = 'block';
	else hiddenList.style.display = 'none';
}
