
function dropPage(thisID,randID) {

$("#loader" + thisID).ajaxStart(function(){
  $(this).show();
});

$.get("/go/iMap.cfm",
{ ID: thisID, rand: randID },
function(data){
$('#mapbox' + thisID).empty().append(data);
}
);

$('#mapbox' + thisID).toggle(1000);

$("#loader" + thisID).ajaxSuccess(function(request, settings){
  $(this).hide();
});
}
