function ShowDirections()
{
	if (ShowDirectionsTable.style.display == 'none')
	{
		ShowDirectionsTable.style.display = 'block';
	}
	else
	{
		ShowDirectionsTable.style.display = 'none';
	}
}
