//add the done button
int safeTitleH = getSafeTitleHorizontal();
int safeTitleV = getSafeTitleVertical();
String font;
if (isHighDef()) {
doneButton = new BButton(getNormal(), (getWidth()-safeTitleH)-300,
getHeight()-safeTitleV-60, 300, 60);
font = "default-32.font";
} else {
doneButton = new BButton(getNormal(), (getWidth()-safeTitleH)-300,
getHeight()-safeTitleV-30, 300, 30);
font = "default-24.font";
}
doneButton.setBarAndArrows(BAR_DEFAULT, BAR_HANG, "pop", "pop", null, null, true);
doneButton.setResource(createText(font, tivoWhite, RESOURCES.getString("message.done")));