	function showDetail(link,elm){
		if(document.getElementById){					
			var myElm=document.getElementById(elm);
			if(myElm.className=='nobullets displaynone'){
				myElm.className='nobullets displayblock';
				link.firstChild.nodeValue='-';
			}
			else
			{
				myElm.className='nobullets displaynone';						
				link.firstChild.nodeValue='+';
				
				//if closing the Details for an individual element, uncheck the show all checkbox
				if (document.getElementById('showall'))
					document.getElementById('showall').checked=false;
			}
			//document.getElementById('tableholder').style.height=(document.getElementById('detailtable').clientHeight > 300)?300 + 'px':document.getElementById('detailtable').clientHeight + 25 + 'px';
		}
		else
			location='javascript:void()';
	}

