JLabel instructions = new JLabel("Double-click to modify, mouse over to view alternate titles.");
instructions.setHorizontalAlignment(SwingConstants.RIGHT);
bottomPanel.add(instructions);
JButton btnAddShow = new JButton("Add Show");
btnAddShow.addMouseListener(new MouseAdapter() {
public void mouseClicked(MouseEvent arg0) {
String inputShowTitle = JOptionPane.showInputDialog(frame, "Enter the title of the show: ");
if(inputShowTitle!=null && !inputShowTitle.isEmpty()) {
String inputSeason = JOptionPane.showInputDialog(frame, "Enter the season number that you are currently watching: ");
if(inputSeason!=null && !inputSeason.isEmpty()) {