//toggles layer visibility on and off

function show(id) {
	document.getElementById(id).style.display = "inline";
}
function hide(id) {
	document.getElementById(id).style.display = "none";
}