def vp_start_gui():
    """Starting point when module is the main routine."""
    global val, w, root
    root = Tk()
    top = Confirm_screen(root)
    confirmationreserve_support.init(root, top)
    root.mainloop()
def vp_start_gui():
    '''Starting point when module is the main routine.'''
    global val, w, root
    root = Tk()
    top = Confirm_screen(root)
    confirmationreserve_support.init(root, top)
    root.mainloop()
def create_Confirm_screen(root, *args, **kwargs):
    """Starting point when module is imported by another program."""
    global w, w_win, rt
    rt = root
    w = Toplevel(root)
    top = Confirm_screen(w)
    confirmationreserve_support.init(w, top, *args, **kwargs)
    return (w, top)
def create_Confirm_screen(root, *args, **kwargs):
    '''Starting point when module is imported by another program.'''
    global w, w_win, rt
    rt = root
    w = Toplevel(root)
    top = Confirm_screen(w)
    confirmationreserve_support.init(w, top, *args, **kwargs)
    return (w, top)