function show_or_hide(obj)
{
	obj.style.display = (obj.style.display == "none") ? "" : "none";
}