function showMore() {
	document.getElementById("moreBox").style.display = "block";	
}

function closeMore() {
	document.getElementById("moreBox").style.display = "none";
}
		
function closeWarn() {
	document.getElementById("warnBox").style.display = "none";
}
		
