function ShowSubCategories(obj_name)
{
	var obj = document.getElementById(obj_name);
	var status = obj.style.display;
	
	if (status == "none")
	{
		obj.style.display = "";
	}
	else
	{
		obj.style.display = "none";
	}
}