
function swapDisplay(element, mode) {
	
	document.getElementById(element).style.display = mode;
	
}

