
/* toggles layer visibility on and off */

        function showId(id) {
                document.getElementById(id).style.visibility = "visible";
        }
        function hideId(id) {
                document.getElementById(id).style.visibility = "hidden";
        }



