// a function to reveal a layer
function show_mangos()
{
  // reference the layer by id
  var obj = document.getElementById("lyr5");
  // show the layer                    
  obj.style.visibility= "visible";        
}

// a function to hide a layer
function hide_mangos()
{
  // reference the layer by id
  var obj = document.getElementById("lyr5");
  // hide the layer                    
  obj.style.visibility= "hidden";        
}