function openPic(pic) {
	document.getElementById(pic).style.display = 'block';
}

function closePic(box) {
	box.style.display = 'none';
}
