// ***** HIDE FUNCTION ****
function hide(layer) {
document.getElementById(layer).style.visibility = "hidden";
}

// ***** SHOW FUNCTION ****
function show(layer) {
document.getElementById(layer).style.visibility = "visible";
}





