<!--

function toggleAddInfo()
{
	var elem, elema, vis;

	if(document.getElementById) // this is the way the standards work
	{
		elem = document.getElementById('AddInfo');
		elema = document.getElementById('AddInfoA');
	}
	else if(document.all) // this is the way old msie versions work
	{
		elem = document.all['AddInfo'];
		elema = document.all['AddInfoA'];
	}

	vis = elem.style;

	// if the style.display value is blank we try to figure it out here
	if(vis.display == '' && elem.offsetWidth != undefined && elem.offsetHeight != undefined)
		vis.display = (elem.offsetWidth != 0 && elem.offsetHeight != 0) ? 'block' : 'none';

	vis.display = (vis.display == '' || vis.display == 'block' ) ? 'none' : 'block';
	
	if(document.all)
		elema.innerText = (elema.innerText == 'Click for Additional Info') ? 'Additional Info' : 'Click for Additional Info';
	else 
		elema.firstChild.nodeValue = (elema.firstChild.nodeValue == 'Click for Additional Info') ? 'Additional Info' : 'Click for Additional Info';
}

// -->
