
    function toggleLayer(id,action) {
       var e = document.getElementById(id);
       e.style.display = action;
    }
    