﻿function adminLayerShow(LayerName, vis) {
    var layerObj = document.getElementById(LayerName);
    if (layerObj && layerObj.style) {
        layerObj.style.visibility = (vis ? "visible" : "hidden");
    }
}
