function toggle(obj)
{
	obj = document.getElementById(obj);
	obj.style.display = (obj.style.display == "none") ? "" : "none";
}