

function showMapDests(sCountryName,nCountryId) {

  /*
  * tell the ajax object which server side will do the processing for us
  * second parameter is the name of the function to run when readystate=4
  */
  
  $.get('/ajax/GuidesMapDests',{country_id:nCountryId},function(sResp){
    $('#dest-list').html(sResp);
    }
  );
  return false;
}



function showMapDestList(sResp) {
  list = aResponse['html'] ;
  oObj = document.getElementById('dest-list')
  oObj.innerHTML = list ;
}

