function showStaff(id)
{
	elemento = document.getElementById(id);
	//alert();
	if (elemento.style.display == 'block')
	{

		elemento.style.display = 'none';
	} else
	{
		elemento.style.display = 'block';
	}
}

function closeStaff(A)
{
		document.getElementById(A).style.display= 'none';

}


