function hideLayer(layerId){

  thisLayer = document.getElementById(layerId);
  thisLayer.style.visibility = "hidden";
}
//show div
function showLayer(layerId){

  thisLayer = document.getElementById(layerId);
  thisLayer.style.visibility = "visible";
}