// update layer content with the output of given url
function loadSomeInfo(url, layer_id){
  $.post(url, {},
    function(response){
      //confirm($(layer_id).length)
      $(layer_id).html(response)
      //confirm($(layer_id).html())
    }
  )
}
