function expand(param) {
	param.style.display = (param.style.display == "none") ? "block" : "none";
}