private void showNewScreen(String title, Command c, Item item) {
    //     
    Form newScreenForm = new Form(title);
    //      
    newScreenForm.addCommand(c);
    //    
    newScreenForm.append(item);
    //    
    newScreenForm.setCommandListener(this);
    //    
    display.setCurrent(newScreenForm);
}
