function showHide(el_id) {
	var el = document.getElementById(el_id);
	el.style.display = (el.style.display != "none") ? "none" : "block";
}
