// JavaScript Document

function showItem(id) {
	
	document.getElementById(id).style.visibility = "visible";
	
}

function hideItem(id) {
	
	document.getElementById(id).style.visibility = "hidden";
	
}

