/**
  * Removes a white board frame.
  *
  * @param frame the frame to remove
  */
 public void removeWhiteboardWindow(WhiteboardFrame frame) {
   synchronized (wbFrames) {
     wbFrames.remove(frame);
   }
 }