function expand (obj) 
	{

	obj.style.visibility= "visible";
	}

function fold (obj) 
	{
	obj.style.visibility= "hidden";

	}

