function toggleVisibility(target)
{
if(target.style.display != 'none')
{
target.style.display = 'none';
}
else
{
target.style.display = 'block';
}
}