function showCompany(id, status) {
	var show = status ? 'visible' : 'hidden';
	var hide = status ? 'hidden' : 'visible';	
	document.getElementById('logo').style.visibility = hide;
	document.getElementById('infobox' + id).style.visibility = show;
}