/**
  * Prints the message to the window. <br>
  * <b>Example:</b> {@code FancyMessageBox.showMessage("Girl programmers rule!","Just the Facts");}
  *
  * @param message the text in the FancyMessageBox
  * @param title the title of the FancyMessageBox
  * @param icon a file and path that has an image for the MessageBox
  */
 public static void showMesage(String message, String title, ImageIcon icon) {
   fancyMessageBox.showMessage(message, title, icon);
 }