/*
	Trint Ladd
	2-6-2004
	Generic display toggle
	Written specifically for features page, but should be usable anywhere
*/
function toggleDisplay(sID)
{	
	if (document.getElementById)
	{
	if (document.getElementById(sID).style.display == "none")
		document.getElementById(sID).style.display = "block";
	else
		document.getElementById(sID).style.display = "none";
	}
	else
	{
		alert('Your browser does not allow for dynamic javascript and is not standards-compliant.\nPlease update your browser to use our site and have it function correctly.');
	};
}

