}
public void pageDown() {
validate();
if (offset > pageHeight-totalHeight) {
Resource anim = animate ? getResource(ANIM) : null;
offset = Math.max(pageHeight-totalHeight, offset-pageHeight);
offset = Math.min(0, offset);
setTranslation(0, offset, anim);
refresh();
getBApp().play("pagedown.snd");