// Other keys. if (e.keyCode == DOM_VK_TAB && !e.shiftKey && !e.ctrlKey && !e.altKey) { bbcode_insert(th.textarea, "\t", ""); return cancel(e); } if (e.keyCode == DOM_VK_TAB && !e.shiftKey && e.ctrlKey && !e.altKey) { th.form.post.focus(); return cancel(e); } var submitter; if (e.keyCode == DOM_VK_PAGE_UP && e.shiftKey && !e.ctrlKey && e.altKey) submitter = th.form.add_attachment_box; if (e.keyCode == DOM_VK_ENTER && !e.shiftKey && !e.ctrlKey && e.altKey) submitter = th.form.preview; if (e.keyCode == DOM_VK_ENTER && !e.shiftKey && e.ctrlKey && !e.altKey) submitter = th.form.post; if (submitter) { submitter.click(); return cancel(e); }