function showHide(id) {
	if (document.getElementById(oldid)) {
	   document.getElementById(oldid).className = 'hidden'
	}
	if (document.getElementById(id)) {
		document.getElementById(id).className = 'show'
		oldid = id
	}
}
