function toggleDisplay(counter) 
{
	var whichDiv = "aDiv" + counter;
	var div = document.getElementById(whichDiv);
	if (div.style.display=='block') div.style.display = 'none';
	else div.style.display = 'block';
}