function showElement(id) {
	document.getElementById(id).style.display = 'inline';
}

function hideElement(id) {
	document.getElementById(id).style.display = 'none';
}