function mToggle(other) {
	if (other.style.display == "block") {
		other.style.display = "none";
	} else {
		other.style.display = "block";
	}
}
