return webpageHelpLabel;
}
public JTextField getTeamNameField() {
if (teamNameField == null) {
LimitedDocument doc = new LimitedClassnameDocument(1, 32);
teamNameField = new JTextField(doc, null, 32);
doc.addDocumentListener(eventHandler);
}
return teamNameField;
}