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

function showTooltip() {
	
	document.getElementById('tooltip').style.visibility = 'visible';
}
 

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


function hideTooltip() {
	document.getElementById('tooltip').style.visibility = 'hidden';
}

