// Layer
function show(div) {
	div.style.display = 'block';
}
function hide(div) {
	div.style.display = 'none';
}
