<!--
//'''''''''''''''''''''''''''''''''''''''''''''''''
//Author:	JoshuaChen
//Date:		2004/04/14
//Modify:	
//'''''''''''''''''''''''''''''''''''''''''''''''''

//********************************************
//Description:		Expand Menu, change element's style.
//Parameters:	
//Author:			Joshua Chen
//Date:			2004/04/14
//Input:			Item Number
//Output:			
//********************************************

function getExpand(item)
{
	obj = document.getElementById(item);
	visible = (obj.style.display != "none");
	key = document.getElementById(item);

	if (visible)
	{
		obj.style.display = "none";
 		key.style.fontWeight = "normal";
	}
	else
	{
		obj.style.display = "block";
		key.style.fontWeight = "normal";
	}
}
