function popLayer(a) {
	document.getElementById(a).style.visibility = "visible";
}

function hideLayer(a) {
	document.getElementById(a).style.visibility = "hidden";
}
