function show (id, source, target) {
	document.getElementById(id.replace(source, target)).style.visibility = 'visible';
	return false;
}

function hide (id, source, target) {
	document.getElementById(id.replace(source, target)).style.visibility = 'hidden';
}

