Agent a = myContainer.acquireLocalAgent(agentID);
if(a == null) {
throw new NotFoundException("Move-Agent failed to find " + agentID);
}
a.doMove(where);
myContainer.releaseLocalAgent(agentID);
}
private void copyAgent(AID agentID, Location where, String newName) throws IMTPException, NotFoundException {