def ShowPrivacyPolicy(filePath, fileName):
    """Print out the privacy policy AND~~~~~~~~~~."""
    print("-- Privacy Policy -- " + "\n")
    PrintFile(filePath, fileName)
    while globals.loggedIn:
        selection = GuestControls.ShowMenu()
        if (selection == globals.goBack):
            break
    if not globals.loggedIn:
        globals.ReturnPrompt()
def ShowCopyrightPolicy(filePath, fileName):
    """Print out the copyright policy."""
    print("-- Copyright Policy -- " + "\n")
    PrintFile(filePath, fileName)
    globals.ReturnPrompt()
def ShowCopyrightNotice(filePath, fileName):
    """Print out the copyright notice."""
    print("-- Copyright Notice -- " + "\n")
    PrintFile(filePath, fileName)
    globals.ReturnPrompt()
def ShowBrandPolicy(filePath, fileName):
    """Print out the brand policy."""
    print("-- Brand Policy -- " + "\n")
    PrintFile(filePath, fileName)
    globals.ReturnPrompt()
def ShowAccessibility(filePath, fileName):
    """Print out the accessibility document."""
    print("-- Accessibility -- " + "\n")
    PrintFile(filePath, fileName)
    globals.ReturnPrompt()
def ShowAbout(filePath, fileName):
    """Print out the About document."""
    print("-- About -- " + "\n")
    PrintFile(filePath, fileName)
    globals.ReturnPrompt()
def ShowUserAgreement(filePath, fileName):
    """Print out the user agreement."""
    print("-- User Agreement -- " + "\n")
    PrintFile(filePath, fileName)
    globals.ReturnPrompt()