function show(id) {
	document.getElementById(id).style.display = 'block';
}

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

function showV(id) {
	document.getElementById(id).style.visibility = 'visible';
}

function hideV(id) {
	document.getElementById(id).style.visibility = 'hidden';
}

function clearV(id) {
	document.getElementById(id).style.removeProperty('visibility');
}

