function swapVis(obj) {
	var cil = document.getElementById(obj);
	var cv = cil.style.display;
	(cv == 'none') ? (cil.style.display = '') : (cil.style.display = 'none');
}
function mGo(obj) {
	location.href='#'+obj;
}