function showIntroBox (id) {
	
	var dataCont = document.getElementById(id);
	dataCont.style.visibility = "visible";
		
}

function hideIntroBox (id) {
	
	var dataCont = document.getElementById(id);
	dataCont.style.visibility = "hidden";
		
}


