<!--
	function showHiddenObj()
	{
		var args = showHiddenObj.arguments;
		if (args != "" && args.length > 0)
		{
			var theObj = args[0];
			var action = "";
			if (theObj != "" && theObj == "[object]")
			{
				if (args.length > 1)
				{
					action = args[1];
				}
				if (action == "")
				{
					if (theObj.style.display == "none")
					{
						theObj.style.display = "";
					}
					else
					{
						theObj.style.display = "none";
					}
				}
				else
				{
					if (action == "show")
					{
						theObj.style.display = "";
					}
					else if (action == "hidden")
					{
						theObj.style.display = "none";
					}
					else
					{
						alert("showHiddenObj() param error! action=*" + action + "*");
					}
				}
			}
		}
		else
		{
			alert("showHiddenObj() param error");
		}
	}

//-->