function toggleVisibility(id, status) {
	if (document.getElementById) {
		document.getElementById(id).style.display = status;
		}
	}