// javascript
// custom element render handler (circa 2005)
// there are three cases for each show/dontshow function... wonder if commonspot already has these... oh well
// three cases due to browser / platform

// show one category

function show(id)
{
	if (document.layers)
	{
		document.layers[id].display = 'block';
	}
	else if (document.all)
	{
		document.all[id].style.display = 'block';
	}
	else if (document.getElementById)
	{
		document.getElementById(id).style.display = 'block';
	}
}

function hide(id)
{
	if (document.layers)
	{
		document.layers[id].style.display = 'none';
	}
	else if (document.all)
	{
		document.all[id].style.display = 'none';
	}
	else if (document.getElementById)
	{
		document.getElementById(id).style.display = 'none';
	}
}