function showHide(obj) {
	var vis = document.getElementById(obj);
	if (vis.style.display != "none") {
		vis.style.display = "none";
	}
	else {
		vis.style.display = "";
		// acceptable values are inline, block or empty string
	}
}