function showItem(id) {
	document.getElementById(id).style.display = 'block';
}
function hideItem(id) {
	document.getElementById(id).style.display = 'none';
}