function expand(id)
{
	tut = document.getElementById(id);
	tut.style.display = (tut.style.display == "none") ? "" : "none";
}
