content2_1.setLayout(new BorderLayout());
labelChat= new Label();
labelChat.setText("Chat:");
content2_1.add(labelChat, BorderLayout.NORTH);
outputarea = new TextArea(30,30);
outputarea.setEditable(false);
content2_1.add(outputarea, BorderLayout.SOUTH);
content2.add(content2_1, BorderLayout.NORTH);
//End of the chat panel.