@FXML
 protected void handleAddFormationButton(ActionEvent E) throws Exception {
   NewInputStage test = new NewInputStage();
   test.setCoord(application);
   test.start("4");
 }
 @FXML
 protected void handleEditMechsButton(ActionEvent E) throws Exception {
   NewInputStage test = new NewInputStage();
   test.setCoord(application);
   test.start("2");
 }
 @FXML
 protected void addNewMemberButtonPressed(ActionEvent E) throws Exception {
   NewInputStage test = new NewInputStage();
   test.setCoord(application);
   test.start("1");
 }