public static synchronized void logout(PosScreen pos) {
pos.setWaitCursor();
PosTransaction trans = PosTransaction.getCurrentTx(pos.getSession());
XuiSession session = pos.getSession();
trans.closeTx();
session.logout();
pos.showPage("pospanel");
PosScreen.currentScreen.setLock(true);
pos.setNormalCursor();
}