function toggleDetails(nID)
{
	for (i = 0; i < 24; i++)
	{
		strVerbose = "Verbose" + i + nID;
		if (document.getElementById)
			this.obj = document.getElementById(strVerbose);
		if (this.obj)
		{
			this.style = this.obj.style;
			this.style.display = (this.style.display == 'none') ? 'block' : 'none';
		}
	}

	strCompact = "Compact" + nID;
	if (document.getElementById)
		this.obj = document.getElementById(strCompact);
	if (this.obj)
	{
		this.style = this.obj.style;
		this.style.display = (this.style.display == 'none') ? 'block' : 'none';
	}
}

function setVis(strID, strDisplay)
{
	if (obj = document.getElementById(strID))
	{
		this.style = obj.style;
		this.style.display = (typeof(strDisplay) != 'undefined') ? strDisplay : "";
	}
}
