public static void loadPanel(JPanel oldPanel, JPanel newPanel){
if(oldPanel == null){
frame.add(newPanel);
}else{
frame.remove(oldPanel);
frame.add(newPanel);...