
function toggle(id) 
{
	var node = document.getElementById(id);
	var headingNode = document.getElementById(id + "_Heading");

	if (node.style.display == 'none') 
	{
		node.style.display = '';
		//headingNode.style.fontSize="16pt";
		//headingNode.style.fontWeight="normal";
		headingNode.style.fontWeight="bold";
	} 
	else 
	{
		node.style.display = 'none';
		//headingNode.style.fontSize="10pt";
		//headingNode.style.fontWeight="bold";
		headingNode.style.fontWeight="normal";
	}
}


function highlight(object) 
{
	object.style.fontWeight="bold";
}

function unhighlight(object) 
{
	object.style.fontWeight=object.parentNode.style.fontWeight;
}
