function toggleDetails(nID)
{
	for (i = 0; i < 24; i++)
	{
		if (this.obj = document.getElementById("Verbose" + i + nID))
		{
			this.style = this.obj.style;
			this.style.display = (this.style.display == 'none') ? 'block' : 'none';
		}
	}

	if (this.obj = document.getElementById("Compact" + nID))
	{
		this.style = this.obj.style;
		this.style.display = (this.style.display == 'none') ? 'block' : 'none';
	}
}

